Ice Cream Jonsey wrote: Sat Jan 20, 2018 10:53 amWhen Thaumistry starts up, there's a screen with a few different labels on it, like Continue, New Game and Credits and such. Did that come from an interpreter?
Yes. That's implemented in the terp itself. It's normal widgets (a frame populated with buttons) themed with CSS. It's hard-coded and specific to Thaumistry.
Additionally, the initial gameplay screen is a nice set of blue-tinted colors. Is that from a terp as well? It looks so much better than whatever black text on white background thing I've been using. Can any TADS game be made to look so nice?
In Thaumistry, it's the modified interpreter that sets those colors. The game just sticks to default colors, and the interpreter has these defaults set to white-ish on blue-ish.
However, this is not actually required. You can make any game look like that. Here's a few examples:
http://qtads.sourceforge.net/screenshots.shtml
Games that don't set their own colors appear black on white because that's just happens to be the default color theme in most interpreters. But your game doesn't have to stick to defaults. It can set its own colors using HTML-like markup.
What you can't do with vanilla TADS though is using custom fonts. The various fonts used in Thaumistry come with the interpreter (you'll find them in the "fonts" directory in the game's installation directory.) With vanilla TADS, any font you want to use must have been installed system-wide by the user prior to starting the game.
So if you only want a different color scheme, you can do that easily in TADS code. This will set the game's colors to the exact same ones used in Thaumistry:
Code: Select all
modify initDisplay()
{
replaced();
// Change main window colors.
"<body bgcolor=#062b3d text=#d7f6f2 input=#bbd5d1 link=#dac060 hlink=#ffe070 alink=#ffff96>";
}
modify statuslineBanner {
setColorScheme()
{
// Change statusline colors.
"<body bgcolor=#031c2a text=#d8d8d8 link=#dac060 hlink=#ffe070 alink=#ffff96>";
}
};
(Note that there's a bug in QTads 2.1.7 that I need to fix: it ignores the link colors (link, hlink, alink) you set in <body> tags. HTML TADS and Workbench work fine.)
If you want a menu screen and custom fonts though, then you need to modify the interpreter. For Thaumistry, we use a version of QTads that's been modified specifically for that game. You can't use it as-is. But if you want to hire me to modify it for your own game, I can do that. Send me an email if you want to go that route.
If you want to do the modifications yourself, QTads is open source and you can do that (either under the GPL or the TADS License.) Mike Roberts' interpreter (HTML TADS) also comes with public source code, so you can modify that instead if you're only interested in Windows.
[quote="Ice Cream Jonsey" post_id=95174 time=1516470796 user_id=3]When Thaumistry starts up, there's a screen with a few different labels on it, like Continue, New Game and Credits and such. Did that come from an interpreter?[/quote]
Yes. That's implemented in the terp itself. It's normal widgets (a frame populated with buttons) themed with CSS. It's hard-coded and specific to Thaumistry.
[quote]Additionally, the initial gameplay screen is a nice set of blue-tinted colors. Is that from a terp as well? It looks so much better than whatever black text on white background thing I've been using. Can any TADS game be made to look so nice?[/quote]
In Thaumistry, it's the modified interpreter that sets those colors. The game just sticks to default colors, and the interpreter has these defaults set to white-ish on blue-ish.
However, this is not actually required. You can make any game look like that. Here's a few examples:
http://qtads.sourceforge.net/screenshots.shtml
Games that don't set their own colors appear black on white because that's just happens to be the default color theme in most interpreters. But your game doesn't have to stick to defaults. It can set its own colors using HTML-like markup.
What you can't do with vanilla TADS though is using custom fonts. The various fonts used in Thaumistry come with the interpreter (you'll find them in the "fonts" directory in the game's installation directory.) With vanilla TADS, any font you want to use must have been installed system-wide by the user prior to starting the game.
So if you only want a different color scheme, you can do that easily in TADS code. This will set the game's colors to the exact same ones used in Thaumistry:
[code]modify initDisplay()
{
replaced();
// Change main window colors.
"<body bgcolor=#062b3d text=#d7f6f2 input=#bbd5d1 link=#dac060 hlink=#ffe070 alink=#ffff96>";
}
modify statuslineBanner {
setColorScheme()
{
// Change statusline colors.
"<body bgcolor=#031c2a text=#d8d8d8 link=#dac060 hlink=#ffe070 alink=#ffff96>";
}
};[/code]
(Note that there's a bug in QTads 2.1.7 that I need to fix: it ignores the link colors (link, hlink, alink) you set in <body> tags. HTML TADS and Workbench work fine.)
If you want a menu screen and custom fonts though, then you need to modify the interpreter. For Thaumistry, we use a version of QTads that's been modified specifically for that game. You can't use it as-is. But if you want to hire me to modify it for your own game, I can do that. Send me an email if you want to go that route.
If you want to do the modifications yourself, QTads is open source and you can do that (either under the GPL or the TADS License.) Mike Roberts' interpreter (HTML TADS) also comes with public source code, so you can modify that instead if you're only interested in Windows.