Restructure quips for invalid movements.
[open-adventure.git] / main.c
1 /*
2  * There used to be a note that said this:
3  *
4  * The author - Don Woods - apologises for the style of the code; it
5  * is a result of running the original Fortran IV source through a
6  * home-brew Fortran-to-C converter.
7  *
8  * Now that the code has been restructured into something much closer
9  * to idiomatic C, the following is more appropriate:
10  *
11  * ESR apologizes for the remaing gotos (now confined to one function
12  * in this file - there used to be over 350 of them, *everywhere*),
13  * and for the offensive globals.  Applying the Structured Program
14  * Theorem can be hard.
15  */
16
17 #include <stdlib.h>
18 #include <stdio.h>
19 #include <stdbool.h>
20 #include <getopt.h>
21 #include <signal.h>
22 #include <string.h>
23 #include <ctype.h>
24 #include "advent.h"
25 #include "dungeon.h"
26
27 #define DIM(a) (sizeof(a)/sizeof(a[0]))
28
29 // LCOV_EXCL_START
30 // exclude from coverage analysis because it requires interactivity to test
31 static void sig_handler(int signo)
32 {
33     if (signo == SIGINT) {
34         if (settings.logfp != NULL)
35             fflush(settings.logfp);
36     }
37     exit(EXIT_FAILURE);
38 }
39 // LCOV_EXCL_STOP
40
41 /*
42  * MAIN PROGRAM
43  *
44  *  Adventure (rev 2: 20 treasures)
45  *  History: Original idea & 5-treasure version (adventures) by Willie Crowther
46  *           15-treasure version (adventure) by Don Woods, April-June 1977
47  *           20-treasure version (rev 2) by Don Woods, August 1978
48  *              Errata fixed: 78/12/25
49  *           Revived 2017 as Open Adventure.
50  */
51
52 static bool do_command(void);
53
54 int main(int argc, char *argv[])
55 {
56     int ch;
57
58     /*  Options. */
59
60 #ifndef ADVENT_NOSAVE
61     const char* opts = "l:or:";
62     const char* usage = "Usage: %s [-l logfilename] [-o] [-r restorefilename]\n";
63     FILE *rfp = NULL;
64 #else
65     const char* opts = "l:o";
66     const char* usage = "Usage: %s [-l logfilename] [-o]\n";
67 #endif
68     while ((ch = getopt(argc, argv, opts)) != EOF) {
69         switch (ch) {
70         case 'l':
71             settings.logfp = fopen(optarg, "w");
72             if (settings.logfp == NULL)
73                 fprintf(stderr,
74                         "advent: can't open logfile %s for write\n",
75                         optarg);
76             signal(SIGINT, sig_handler);
77             break;
78         case 'o':
79             settings.oldstyle = true;
80             settings.prompt = false;
81             break;
82 #ifndef ADVENT_NOSAVE
83         case 'r':
84             rfp = fopen(optarg, "r");
85             if (rfp == NULL)
86                 fprintf(stderr,
87                         "advent: can't open save file %s for read\n",
88                         optarg);
89             signal(SIGINT, sig_handler);
90             break;
91 #endif
92         default:
93             fprintf(stderr,
94                     usage, argv[0]);
95             fprintf(stderr,
96                     "        -l create a log file of your game named as specified'\n");
97             fprintf(stderr,
98                     "        -o 'oldstyle' (no prompt, no command editing, displays 'Initialising...')\n");
99 #ifndef ADVENT_NOSAVE
100             fprintf(stderr,
101                     "        -r restore from specified saved game file\n");
102 #endif
103             exit(EXIT_FAILURE);
104             break;
105         }
106     }
107
108     /*  Initialize game variables */
109     long seedval = initialise();
110
111 #ifndef ADVENT_NOSAVE
112     if (!rfp) {
113         game.novice = yes(arbitrary_messages[WELCOME_YOU], arbitrary_messages[CAVE_NEARBY], arbitrary_messages[NO_MESSAGE]);
114         if (game.novice)
115             game.limit = NOVICELIMIT;
116     } else {
117         restore(rfp);
118     }
119 #else
120     game.novice = yes(arbitrary_messages[WELCOME_YOU], arbitrary_messages[CAVE_NEARBY], arbitrary_messages[NO_MESSAGE]);
121     if (game.novice)
122         game.limit = NOVICELIMIT;
123 #endif
124
125     if (settings.logfp)
126         fprintf(settings.logfp, "seed %ld\n", seedval);
127
128     /* interpret commands until EOF or interrupt */
129     for (;;) {
130         if (!do_command())
131             break;
132     }
133     /* show score and exit */
134     terminate(quitgame);
135 }
136
137 static bool fallback_handler(char *buf)
138 /* fallback handler for commands not handled by FORTRANish parser */
139 {
140     long sv;
141     if (sscanf(buf, "seed %ld", &sv) == 1) {
142         set_seed(sv);
143         printf("Seed set to %ld\n", sv);
144         // autogenerated, so don't charge user time for it.
145         --game.turns;
146         return true;
147     }
148     return false;
149 }
150
151 /*  Check if this loc is eligible for any hints.  If been here long
152  *  enough, display.  Ignore "HINTS" < 4 (special stuff, see database
153  *  notes). */
154 static void checkhints(void)
155 {
156     if (conditions[game.loc] >= game.conds) {
157         for (int hint = 0; hint < NHINTS; hint++) {
158             if (game.hinted[hint])
159                 continue;
160             if (!CNDBIT(game.loc, hint + 1 + COND_HBASE))
161                 game.hintlc[hint] = -1;
162             ++game.hintlc[hint];
163             /*  Come here if he's been long enough at required loc(s) for some
164              *  unused hint. */
165             if (game.hintlc[hint] >= hints[hint].turns) {
166                 int i;
167
168                 switch (hint) {
169                 case 0:
170                     /* cave */
171                     if (game.prop[GRATE] == GRATE_CLOSED && !HERE(KEYS))
172                         break;
173                     game.hintlc[hint] = 0;
174                     return;
175                 case 1: /* bird */
176                     if (game.place[BIRD] == game.loc && TOTING(ROD) && game.oldobj == BIRD)
177                         break;
178                     return;
179                 case 2: /* snake */
180                     if (HERE(SNAKE) && !HERE(BIRD))
181                         break;
182                     game.hintlc[hint] = 0;
183                     return;
184                 case 3: /* maze */
185                     if (game.atloc[game.loc] == NO_OBJECT &&
186                         game.atloc[game.oldloc] == NO_OBJECT &&
187                         game.atloc[game.oldlc2] == NO_OBJECT &&
188                         game.holdng > 1)
189                         break;
190                     game.hintlc[hint] = 0;
191                     return;
192                 case 4: /* dark */
193                     if (game.prop[EMERALD] != STATE_NOTFOUND && game.prop[PYRAMID] == STATE_NOTFOUND)
194                         break;
195                     game.hintlc[hint] = 0;
196                     return;
197                 case 5: /* witt */
198                     break;
199                 case 6: /* urn */
200                     if (game.dflag == 0)
201                         break;
202                     game.hintlc[hint] = 0;
203                     return;
204                 case 7: /* woods */
205                     if (game.atloc[game.loc] == NO_OBJECT &&
206                         game.atloc[game.oldloc] == NO_OBJECT &&
207                         game.atloc[game.oldlc2] == NO_OBJECT)
208                         break;
209                     return;
210                 case 8: /* ogre */
211                     i = atdwrf(game.loc);
212                     if (i < 0) {
213                         game.hintlc[hint] = 0;
214                         return;
215                     }
216                     if (HERE(OGRE) && i == 0)
217                         break;
218                     return;
219                 case 9: /* jade */
220                     if (game.tally == 1 && game.prop[JADE] < 0)
221                         break;
222                     game.hintlc[hint] = 0;
223                     return;
224                 default:
225                     BUG(HINT_NUMBER_EXCEEDS_GOTO_LIST); // LCOV_EXCL_LINE
226                     break;
227                 }
228
229                 /* Fall through to hint display */
230                 game.hintlc[hint] = 0;
231                 if (!yes(hints[hint].question, arbitrary_messages[NO_MESSAGE], arbitrary_messages[OK_MAN]))
232                     return;
233                 rspeak(HINT_COST, hints[hint].penalty, hints[hint].penalty);
234                 game.hinted[hint] = yes(arbitrary_messages[WANT_HINT], hints[hint].hint, arbitrary_messages[OK_MAN]);
235                 if (game.hinted[hint] && game.limit > WARNTIME)
236                     game.limit += WARNTIME * hints[hint].penalty;
237             }
238         }
239     }
240 }
241
242 static bool spotted_by_pirate(int i)
243 {
244     if (i != PIRATE)
245         return false;
246
247     /*  The pirate's spotted him.  He leaves him alone once we've
248      *  found chest.  K counts if a treasure is here.  If not, and
249      *  tally=1 for an unseen chest, let the pirate be spotted.  Note
250      *  that game.place[CHEST] = LOC_NOWHERE might mean that he's thrown
251      *  it to the troll, but in that case he's seen the chest
252      *  (game.prop=0). */
253     if (game.loc == game.chloc ||
254         game.prop[CHEST] != STATE_NOTFOUND)
255         return true;
256     int snarfed = 0;
257     bool movechest = false, robplayer = false;
258     for (int treasure = 1; treasure <= NOBJECTS; treasure++) {
259         if (!objects[treasure].is_treasure)
260             continue;
261         /*  Pirate won't take pyramid from plover room or dark
262          *  room (too easy!). */
263         if (treasure == PYRAMID && (game.loc == objects[PYRAMID].plac ||
264                                     game.loc == objects[EMERALD].plac)) {
265             continue;
266         }
267         if (TOTING(treasure) ||
268             HERE(treasure))
269             ++snarfed;
270         if (TOTING(treasure)) {
271             movechest = true;
272             robplayer = true;
273         }
274     }
275     /* Force chest placement before player finds last treasure */
276     if (game.tally == 1 && snarfed == 0 && game.place[CHEST] == LOC_NOWHERE && HERE(LAMP) && game.prop[LAMP] == LAMP_BRIGHT) {
277         rspeak(PIRATE_SPOTTED);
278         movechest = true;
279     }
280     /* Do things in this order (chest move before robbery) so chest is listed
281      * last at the maze location. */
282     if (movechest) {
283         move(CHEST, game.chloc);
284         move(MESSAG, game.chloc2);
285         game.dloc[PIRATE] = game.chloc;
286         game.odloc[PIRATE] = game.chloc;
287         game.dseen[PIRATE] = false;
288     } else {
289         /* You might get a hint of the pirate's presence even if the
290          * chest doesn't move... */
291         if (game.odloc[PIRATE] != game.dloc[PIRATE] && PCT(20))
292             rspeak(PIRATE_RUSTLES);
293     }
294     if (robplayer) {
295         rspeak(PIRATE_POUNCES);
296         for (int treasure = 1; treasure <= NOBJECTS; treasure++) {
297             if (!objects[treasure].is_treasure)
298                 continue;
299             if (!(treasure == PYRAMID && (game.loc == objects[PYRAMID].plac ||
300                                           game.loc == objects[EMERALD].plac))) {
301                 if (AT(treasure) && game.fixed[treasure] == IS_FREE)
302                     carry(treasure, game.loc);
303                 if (TOTING(treasure))
304                     drop(treasure, game.chloc);
305             }
306         }
307     }
308
309     return true;
310 }
311
312 static bool dwarfmove(void)
313 /* Dwarves move.  Return true if player survives, false if he dies. */
314 {
315     int kk, stick, attack;
316     long tk[21];
317
318     /*  Dwarf stuff.  See earlier comments for description of
319      *  variables.  Remember sixth dwarf is pirate and is thus
320      *  very different except for motion rules. */
321
322     /*  First off, don't let the dwarves follow him into a pit or
323      *  a wall.  Activate the whole mess the first time he gets as
324      *  far as the hall of mists (loc 15).  If game.newloc is
325      *  forbidden to pirate (in particular, if it's beyond the
326      *  troll bridge), bypass dwarf stuff.  That way pirate can't
327      *  steal return toll, and dwarves can't meet the bear.  Also
328      *  means dwarves won't follow him into dead end in maze, but
329      *  c'est la vie.  They'll wait for him outside the dead
330      *  end. */
331     if (game.loc == LOC_NOWHERE ||
332         FORCED(game.loc) ||
333         CNDBIT(game.newloc, COND_NOARRR))
334         return true;
335
336     /* Dwarf activity level ratchets up */
337     if (game.dflag == 0) {
338         if (INDEEP(game.loc))
339             game.dflag = 1;
340         return true;
341     }
342
343     /*  When we encounter the first dwarf, we kill 0, 1, or 2 of
344      *  the 5 dwarves.  If any of the survivors is at loc,
345      *  replace him with the alternate. */
346     if (game.dflag == 1) {
347         if (!INDEEP(game.loc) ||
348             (PCT(95) && (!CNDBIT(game.loc, COND_NOBACK) ||
349                          PCT(85))))
350             return true;
351         game.dflag = 2;
352         for (int i = 1; i <= 2; i++) {
353             int j = 1 + randrange(NDWARVES - 1);
354             if (PCT(50))
355                 game.dloc[j] = 0;
356         }
357
358         /* Alternate initial loc for dwarf, in case one of them
359         *  starts out on top of the adventurer. */
360         for (int i = 1; i <= NDWARVES - 1; i++) {
361             if (game.dloc[i] == game.loc)
362                 game.dloc[i] = DALTLC; //
363             game.odloc[i] = game.dloc[i];
364         }
365         rspeak(DWARF_RAN);
366         drop(AXE, game.loc);
367         return true;
368     }
369
370     /*  Things are in full swing.  Move each dwarf at random,
371      *  except if he's seen us he sticks with us.  Dwarves stay
372      *  deep inside.  If wandering at random, they don't back up
373      *  unless there's no alternative.  If they don't have to
374      *  move, they attack.  And, of course, dead dwarves don't do
375      *  much of anything. */
376     game.dtotal = 0;
377     attack = 0;
378     stick = 0;
379     for (int i = 1; i <= NDWARVES; i++) {
380         if (game.dloc[i] == 0)
381             continue;
382         /*  Fill tk array with all the places this dwarf might go. */
383         unsigned int j = 1;
384         kk = tkey[game.dloc[i]];
385         if (kk != 0)
386             do {
387                 enum desttype_t desttype = travel[kk].desttype;
388                 game.newloc = travel[kk].destval;
389                 /* Have we avoided a dwarf encounter? */
390                 if (desttype != dest_goto)
391                     continue;
392                 else if (!INDEEP(game.newloc))
393                     continue;
394                 else if (game.newloc == game.odloc[i])
395                     continue;
396                 else if (j > 1 && game.newloc == tk[j - 1])
397                     continue;
398                 else if (j >= DIM(tk) - 1)
399                     continue;
400                 else if (game.newloc == game.dloc[i])
401                     continue;
402                 else if (FORCED(game.newloc))
403                     continue;
404                 else if (i == PIRATE && CNDBIT(game.newloc, COND_NOARRR))
405                     continue;
406                 else if (travel[kk].nodwarves)
407                     continue;
408                 tk[j++] = game.newloc;
409             } while
410             (!travel[kk++].stop);
411         tk[j] = game.odloc[i];
412         if (j >= 2)
413             --j;
414         j = 1 + randrange(j);
415         game.odloc[i] = game.dloc[i];
416         game.dloc[i] = tk[j];
417         game.dseen[i] = (game.dseen[i] && INDEEP(game.loc)) ||
418                         (game.dloc[i] == game.loc ||
419                          game.odloc[i] == game.loc);
420         if (!game.dseen[i])
421             continue;
422         game.dloc[i] = game.loc;
423         if (spotted_by_pirate(i))
424             continue;
425         /* This threatening little dwarf is in the room with him! */
426         ++game.dtotal;
427         if (game.odloc[i] == game.dloc[i]) {
428             ++attack;
429             if (game.knfloc >= 0)
430                 game.knfloc = game.loc;
431             if (randrange(1000) < 95 * (game.dflag - 2))
432                 ++stick;
433         }
434     }
435
436     /*  Now we know what's happening.  Let's tell the poor sucker about it.
437      *  Note that various of the "knife" messages must have specific relative
438      *  positions in the rspeak database. */
439     if (game.dtotal == 0)
440         return true;
441     rspeak(game.dtotal == 1 ? DWARF_SINGLE : DWARF_PACK, game.dtotal);
442     if (attack == 0)
443         return true;
444     if (game.dflag == 2)
445         game.dflag = 3;
446     if (attack > 1) {
447         rspeak(THROWN_KNIVES, attack);
448         rspeak(stick > 1 ? MULTIPLE_HITS : (stick == 1 ? ONE_HIT : NONE_HIT), stick);
449     } else {
450         rspeak(KNIFE_THROWN);
451         rspeak(MISSES_YOU);
452     }
453     if (stick == 0)
454         return true;
455     game.oldlc2 = game.loc;
456     return false;
457 }
458
459 /*  "You're dead, Jim."
460  *
461  *  If the current loc is zero, it means the clown got himself killed.
462  *  We'll allow this maxdie times.  NDEATHS is automatically set based
463  *  on the number of snide messages available.  Each death results in
464  *  a message (obituaries[n]) which offers reincarnation; if accepted,
465  *  this results in message obituaries[0], obituaries[2], etc.  The
466  *  last time, if he wants another chance, he gets a snide remark as
467  *  we exit.  When reincarnated, all objects being carried get dropped
468  *  at game.oldlc2 (presumably the last place prior to being killed)
469  *  without change of props.  The loop runs backwards to assure that
470  *  the bird is dropped before the cage.  (This kluge could be changed
471  *  once we're sure all references to bird and cage are done by
472  *  keywords.)  The lamp is a special case (it wouldn't do to leave it
473  *  in the cave). It is turned off and left outside the building (only
474  *  if he was carrying it, of course).  He himself is left inside the
475  *  building (and heaven help him if he tries to xyzzy back into the
476  *  cave without the lamp!).  game.oldloc is zapped so he can't just
477  *  "retreat". */
478
479 static void croak(void)
480 /*  Okay, he's dead.  Let's get on with it. */
481 {
482     const char* query = obituaries[game.numdie].query;
483     const char* yes_response = obituaries[game.numdie].yes_response;
484     ++game.numdie;
485     if (game.closng) {
486         /*  He died during closing time.  No resurrection.  Tally up a
487          *  death and exit. */
488         rspeak(DEATH_CLOSING);
489         terminate(endgame);
490     } else if (game.numdie == NDEATHS ||
491                !yes(query, yes_response, arbitrary_messages[OK_MAN]))
492         terminate(endgame);
493     else {
494         game.place[WATER] = game.place[OIL] = LOC_NOWHERE;
495         if (TOTING(LAMP))
496             game.prop[LAMP] = LAMP_DARK;
497         for (int j = 1; j <= NOBJECTS; j++) {
498             int i = NOBJECTS + 1 - j;
499             if (TOTING(i)) {
500                 /* Always leave lamp where it's accessible aboveground */
501                 drop(i, (i == LAMP) ? LOC_START : game.oldlc2);
502             }
503         }
504         game.oldloc = game.loc = game.newloc = LOC_BUILDING;
505     }
506 }
507
508 static bool traveleq(long a, long b)
509 /* Are two travel entries equal for purposes of skip after failed condition? */
510 {
511     return (travel[a].condtype == travel[b].condtype)
512            && (travel[a].condarg1 == travel[b].condarg1)
513            && (travel[a].condarg2 == travel[b].condarg2)
514            && (travel[a].desttype == travel[b].desttype)
515            && (travel[a].destval == travel[b].destval);
516 }
517
518 /*  Given the current location in "game.loc", and a motion verb number in
519  *  "motion", put the new location in "game.newloc".  The current loc is saved
520  *  in "game.oldloc" in case he wants to retreat.  The current
521  *  game.oldloc is saved in game.oldlc2, in case he dies.  (if he
522  *  does, game.newloc will be limbo, and game.oldloc will be what killed
523  *  him, so we need game.oldlc2, which is the last place he was
524  *  safe.) */
525
526 static void playermove( int motion)
527 {
528     int scratchloc, travel_entry = tkey[game.loc];
529     game.newloc = game.loc;
530     if (travel_entry == 0)
531         BUG(LOCATION_HAS_NO_TRAVEL_ENTRIES); // LCOV_EXCL_LINE
532     if (motion == NUL)
533         return;
534     else if (motion == BACK) {
535         /*  Handle "go back".  Look for verb which goes from game.loc to
536          *  game.oldloc, or to game.oldlc2 If game.oldloc has forced-motion.
537          *  te_tmp saves entry -> forced loc -> previous loc. */
538         motion = game.oldloc;
539         if (FORCED(motion))
540             motion = game.oldlc2;
541         game.oldlc2 = game.oldloc;
542         game.oldloc = game.loc;
543         int spk = 0;
544         if (motion == game.loc)
545             spk = FORGOT_PATH;
546         if (CNDBIT(game.loc, COND_NOBACK))
547             spk = TWIST_TURN;
548         if (spk == 0) {
549             int te_tmp = 0;
550             for (;;) {
551                 enum desttype_t desttype = travel[travel_entry].desttype;
552                 scratchloc = travel[travel_entry].destval;
553                 if (desttype != dest_goto || scratchloc != motion) {
554                     if (desttype == dest_goto) {
555                         if (FORCED(scratchloc) && travel[tkey[scratchloc]].destval == motion)
556                             te_tmp = travel_entry;
557                     }
558                     if (!travel[travel_entry].stop) {
559                         ++travel_entry; /* go to next travel entry for this location */
560                         continue;
561                     }
562                     /* we've reached the end of travel entries for game.loc */
563                     travel_entry = te_tmp;
564                     if (travel_entry == 0) {
565                         rspeak(NOT_CONNECTED);
566                         return;
567                     }
568                 }
569
570                 motion = travel[travel_entry].motion;
571                 travel_entry = tkey[game.loc];
572                 break; /* fall through to ordinary travel */
573             }
574         } else {
575             rspeak(spk);
576             return;
577         }
578     } else if (motion == LOOK) {
579         /*  Look.  Can't give more detail.  Pretend it wasn't dark
580          *  (though it may now be dark) so he won't fall into a
581          *  pit while staring into the gloom. */
582         if (game.detail < 3)
583             rspeak(NO_MORE_DETAIL);
584         ++game.detail;
585         game.wzdark = false;
586         game.abbrev[game.loc] = 0;
587         return;
588     } else if (motion == CAVE) {
589         /*  Cave.  Different messages depending on whether above ground. */
590         rspeak((OUTSID(game.loc) && game.loc != LOC_GRATE) ? FOLLOW_STREAM : NEED_DETAIL);
591         return;
592     } else {
593         /* none of the specials */
594         game.oldlc2 = game.oldloc;
595         game.oldloc = game.loc;
596     }
597
598     /* Look for a way to fulfil the motion verb passed in - travel_entry indexes
599      * the beginning of the motion entries for here (game.loc). */
600     for (;;) {
601         if (T_TERMINATE(travel[travel_entry]) ||
602             travel[travel_entry].motion == motion)
603             break;
604         if (travel[travel_entry].stop) {
605             /*  Couldn't find an entry matching the motion word passed
606              *  in.  Various messages depending on word given. */
607             switch (motion) {
608             case EAST:
609             case WEST:
610             case SOUTH:
611             case NORTH:
612             case NE:
613             case NW:
614             case SW:
615             case SE:
616                 rspeak(BAD_DIRECTION);
617                 break;
618             case UP:
619             case DOWN:
620                 rspeak(BAD_DIRECTION);
621                 break;
622             case FORWARD:
623             case LEFT:
624             case RIGHT:
625                 rspeak(UNSURE_FACING);
626                 break;
627             case OUTSIDE:
628             case INSIDE:
629                 rspeak(NO_INOUT_HERE);
630                 break;
631             case XYZZY:
632             case PLUGH:
633                 rspeak(NOTHING_HAPPENS);
634                 break;
635             case CRAWL:
636                 rspeak(WHICH_WAY);
637                 break;
638             default:
639                 rspeak(CANT_APPLY);
640             }
641             return;
642         }
643         ++travel_entry;
644     }
645
646     /* (ESR) We've found a destination that goes with the motion verb.
647      * Next we need to check any conditional(s) on this destination, and
648      * possibly on following entries. */
649     /* FIXME: Magic numbers related to move opcodes */
650     do {
651         for (;;) { /* L12 loop */
652             for (;;) {
653                 enum condtype_t condtype = travel[travel_entry].condtype;
654                 long condarg1 = travel[travel_entry].condarg1;
655                 long condarg2 = travel[travel_entry].condarg2;
656                 if (condtype < cond_not) {
657                     /* YAML N and [pct N] conditionals */
658                     if (condtype == cond_goto || condtype == cond_pct) {
659                         if (condarg1 == 0 ||
660                             PCT(condarg1))
661                             break;
662                         /* else fall through */
663                     }
664                     /* YAML [with OBJ] clause */
665                     else if (TOTING(condarg1) ||
666                              (condtype == cond_with && AT(condarg1)))
667                         break;
668                     /* else fall through to check [not OBJ STATE] */
669                 } else if (game.prop[condarg1] != condarg2)
670                     break;
671
672                 /* We arrive here on conditional failure.
673                  * Skip to next non-matching destination */
674                 long te_tmp = travel_entry;
675                 do {
676                     if (travel[te_tmp].stop)
677                         BUG(CONDITIONAL_TRAVEL_ENTRY_WITH_NO_ALTERATION); // LCOV_EXCL_LINE
678                     ++te_tmp;
679                 } while
680                 (traveleq(travel_entry, te_tmp));
681                 travel_entry = te_tmp;
682             }
683
684             /* Found an eligible rule, now execute it */
685             enum desttype_t desttype = travel[travel_entry].desttype;
686             game.newloc = travel[travel_entry].destval;
687             if (desttype == dest_goto)
688                 return;
689
690             if (desttype == dest_speak) {
691                 /* Execute a speak rule */
692                 rspeak(game.newloc);
693                 game.newloc = game.loc;
694                 return;
695             } else {
696                 switch (game.newloc) {
697                 case 1:
698                     /* Special travel 1.  Plover-alcove passage.  Can carry only
699                      * emerald.  Note: travel table must include "useless"
700                      * entries going through passage, which can never be used
701                      * for actual motion, but can be spotted by "go back". */
702                     game.newloc = (game.loc == LOC_PLOVER)
703                                   ? LOC_ALCOVE
704                                   : LOC_PLOVER;
705                     if (game.holdng > 1 ||
706                         (game.holdng == 1 && !TOTING(EMERALD))) {
707                         game.newloc = game.loc;
708                         rspeak(MUST_DROP);
709                     }
710                     return;
711                 case 2:
712                     /* Special travel 2.  Plover transport.  Drop the
713                      * emerald (only use special travel if toting
714                      * it), so he's forced to use the plover-passage
715                      * to get it out.  Having dropped it, go back and
716                      * pretend he wasn't carrying it after all. */
717                     drop(EMERALD, game.loc);
718                     int te_tmp = travel_entry;
719                     do {
720                         if (travel[te_tmp].stop)
721                             BUG(CONDITIONAL_TRAVEL_ENTRY_WITH_NO_ALTERATION); // LCOV_EXCL_LINE
722                         ++te_tmp;
723                     } while
724                     (traveleq(travel_entry, te_tmp));
725                     travel_entry = te_tmp;
726                     continue; /* goto L12 */
727                 case 3:
728                     /* Special travel 3.  Troll bridge.  Must be done
729                      * only as special motion so that dwarves won't
730                      * wander across and encounter the bear.  (They
731                      * won't follow the player there because that
732                      * region is forbidden to the pirate.)  If
733                      * game.prop(TROLL)=1, he's crossed since paying,
734                      * so step out and block him.  (standard travel
735                      * entries check for game.prop(TROLL)=0.)  Special
736                      * stuff for bear. */
737                     if (game.prop[TROLL] == TROLL_PAIDONCE) {
738                         pspeak(TROLL, look, TROLL_PAIDONCE, true);
739                         game.prop[TROLL] = TROLL_UNPAID;
740                         move(TROLL2, LOC_NOWHERE);
741                         move(TROLL2 + NOBJECTS, IS_FREE);
742                         move(TROLL, objects[TROLL].plac);
743                         move(TROLL + NOBJECTS, objects[TROLL].fixd);
744                         juggle(CHASM);
745                         game.newloc = game.loc;
746                         return;
747                     } else {
748                         game.newloc = objects[TROLL].plac + objects[TROLL].fixd - game.loc;
749                         if (game.prop[TROLL] == TROLL_UNPAID)
750                             game.prop[TROLL] = TROLL_PAIDONCE;
751                         if (!TOTING(BEAR))
752                             return;
753                         state_change(CHASM, BRIDGE_WRECKED);
754                         game.prop[TROLL] = TROLL_GONE;
755                         drop(BEAR, game.newloc);
756                         game.fixed[BEAR] = IS_FIXED;
757                         game.prop[BEAR] = BEAR_DEAD;
758                         game.oldlc2 = game.newloc;
759                         croak();
760                         return;
761                     }
762                 default:
763                     BUG(SPECIAL_TRAVEL_500_GT_L_GT_300_EXCEEDS_GOTO_LIST); // LCOV_EXCL_LINE
764                 }
765             }
766             break; /* Leave L12 loop */
767         }
768     } while
769     (false);
770 }
771
772 static bool closecheck(void)
773 /*  Handle the closing of the cave.  The cave closes "clock1" turns
774  *  after the last treasure has been located (including the pirate's
775  *  chest, which may of course never show up).  Note that the
776  *  treasures need not have been taken yet, just located.  Hence
777  *  clock1 must be large enough to get out of the cave (it only ticks
778  *  while inside the cave).  When it hits zero, we branch to 10000 to
779  *  start closing the cave, and then sit back and wait for him to try
780  *  to get out.  If he doesn't within clock2 turns, we close the cave;
781  *  if he does try, we assume he panics, and give him a few additional
782  *  turns to get frantic before we close.  When clock2 hits zero, we
783  *  transport him into the final puzzle.  Note that the puzzle depends
784  *  upon all sorts of random things.  For instance, there must be no
785  *  water or oil, since there are beanstalks which we don't want to be
786  *  able to water, since the code can't handle it.  Also, we can have
787  *  no keys, since there is a grate (having moved the fixed object!)
788  *  there separating him from all the treasures.  Most of these
789  *  problems arise from the use of negative prop numbers to suppress
790  *  the object descriptions until he's actually moved the objects. */
791 {
792     /*  Don't tick game.clock1 unless well into cave (and not at Y2). */
793     if (game.tally == 0 && INDEEP(game.loc) && game.loc != LOC_Y2)
794         --game.clock1;
795
796     /*  When the first warning comes, we lock the grate, destroy
797      *  the bridge, kill all the dwarves (and the pirate), remove
798      *  the troll and bear (unless dead), and set "closng" to
799      *  true.  Leave the dragon; too much trouble to move it.
800      *  from now until clock2 runs out, he cannot unlock the
801      *  grate, move to any location outside the cave, or create
802      *  the bridge.  Nor can he be resurrected if he dies.  Note
803      *  that the snake is already gone, since he got to the
804      *  treasure accessible only via the hall of the mountain
805      *  king. Also, he's been in giant room (to get eggs), so we
806      *  can refer to it.  Also also, he's gotten the pearl, so we
807      *  know the bivalve is an oyster.  *And*, the dwarves must
808      *  have been activated, since we've found chest. */
809     if (game.clock1 == 0) {
810         game.prop[GRATE] = GRATE_CLOSED;
811         game.prop[FISSURE] = UNBRIDGED;
812         for (int i = 1; i <= NDWARVES; i++) {
813             game.dseen[i] = false;
814             game.dloc[i] = LOC_NOWHERE;
815         }
816         move(TROLL, LOC_NOWHERE);
817         move(TROLL + NOBJECTS, IS_FREE);
818         move(TROLL2, objects[TROLL].plac);
819         move(TROLL2 + NOBJECTS, objects[TROLL].fixd);
820         juggle(CHASM);
821         if (game.prop[BEAR] != BEAR_DEAD)
822             DESTROY(BEAR);
823         game.prop[CHAIN] = CHAIN_HEAP;
824         game.fixed[CHAIN] = IS_FREE;
825         game.prop[AXE] = AXE_HERE;
826         game.fixed[AXE] = IS_FREE;
827         rspeak(CAVE_CLOSING);
828         game.clock1 = -1;
829         game.closng = true;
830         return true;
831     } else if (game.clock1 < 0)
832         --game.clock2;
833     if (game.clock2 == 0) {
834         /*  Once he's panicked, and clock2 has run out, we come here
835          *  to set up the storage room.  The room has two locs,
836          *  hardwired as LOC_NE and LOC_SW.  At the ne end, we
837          *  place empty bottles, a nursery of plants, a bed of
838          *  oysters, a pile of lamps, rods with stars, sleeping
839          *  dwarves, and him.  At the sw end we place grate over
840          *  treasures, snake pit, covey of caged birds, more rods, and
841          *  pillows.  A mirror stretches across one wall.  Many of the
842          *  objects come from known locations and/or states (e.g. the
843          *  snake is known to have been destroyed and needn't be
844          *  carried away from its old "place"), making the various
845          *  objects be handled differently.  We also drop all other
846          *  objects he might be carrying (lest he have some which
847          *  could cause trouble, such as the keys).  We describe the
848          *  flash of light and trundle back. */
849         game.prop[BOTTLE] = put(BOTTLE, LOC_NE, EMPTY_BOTTLE);
850         game.prop[PLANT] = put(PLANT, LOC_NE, PLANT_THIRSTY);
851         game.prop[OYSTER] = put(OYSTER, LOC_NE, STATE_FOUND);
852         game.prop[LAMP] = put(LAMP, LOC_NE, LAMP_DARK);
853         game.prop[ROD] = put(ROD, LOC_NE, STATE_FOUND);
854         game.prop[DWARF] = put(DWARF, LOC_NE, 0);
855         game.loc = LOC_NE;
856         game.oldloc = LOC_NE;
857         game.newloc = LOC_NE;
858         /*  Leave the grate with normal (non-negative) property.
859          *  Reuse sign. */
860         put(GRATE, LOC_SW, 0);
861         put(SIGN, LOC_SW, 0);
862         game.prop[SIGN] = ENDGAME_SIGN;
863         game.prop[SNAKE] = put(SNAKE, LOC_SW, SNAKE_CHASED);
864         game.prop[BIRD] = put(BIRD, LOC_SW, BIRD_CAGED);
865         game.prop[CAGE] = put(CAGE, LOC_SW, STATE_FOUND);
866         game.prop[ROD2] = put(ROD2, LOC_SW, STATE_FOUND);
867         game.prop[PILLOW] = put(PILLOW, LOC_SW, STATE_FOUND);
868
869         game.prop[MIRROR] = put(MIRROR, LOC_NE, STATE_FOUND);
870         game.fixed[MIRROR] = LOC_SW;
871
872         for (int i = 1; i <= NOBJECTS; i++) {
873             if (TOTING(i))
874                 DESTROY(i);
875         }
876
877         rspeak(CAVE_CLOSED);
878         game.closed = true;
879         return true;
880     }
881
882     return false;
883 }
884
885 static void lampcheck(void)
886 /* Check game limit and lamp timers */
887 {
888     if (game.prop[LAMP] == LAMP_BRIGHT)
889         --game.limit;
890
891     /*  Another way we can force an end to things is by having the
892      *  lamp give out.  When it gets close, we come here to warn him.
893      *  First following arm checks if the lamp and fresh batteries are
894      *  here, in which case we replace the batteries and continue.
895      *  Second is for other cases of lamp dying.  Eve after it goes
896      *  out, he can explore outside for a while if desired. */
897     if (game.limit <= WARNTIME) {
898         if (HERE(BATTERY) && game.prop[BATTERY] == FRESH_BATTERIES && HERE(LAMP)) {
899             rspeak(REPLACE_BATTERIES);
900             game.prop[BATTERY] = DEAD_BATTERIES;
901             if (TOTING(BATTERY))
902                 drop(BATTERY, game.loc);
903             game.limit += BATTERYLIFE;
904             game.lmwarn = false;
905         } else if (!game.lmwarn && HERE(LAMP)) {
906             game.lmwarn = true;
907             if (game.prop[BATTERY] == DEAD_BATTERIES)
908                 rspeak(MISSING_BATTERIES);
909             else if (game.place[BATTERY] == LOC_NOWHERE)
910                 rspeak(LAMP_DIM);
911             else
912                 rspeak(GET_BATTERIES);
913         }
914     }
915     if (game.limit == 0) {
916         game.limit = -1;
917         game.prop[LAMP] = LAMP_DARK;
918         if (HERE(LAMP))
919             rspeak(LAMP_OUT);
920     }
921 }
922
923 static void listobjects(void)
924 /*  Print out descriptions of objects at this location.  If
925  *  not closing and property value is negative, tally off
926  *  another treasure.  Rug is special case; once seen, its
927  *  game.prop is RUG_DRAGON (dragon on it) till dragon is killed.
928  *  Similarly for chain; game.prop is initially CHAINING_BEAR (locked to
929  *  bear).  These hacks are because game.prop=0 is needed to
930  *  get full score. */
931 {
932     if (!DARK(game.loc)) {
933         ++game.abbrev[game.loc];
934         for (int i = game.atloc[game.loc]; i != 0; i = game.link[i]) {
935             long obj = i;
936             if (obj > NOBJECTS)
937                 obj = obj - NOBJECTS;
938             if (obj == STEPS && TOTING(NUGGET))
939                 continue;
940             if (game.prop[obj] < 0) {
941                 if (game.closed)
942                     continue;
943                 game.prop[obj] = STATE_FOUND;
944                 if (obj == RUG)
945                     game.prop[RUG] = RUG_DRAGON;
946                 if (obj == CHAIN)
947                     game.prop[CHAIN] = CHAINING_BEAR;
948                 --game.tally;
949                 /*  Note: There used to be a test here to see whether the
950                  *  player had blown it so badly that he could never ever see
951                  *  the remaining treasures, and if so the lamp was zapped to
952                  *  35 turns.  But the tests were too simple-minded; things
953                  *  like killing the bird before the snake was gone (can never
954                  *  see jewelry), and doing it "right" was hopeless.  E.G.,
955                  *  could cross troll bridge several times, using up all
956                  *  available treasures, breaking vase, using coins to buy
957                  *  batteries, etc., and eventually never be able to get
958                  *  across again.  If bottle were left on far side, could then
959                  *  never get eggs or trident, and the effects propagate.  So
960                  *  the whole thing was flushed.  anyone who makes such a
961                  *  gross blunder isn't likely to find everything else anyway
962                  *  (so goes the rationalisation). */
963             }
964             int kk = game.prop[obj];
965             if (obj == STEPS)
966                 kk = (game.loc == game.fixed[STEPS])
967                      ? STEPS_UP
968                      : STEPS_DOWN;
969             pspeak(obj, look, kk, true);
970         }
971     }
972 }
973
974 static bool do_command()
975 /* Get and execute a command */
976 {
977     long kmod, defn;
978     static long igo = 0;
979     static struct command_t command;
980     command.verb = 0;
981
982     /*  Can't leave cave once it's closing (except by main office). */
983     if (OUTSID(game.newloc) && game.newloc != 0 && game.closng) {
984         rspeak(EXIT_CLOSED);
985         game.newloc = game.loc;
986         if (!game.panic)
987             game.clock2 = PANICTIME;
988         game.panic = true;
989     }
990
991     /*  See if a dwarf has seen him and has come from where he
992      *  wants to go.  If so, the dwarf's blocking his way.  If
993      *  coming from place forbidden to pirate (dwarves rooted in
994      *  place) let him get out (and attacked). */
995     if (game.newloc != game.loc && !FORCED(game.loc) && !CNDBIT(game.loc, COND_NOARRR)) {
996         for (size_t i = 1; i <= NDWARVES - 1; i++) {
997             if (game.odloc[i] == game.newloc && game.dseen[i]) {
998                 game.newloc = game.loc;
999                 rspeak(DWARF_BLOCK);
1000                 break;
1001             }
1002         }
1003     }
1004     game.loc = game.newloc;
1005
1006     if (!dwarfmove())
1007         croak();
1008
1009     /*  Describe the current location and (maybe) get next command. */
1010
1011     for (;;) {
1012         if (game.loc == 0)
1013             croak();
1014         const char* msg = locations[game.loc].description.small;
1015         if (MOD(game.abbrev[game.loc], game.abbnum) == 0 ||
1016             msg == 0)
1017             msg = locations[game.loc].description.big;
1018         if (!FORCED(game.loc) && DARK(game.loc)) {
1019             /*  The easiest way to get killed is to fall into a pit in
1020              *  pitch darkness. */
1021             if (game.wzdark && PCT(35)) {
1022                 rspeak(PIT_FALL);
1023                 game.oldlc2 = game.loc;
1024                 croak();
1025                 continue;       /* back to top of main interpreter loop */
1026             }
1027             msg = arbitrary_messages[PITCH_DARK];
1028         }
1029         if (TOTING(BEAR))
1030             rspeak(TAME_BEAR);
1031         speak(msg);
1032         if (FORCED(game.loc)) {
1033             playermove(HERE);
1034             return true;
1035         }
1036         if (game.loc == LOC_Y2 && PCT(25) && !game.closng)
1037             rspeak(SAYS_PLUGH);
1038
1039         listobjects();
1040
1041 L2012:
1042         game.oldobj = command.obj;
1043
1044 L2600:
1045         checkhints();
1046
1047         /*  If closing time, check for any objects being toted with
1048          *  game.prop < 0 and stash them.  This way objects won't be
1049          *  described until they've been picked up and put down
1050          *  separate from their respective piles. */
1051         if (game.closed) {
1052             if (game.prop[OYSTER] < 0 && TOTING(OYSTER))
1053                 pspeak(OYSTER, look, 1, true);
1054             for (size_t i = 1; i <= NOBJECTS; i++) {
1055                 if (TOTING(i) && game.prop[i] < 0)
1056                     game.prop[i] = STASHED(i);
1057             }
1058         }
1059         game.wzdark = DARK(game.loc);
1060         if (game.knfloc > 0 && game.knfloc != game.loc)
1061             game.knfloc = 0;
1062
1063         /* This is where we get a new command from the user */
1064         char* input;
1065         char inputbuf[LINESIZE];
1066
1067         for (;;) {
1068             input = get_input();
1069             if (input == NULL)
1070                 return (false);
1071             if (word_count(input) > 2) {
1072                 rspeak(TWO_WORDS);
1073                 free(input);
1074                 continue;
1075             }
1076             if (strcmp(input, "") != 0)
1077                 break;
1078             free(input);
1079         }
1080
1081         strncpy(inputbuf, input, LINESIZE - 1);
1082         free(input);
1083
1084         tokenize(inputbuf, &command);
1085
1086         char word1[TOKLEN + 1];
1087         char word2[TOKLEN + 1];
1088         packed_to_token(command.wd1, word1);
1089         packed_to_token(command.wd2, word2);
1090         command.id1 = get_vocab_id(word1);
1091         command.id2 = get_vocab_id(word2);
1092
1093 L2607:
1094         ++game.turns;
1095
1096         /* If a turn threshold has been met, apply penalties and tell
1097          * the player about it. */
1098         for (int i = 0; i < NTHRESHOLDS; ++i) {
1099             if (game.turns == turn_thresholds[i].threshold + 1) {
1100                 game.trnluz += turn_thresholds[i].point_loss;
1101                 speak(turn_thresholds[i].message);
1102             }
1103         }
1104
1105         if (command.verb == SAY && command.id2 != WORD_NOT_FOUND && command.id2 != WORD_EMPTY)
1106             command.verb = 0;
1107         if (command.verb == SAY) {
1108             command.part = transitive;
1109             goto Laction;
1110         }
1111         if (closecheck()) {
1112             if (game.closed)
1113                 return true;
1114         } else
1115             lampcheck();
1116
1117         if (command.id1 == ENTER && (command.id2 == STREAM ||
1118                                      command.id2 == PROMOTE_WORD(WATER))) {
1119             if (LIQLOC(game.loc) == WATER) {
1120                 rspeak(FEET_WET);
1121             } else {
1122                 rspeak(WHERE_QUERY);
1123             }
1124             goto L2012;
1125         }
1126         if (command.id1 == ENTER && command.id2 != WORD_NOT_FOUND && command.id2 != WORD_EMPTY) {
1127             /* command.wd1 = command.wd2; */
1128             /* wordclear(&command.wd2); */
1129             command.id1 = command.id2;
1130             command.id2 = WORD_EMPTY;
1131         } else {
1132             /* FIXME: Magic numbers related to vocabulary */
1133             if (!((command.id1 != PROMOTE_WORD(WATER) && command.id1 != PROMOTE_WORD(OIL)) ||
1134                   (command.id2 != PROMOTE_WORD(PLANT) && command.id2 != PROMOTE_WORD(DOOR)))) {
1135                 if (AT(DEMOTE_WORD(command.id2)))
1136                     command.wd2 = token_to_packed("POUR");
1137             }
1138             if (command.id1 == PROMOTE_WORD(CAGE) && command.id2 == PROMOTE_WORD(BIRD) && HERE(CAGE) && HERE(BIRD))
1139                 command.wd1 = token_to_packed("CATCH");
1140         }
1141 L2620:
1142         if (wordeq(command.wd1, token_to_packed("WEST"))) {
1143             ++game.iwest;
1144             if (game.iwest == 10)
1145                 rspeak(W_IS_WEST);
1146         }
1147         if (wordeq(command.wd1, token_to_packed("GO")) && !wordempty(command.wd2)) {
1148             if (++igo == 10)
1149                 rspeak(GO_UNNEEDED);
1150         }
1151 Lookup:
1152         packed_to_token(command.wd1, word1);
1153         defn = get_vocab_id(word1);
1154         if (defn == WORD_NOT_FOUND) {
1155             /* Gee, I don't understand. */
1156             if (fallback_handler(inputbuf))
1157                 continue;
1158             sspeak(DONT_KNOW, command.raw1);
1159             goto L2600;
1160         }
1161         /* FIXME: magic numbers related to vocabulary */
1162         kmod = MOD(defn, 1000);
1163         switch (defn / 1000) {
1164         case 0:
1165             playermove(kmod);
1166             return true;
1167         case 1:
1168             command.part = unknown;
1169             command.obj = kmod;
1170             break;
1171         case 2:
1172             command.part = intransitive;
1173             command.verb = kmod;
1174             break;
1175         case 3:
1176             speak(specials[kmod].message);
1177             goto L2012;
1178         default:
1179             BUG(VOCABULARY_TYPE_N_OVER_1000_NOT_BETWEEN_0_AND_3); // LCOV_EXCL_LINE
1180         }
1181
1182 Laction:
1183         switch (action(&command)) {
1184         case GO_TERMINATE:
1185             return true;
1186         case GO_MOVE:
1187             playermove(NUL);
1188             return true;
1189         case GO_TOP:
1190             continue;   /* back to top of main interpreter loop */
1191         case GO_CLEAROBJ:
1192             goto L2012;
1193         case GO_CHECKHINT:
1194             goto L2600;
1195         case GO_CHECKFOO:
1196             goto L2607;
1197         case GO_LOOKUP:
1198             goto Lookup;
1199         case GO_WORD2:
1200             /* Get second word for analysis. */
1201             command.wd1 = command.wd2;
1202             strcpy(command.raw1, command.raw2);
1203             wordclear(&command.wd2);
1204             command.raw2[0] = '\0';
1205             goto L2620;
1206         case GO_UNKNOWN:
1207             /*  Random intransitive verbs come here.  Clear obj just in case
1208              *  (see attack()). */
1209             command.raw1[0] = toupper(command.raw1[0]);
1210             sspeak(DO_WHAT, command.raw1);
1211             command.obj = 0;
1212             goto L2600;
1213         case GO_DWARFWAKE:
1214             /*  Oh dear, he's disturbed the dwarves. */
1215             rspeak(DWARVES_AWAKEN);
1216             terminate(endgame);
1217         default:
1218             BUG(ACTION_RETURNED_PHASE_CODE_BEYOND_END_OF_SWITCH); // LCOV_EXCL_LINE
1219         }
1220     }
1221 }
1222
1223 /* end */