Creating Interactive Fiction with Inform 7

Moderators: AArdvark, Ice Cream Jonsey
You heard him guys! So quit bumping this thre-- oh.NihilVulture wrote:Look here, I7 is wayyyy different language then I6! No one should argue over this stupid thing! Yes it compiles as I6, but I7 is a different language totally... Shame on you two for arguing like two retard teeanagers!!!! I am getting wwaaaaaaaaaayy too old for this shit!
Well, here we go:Ice Cream Jonsey wrote:Oh, it's interesting. And DEPRAVED.
What sort of thing did you end up using I6 for in Stiffy?
Code: Select all
[Remove this before real release ]
Include (- Constant DEBUG; -) after "Definitions.i6t".
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} ) ); -).
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);
];
-)
Code: Select all
Part Twelve - "Text Styles"
To set note style:
(- glk($0086,6); -).
To set normal style:
(- glk($0086,0); -).
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}; -).
Indeed I do.Ice Cream Jonsey wrote:Did you use any form of automated testing for the upcoming Stiffy game? How do you feel about the tools I7's IDE give you for that, bruce?