Ice Cream Jonsey wrote:Oh, it's interesting. And DEPRAVED.
What sort of thing did you end up using I6 for in Stiffy?
Well, here we go:
Code: Select all
[Remove this before real release ]
Include (- Constant DEBUG; -) after "Definitions.i6t".
So that's so that I and my testers can actually use test commands when running the released game. Will go away at actual release as the comment says.
Code: Select all
To forcibly set the female pronoun from (O - an object):
(- (SetPronoun('her', {O} ) ); -).
To forcibly set the male pronoun from (O - an object):
(- (SetPronoun('him', {O} ) ); -).
To forcibly set the neuter pronoun from (O - an object):
(- (SetPronoun('it', {O} ) ); -).
I wanted fine-grained control over the pronoun stuff. Pretty sure there are Pronouns extensions that do this now, but, well, I've got this.
Code: Select all
To suppress the inventory information:
(- c_style = c_style &~ (FULLINV_BIT+PARTINV_BIT); -).
Code: Select all
To check Unicode compliance:
(- unicodecompset(); -);
Include (-
[ UnicodeCompSet;
(+ unicode compliance +) = glk_gestalt(gestalt_Unicode,0);
];
-)
Actually totally useless now: I7 requires a Unicode-compliant terp to run, and has for a good long while.
Code: Select all
Part Twelve - "Text Styles"
To set note style:
(- glk($0086,6); -).
To set normal style:
(- glk($0086,0); -).
For my purposes, easier than screwing around with Custom Text Styles for what I wanted to do.
Code: Select all
Part Thirteen - "Current Row"
The stored row is a number that varies.
To decide which number is the current row: (- ct_1 -).
Part Fourteen - "Testing Check"
To decide if testing is in progress: (- (TestCheck()) -).
To decide if testing is not in progress: (- (~~TestCheck()) -).
Include (-
[ TestCheck ; if (test_stack-->2 > 1) rtrue; rfalse; ];
-).
Part Fifteen - "Silent Score-Setting"
To silently set the score to (val - number):
(- score={val}; last_score={val}; -).
Three minor items: one, expose the currently selected row in a table as a global variable, for a well-hidden Easter egg in the code with a lot of randomly-substituted-at-runtime text.
Two, have a way to determine whether we're inside a test command, so that I don't wait for a keypress at the places I'd usually clear the screen if we are (useful for regression testing).
Three: There's a point in the game where the protagonist changes, and the new viewpoint character has a different score. Didn't want score notification when the viewpoint shift happened.
So I count a total of fourteen places I dropped into I6, which are really eight different uses of it, since some, like the pronouns, have multiple thematically-similar calls.
There are eighteen scoring opportunities.
In summation:
Suck it.
Bruce
[quote="Ice Cream Jonsey"]Oh, it's interesting. And DEPRAVED.
What sort of thing did you end up using I6 for in Stiffy?[/quote]
Well, here we go:
[code]
[Remove this before real release ]
Include (- Constant DEBUG; -) after "Definitions.i6t".
[/code]
So that's so that I and my testers can actually use test commands when running the released game. Will go away at actual release as the comment says.
[code]
To forcibly set the female pronoun from (O - an object):
(- (SetPronoun('her', {O} ) ); -).
To forcibly set the male pronoun from (O - an object):
(- (SetPronoun('him', {O} ) ); -).
To forcibly set the neuter pronoun from (O - an object):
(- (SetPronoun('it', {O} ) ); -).
[/code]
I wanted fine-grained control over the pronoun stuff. Pretty sure there are Pronouns extensions that do this now, but, well, I've got this.
[code]
To suppress the inventory information:
(- c_style = c_style &~ (FULLINV_BIT+PARTINV_BIT); -).
[/code]
[code]
To check Unicode compliance:
(- unicodecompset(); -);
Include (-
[ UnicodeCompSet;
(+ unicode compliance +) = glk_gestalt(gestalt_Unicode,0);
];
-)
[/code]
Actually totally useless now: I7 requires a Unicode-compliant terp to run, and has for a good long while.
[code]
Part Twelve - "Text Styles"
To set note style:
(- glk($0086,6); -).
To set normal style:
(- glk($0086,0); -).
[/code]
For my purposes, easier than screwing around with Custom Text Styles for what I wanted to do.
[code]
Part Thirteen - "Current Row"
The stored row is a number that varies.
To decide which number is the current row: (- ct_1 -).
Part Fourteen - "Testing Check"
To decide if testing is in progress: (- (TestCheck()) -).
To decide if testing is not in progress: (- (~~TestCheck()) -).
Include (-
[ TestCheck ; if (test_stack-->2 > 1) rtrue; rfalse; ];
-).
Part Fifteen - "Silent Score-Setting"
To silently set the score to (val - number):
(- score={val}; last_score={val}; -).
[/code]
Three minor items: one, expose the currently selected row in a table as a global variable, for a well-hidden Easter egg in the code with a lot of randomly-substituted-at-runtime text.
Two, have a way to determine whether we're inside a test command, so that I don't wait for a keypress at the places I'd usually clear the screen if we are (useful for regression testing).
Three: There's a point in the game where the protagonist changes, and the new viewpoint character has a different score. Didn't want score notification when the viewpoint shift happened.
So I count a total of fourteen places I dropped into I6, which are really eight different uses of it, since some, like the pronouns, have multiple thematically-similar calls.
There are eighteen scoring opportunities.
In summation:
Suck it.
Bruce