Add regression test that gets to reservoir.
[open-adventure.git] / main.c
1 /*
2  * The author - Don Woods - apologises for the style of the code; it
3  * is a result of running the original Fortran IV source through a
4  * home-brew Fortran-to-C converter.)
5  */
6 #include <stdlib.h>
7 #include <stdio.h>
8 #include <stdbool.h>
9 #include <getopt.h>
10 #include <signal.h>
11 #include "main.h"
12
13 #include "misc.h"
14
15 long ABB[186], ATAB[331], ATLOC[186], BLKLIN = true, DFLAG,
16                 DLOC[7], FIXED[101], HOLDNG,
17                 KTAB[331], *LINES, LINK[201], LNLENG, LNPOSN,
18                 PARMS[26], PLACE[101], PTEXT[101], RTEXT[278],
19                 SETUP = 0, TABSIZ = 330;
20 signed char rawbuf[LINESIZE], INLINE[LINESIZE+1], MAP1[129], MAP2[129];
21
22 long ABBNUM, ACTSPK[36], AMBER, ATTACK, AXE, BACK, BATTER, BEAR, BIRD, BLOOD, BONUS,
23                  BOTTLE, CAGE, CAVE, CAVITY, CHAIN, CHASM, CHEST, CHLOC, CHLOC2,
24                 CLAM, CLOCK1, CLOCK2, CLOSED, CLOSNG, CLSHNT, CLSMAX = 12, CLSSES,
25                 COINS, COND[186], CONDS, CTEXT[13], CVAL[13], DALTLC, DETAIL,
26                  DKILL, DOOR, DPRSSN, DRAGON, DSEEN[7], DTOTAL, DWARF, EGGS,
27                 EMRALD, ENTER, ENTRNC, FIND, FISSUR, FIXD[101], FOOBAR, FOOD,
28                 GRATE, HINT, HINTED[21], HINTLC[21], HINTS[21][5], HNTMAX,
29                 HNTSIZ = 20, I, INVENT, IGO, IWEST, J, JADE, K, K2, KEY[186], KEYS, KK,
30                 KNFLOC, KNIFE, KQ, L, LAMP, LIMIT, LINSIZ = 12500, LINUSE, LL,
31                 LMWARN, LOC, LOCK, LOCSIZ = 185, LOCSND[186], LOOK, LTEXT[186],
32                 MAGZIN, MAXDIE, MAXTRS, MESH = 123456789,
33                 MESSAG, MIRROR, MXSCOR,
34                 NEWLOC, NOVICE, NUGGET, NUL, NUMDIE, OBJ, OBJSND[101],
35                 OBJTXT[101], ODLOC[7], OGRE, OIL, OLDLC2, OLDLOC, OLDOBJ, OYSTER,
36                 PANIC, PEARL, PILLOW, PLAC[101], PLANT, PLANT2, PROP[101], PYRAM,
37                 RESER, ROD, ROD2, RTXSIZ = 277, RUBY, RUG, SAPPH, SAVED, SAY,
38                 SCORE, SECT, SIGN, SNAKE, SPK, STEPS, STEXT[186], STICK,
39                 STREAM, TABNDX, TALLY, THRESH, THROW, TK[21], TRAVEL[886], TRIDNT,
40                 TRNDEX, TRNLUZ, TRNSIZ = 5, TRNVAL[6], TRNVLS, TROLL, TROLL2, TRVS,
41                  TRVSIZ = 885, TTEXT[6], TURNS, URN, V1, V2, VASE, VEND, VERB,
42                 VOLCAN, VRBSIZ = 35, VRSION = 25, WATER, WD1, WD1X, WD2, WD2X,
43                 WZDARK = false, ZZWORD;
44 FILE  *logfp;
45 bool oldstyle = false;
46 lcg_state lcgstate;
47
48 extern void initialise();
49 extern void score(long);
50 extern int action(FILE *, long);
51
52 void sig_handler(int signo)
53 {
54     if (signo == SIGINT)
55         if (logfp != NULL)
56             fflush(logfp);
57     exit(0);
58 }
59
60 /*
61  * MAIN PROGRAM
62  */
63
64 static bool do_command(FILE *);
65
66 int main(int argc, char *argv[]) {
67         int ch;
68
69 /*  Adventure (rev 2: 20 treasures) */
70
71 /*  History: Original idea & 5-treasure version (adventures) by Willie Crowther
72  *           15-treasure version (adventure) by Don Woods, April-June 1977
73  *           20-treasure version (rev 2) by Don Woods, August 1978
74  *              Errata fixed: 78/12/25 */
75
76
77 /*  Options. */
78
79         while ((ch = getopt(argc, argv, "l:o")) != EOF) {
80                 switch (ch) {
81                 case 'l':
82                         logfp = fopen(optarg, "w");
83                         if (logfp == NULL)
84                                 fprintf(stderr,
85                                         "advent: can't open logfile %s for write\n",
86                                         optarg);
87                         signal(SIGINT, sig_handler);
88                         break;
89                 case 'o':
90                     oldstyle = true;
91                     break;
92                 }
93         }
94
95 /* Logical variables:
96  *
97  *  CLOSED says whether we're all the way closed
98  *  CLOSNG says whether it's closing time yet
99  *  CLSHNT says whether he's read the clue in the endgame
100  *  LMWARN says whether he's been warned about lamp going dim
101  *  NOVICE says whether he asked for instructions at start-up
102  *  PANIC says whether he's found out he's trapped in the cave
103  *  WZDARK says whether the loc he's leaving was dark */
104
105 #include "funcs.h"
106
107 /* Initialize our LCG PRNG with parameters tested against Knuth vol. 2. by the original authors */
108
109         lcgstate.a = 1093;
110         lcgstate.c = 221587;
111         lcgstate.m = 1048576;
112         long seedval = (long)time(NULL);
113         set_seed(seedval);
114
115 /*  Read the database if we have not yet done so */
116
117         LINES = (long *)calloc(LINSIZ+1,sizeof(long));
118         if(!LINES){
119                 printf("Not enough memory!\n");
120                 exit(1);
121         }
122
123         MAP2[1] = 0;
124         if(!SETUP)initialise();
125         if(SETUP > 0) goto L1;
126
127 /*  Unlike earlier versions, adventure is no longer restartable.  (This
128  *  lets us get away with modifying things such as OBJSND(BIRD) without
129  *  having to be able to undo the changes later.)  If a "used" copy is
130  *  rerun, we come here and tell the player to run a fresh copy. */
131
132         RSPEAK(201);
133         exit(0);
134
135 /*  Start-up, dwarf stuff */
136
137 L1:     SETUP= -1;
138         I=0;
139         ZZWORD=RNDVOC(3,0)+MESH*2;
140         NOVICE=YES(stdin, 65,1,0);
141         NEWLOC=1;
142         LOC=1;
143         LIMIT=330;
144         if(NOVICE)LIMIT=1000;
145
146         if (logfp)
147             fprintf(logfp, "seed %ld\n", seedval);
148         
149         for (;;) {
150             if (!do_command(stdin))
151                 break;
152         }
153         score(1);
154 }
155
156 static bool fallback_handler(signed char *buf)
157 /* fallback handler for commands not handled by FORTRANish parser */
158 {
159     long sv;
160     if (sscanf(buf, "seed %ld", &sv) == 1) {
161         set_seed(sv);
162         printf("Seed set to %ld\n", sv);
163         // here we reconfigure any global game state that uses random numbers
164         ZZWORD=RNDVOC(3,0)+MESH*2;
165         return true;
166     }
167     return false;
168 }
169
170 static bool do_command(FILE *cmdin) {
171
172 /*  Can't leave cave once it's closing (except by main office). */
173
174         if(!OUTSID(NEWLOC) || NEWLOC == 0 || !CLOSNG) goto L71;
175         RSPEAK(130);
176         NEWLOC=LOC;
177         if(!PANIC)CLOCK2=15;
178         PANIC=true;
179
180 /*  See if a dwarf has seen him and has come from where he wants to go.  If so,
181  *  the dwarf's blocking his way.  If coming from place forbidden to pirate
182  *  (dwarves rooted in place) let him get out (and attacked). */
183
184 L71:    if(NEWLOC == LOC || FORCED(LOC) || CNDBIT(LOC,3)) goto L74;
185         /* 73 */ for (I=1; I<=5; I++) {
186         if(ODLOC[I] != NEWLOC || !DSEEN[I]) goto L73;
187         NEWLOC=LOC;
188         RSPEAK(2);
189          goto L74;
190 L73:    /*etc*/ ;
191         } /* end loop */
192 L74:    LOC=NEWLOC;
193
194 /*  Dwarf stuff.  See earlier comments for description of variables.  Remember
195  *  sixth dwarf is pirate and is thus very different except for motion rules. */
196
197 /*  First off, don't let the dwarves follow him into a pit or a wall.  Activate
198  *  the whole mess the first time he gets as far as the hall of mists (loc 15).
199  *  If NEWLOC is forbidden to pirate (in particular, if it's beyond the troll
200  *  bridge), bypass dwarf stuff.  That way pirate can't steal return toll, and
201  *  dwarves can't meet the bear.  Also means dwarves won't follow him into dead
202  *  end in maze, but c'est la vie.  They'll wait for him outside the dead end. */
203
204         if(LOC == 0 || FORCED(LOC) || CNDBIT(NEWLOC,3)) goto L2000;
205         if(DFLAG != 0) goto L6000;
206         if(INDEEP(LOC))DFLAG=1;
207          goto L2000;
208
209 /*  When we encounter the first dwarf, we kill 0, 1, or 2 of the 5 dwarves.  If
210  *  any of the survivors is at loc, replace him with the alternate. */
211
212 L6000:  if(DFLAG != 1) goto L6010;
213         if(!INDEEP(LOC) || (PCT(95) && (!CNDBIT(LOC,4) || PCT(85)))) goto L2000;
214         DFLAG=2;
215         for (I=1; I<=2; I++) {
216         J=1+randrange(5);
217         if(PCT(50))DLOC[J]=0;
218         } /* end loop */
219         for (I=1; I<=5; I++) {
220         if(DLOC[I] == LOC)DLOC[I]=DALTLC;
221         ODLOC[I]=DLOC[I];
222         } /* end loop */
223         RSPEAK(3);
224         DROP(AXE,LOC);
225          goto L2000;
226
227 /*  Things are in full swing.  Move each dwarf at random, except if he's seen us
228  *  he sticks with us.  Dwarves stay deep inside.  If wandering at random,
229  *  they don't back up unless there's no alternative.  If they don't have to
230  *  move, they attack.  And, of course, dead dwarves don't do much of anything. */
231
232 L6010:  DTOTAL=0;
233         ATTACK=0;
234         STICK=0;
235         /* 6030 */ for (I=1; I<=6; I++) {
236         if(DLOC[I] == 0) goto L6030;
237 /*  Fill TK array with all the places this dwarf might go. */
238         J=1;
239         KK=DLOC[I];
240         KK=KEY[KK];
241         if(KK == 0) goto L6016;
242 L6012:  NEWLOC=MOD(IABS(TRAVEL[KK])/1000,1000);
243         {long x = J-1;
244         if(NEWLOC > 300 || !INDEEP(NEWLOC) || NEWLOC == ODLOC[I] || (J > 1 &&
245                 NEWLOC == TK[x]) || J >= 20 || NEWLOC == DLOC[I] ||
246                 FORCED(NEWLOC) || (I == 6 && CNDBIT(NEWLOC,3)) ||
247                 IABS(TRAVEL[KK])/1000000 == 100) goto L6014;}
248         TK[J]=NEWLOC;
249         J=J+1;
250 L6014:  KK=KK+1;
251         {long x = KK-1; if(TRAVEL[x] >= 0) goto L6012;}
252 L6016:  TK[J]=ODLOC[I];
253         if(J >= 2)J=J-1;
254         J=1+randrange(J);
255         ODLOC[I]=DLOC[I];
256         DLOC[I]=TK[J];
257         DSEEN[I]=(DSEEN[I] && INDEEP(LOC)) || (DLOC[I] == LOC || ODLOC[I] == LOC);
258         if(!DSEEN[I]) goto L6030;
259         DLOC[I]=LOC;
260         if(I != 6) goto L6027;
261
262 /*  The pirate's spotted him.  He leaves him alone once we've found chest.  K
263  *  counts if a treasure is here.  If not, and tally=1 for an unseen chest, let
264  *  the pirate be spotted.  Note that PLACE(CHEST)=0 might mean that he's
265  *  thrown it to the troll, but in that case he's seen the chest (PROP=0). */
266
267         if(LOC == CHLOC || PROP[CHEST] >= 0) goto L6030;
268         K=0;
269         /* 6020 */ for (J=50; J<=MAXTRS; J++) {
270 /*  Pirate won't take pyramid from plover room or dark room (too easy!). */
271         if(J == PYRAM && (LOC == PLAC[PYRAM] || LOC == PLAC[EMRALD])) goto L6020;
272         if(TOTING(J)) goto L6021;
273 L6020:  if(HERE(J))K=1;
274         } /* end loop */
275         if(TALLY == 1 && K == 0 && PLACE[CHEST] == 0 && HERE(LAMP) && PROP[LAMP]
276                 == 1) goto L6025;
277         if(ODLOC[6] != DLOC[6] && PCT(20))RSPEAK(127);
278          goto L6030;
279
280 L6021:  if(PLACE[CHEST] != 0) goto L6022;
281 /*  Install chest only once, to insure it is the last treasure in the list. */
282         MOVE(CHEST,CHLOC);
283         MOVE(MESSAG,CHLOC2);
284 L6022:  RSPEAK(128);
285         /* 6023 */ for (J=50; J<=MAXTRS; J++) {
286         if(J == PYRAM && (LOC == PLAC[PYRAM] || LOC == PLAC[EMRALD])) goto L6023;
287         if(AT(J) && FIXED[J] == 0)CARRY(J,LOC);
288         if(TOTING(J))DROP(J,CHLOC);
289 L6023:  /*etc*/ ;
290         } /* end loop */
291 L6024:  DLOC[6]=CHLOC;
292         ODLOC[6]=CHLOC;
293         DSEEN[6]=false;
294          goto L6030;
295
296 L6025:  RSPEAK(186);
297         MOVE(CHEST,CHLOC);
298         MOVE(MESSAG,CHLOC2);
299          goto L6024;
300
301 /*  This threatening little dwarf is in the room with him! */
302
303 L6027:  DTOTAL=DTOTAL+1;
304         if(ODLOC[I] != DLOC[I]) goto L6030;
305         ATTACK=ATTACK+1;
306         if(KNFLOC >= 0)KNFLOC=LOC;
307         if(randrange(1000) < 95*(DFLAG-2))STICK=STICK+1;
308 L6030:  /*etc*/ ;
309         } /* end loop */
310
311 /*  Now we know what's happening.  Let's tell the poor sucker about it.
312  *  Note that various of the "knife" messages must have specific relative
313  *  positions in the RSPEAK database. */
314
315         if(DTOTAL == 0) goto L2000;
316         SETPRM(1,DTOTAL,0);
317         RSPEAK(4+1/DTOTAL);
318         if(ATTACK == 0) goto L2000;
319         if(DFLAG == 2)DFLAG=3;
320         SETPRM(1,ATTACK,0);
321         K=6;
322         if(ATTACK > 1)K=250;
323         RSPEAK(K);
324         SETPRM(1,STICK,0);
325         RSPEAK(K+1+2/(1+STICK));
326         if(STICK == 0) goto L2000;
327         OLDLC2=LOC;
328          goto L99;
329
330
331
332
333
334
335 /*  Describe the current location and (maybe) get next command. */
336
337 /*  Print text for current loc. */
338
339 L2000:  if(LOC == 0) goto L99;
340         KK=STEXT[LOC];
341         if(MOD(ABB[LOC],ABBNUM) == 0 || KK == 0)KK=LTEXT[LOC];
342         if(FORCED(LOC) || !DARK(0)) goto L2001;
343         if(WZDARK && PCT(35)) goto L90;
344         KK=RTEXT[16];
345 L2001:  if(TOTING(BEAR))RSPEAK(141);
346         SPEAK(KK);
347         K=1;
348         if(FORCED(LOC)) goto L8;
349         if(LOC == 33 && PCT(25) && !CLOSNG)RSPEAK(7);
350
351 /*  Print out descriptions of objects at this location.  If not closing and
352  *  property value is negative, tally off another treasure.  Rug is special
353  *  case; once seen, its PROP is 1 (dragon on it) till dragon is killed.
354  *  Similarly for chain; PROP is initially 1 (locked to bear).  These hacks
355  *  are because PROP=0 is needed to get full score. */
356
357         if(DARK(0)) goto L2012;
358         ABB[LOC]=ABB[LOC]+1;
359         I=ATLOC[LOC];
360 L2004:  if(I == 0) goto L2012;
361         OBJ=I;
362         if(OBJ > 100)OBJ=OBJ-100;
363         if(OBJ == STEPS && TOTING(NUGGET)) goto L2008;
364         if(PROP[OBJ] >= 0) goto L2006;
365         if(CLOSED) goto L2008;
366         PROP[OBJ]=0;
367         if(OBJ == RUG || OBJ == CHAIN)PROP[OBJ]=1;
368         TALLY=TALLY-1;
369 /*  Note: There used to be a test here to see whether the player had blown it
370  *  so badly that he could never ever see the remaining treasures, and if so
371  *  the lamp was zapped to 35 turns.  But the tests were too simple-minded;
372  *  things like killing the bird before the snake was gone (can never see
373  *  jewelry), and doing it "right" was hopeless.  E.G., could cross troll
374  *  bridge several times, using up all available treasures, breaking vase,
375  *  using coins to buy batteries, etc., and eventually never be able to get
376  *  across again.  If bottle were left on far side, could then never get eggs
377  *  or trident, and the effects propagate.  So the whole thing was flushed.
378  *  anyone who makes such a gross blunder isn't likely to find everything
379  *  else anyway (so goes the rationalisation). */
380 L2006:  KK=PROP[OBJ];
381         if(OBJ == STEPS && LOC == FIXED[STEPS])KK=1;
382         PSPEAK(OBJ,KK);
383 L2008:  I=LINK[I];
384          goto L2004;
385
386 L2009:  K=54;
387 L2010:  SPK=K;
388 L2011:  RSPEAK(SPK);
389
390 L2012:  VERB=0;
391         OLDOBJ=OBJ;
392         OBJ=0;
393
394 /*  Check if this loc is eligible for any hints.  If been here long enough,
395  *  branch to help section (on later page).  Hints all come back here eventually
396  *  to finish the loop.  Ignore "HINTS" < 4 (special stuff, see database notes).
397                 */
398
399 L2600:  if(COND[LOC] < CONDS) goto L2603;
400         /* 2602 */ for (HINT=1; HINT<=HNTMAX; HINT++) {
401         if(HINTED[HINT]) goto L2602;
402         if(!CNDBIT(LOC,HINT+10))HINTLC[HINT]= -1;
403         HINTLC[HINT]=HINTLC[HINT]+1;
404         if(HINTLC[HINT] >= HINTS[HINT][1]) goto L40000;
405 L2602:  /*etc*/ ;
406         } /* end loop */
407
408 /*  Kick the random number generator just to add variety to the chase.  Also,
409  *  if closing time, check for any objects being toted with PROP < 0 and set
410  *  the prop to -1-PROP.  This way objects won't be described until they've
411  *  been picked up and put down separate from their respective piles.  Don't
412  *  tick CLOCK1 unless well into cave (and not at Y2). */
413
414 L2603:  if(!CLOSED) goto L2605;
415         if(PROP[OYSTER] < 0 && TOTING(OYSTER))PSPEAK(OYSTER,1);
416         for (I=1; I<=100; I++) {
417         if(TOTING(I) && PROP[I] < 0)PROP[I]= -1-PROP[I];
418         } /* end loop */
419 L2605:  WZDARK=DARK(0);
420         if(KNFLOC > 0 && KNFLOC != LOC)KNFLOC=0;
421         I=0;
422         if (!GETIN(cmdin, WD1,WD1X,WD2,WD2X))
423             return false;
424
425 /*  Every input, check "FOOBAR" flag.  If zero, nothing's going on.  If pos,
426  *  make neg.  If neg, he skipped a word, so make it zero. */
427
428 L2607:  FOOBAR=(FOOBAR>0 ? -FOOBAR : 0);
429         TURNS=TURNS+1;
430         if(TURNS != THRESH) goto L2608;
431         SPEAK(TTEXT[TRNDEX]);
432         TRNLUZ=TRNLUZ+TRNVAL[TRNDEX]/100000;
433         TRNDEX=TRNDEX+1;
434         THRESH= -1;
435         if(TRNDEX <= TRNVLS)THRESH=MOD(TRNVAL[TRNDEX],100000)+1;
436 L2608:  if(VERB == SAY && WD2 > 0)VERB=0;
437         if(VERB == SAY) goto L4090;
438         if(TALLY == 0 && INDEEP(LOC) && LOC != 33)CLOCK1=CLOCK1-1;
439         if(CLOCK1 == 0) goto L10000;
440         if(CLOCK1 < 0)CLOCK2=CLOCK2-1;
441         if(CLOCK2 == 0) goto L11000;
442         if(PROP[LAMP] == 1)LIMIT=LIMIT-1;
443         if(LIMIT <= 30 && HERE(BATTER) && PROP[BATTER] == 0 && HERE(LAMP)) goto
444                 L12000;
445         if(LIMIT == 0) goto L12400;
446         if(LIMIT <= 30) goto L12200;
447 L19999: K=43;
448         if(LIQLOC(LOC) == WATER)K=70;
449         V1=VOCAB(WD1,-1);
450         V2=VOCAB(WD2,-1);
451         if(V1 == ENTER && (V2 == STREAM || V2 == 1000+WATER)) goto L2010;
452         if(V1 == ENTER && WD2 > 0) goto L2800;
453         if((V1 != 1000+WATER && V1 != 1000+OIL) || (V2 != 1000+PLANT && V2 !=
454                 1000+DOOR)) goto L2610;
455         {long x = V2-1000; if(AT(x))WD2=MAKEWD(16152118);}
456 L2610:  if(V1 == 1000+CAGE && V2 == 1000+BIRD && HERE(CAGE) &&
457                 HERE(BIRD))WD1=MAKEWD(301200308);
458 L2620:  if(WD1 != MAKEWD(23051920)) goto L2625;
459         IWEST=IWEST+1;
460         if(IWEST == 10)RSPEAK(17);
461 L2625:  if(WD1 != MAKEWD( 715) || WD2 == 0) goto L2630;
462         IGO=IGO+1;
463         if(IGO == 10)RSPEAK(276);
464 L2630:  I=VOCAB(WD1,-1);
465         if(I == -1) goto L3000;
466         K=MOD(I,1000);
467         KQ=I/1000+1;
468          switch (KQ-1) { case 0: goto L8; case 1: goto L5000; case 2: goto L4000;
469                 case 3: goto L2010; }
470         BUG(22);
471
472 /*  Get second word for analysis. */
473
474 L2800:  WD1=WD2;
475         WD1X=WD2X;
476         WD2=0;
477          goto L2620;
478
479 /*  Gee, I don't understand. */
480
481 L3000:  SETPRM(1,WD1,WD1X);
482          if (fallback_handler(rawbuf))
483              return true;
484         RSPEAK(254);
485          goto L2600;
486
487 /* Verb and object analysis moved to separate module. */
488
489 L4000:  I=4000; goto Laction;
490 L4090:  I=4090; goto Laction;
491 L5000:  I=5000;
492 Laction:
493          switch (action(cmdin, I)) {
494            case 2: return true;
495            case 8: goto L8;
496            case 2000: goto L2000;
497            case 2009: goto L2009;
498            case 2010: goto L2010;
499            case 2011: goto L2011;
500            case 2012: goto L2012;
501            case 2600: goto L2600;
502            case 2607: goto L2607;
503            case 2630: goto L2630;
504            case 2800: goto L2800;
505            case 8000: goto L8000;
506            case 18999: goto L18999;
507            case 19000: goto L19000;
508            }
509         BUG(99);
510
511 /*  Random intransitive verbs come here.  Clear obj just in case (see "attack").
512                 */
513
514 L8000:  SETPRM(1,WD1,WD1X);
515         RSPEAK(257);
516         OBJ=0;
517         goto L2600;
518
519 /*  Figure out the new location
520  *
521  *  Given the current location in "LOC", and a motion verb number in "K", put
522  *  the new location in "NEWLOC".  The current loc is saved in "OLDLOC" in case
523  *  he wants to retreat.  The current OLDLOC is saved in OLDLC2, in case he
524  *  dies.  (if he does, NEWLOC will be limbo, and OLDLOC will be what killed
525  *  him, so we need OLDLC2, which is the last place he was safe.) */
526
527 L8:     KK=KEY[LOC];
528         NEWLOC=LOC;
529         if(KK == 0)BUG(26);
530         if(K == NUL) return true;
531         if(K == BACK) goto L20;
532         if(K == LOOK) goto L30;
533         if(K == CAVE) goto L40;
534         OLDLC2=OLDLOC;
535         OLDLOC=LOC;
536
537 L9:     LL=IABS(TRAVEL[KK]);
538         if(MOD(LL,1000) == 1 || MOD(LL,1000) == K) goto L10;
539         if(TRAVEL[KK] < 0) goto L50;
540         KK=KK+1;
541          goto L9;
542
543 L10:    LL=LL/1000;
544 L11:    NEWLOC=LL/1000;
545         K=MOD(NEWLOC,100);
546         if(NEWLOC <= 300) goto L13;
547         if(PROP[K] != NEWLOC/100-3) goto L16;
548 L12:    if(TRAVEL[KK] < 0)BUG(25);
549         KK=KK+1;
550         NEWLOC=IABS(TRAVEL[KK])/1000;
551         if(NEWLOC == LL) goto L12;
552         LL=NEWLOC;
553          goto L11;
554
555 L13:    if(NEWLOC <= 100) goto L14;
556         if(TOTING(K) || (NEWLOC > 200 && AT(K))) goto L16;
557          goto L12;
558
559 L14:    if(NEWLOC != 0 && !PCT(NEWLOC)) goto L12;
560 L16:    NEWLOC=MOD(LL,1000);
561         if(NEWLOC <= 300) return true;
562         if(NEWLOC <= 500) goto L30000;
563         RSPEAK(NEWLOC-500);
564         NEWLOC=LOC;
565          return true;
566
567 /*  Special motions come here.  Labelling convention: statement numbers NNNXX
568  *  (XX=00-99) are used for special case number NNN (NNN=301-500). */
569
570 L30000: NEWLOC=NEWLOC-300;
571          switch (NEWLOC) { case 1: goto L30100; case 2: goto L30200; case 3: goto
572                 L30300; }
573         BUG(20);
574
575 /*  Travel 301.  Plover-alcove passage.  Can carry only emerald.  Note: travel
576  *  table must include "useless" entries going through passage, which can never
577  *  be used for actual motion, but can be spotted by "go back". */
578
579 L30100: NEWLOC=99+100-LOC;
580         if(HOLDNG == 0 || (HOLDNG == 1 && TOTING(EMRALD))) return true;
581         NEWLOC=LOC;
582         RSPEAK(117);
583         return true;
584
585 /*  Travel 302.  Plover transport.  Drop the emerald (only use special travel if
586  *  toting it), so he's forced to use the plover-passage to get it out.  Having
587  *  dropped it, go back and pretend he wasn't carrying it after all. */
588
589 L30200: DROP(EMRALD,LOC);
590          goto L12;
591
592 /*  Travel 303.  Troll bridge.  Must be done only as special motion so that
593  *  dwarves won't wander across and encounter the bear.  (They won't follow the
594  *  player there because that region is forbidden to the pirate.)  If
595  *  PROP(TROLL)=1, he's crossed since paying, so step out and block him.
596  *  (standard travel entries check for PROP(TROLL)=0.)  Special stuff for bear. */
597
598 L30300: if(PROP[TROLL] != 1) goto L30310;
599         PSPEAK(TROLL,1);
600         PROP[TROLL]=0;
601         MOVE(TROLL2,0);
602         MOVE(TROLL2+100,0);
603         MOVE(TROLL,PLAC[TROLL]);
604         MOVE(TROLL+100,FIXD[TROLL]);
605         JUGGLE(CHASM);
606         NEWLOC=LOC;
607         return true;
608
609 L30310: NEWLOC=PLAC[TROLL]+FIXD[TROLL]-LOC;
610         if(PROP[TROLL] == 0)PROP[TROLL]=1;
611         if(!TOTING(BEAR)) return true;
612         RSPEAK(162);
613         PROP[CHASM]=1;
614         PROP[TROLL]=2;
615         DROP(BEAR,NEWLOC);
616         FIXED[BEAR]= -1;
617         PROP[BEAR]=3;
618         OLDLC2=NEWLOC;
619          goto L99;
620
621 /*  End of specials. */
622
623 /*  Handle "go back".  Look for verb which goes from LOC to OLDLOC, or to OLDLC2
624  *  If OLDLOC has forced-motion.  K2 saves entry -> forced loc -> previous loc. */
625
626 L20:    K=OLDLOC;
627         if(FORCED(K))K=OLDLC2;
628         OLDLC2=OLDLOC;
629         OLDLOC=LOC;
630         K2=0;
631         if(K == LOC)K2=91;
632         if(CNDBIT(LOC,4))K2=274;
633         if(K2 == 0) goto L21;
634         RSPEAK(K2);
635         return true;
636
637 L21:    LL=MOD((IABS(TRAVEL[KK])/1000),1000);
638         if(LL == K) goto L25;
639         if(LL > 300) goto L22;
640         J=KEY[LL];
641         if(FORCED(LL) && MOD((IABS(TRAVEL[J])/1000),1000) == K)K2=KK;
642 L22:    if(TRAVEL[KK] < 0) goto L23;
643         KK=KK+1;
644          goto L21;
645
646 L23:    KK=K2;
647         if(KK != 0) goto L25;
648         RSPEAK(140);
649         return true;
650
651 L25:    K=MOD(IABS(TRAVEL[KK]),1000);
652         KK=KEY[LOC];
653          goto L9;
654
655 /*  Look.  Can't give more detail.  Pretend it wasn't dark (though it may "now"
656  *  be dark) so he won't fall into a pit while staring into the gloom. */
657
658 L30:    if(DETAIL < 3)RSPEAK(15);
659         DETAIL=DETAIL+1;
660         WZDARK=false;
661         ABB[LOC]=0;
662         return true;
663
664 /*  Cave.  Different messages depending on whether above ground. */
665
666 L40:    K=58;
667         if(OUTSID(LOC) && LOC != 8)K=57;
668         RSPEAK(K);
669         return true;
670
671 /*  Non-applicable motion.  Various messages depending on word given. */
672
673 L50:    SPK=12;
674         if(K >= 43 && K <= 50)SPK=52;
675         if(K == 29 || K == 30)SPK=52;
676         if(K == 7 || K == 36 || K == 37)SPK=10;
677         if(K == 11 || K == 19)SPK=11;
678         if(VERB == FIND || VERB == INVENT)SPK=59;
679         if(K == 62 || K == 65)SPK=42;
680         if(K == 17)SPK=80;
681         RSPEAK(SPK);
682         return true;
683
684 /*  "You're dead, Jim."
685  *
686  *  If the current loc is zero, it means the clown got himself killed.  We'll
687  *  allow this maxdie times.  MAXDIE is automatically set based on the number of
688  *  snide messages available.  Each death results in a message (81, 83, etc.)
689  *  which offers reincarnation; if accepted, this results in message 82, 84,
690  *  etc.  The last time, if he wants another chance, he gets a snide remark as
691  *  we exit.  When reincarnated, all objects being carried get dropped at OLDLC2
692  *  (presumably the last place prior to being killed) without change of props.
693  *  the loop runs backwards to assure that the bird is dropped before the cage.
694  *  (this kluge could be changed once we're sure all references to bird and cage
695  *  are done by keywords.)  The lamp is a special case (it wouldn't do to leave
696  *  it in the cave).  It is turned off and left outside the building (only if he
697  *  was carrying it, of course).  He himself is left inside the building (and
698  *  heaven help him if he tries to xyzzy back into the cave without the lamp!).
699  *  OLDLOC is zapped so he can't just "retreat". */
700
701 /*  The easiest way to get killed is to fall into a pit in pitch darkness. */
702
703 L90:    RSPEAK(23);
704         OLDLC2=LOC;
705
706 /*  Okay, he's dead.  Let's get on with it. */
707
708 L99:    if(CLOSNG) goto L95;
709         NUMDIE=NUMDIE+1;
710         if(!YES(cmdin,79+NUMDIE*2,80+NUMDIE*2,54)) score(0);
711         if(NUMDIE == MAXDIE) score(0);
712         PLACE[WATER]=0;
713         PLACE[OIL]=0;
714         if(TOTING(LAMP))PROP[LAMP]=0;
715         /* 98 */ for (J=1; J<=100; J++) {
716         I=101-J;
717         if(!TOTING(I)) goto L98;
718         K=OLDLC2;
719         if(I == LAMP)K=1;
720         DROP(I,K);
721 L98:    /*etc*/ ;
722         } /* end loop */
723         LOC=3;
724         OLDLOC=LOC;
725          goto L2000;
726
727 /*  He died during closing time.  No resurrection.  Tally up a death and exit. */
728
729 L95:    RSPEAK(131);
730         NUMDIE=NUMDIE+1;
731          score(0);
732
733
734
735
736 /*  Hints */
737
738 /*  Come here if he's been long enough at required loc(s) for some unused hint.
739  *  hint number is in variable "hint".  Branch to quick test for additional
740  *  conditions, then come back to do neat stuff.  Goto 40010 if conditions are
741  *  met and we want to offer the hint.  Goto 40020 to clear HINTLC back to zero,
742  *  40030 to take no action yet. */
743
744 L40000:    switch (HINT-1) { case 0: goto L40100; case 1: goto L40200; case 2: goto
745                 L40300; case 3: goto L40400; case 4: goto L40500; case 5: goto
746                 L40600; case 6: goto L40700; case 7: goto L40800; case 8: goto
747                 L40900; case 9: goto L41000; }
748 /*              CAVE  BIRD  SNAKE MAZE  DARK  WITT  URN   WOODS OGRE
749  *              JADE */
750         BUG(27);
751
752 L40010: HINTLC[HINT]=0;
753         if(!YES(cmdin,HINTS[HINT][3],0,54)) goto L2602;
754         SETPRM(1,HINTS[HINT][2],HINTS[HINT][2]);
755         RSPEAK(261);
756         HINTED[HINT]=YES(cmdin,175,HINTS[HINT][4],54);
757         if(HINTED[HINT] && LIMIT > 30)LIMIT=LIMIT+30*HINTS[HINT][2];
758 L40020: HINTLC[HINT]=0;
759 L40030:  goto L2602;
760
761 /*  Now for the quick tests.  See database description for one-line notes. */
762
763 L40100: if(PROP[GRATE] == 0 && !HERE(KEYS)) goto L40010;
764          goto L40020;
765
766 L40200: if(PLACE[BIRD] == LOC && TOTING(ROD) && OLDOBJ == BIRD) goto L40010;
767          goto L40030;
768
769 L40300: if(HERE(SNAKE) && !HERE(BIRD)) goto L40010;
770          goto L40020;
771
772 L40400: if(ATLOC[LOC] == 0 && ATLOC[OLDLOC] == 0 && ATLOC[OLDLC2] == 0 && HOLDNG >
773                 1) goto L40010;
774          goto L40020;
775
776 L40500: if(PROP[EMRALD] != -1 && PROP[PYRAM] == -1) goto L40010;
777          goto L40020;
778
779 L40600:  goto L40010;
780
781 L40700: if(DFLAG == 0) goto L40010;
782          goto L40020;
783
784 L40800: if(ATLOC[LOC] == 0 && ATLOC[OLDLOC] == 0 && ATLOC[OLDLC2] == 0) goto
785                 L40010;
786          goto L40030;
787
788 L40900: I=ATDWRF(LOC);
789         if(I < 0) goto L40020;
790         if(HERE(OGRE) && I == 0) goto L40010;
791          goto L40030;
792
793 L41000: if(TALLY == 1 && PROP[JADE] < 0) goto L40010;
794          goto L40020;
795
796
797
798
799
800 /*  Cave closing and scoring */
801
802
803 /*  These sections handle the closing of the cave.  The cave closes "clock1"
804  *  turns after the last treasure has been located (including the pirate's
805  *  chest, which may of course never show up).  Note that the treasures need not
806  *  have been taken yet, just located.  Hence clock1 must be large enough to get
807  *  out of the cave (it only ticks while inside the cave).  When it hits zero,
808  *  we branch to 10000 to start closing the cave, and then sit back and wait for
809  *  him to try to get out.  If he doesn't within clock2 turns, we close the
810  *  cave; if he does try, we assume he panics, and give him a few additional
811  *  turns to get frantic before we close.  When clock2 hits zero, we branch to
812  *  11000 to transport him into the final puzzle.  Note that the puzzle depends
813  *  upon all sorts of random things.  For instance, there must be no water or
814  *  oil, since there are beanstalks which we don't want to be able to water,
815  *  since the code can't handle it.  Also, we can have no keys, since there is a
816  *  grate (having moved the fixed object!) there separating him from all the
817  *  treasures.  Most of these problems arise from the use of negative prop
818  *  numbers to suppress the object descriptions until he's actually moved the
819  *  objects. */
820
821 /*  When the first warning comes, we lock the grate, destroy the bridge, kill
822  *  all the dwarves (and the pirate), remove the troll and bear (unless dead),
823  *  and set "closng" to true.  Leave the dragon; too much trouble to move it.
824  *  from now until clock2 runs out, he cannot unlock the grate, move to any
825  *  location outside the cave, or create the bridge.  Nor can he be
826  *  resurrected if he dies.  Note that the snake is already gone, since he got
827  *  to the treasure accessible only via the hall of the mountain king. Also, he's
828  *  been in giant room (to get eggs), so we can refer to it.  Also also, he's
829  *  gotten the pearl, so we know the bivalve is an oyster.  *And*, the dwarves
830  *  must have been activated, since we've found chest. */
831
832 L10000: PROP[GRATE]=0;
833         PROP[FISSUR]=0;
834         for (I=1; I<=6; I++) {
835         DSEEN[I]=false;
836         DLOC[I]=0;
837         } /* end loop */
838         MOVE(TROLL,0);
839         MOVE(TROLL+100,0);
840         MOVE(TROLL2,PLAC[TROLL]);
841         MOVE(TROLL2+100,FIXD[TROLL]);
842         JUGGLE(CHASM);
843         if(PROP[BEAR] != 3)DSTROY(BEAR);
844         PROP[CHAIN]=0;
845         FIXED[CHAIN]=0;
846         PROP[AXE]=0;
847         FIXED[AXE]=0;
848         RSPEAK(129);
849         CLOCK1= -1;
850         CLOSNG=true;
851          goto L19999;
852
853 /*  Once he's panicked, and clock2 has run out, we come here to set up the
854  *  storage room.  The room has two locs, hardwired as 115 (ne) and 116 (sw).
855  *  At the ne end, we place empty bottles, a nursery of plants, a bed of
856  *  oysters, a pile of lamps, rods with stars, sleeping dwarves, and him.  At
857  *  the sw end we place grate over treasures, snake pit, covey of caged birds,
858  *  more rods, and pillows.  A mirror stretches across one wall.  Many of the
859  *  objects come from known locations and/or states (e.g. the snake is known to
860  *  have been destroyed and needn't be carried away from its old "place"),
861  *  making the various objects be handled differently.  We also drop all other
862  *  objects he might be carrying (lest he have some which could cause trouble,
863  *  such as the keys).  We describe the flash of light and trundle back. */
864
865 L11000: PROP[BOTTLE]=PUT(BOTTLE,115,1);
866         PROP[PLANT]=PUT(PLANT,115,0);
867         PROP[OYSTER]=PUT(OYSTER,115,0);
868         OBJTXT[OYSTER]=3;
869         PROP[LAMP]=PUT(LAMP,115,0);
870         PROP[ROD]=PUT(ROD,115,0);
871         PROP[DWARF]=PUT(DWARF,115,0);
872         LOC=115;
873         OLDLOC=115;
874         NEWLOC=115;
875
876 /*  Leave the grate with normal (non-negative) property.  Reuse sign. */
877
878         I=PUT(GRATE,116,0);
879         I=PUT(SIGN,116,0);
880         OBJTXT[SIGN]=OBJTXT[SIGN]+1;
881         PROP[SNAKE]=PUT(SNAKE,116,1);
882         PROP[BIRD]=PUT(BIRD,116,1);
883         PROP[CAGE]=PUT(CAGE,116,0);
884         PROP[ROD2]=PUT(ROD2,116,0);
885         PROP[PILLOW]=PUT(PILLOW,116,0);
886
887         PROP[MIRROR]=PUT(MIRROR,115,0);
888         FIXED[MIRROR]=116;
889
890         for (I=1; I<=100; I++) {
891         if(TOTING(I))DSTROY(I);
892         } /* end loop */
893
894         RSPEAK(132);
895         CLOSED=true;
896         return true;
897
898 /*  Another way we can force an end to things is by having the lamp give out.
899  *  When it gets close, we come here to warn him.  We go to 12000 if the lamp
900  *  and fresh batteries are here, in which case we replace the batteries and
901  *  continue.  12200 is for other cases of lamp dying.  12400 is when it goes
902  *  out.  Even then, he can explore outside for a while if desired. */
903
904 L12000: RSPEAK(188);
905         PROP[BATTER]=1;
906         if(TOTING(BATTER))DROP(BATTER,LOC);
907         LIMIT=LIMIT+2500;
908         LMWARN=false;
909          goto L19999;
910
911 L12200: if(LMWARN || !HERE(LAMP)) goto L19999;
912         LMWARN=true;
913         SPK=187;
914         if(PLACE[BATTER] == 0)SPK=183;
915         if(PROP[BATTER] == 1)SPK=189;
916         RSPEAK(SPK);
917          goto L19999;
918
919 L12400: LIMIT= -1;
920         PROP[LAMP]=0;
921         if(HERE(LAMP))RSPEAK(184);
922          goto L19999;
923
924 /*  Oh dear, he's disturbed the dwarves. */
925
926 L18999: RSPEAK(SPK);
927 L19000: RSPEAK(136);
928         score(0);
929 }