Don't build with two -std options.
[open-adventure.git] / actions1.c
1 #include <stdlib.h>
2 #include <stdbool.h>
3 #include "misc.h"
4 #include "main.h"
5 #include "share.h"
6 #include "funcs.h"
7 #include "database.h"
8
9 /* This stuff was broken off as part of an effort to get the main program
10  * to compile without running out of memory.  We're called with a number
11  * that says what label the caller wanted to "goto", and we return a
12  * similar label number for the caller to "goto".
13  */
14
15 /*  Analyse a verb.  Remember what it was, go back for object if second word
16  *  unless verb is "say", which snarfs arbitrary second word. */
17
18 int action(FILE *input, long STARTAT) {
19         switch(STARTAT) {
20            case 4000: goto L4000;
21            case 4090: goto L4090;
22            case 5000: goto L5000;
23            }
24         BUG(99);
25
26 L4000:  VERB=K;
27         SPK=ACTSPK[VERB];
28         if(WD2 > 0 && VERB != SAY) return(2800);
29         if(VERB == SAY)OBJ=WD2;
30         if(OBJ > 0) goto L4090;
31
32 /*  Analyse an intransitive verb (ie, no object given yet). */
33
34         switch (VERB-1) {
35                 case 0: goto L8010;     /* CARRY */
36                 case 1: return(8000);   /* DROP */
37                 case 2: return(8000);   /* SAY */
38                 case 3: goto L8040;     /* UNLOC */
39                 case 4: return(2009);   /* NOTHI */
40                 case 5: goto L8040;     /* LOCK */
41                 case 6: goto L8070;     /* LIGHT */
42                 case 7: goto L8080;     /* EXTIN */
43                 case 8: return(8000);   /* WAVE */
44                 case 9: return(8000);   /* CALM */
45                 case 10: return(2011);  /* WALK */
46                 case 11: goto L9120;    /* ATTAC */
47                 case 12: goto L9130;    /* POUR */
48                 case 13: goto L8140;    /* EAT */
49                 case 14: goto L9150;    /* DRINK */
50                 case 15: return(8000);  /* RUB */
51                 case 16: return(8000);  /* TOSS */
52                 case 17: goto L8180;    /* QUIT */
53                 case 18: return(8000);  /* FIND */
54                 case 19: goto L8200;    /* INVEN */
55                 case 20: return(8000);  /* FEED */
56                 case 21: goto L9220;    /* FILL */
57                 case 22: goto L9230;    /* BLAST */
58                 case 23: goto L8240;    /* SCOR */
59                 case 24: goto L8250;    /* FOO */
60                 case 25: goto L8260;    /* BRIEF */
61                 case 26: goto L8270;    /* READ */
62                 case 27: return(8000);  /* BREAK */
63                 case 28: return(8000);  /* WAKE */
64                 case 29: goto L8300;    /* SUSP */
65                 case 30: goto L8310;    /* RESU */
66                 case 31: goto L8320;    /* FLY */
67                 case 32: goto L8330;    /* LISTEN */
68                 case 33: goto L8340;    /* ZZZZ */
69         }
70         BUG(23);
71
72 /*  Analyse a transitive verb. */
73
74 L4090:  switch (VERB-1) {
75                 case 0: goto L9010;     /* CARRY */
76                 case 1: goto L9020;     /* DROP */
77                 case 2: goto L9030;     /* SAY */
78                 case 3: goto L9040;     /* UNLOC */
79                 case 4: return(2009);   /* NOTHI */
80                 case 5: goto L9040;     /* LOCK */
81                 case 6: goto L9070;     /* LIGHT */
82                 case 7: goto L9080;     /* EXTI */
83                 case 8: goto L9090;     /* WAVE */
84                 case 9: return(2011);   /* CALM */
85                 case 10: return(2011);  /* WALK */
86                 case 11: goto L9120;    /* ATTAC */
87                 case 12: goto L9130;    /* POUR */
88                 case 13: goto L9140;    /* EAT */
89                 case 14: goto L9150;    /* DRINK */
90                 case 15: goto L9160;    /* RUB */
91                 case 16: goto L9170;    /* TOSS */
92                 case 17: return(2011);  /* QUIT */
93                 case 18: goto L9190;    /* FIND */
94                 case 19: goto L9190;    /* INVEN */
95                 case 20: goto L9210;    /* FEED */
96                 case 21: goto L9220;    /* FILL */
97                 case 22: goto L9230;    /* BLAST */
98                 case 23: return(2011);  /* SCOR */
99                 case 24: return(2011);  /* FOO */
100                 case 25: return(2011);  /* BRIEF */
101                 case 26: goto L9270;    /* READ */
102                 case 27: goto L9280;    /* BREAK */
103                 case 28: goto L9290;    /* WAKE */
104                 case 29: return(2011);  /* SUSP */
105                 case 30: return(2011);  /* RESU */
106                 case 31: goto L9320;    /* FLY */
107                 case 32: return(2011);  /* LISTEN */
108                 case 33: goto L8340;    /* ZZZZ */
109         }
110         BUG(24);
111
112 /*  Analyse an object word.  See if the thing is here, whether we've got a verb
113  *  yet, and so on.  Object must be here unless verb is "find" or "invent(ory)"
114  *  (and no new verb yet to be analysed).  Water and oil are also funny, since
115  *  they are never actually dropped at any location, but might be here inside
116  *  the bottle or urn or as a feature of the location. */
117
118 L5000:  OBJ=K;
119         if(!HERE(K)) goto L5100;
120 L5010:  if(WD2 > 0) return(2800);
121         if(VERB != 0) goto L4090;
122         SETPRM(1,WD1,WD1X);
123         RSPEAK(255);
124          return(2600);
125
126 L5100:  if(K != GRATE) goto L5110;
127         if(LOC == 1 || LOC == 4 || LOC == 7)K=DPRSSN;
128         if(LOC > 9 && LOC < 15)K=ENTRNC;
129         if(K != GRATE) return(8);
130 L5110:  if(K == DWARF && ATDWRF(LOC) > 0) goto L5010;
131         if((LIQ(0) == K && HERE(BOTTLE)) || K == LIQLOC(LOC)) goto L5010;
132         if(OBJ != OIL || !HERE(URN) || PROP[URN] == 0) goto L5120;
133         OBJ=URN;
134          goto L5010;
135 L5120:  if(OBJ != PLANT || !AT(PLANT2) || PROP[PLANT2] == 0) goto L5130;
136         OBJ=PLANT2;
137          goto L5010;
138 L5130:  if(OBJ != KNIFE || KNFLOC != LOC) goto L5140;
139         KNFLOC= -1;
140         SPK=116;
141          return(2011);
142 L5140:  if(OBJ != ROD || !HERE(ROD2)) goto L5190;
143         OBJ=ROD2;
144          goto L5010;
145 L5190:  if((VERB == FIND || VERB == INVENT) && WD2 <= 0) goto L5010;
146         SETPRM(1,WD1,WD1X);
147         RSPEAK(256);
148          return(2012);
149
150
151
152
153 /*  Routines for performing the various action verbs */
154
155 /*  Statement numbers in this section are 8000 for intransitive verbs, 9000 for
156  *  transitive, plus ten times the verb number.  Many intransitive verbs use the
157  *  transitive code, and some verbs use code for other verbs, as noted below. */
158
159 /*  Carry, no object given yet.  OK if only one object present. */
160
161 L8010:  if(ATLOC[LOC] == 0 || LINK[ATLOC[LOC]] != 0 || ATDWRF(LOC) > 0) return(8000);
162         OBJ=ATLOC[LOC];
163
164 /*  Transitive carry/drop are in separate file. */
165
166 L9010:  return(carry());
167 L9020:  return(discard(false));
168
169 /*  SAY.  Echo WD2 (or WD1 if no WD2 (SAY WHAT?, etc.).)  Magic words override. */
170
171 L9030:  SETPRM(1,WD2,WD2X);
172         if(WD2 <= 0)SETPRM(1,WD1,WD1X);
173         if(WD2 > 0)WD1=WD2;
174         I=VOCAB(WD1,-1);
175         if(I == 62 || I == 65 || I == 71 || I == 2025 || I == 2034) goto L9035;
176         RSPEAK(258);
177          return(2012);
178
179 L9035:  WD2=0;
180         OBJ=0;
181          return(2630);
182
183 /*  Lock, unlock, no object given.  Assume various things if present. */
184
185 L8040:  SPK=28;
186         if(HERE(CLAM))OBJ=CLAM;
187         if(HERE(OYSTER))OBJ=OYSTER;
188         if(AT(DOOR))OBJ=DOOR;
189         if(AT(GRATE))OBJ=GRATE;
190         if(OBJ != 0 && HERE(CHAIN)) return(8000);
191         if(HERE(CHAIN))OBJ=CHAIN;
192         if(OBJ == 0) return(2011);
193
194 /*  Lock, unlock object.  Special stuff for opening clam/oyster and for chain. */
195
196 L9040:  if(OBJ == CLAM || OBJ == OYSTER) goto L9046;
197         if(OBJ == DOOR)SPK=111;
198         if(OBJ == DOOR && PROP[DOOR] == 1)SPK=54;
199         if(OBJ == CAGE)SPK=32;
200         if(OBJ == KEYS)SPK=55;
201         if(OBJ == GRATE || OBJ == CHAIN)SPK=31;
202         if(SPK != 31 || !HERE(KEYS)) return(2011);
203         if(OBJ == CHAIN) goto L9048;
204         if(!CLOSNG) goto L9043;
205         K=130;
206         if(!PANIC)CLOCK2=15;
207         PANIC=true;
208          return(2010);
209
210 L9043:  K=34+PROP[GRATE];
211         PROP[GRATE]=1;
212         if(VERB == LOCK)PROP[GRATE]=0;
213         K=K+2*PROP[GRATE];
214          return(2010);
215
216 /*  Clam/Oyster. */
217 L9046:  K=0;
218         if(OBJ == OYSTER)K=1;
219         SPK=124+K;
220         if(TOTING(OBJ))SPK=120+K;
221         if(!TOTING(TRIDNT))SPK=122+K;
222         if(VERB == LOCK)SPK=61;
223         if(SPK != 124) return(2011);
224         DSTROY(CLAM);
225         DROP(OYSTER,LOC);
226         DROP(PEARL,105);
227          return(2011);
228
229 /*  Chain. */
230 L9048:  if(VERB == LOCK) goto L9049;
231         SPK=171;
232         if(PROP[BEAR] == 0)SPK=41;
233         if(PROP[CHAIN] == 0)SPK=37;
234         if(SPK != 171) return(2011);
235         PROP[CHAIN]=0;
236         FIXED[CHAIN]=0;
237         if(PROP[BEAR] != 3)PROP[BEAR]=2;
238         FIXED[BEAR]=2-PROP[BEAR];
239          return(2011);
240
241 L9049:  SPK=172;
242         if(PROP[CHAIN] != 0)SPK=34;
243         if(LOC != PLAC[CHAIN])SPK=173;
244         if(SPK != 172) return(2011);
245         PROP[CHAIN]=2;
246         if(TOTING(CHAIN))DROP(CHAIN,LOC);
247         FIXED[CHAIN]= -1;
248          return(2011);
249
250 /*  Light.  Applicable only to lamp and urn. */
251
252 L8070:  if(HERE(LAMP) && PROP[LAMP] == 0 && LIMIT >= 0)OBJ=LAMP;
253         if(HERE(URN) && PROP[URN] == 1)OBJ=OBJ*100+URN;
254         if(OBJ == 0 || OBJ > 100) return(8000);
255
256 L9070:  if(OBJ == URN) goto L9073;
257         if(OBJ != LAMP) return(2011);
258         SPK=184;
259         if(LIMIT < 0) return(2011);
260         PROP[LAMP]=1;
261         RSPEAK(39);
262         if(WZDARK) return(2000);
263          return(2012);
264
265 L9073:  SPK=38;
266         if(PROP[URN] == 0) return(2011);
267         SPK=209;
268         PROP[URN]=2;
269          return(2011);
270
271 /*  Extinguish.  Lamp, urn, dragon/volcano (nice try). */
272
273 L8080:  if(HERE(LAMP) && PROP[LAMP] == 1)OBJ=LAMP;
274         if(HERE(URN) && PROP[URN] == 2)OBJ=OBJ*100+URN;
275         if(OBJ == 0 || OBJ > 100) return(8000);
276
277 L9080:  if(OBJ == URN) goto L9083;
278         if(OBJ == LAMP) goto L9086;
279         if(OBJ == DRAGON || OBJ == VOLCAN)SPK=146;
280          return(2011);
281
282 L9083:  PROP[URN]=PROP[URN]/2;
283         SPK=210;
284          return(2011);
285
286 L9086:  PROP[LAMP]=0;
287         RSPEAK(40);
288         if(DARK(0))RSPEAK(16);
289          return(2012);
290
291 /*  Wave.  No effect unless waving rod at fissure or at bird. */
292
293 L9090:  if((!TOTING(OBJ)) && (OBJ != ROD || !TOTING(ROD2)))SPK=29;
294         if(OBJ != ROD || !TOTING(OBJ) || (!HERE(BIRD) && (CLOSNG || !AT(FISSUR))))
295                 return(2011);
296         if(HERE(BIRD))SPK=206+MOD(PROP[BIRD],2);
297         if(SPK == 206 && LOC == PLACE[STEPS] && PROP[JADE] < 0) goto L9094;
298         if(CLOSED) return(18999);
299         if(CLOSNG || !AT(FISSUR)) return(2011);
300         if(HERE(BIRD))RSPEAK(SPK);
301         PROP[FISSUR]=1-PROP[FISSUR];
302         PSPEAK(FISSUR,2-PROP[FISSUR]);
303          return(2012);
304
305 L9094:  DROP(JADE,LOC);
306         PROP[JADE]=0;
307         TALLY=TALLY-1;
308         SPK=208;
309          return(2011);
310
311 /*  Attack also moved into separate module. */
312
313 L9120:  return(attack(input));
314
315 /*  Pour.  If no object, or object is bottle, assume contents of bottle.
316  *  special tests for pouring water or oil on plant or rusty door. */
317
318 L9130:  if(OBJ == BOTTLE || OBJ == 0)OBJ=LIQ(0);
319         if(OBJ == 0) return(8000);
320         if(!TOTING(OBJ)) return(2011);
321         SPK=78;
322         if(OBJ != OIL && OBJ != WATER) return(2011);
323         if(HERE(URN) && PROP[URN] == 0) goto L9134;
324         PROP[BOTTLE]=1;
325         PLACE[OBJ]=0;
326         SPK=77;
327         if(!(AT(PLANT) || AT(DOOR))) return(2011);
328
329         if(AT(DOOR)) goto L9132;
330         SPK=112;
331         if(OBJ != WATER) return(2011);
332         PSPEAK(PLANT,PROP[PLANT]+3);
333         PROP[PLANT]=MOD(PROP[PLANT]+1,3);
334         PROP[PLANT2]=PROP[PLANT];
335         K=NUL;
336          return(8);
337
338 L9132:  PROP[DOOR]=0;
339         if(OBJ == OIL)PROP[DOOR]=1;
340         SPK=113+PROP[DOOR];
341          return(2011);
342
343 L9134:  OBJ=URN;
344          goto L9220;
345
346 /*  Eat.  Intransitive: assume food if present, else ask what.  Transitive: food
347  *  ok, some things lose appetite, rest are ridiculous. */
348
349 L8140:  if(!HERE(FOOD)) return(8000);
350 L8142:  DSTROY(FOOD);
351         SPK=72;
352          return(2011);
353
354 L9140:  if(OBJ == FOOD) goto L8142;
355         if(OBJ == BIRD || OBJ == SNAKE || OBJ == CLAM || OBJ == OYSTER || OBJ ==
356                 DWARF || OBJ == DRAGON || OBJ == TROLL || OBJ == BEAR || OBJ ==
357                 OGRE)SPK=71;
358          return(2011);
359
360 /*  Drink.  If no object, assume water and look for it here.  If water is in
361  *  the bottle, drink that, else must be at a water loc, so drink stream. */
362
363 L9150:  if(OBJ == 0 && LIQLOC(LOC) != WATER && (LIQ(0) != WATER || !HERE(BOTTLE)))
364                 return(8000);
365         if(OBJ == BLOOD) goto L9153;
366         if(OBJ != 0 && OBJ != WATER)SPK=110;
367         if(SPK == 110 || LIQ(0) != WATER || !HERE(BOTTLE)) return(2011);
368         PROP[BOTTLE]=1;
369         PLACE[WATER]=0;
370         SPK=74;
371          return(2011);
372
373 L9153:  DSTROY(BLOOD);
374         PROP[DRAGON]=2;
375         OBJSND[BIRD]=OBJSND[BIRD]+3;
376         SPK=240;
377          return(2011);
378
379 /*  Rub.  Yields various snide remarks except for lit urn. */
380
381 L9160:  if(OBJ != LAMP)SPK=76;
382         if(OBJ != URN || PROP[URN] != 2) return(2011);
383         DSTROY(URN);
384         DROP(AMBER,LOC);
385         PROP[AMBER]=1;
386         TALLY=TALLY-1;
387         DROP(CAVITY,LOC);
388         SPK=216;
389          return(2011);
390
391 /*  Throw moved into separate module. */
392
393 L9170:  return(throw(input));
394
395 /*  Quit.  Intransitive only.  Verify intent and exit if that's what he wants. */
396
397 L8180:  if(YES(input,22,54,54)) score(1);
398          return(2012);
399
400 /*  Find.  Might be carrying it, or it might be here.  Else give caveat. */
401
402 L9190:  if(AT(OBJ) || (LIQ(0) == OBJ && AT(BOTTLE)) || K == LIQLOC(LOC) || (OBJ ==
403                 DWARF && ATDWRF(LOC) > 0))SPK=94;
404         if(CLOSED)SPK=138;
405         if(TOTING(OBJ))SPK=24;
406          return(2011);
407
408 /*  Inventory.  If object, treat same as find.  Else report on current burden. */
409
410 L8200:  SPK=98;
411         /* 8201 */ for (I=1; I<=100; I++) {
412         if(I == BEAR || !TOTING(I)) goto L8201;
413         if(SPK == 98)RSPEAK(99);
414         BLKLIN=false;
415         PSPEAK(I,-1);
416         BLKLIN=true;
417         SPK=0;
418 L8201:  /*etc*/ ;
419         } /* end loop */
420         if(TOTING(BEAR))SPK=141;
421          return(2011);
422
423 /* Feed/fill are in the other module. */
424
425 L9210:  return(feed());
426 L9220:  return(fill());
427
428 /*  Blast.  No effect unless you've got dynamite, which is a neat trick! */
429
430 L9230:  if(PROP[ROD2] < 0 || !CLOSED) return(2011);
431         BONUS=133;
432         if(LOC == 115)BONUS=134;
433         if(HERE(ROD2))BONUS=135;
434         RSPEAK(BONUS);
435          score(0);
436
437 /*  Score.  Call scoring routine but tell it to return. */
438
439 L8240:  score(-1);
440         SETPRM(1,SCORE,MXSCOR);
441         SETPRM(3,TURNS,TURNS);
442         RSPEAK(259);
443          return(2012);
444
445 /*  FEE FIE FOE FOO (AND FUM).  ADVANCE TO NEXT STATE IF GIVEN IN PROPER ORDER.
446  *  LOOK UP WD1 IN SECTION 3 OF VOCAB TO DETERMINE WHICH WORD WE'VE GOT.  LAST
447  *  WORD ZIPS THE EGGS BACK TO THE GIANT ROOM (UNLESS ALREADY THERE). */
448
449 L8250:  K=VOCAB(WD1,3);
450         SPK=42;
451         if(FOOBAR == 1-K) goto L8252;
452         if(FOOBAR != 0)SPK=151;
453          return(2011);
454
455 L8252:  FOOBAR=K;
456         if(K != 4) return(2009);
457         FOOBAR=0;
458         if(PLACE[EGGS] == PLAC[EGGS] || (TOTING(EGGS) && LOC == PLAC[EGGS])) 
459                 return(2011);
460 /*  Bring back troll if we steal the eggs back from him before crossing. */
461         if(PLACE[EGGS] == 0 && PLACE[TROLL] == 0 && PROP[TROLL] ==
462                 0)PROP[TROLL]=1;
463         K=2;
464         if(HERE(EGGS))K=1;
465         if(LOC == PLAC[EGGS])K=0;
466         MOVE(EGGS,PLAC[EGGS]);
467         PSPEAK(EGGS,K);
468          return(2012);
469
470 /*  Brief.  Intransitive only.  Suppress long descriptions after first time. */
471
472 L8260:  SPK=156;
473         ABBNUM=10000;
474         DETAIL=3;
475          return(2011);
476
477 /*  Read.  Print stuff based on objtxt.  Oyster (?) is special case. */
478
479 L8270:  for (I=1; I<=100; I++) {
480         if(HERE(I) && OBJTXT[I] != 0 && PROP[I] >= 0)OBJ=OBJ*100+I;
481         } /* end loop */
482         if(OBJ > 100 || OBJ == 0 || DARK(0)) return(8000);
483
484 L9270:  if(DARK(0)) goto L5190;
485         if(OBJTXT[OBJ] == 0 || PROP[OBJ] < 0) return(2011);
486         if(OBJ == OYSTER && !CLSHNT) goto L9275;
487         PSPEAK(OBJ,OBJTXT[OBJ]+PROP[OBJ]);
488          return(2012);
489
490 L9275:  CLSHNT=YES(input,192,193,54);
491          return(2012);
492
493 /*  Break.  Only works for mirror in repository and, of course, the vase. */
494
495 L9280:  if(OBJ == MIRROR)SPK=148;
496         if(OBJ == VASE && PROP[VASE] == 0) goto L9282;
497         if(OBJ != MIRROR || !CLOSED) return(2011);
498         SPK=197;
499          return(18999);
500
501 L9282:  SPK=198;
502         if(TOTING(VASE))DROP(VASE,LOC);
503         PROP[VASE]=2;
504         FIXED[VASE]= -1;
505          return(2011);
506
507 /*  Wake.  Only use is to disturb the dwarves. */
508
509 L9290:  if(OBJ != DWARF || !CLOSED) return(2011);
510         SPK=199;
511          return(18999);
512
513 /*  Suspend.  Offer to save things in a file, but charging some points (so
514  *  can't win by using saved games to retry battles or to start over after
515  *  learning zzword). */
516
517 L8300:  SPK=201;
518         RSPEAK(260);
519         if(!YES(input,200,54,54)) return(2012);
520         SAVED=SAVED+5;
521         KK= -1;
522
523 /*  This next part is shared with the "resume" code.  The two cases are
524  *  distinguished by the value of kk (-1 for suspend, +1 for resume). */
525
526 L8305:  DATIME(&I,&K);
527         K=I+650*K;
528         SAVWRD(KK,K);
529         K=VRSION;
530         SAVWRD(0,K);
531         if(K != VRSION) goto L8312;
532 /*  Herewith are all the variables whose values can change during a game,
533  *  omitting a few (such as I, J, ATTACK) whose values between turns are
534  *  irrelevant and some whose values when a game is
535  *  suspended or resumed are guaranteed to match.  If unsure whether a value
536  *  needs to be saved, include it.  Overkill can't hurt.  Pad the last savwds
537  *  with junk variables to bring it up to 7 values. */
538         SAVWDS(ABBNUM,BLKLIN,BONUS,CLOCK1,CLOCK2,CLOSED,CLOSNG);
539         SAVWDS(DETAIL,DFLAG,DKILL,DTOTAL,FOOBAR,HOLDNG,IWEST);
540         SAVWDS(KNFLOC,LIMIT,LL,LMWARN,LOC,NEWLOC,NUMDIE);
541         SAVWDS(OBJ,OLDLC2,OLDLOC,OLDOBJ,PANIC,SAVED,SETUP);
542         SAVWDS(SPK,TALLY,THRESH,TRNDEX,TRNLUZ,TURNS,OBJTXT[OYSTER]);
543         SAVWDS(VERB,WD1,WD1X,WD2,WZDARK,ZZWORD,OBJSND[BIRD]);
544         SAVWDS(OBJTXT[SIGN],CLSHNT,NOVICE,K,K,K,K);
545         SAVARR(ABB,LOCSIZ);
546         SAVARR(ATLOC,LOCSIZ);
547         SAVARR(DLOC,6);
548         SAVARR(DSEEN,6);
549         SAVARR(FIXED,100);
550         SAVARR(HINTED,HNTSIZ);
551         SAVARR(HINTLC,HNTSIZ);
552         SAVARR(LINK,200);
553         SAVARR(ODLOC,6);
554         SAVARR(PLACE,100);
555         SAVARR(PROP,100);
556         SAVWRD(KK,K);
557         if(K != 0) goto L8318;
558         K=NUL;
559         ZZWORD=RNDVOC(3,ZZWORD-MESH*2)+MESH*2;
560         if(KK > 0) return(8);
561         RSPEAK(266);
562         exit(0);
563
564 /*  Resume.  Read a suspended game back from a file. */
565
566 L8310:  KK=1;
567         if(LOC == 1 && ABB[1] == 1) goto L8305;
568         RSPEAK(268);
569         if(!YES(input,200,54,54)) return(2012);
570          goto L8305;
571
572 L8312:  SETPRM(1,K/10,MOD(K,10));
573         SETPRM(3,VRSION/10,MOD(VRSION,10));
574         RSPEAK(269);
575          return(2000);
576
577 L8318:  RSPEAK(270);
578         exit(0);
579
580 /*  Fly.  Snide remarks unless hovering rug is here. */
581
582 L8320:  if(PROP[RUG] != 2)SPK=224;
583         if(!HERE(RUG))SPK=225;
584         if(SPK/2 == 112) return(2011);
585         OBJ=RUG;
586
587 L9320:  if(OBJ != RUG) return(2011);
588         SPK=223;
589         if(PROP[RUG] != 2) return(2011);
590         OLDLC2=OLDLOC;
591         OLDLOC=LOC;
592         NEWLOC=PLACE[RUG]+FIXED[RUG]-LOC;
593         SPK=226;
594         if(PROP[SAPPH] >= 0)SPK=227;
595         RSPEAK(SPK);
596          return(2);
597
598 /*  Listen.  Intransitive only.  Print stuff based on objsnd/locsnd. */
599
600 L8330:  SPK=228;
601         K=LOCSND[LOC];
602         if(K == 0) goto L8332;
603         RSPEAK(IABS(K));
604         if(K < 0) return(2012);
605         SPK=0;
606 L8332:  SETPRM(1,ZZWORD-MESH*2,0);
607         /* 8335 */ for (I=1; I<=100; I++) {
608         if(!HERE(I) || OBJSND[I] == 0 || PROP[I] < 0) goto L8335;
609         PSPEAK(I,OBJSND[I]+PROP[I]);
610         SPK=0;
611         if(I == BIRD && OBJSND[I]+PROP[I] == 8)DSTROY(BIRD);
612 L8335:  /*etc*/ ;
613         } /* end loop */
614          return(2011);
615
616 /*  Z'ZZZ (word gets recomputed at startup; different each game). */
617
618 L8340:  if(!AT(RESER) && LOC != FIXED[RESER]-1) return(2011);
619         PSPEAK(RESER,PROP[RESER]+1);
620         PROP[RESER]=1-PROP[RESER];
621         if(AT(RESER)) return(2012);
622         OLDLC2=LOC;
623         NEWLOC=0;
624         RSPEAK(241);
625          return(2);
626
627 }