Location sounds are now declared by YAML.
[open-adventure.git] / init.c
1 #include <unistd.h>
2 #include <stdlib.h>
3 #include <stdio.h>
4 #include <stdbool.h>
5
6 #include "advent.h"
7 #include "database.h"
8
9 /*
10  * Initialisation
11  */
12
13 /*  Current limits:
14  *     12600 words of message text (LINES, LINSIZ).
15  *      885 travel options (TRAVEL, TRVSIZ).
16  *      330 vocabulary words (KTAB, ATAB, TABSIZ).
17  *      185 locations (KEY, COND, game.abbrev, game.atloc, LOCSIZ).
18  *      100 objects (PLAC, game.place, FIXD, game.fixed, game.link (twice),
19  *                   ogame.prop, OBJSND, OBJTXT).
20  *       35 "action" verbs (ACTSPK, VRBSIZ).
21  *       12 different player classifications (CTEXT, CVAL, CLSMAX).
22  *       20 hints (game.hintlc, game.hinted, HINTS, HNTSIZ).
23  *        5 "# of turns" threshholds (TRNSIZ).
24  *  There are also limits which cannot be exceeded due to the structure of
25  *  the database.  (E.G., The vocabulary uses n/1000 to determine word type,
26  *  so there can't be more than 1000 words.)  These upper limits are:
27  *      1000 non-synonymous vocabulary words
28  *      300 locations
29  *      100 objects
30  *  Note:
31  *   - the object count limit has been abstracted as NOBJECTS
32  *   - the random message limit has been abstracted as RTXSIZ
33  *   - maximum locations limit has been abstracted as LOCSIZ
34  */
35
36 /*  Description of the database format
37  *
38  *
39  *  The data file contains several sections.  Each begins with a line containing
40  *  a number identifying the section, and ends with a line containing "-1".
41  *
42  *  Section 1: Long form descriptions.  Each line contains a location number,
43  *      a tab, and a line of text.  The set of (necessarily adjacent) lines
44  *      whose numbers are X form the long description of location X.
45  *  Section 2: Short form descriptions.  Same format as long form.  Not all
46  *      places have short descriptions.
47  *  Section 3: Travel table.  Each line contains a location number (X), a second
48  *      location number (Y), and a list of motion numbers (see section 4).
49  *      each motion represents a verb which will go to Y if currently at X.
50  *      Y, in turn, is interpreted as follows.  Let M=Y/1000, N=Y mod 1000.
51  *              If N<=300       it is the location to go to.
52  *              If 300<N<=500   N-300 is used in a computed goto to
53  *                                      a section of special code.
54  *              If N>500        message N-500 from section 6 is printed,
55  *                                      and he stays wherever he is.
56  *      Meanwhile, M specifies the conditions on the motion.
57  *              If M=0          it's unconditional.
58  *              If 0<M<100      it is done with M% probability.
59  *              If M=100        unconditional, but forbidden to dwarves.
60  *              If 100<M<=200   he must be carrying object M-100.
61  *              If 200<M<=300   must be carrying or in same room as M-200.
62  *              If 300<M<=400   game.prop(M % 100) must *not* be 0.
63  *              If 400<M<=500   game.prop(M % 100) must *not* be 1.
64  *              If 500<M<=600   game.prop(M % 100) must *not* be 2, etc.
65  *      If the condition (if any) is not met, then the next *different*
66  *      "destination" value is used (unless it fails to meet *its* conditions,
67  *      in which case the next is found, etc.).  Typically, the next dest will
68  *      be for one of the same verbs, so that its only use is as the alternate
69  *      destination for those verbs.  For instance:
70  *              15      110022  29      31      34      35      23      43
71  *              15      14      29
72  *      This says that, from loc 15, any of the verbs 29, 31, etc., will take
73  *      him to 22 if he's carrying object 10, and otherwise will go to 14.
74  *              11      303008  49
75  *              11      9       50
76  *      This says that, from 11, 49 takes him to 8 unless game.prop(3)=0, in which
77  *      case he goes to 9.  Verb 50 takes him to 9 regardless of game.prop(3).
78  *  Section 4: Vocabulary.  Each line contains a number (n), a tab, and a
79  *      five-letter word.  Call M=N/1000.  If M=0, then the word is a motion
80  *      verb for use in travelling (see section 3).  Else, if M=1, the word is
81  *      an object.  Else, if M=2, the word is an action verb (such as "carry"
82  *      or "attack").  Else, if M=3, the word is a special case verb (such as
83  *      "dig") and N % 1000 is an index into section 6.  Objects from 50 to
84  *      (currently, anyway) 79 are considered treasures (for pirate, closeout).
85  *  Section 5: Object descriptions.  Each line contains a number (N), a tab,
86  *      and a message.  If N is from 1 to 100, the message is the "inventory"
87  *      message for object n.  Otherwise, N should be 000, 100, 200, etc., and
88  *      the message should be the description of the preceding object when its
89  *      prop value is N/100.  The N/100 is used only to distinguish multiple
90  *      messages from multi-line messages; the prop info actually requires all
91  *      messages for an object to be present and consecutive.  Properties which
92  *      produce no message should be given the message ">$<". (The magic value
93  *      100 is now mostly abstracted out as NOBJECTS.)
94  *  Section 6: Arbitrary messages.  Same format as sections 1, 2, and 5, except
95  *      the numbers bear no relation to anything (except for special verbs
96  *      in section 4).
97  *  Section 7: Object locations.  Each line contains an object number and its
98  *      initial location (zero (or omitted) if none).  If the object is
99  *      immovable, the location is followed by a "-1".  If it has two locations
100  *      (e.g. the grate) the first location is followed with the second, and
101  *      the object is assumed to be immovable.
102  *  Section 8: Action defaults.  Each line contains an "action-verb" number and
103  *      the index (in section 6) of the default message for the verb.
104  *  Section 9: Location attributes.  Each line contains a number (n) and up to
105  *      20 location numbers.  Bit N (where 0 is the units bit) is set in
106  *      COND(LOC) for each loc given.  The cond bits currently assigned are:
107  *              0       Light
108  *              1       If bit 2 is on: on for oil, off for water
109  *              2       Liquid asset, see bit 1
110  *              3       Pirate doesn't go here unless following player
111  *              4       Cannot use "back" to move away
112  *      Bits past 10 indicate areas of interest to "hint" routines:
113  *              11      Trying to get into cave
114  *              12      Trying to catch bird
115  *              13      Trying to deal with snake
116  *              14      Lost in maze
117  *              15      Pondering dark room
118  *              16      At witt's end
119  *              17      Cliff with urn
120  *              18      Lost in forest
121  *              19      Trying to deal with ogre
122  *              20      Found all treasures except jade
123  *      COND(LOC) is set to 2, overriding all other bits, if loc has forced
124  *      motion.
125  *  Section 10: Class messages.  Each line contains a number (n), a tab, and a
126  *      message describing a classification of player.  The scoring section
127  *      selects the appropriate message, where each message is considered to
128  *      apply to players whose scores are higher than the previous N but not
129  *      higher than this N.  Note that these scores probably change with every
130  *      modification (and particularly expansion) of the program.
131  *  Section 11: Hints.  Each line contains a hint number (add 10 to get cond
132  *      bit; see section 9), the number of turns he must be at the right loc(s)
133  *      before triggering the hint, the points deducted for taking the hint,
134  *      the message number (section 6) of the question, and the message number
135  *      of the hint.  These values are stashed in the "hints" array.
136  *  Section 12: Unused in this version.
137  *  Section 13: Sounds and text.  Each line contains either 2 or 3 numbers.  If
138  *      2 (call them N and S), N is a location and message ABS(S) from section
139  *      6 is the sound heard there.  If S<0, the sound there drowns out all
140  *      other noises.  If 3 numbers (call them N, S, and T), N is an object
141  *      number and S+game.prop(N) is the property message (from section 5) if he
142  *      listens to the object, and T+game.prop(N) is the text if he reads it.  If
143  *      S or T is -1, the object has no sound or text, respectively.  Neither
144  *      S nor T is allowed to be 0.
145  *  Section 14: Turn threshholds.  Each line contains a number (N), a tab, and
146  *      a message berating the player for taking so many turns.  The messages
147  *      must be in the proper (ascending) order.  The message gets printed if
148  *      the player exceeds N % 100000 turns, at which time N/100000 points
149  *      get deducted from his score.
150  *  Section 0: End of database. */
151
152 /*  The various messages (sections 1, 2, 5, 6, etc.) may include certain
153  *  special character sequences to denote that the program must provide
154  *  parameters to insert into a message when the message is printed.  These
155  *  sequences are:
156  *      %S = The letter 'S' or nothing (if a given value is exactly 1)
157  *      %W = A word (up to 10 characters)
158  *      %L = A word mapped to lower-case letters
159  *      %U = A word mapped to upper-case letters
160  *      %C = A word mapped to lower-case, first letter capitalised
161  *      %T = Several words of text, ending with a word of -1
162  *      %1 = A 1-digit number
163  *      %2 = A 2-digit number
164  *      ...
165  *      %9 = A 9-digit number
166  *      %B = Variable number of blanks
167  *      %! = The entire message should be suppressed */
168
169 void initialise(void)
170 {
171     if (oldstyle)
172         printf("Initialising...\n");
173
174     for (int i = 1; i <= NOBJECTS; i++) {
175         game.place[i] = LOC_NOWHERE;
176         game.prop[i] = 0;
177         game.link[i + NOBJECTS] = game.link[i] = 0;
178     }
179
180     for (int i = 1; i <= LOCSIZ; i++) {
181         game.abbrev[i] = 0;
182         if (!(locations[i].description.big == 0 || KEY[i] == 0)) {
183             int k = KEY[i];
184             if (MOD(labs(TRAVEL[k]), 1000) == 1)
185                 conditions[i] |= (1 << COND_FORCED);
186         }
187         game.atloc[i] = 0;
188     }
189
190     /*  Set up the game.atloc and game.link arrays as described above.
191      *  We'll use the DROP subroutine, which prefaces new objects on the
192      *  lists.  Since we want things in the other order, we'll run the
193      *  loop backwards.  If the object is in two locs, we drop it twice.
194      *  This also sets up "game.place" and "fixed" as copies of "PLAC" and
195      *  "FIXD".  Also, since two-placed objects are typically best
196      *  described last, we'll drop them first. */
197     for (int i = 1; i <= NOBJECTS; i++) {
198         int k = NOBJECTS + 1 - i;
199         if (FIXD[k] > 0) {
200             DROP(k + NOBJECTS, FIXD[k]);
201             DROP(k, PLAC[k]);
202         }
203     }
204
205     for (int i = 1; i <= NOBJECTS; i++) {
206         int k = NOBJECTS + 1 - i;
207         game.fixed[k] = FIXD[k];
208         if (PLAC[k] != 0 && FIXD[k] <= 0)
209             DROP(k, PLAC[k]);
210     }
211
212     /*  Treasures, as noted earlier, are objects MINTRS through MAXTRS
213      *  Their props are initially -1, and are set to 0 the first time
214      *  they are described.  game.tally keeps track of how many are
215      *  not yet found, so we know when to close the cave. */
216     game.tally = 0;
217     for (int treasure = MINTRS; treasure <= MAXTRS; treasure++) {
218         if (object_descriptions[treasure].inventory != 0)
219             game.prop[treasure] = -1;
220         game.tally = game.tally - game.prop[treasure];
221     }
222
223     /*  Clear the hint stuff.  game.hintlc[i] is how long he's been at LOC
224      *  with cond bit i.  game.hinted[i] is true iff hint i has been
225      *  used. */
226     for (int i = 0; i < HINT_COUNT; i++) {
227         game.hinted[i] = false;
228         game.hintlc[i] = 0;
229     }
230
231     /* Define some handy mnemonics.  These correspond to object numbers. */
232     AXE = VOCWRD(WORD_AXE, 1);
233     BATTERY = VOCWRD(WORD_BATTERY, 1);
234     BEAR = VOCWRD(WORD_BEAR, 1);
235     BIRD = VOCWRD(WORD_BIRD, 1);
236     BLOOD = VOCWRD(WORD_BLOOD, 1);
237     BOTTLE = VOCWRD(WORD_BOTTLE, 1);
238     CAGE = VOCWRD(WORD_CAGE, 1);
239     CAVITY = VOCWRD(WORD_CAVITY, 1);
240     CHASM = VOCWRD(WORD_CHASM, 1);
241     CLAM = VOCWRD(WORD_CLAM, 1);
242     DOOR = VOCWRD(WORD_DOOR, 1);
243     DRAGON = VOCWRD(WORD_DRAGON, 1);
244     DWARF = VOCWRD(WORD_DWARF, 1);
245     FISSURE = VOCWRD(WORD_FISSURE, 1);
246     FOOD = VOCWRD(WORD_FOOD, 1);
247     GRATE = VOCWRD(WORD_GRATE, 1);
248     KEYS = VOCWRD(WORD_KEYS, 1);
249     KNIFE = VOCWRD(WORD_KNIFE, 1);
250     LAMP = VOCWRD(WORD_LAMP, 1);
251     MAGAZINE = VOCWRD(WORD_MAGAZINE, 1);
252     MESSAG = VOCWRD(WORD_MESSAG, 1);
253     MIRROR = VOCWRD(WORD_MIRROR, 1);
254     OGRE = VOCWRD(WORD_OGRE, 1);
255     OIL = VOCWRD(WORD_OIL, 1);
256     OYSTER = VOCWRD(WORD_OYSTER, 1);
257     PILLOW = VOCWRD(WORD_PILLOW, 1);
258     PLANT = VOCWRD(WORD_PLANT, 1);
259     PLANT2 = PLANT + 1;
260     RESER = VOCWRD(WORD_RESER, 1);
261     ROD = VOCWRD(WORD_ROD, 1);
262     ROD2 = ROD + 1;
263     SIGN = VOCWRD(WORD_SIGN, 1);
264     SNAKE = VOCWRD(WORD_SNAKE, 1);
265     STEPS = VOCWRD(WORD_STEPS, 1);
266     TROLL = VOCWRD(WORD_TROLL, 1);
267     TROLL2 = TROLL + 1;
268     URN = VOCWRD(WORD_URN, 1);
269     VEND = VOCWRD(WORD_VEND, 1);
270     VOLCANO = VOCWRD(WORD_VOLCANO, 1);
271     WATER = VOCWRD(WORD_WATER, 1);
272
273     /* Objects from MINTRS through MAXTRS are treasures.  Here are a few. */
274     AMBER = VOCWRD(WORD_AMBER, 1);
275     CHAIN = VOCWRD(WORD_CHAIN, 1);
276     CHEST = VOCWRD(WORD_CHEST, 1);
277     COINS = VOCWRD(WORD_COINS, 1);
278     EGGS = VOCWRD(WORD_EGGS, 1);
279     EMERALD = VOCWRD(WORD_EMERALD, 1);
280     JADE = VOCWRD(WORD_JADE, 1);
281     NUGGET = VOCWRD(WORD_NUGGET, 1);
282     PEARL = VOCWRD(WORD_PEARL, 1);
283     PYRAMID = VOCWRD(WORD_PYRAMID, 1);
284     RUBY = VOCWRD(WORD_RUBY, 1);
285     RUG = VOCWRD(WORD_RUG, 1);
286     SAPPH = VOCWRD(WORD_SAPPH, 1);
287     TRIDENT = VOCWRD(WORD_TRIDENT, 1);
288     VASE = VOCWRD(WORD_VASE, 1);
289
290     /* These are motion-verb numbers. */
291     BACK = VOCWRD(WORD_BACK, 0);
292     CAVE = VOCWRD(WORD_CAVE, 0);
293     DPRSSN = VOCWRD(WORD_DPRSSN, 0);
294     ENTER = VOCWRD(WORD_ENTER, 0);
295     ENTRNC = VOCWRD(WORD_ENTRNC, 0);
296     LOOK = VOCWRD(WORD_LOOK, 0);
297     NUL = VOCWRD(WORD_NUL, 0);
298     STREAM = VOCWRD(WORD_STREAM, 0);
299
300     /* And some action verbs. */
301     FIND = VOCWRD(WORD_FIND, 2);
302     INVENT = VOCWRD(WORD_INVENT, 2);
303     LOCK = VOCWRD(WORD_LOCK, 2);
304     SAY = VOCWRD(WORD_SAY, 2);
305     THROW = VOCWRD(WORD_THROW, 2);
306
307     /*  Initialise the dwarves.  game.dloc is loc of dwarves,
308      *  hard-wired in.  game.odloc is prior loc of each dwarf,
309      *  initially garbage.  DALTLC is alternate initial loc for dwarf,
310      *  in case one of them starts out on top of the adventurer.  (No
311      *  2 of the 5 initial locs are adjacent.)  game.dseen is true if
312      *  dwarf has seen him.  game.dflag controls the level of
313      *  activation of all this:
314      *  0       No dwarf stuff yet (wait until reaches Hall Of Mists)
315      *  1       Reached Hall Of Mists, but hasn't met first dwarf
316      *  2       Met first dwarf, others start moving, no knives thrown yet
317      *  3       A knife has been thrown (first set always misses)
318      *  3+      Dwarves are mad (increases their accuracy)
319      *  Sixth dwarf is special (the pirate).  He always starts at his
320      *  chest's eventual location inside the maze.  This loc is saved
321      *  in game.chloc for ref.  the dead end in the other maze has its
322      *  loc stored in game.chloc2. */
323     game.chloc = LOC_DEADEND12;
324     game.chloc2 = LOC_DEADEND13;
325     for (int i = 1; i <= NDWARVES; i++) {
326         game.dseen[i] = false;
327     }
328     game.dflag = 0;
329     game.dloc[1] = LOC_KINGHALL;
330     game.dloc[2] = LOC_WESTBANK;
331     game.dloc[3] = LOC_Y2;
332     game.dloc[4] = LOC_ALIKE3;
333     game.dloc[5] = LOC_COMPLEX;
334     game.dloc[6] = game.chloc;
335
336     /*  Other random flags and counters, as follows:
337      *  game.abbnum     How often we should print non-abbreviated descriptions
338      *  game.bonus      Used to determine amount of bonus if he reaches closing
339      *  game.clock1     Number of turns from finding last treasure till closing
340      *  game.clock2     Number of turns from first warning till blinding flash
341      *  game.conds      Min value for cond(loc) if loc has any hints
342      *  game.detail     How often we've said "not allowed to give more detail"
343      *  game.dkill      # of dwarves killed (unused in scoring, needed for msg)
344      *  game.foobar     Current progress in saying "FEE FIE FOE FOO".
345      *  game.holdng     Number of objects being carried
346      *  igo             How many times he's said "go XXX" instead of "XXX"
347      *  game.iwest      How many times he's said "west" instead of "w"
348      *  game.knfloc     0 if no knife here, loc if knife here, -1 after caveat
349      *  game.limit      Lifetime of lamp (not set here)
350      *  maximum_deaths          Number of reincarnation messages available (up to 5)
351      *  game.numdie     Number of times killed so far
352      *  game.trnluz     # points lost so far due to number of turns used
353      *  game.turns      Tallies how many commands he's given (ignores yes/no)
354      *  Logicals were explained earlier */
355     game.turns = 0;
356     game.trnluz = 0;
357     game.lmwarn = false;
358     game.iwest = 0;
359     game.knfloc = 0;
360     game.detail = 0;
361     game.abbnum = 5;
362     game.numdie = 0;
363     game.holdng = 0;
364     game.dkill = 0;
365     game.foobar = 0;
366     game.bonus = 0;
367     game.clock1 = 30;
368     game.clock2 = 50;
369     game.conds = SETBIT(11);
370     game.saved = 0;
371     game.closng = false;
372     game.panic = false;
373     game.closed = false;
374     game.clshnt = false;
375     game.novice = false;
376     game.blklin = true;
377 }