Abolish 2011 return from actions. A step towards localizing SPK.
[open-adventure.git] / actions.c
1 #include <stdlib.h>
2 #include <stdbool.h>
3 #include "advent.h"
4 #include "database.h"
5
6 /*
7  * Action handlers.  Eventually we'll do lookup through a method table
8  * that calls these.  Absolutely nothing like the original FORTRAN.
9  */
10
11 static int fill(long);
12
13 static int attack(FILE *input, long verb, long obj)
14 /*  Attack.  Assume target if unambiguous.  "Throw" also links here.
15  *  Attackable objects fall into two categories: enemies (snake,
16  *  dwarf, etc.)  and others (bird, clam, machine).  Ambiguous if 2
17  *  enemies, or no enemies but 2 others. */
18 {
19     int i =ATDWRF(game.loc);
20     if (obj == 0) {
21         if (i > 0)
22             obj=DWARF;
23         if (HERE(SNAKE))obj=obj*NOBJECTS+SNAKE;
24         if (AT(DRAGON) && game.prop[DRAGON] == 0)obj=obj*NOBJECTS+DRAGON;
25         if (AT(TROLL))obj=obj*NOBJECTS+TROLL;
26         if (AT(OGRE))obj=obj*NOBJECTS+OGRE;
27         if (HERE(BEAR) && game.prop[BEAR] == 0)obj=obj*NOBJECTS+BEAR;
28         if (obj > NOBJECTS) return(8000);
29         if (obj == 0) {
30             /* Can't attack bird or machine by throwing axe. */
31             if (HERE(BIRD) && verb != THROW)obj=BIRD;
32             if (HERE(VEND) && verb != THROW)obj=obj*NOBJECTS+VEND;
33             /* Clam and oyster both treated as clam for intransitive case;
34              * no harm done. */
35             if (HERE(CLAM) || HERE(OYSTER))obj=NOBJECTS*obj+CLAM;
36             if (obj > NOBJECTS) return(8000);
37         }
38     }
39     if (obj == BIRD) {
40         SPK=137;
41         if (game.closed) {RSPEAK(SPK); return 2012;}
42         DSTROY(BIRD);
43         game.prop[BIRD]=0;
44         SPK=45;
45     }
46     if (obj == VEND) {
47         PSPEAK(VEND,game.prop[VEND]+2);
48         game.prop[VEND]=3-game.prop[VEND];
49         return(2012);
50     }
51
52     if (obj == 0)SPK=44;
53     if (obj == CLAM || obj == OYSTER)SPK=150;
54     if (obj == SNAKE)SPK=46;
55     if (obj == DWARF)SPK=49;
56     if (obj == DWARF && game.closed) return(19000);
57     if (obj == DRAGON)SPK=167;
58     if (obj == TROLL)SPK=157;
59     if (obj == OGRE)SPK=203;
60     if (obj == OGRE && i > 0) {
61         RSPEAK(SPK);
62         RSPEAK(6);
63         DSTROY(OGRE);
64         int k=0;
65         for (i=1; i < PIRATE; i++) {
66             if (game.dloc[i] == game.loc) {
67                 ++k;
68                 game.dloc[i]=61;
69                 game.dseen[i]=false;
70             }
71         }
72         SPK=SPK+1+1/k;
73         {RSPEAK(SPK); return 2012;}
74     }
75     if (obj == BEAR)SPK=165+(game.prop[BEAR]+1)/2;
76     if (obj != DRAGON || game.prop[DRAGON] != 0) {RSPEAK(SPK); return 2012;}
77     /*  Fun stuff for dragon.  If he insists on attacking it, win!
78      *  Set game.prop to dead, move dragon to central loc (still
79      *  fixed), move rug there (not fixed), and move him there,
80      *  too.  Then do a null motion to get new description. */
81     RSPEAK(49);
82     GETIN(input,&WD1,&WD1X,&WD2,&WD2X);
83     if (WD1 != MAKEWD(25) && WD1 != MAKEWD(250519))
84         return(2607);
85     PSPEAK(DRAGON,3);
86     game.prop[DRAGON]=1;
87     game.prop[RUG]=0;
88     int k=(PLAC[DRAGON]+FIXD[DRAGON])/2;
89     MOVE(DRAGON+NOBJECTS,-1);
90     MOVE(RUG+NOBJECTS,0);
91     MOVE(DRAGON,k);
92     MOVE(RUG,k);
93     DROP(BLOOD,k);
94     for (obj=1; obj<=NOBJECTS; obj++) {
95         if (game.place[obj] == PLAC[DRAGON] || game.place[obj] == FIXD[DRAGON])
96             MOVE(obj,k);
97     }
98     game.loc=k;
99     K=NUL;      /* FIXME: error if removed */
100     return(8);
101 }
102
103 static int bigwords(long foo)
104 /*  FEE FIE FOE FOO (AND FUM).  Advance to next state if given in proper order.
105  *  Look up WD1 in section 3 of vocab to determine which word we've got.  Last
106  *  word zips the eggs back to the giant room (unless already there). */
107 {
108     int k=VOCAB(foo,3);
109     SPK=42;
110     if (game.foobar != 1-k) {
111         if (game.foobar != 0)SPK=151;
112         {RSPEAK(SPK); return 2012;}
113     } else {
114         game.foobar=k;
115         if (k != 4) return(2009);
116         game.foobar=0;
117         if (game.place[EGGS] == PLAC[EGGS] || (TOTING(EGGS) && game.loc == PLAC[EGGS])) 
118             {RSPEAK(SPK); return 2012;}
119         /*  Bring back troll if we steal the eggs back from him before
120          *  crossing. */
121         if (game.place[EGGS]==0 && game.place[TROLL]==0 && game.prop[TROLL]==0)
122             game.prop[TROLL]=1;
123         k=2;
124         if (HERE(EGGS))k=1;
125         if (game.loc == PLAC[EGGS])k=0;
126         MOVE(EGGS,PLAC[EGGS]);
127         PSPEAK(EGGS,k);
128         return(2012);
129     }
130 }
131
132 static int bivalve(token_t verb, token_t obj)
133 /* Clam/oyster actions */
134 {
135     int k=0;
136     if (obj == OYSTER)k=1;
137     SPK=124+k;
138     if (TOTING(obj))SPK=120+k;
139     if (!TOTING(TRIDNT))SPK=122+k;
140     if (verb == LOCK)SPK=61;
141     if (SPK != 124)
142         {RSPEAK(SPK); return 2012;}
143     DSTROY(CLAM);
144     DROP(OYSTER,game.loc);
145     DROP(PEARL,105);
146     {RSPEAK(SPK); return 2012;}
147 }
148
149 static int blast(void)
150 /*  Blast.  No effect unless you've got dynamite, which is a neat trick! */
151 {
152     if (game.prop[ROD2] < 0 || !game.closed) {RSPEAK(SPK); return 2012;}
153     game.bonus=133;
154     if (game.loc == 115)game.bonus=134;
155     if (HERE(ROD2))game.bonus=135;
156     RSPEAK(game.bonus);
157     score(0);
158 }
159
160 static int vbreak(token_t obj)
161 /*  Break.  Only works for mirror in repository and, of course, the vase. */
162 {
163     if (obj == MIRROR)SPK=148;
164     if (obj == VASE && game.prop[VASE] == 0) {
165         SPK=198;
166         if (TOTING(VASE))DROP(VASE,game.loc);
167         game.prop[VASE]=2;
168         game.fixed[VASE]= -1;
169         {RSPEAK(SPK); return 2012;}
170     } else {
171         if (obj != MIRROR || !game.closed) {RSPEAK(SPK); return 2012;}
172         SPK=197;
173         return(18999);
174     }
175 }
176
177 static int brief(void)
178 /*  Brief.  Intransitive only.  Suppress long descriptions after first time. */
179 {
180     SPK=156;
181     game.abbnum=10000;
182     game.detail=3;
183     {RSPEAK(SPK); return 2012;}
184 }
185
186 static int carry(long obj)
187 /*  Carry an object.  Special cases for bird and cage (if bird in cage, can't
188  *  take one without the other).  Liquids also special, since they depend on
189  *  status of bottle.  Also various side effects, etc. */
190 {
191     if (obj == INTRANSITIVE) {
192         /*  Carry, no object given yet.  OK if only one object present. */
193         if(game.atloc[game.loc] == 0 ||
194            game.link[game.atloc[game.loc]] != 0 ||
195            ATDWRF(game.loc) > 0)
196             return(8000);
197         obj=game.atloc[game.loc];
198     }
199
200     if (TOTING(obj)) {RSPEAK(SPK); return 2012;}
201     SPK=25;
202     if (obj == PLANT && game.prop[PLANT] <= 0)SPK=115;
203     if (obj == BEAR && game.prop[BEAR] == 1)SPK=169;
204     if (obj == CHAIN && game.prop[BEAR] != 0)SPK=170;
205     if (obj == URN)SPK=215;
206     if (obj == CAVITY)SPK=217;
207     if (obj == BLOOD)SPK=239;
208     if (obj == RUG && game.prop[RUG] == 2)SPK=222;
209     if (obj == SIGN)SPK=196;
210     if (obj == MESSAG) {
211         SPK=190;
212         DSTROY(MESSAG);
213     }
214     if (game.fixed[obj] != 0)
215         {RSPEAK(SPK); return 2012;}
216     if (obj == WATER || obj == OIL) {
217         if (!HERE(BOTTLE) || LIQUID() != obj) {
218             if (TOTING(BOTTLE) && game.prop[BOTTLE] == 1)
219                 return(fill(BOTTLE));
220             if (game.prop[BOTTLE] != 1)SPK=105;
221             if (!TOTING(BOTTLE))SPK=104;
222             {RSPEAK(SPK); return 2012;}
223         }
224         obj = BOTTLE;
225     }
226
227     SPK=92;
228     if (game.holdng >= INVLIMIT)
229         {RSPEAK(SPK); return 2012;}
230     if (obj == BIRD && game.prop[BIRD] != 1 && -1-game.prop[BIRD] != 1) {
231         if (game.prop[BIRD] == 2) {
232             SPK=238;
233             DSTROY(BIRD);
234             {RSPEAK(SPK); return 2012;}
235         }
236         if (!TOTING(CAGE))SPK=27;
237         if (TOTING(ROD))SPK=26;
238         if (SPK/2 == 13) {RSPEAK(SPK); return 2012;}
239         game.prop[BIRD]=1;
240     }
241     if ((obj==BIRD || obj==CAGE) && (game.prop[BIRD]==1 || -1-game.prop[BIRD]==1))
242         CARRY(BIRD+CAGE-obj,game.loc);
243     CARRY(obj,game.loc);
244     if (obj == BOTTLE && LIQUID() != 0)
245         game.place[LIQUID()] = -1;
246     if (!GSTONE(obj) || game.prop[obj] == 0)
247         return(2009);
248     game.prop[obj]=0;
249     game.prop[CAVITY]=1;
250     return(2009);
251 }
252
253 static int chain(token_t verb)
254 /* Do something to the bear's chain */
255 {
256     if (verb != LOCK) {
257         SPK=171;
258         if (game.prop[BEAR] == 0)SPK=41;
259         if (game.prop[CHAIN] == 0)SPK=37;
260         if (SPK != 171) {RSPEAK(SPK); return 2012;}
261         game.prop[CHAIN]=0;
262         game.fixed[CHAIN]=0;
263         if (game.prop[BEAR] != 3)game.prop[BEAR]=2;
264         game.fixed[BEAR]=2-game.prop[BEAR];
265         {RSPEAK(SPK); return 2012;}
266     } else {
267         SPK=172;
268         if (game.prop[CHAIN] != 0)SPK=34;
269         if (game.loc != PLAC[CHAIN])SPK=173;
270         if (SPK != 172) {RSPEAK(SPK); return 2012;}
271         game.prop[CHAIN]=2;
272         if (TOTING(CHAIN))DROP(CHAIN,game.loc);
273         game.fixed[CHAIN]= -1;
274         {RSPEAK(SPK); return 2012;}
275     }
276 }
277
278 static int discard(long obj, bool just_do_it)
279 /*  Discard object.  "Throw" also comes here for most objects.  Special cases for
280  *  bird (might attack snake or dragon) and cage (might contain bird) and vase.
281  *  Drop coins at vending machine for extra batteries. */
282 {
283     if (!just_do_it) {
284         if (TOTING(ROD2) && obj == ROD && !TOTING(ROD))obj=ROD2;
285         if (!TOTING(obj)) {RSPEAK(SPK); return 2012;}
286         if (obj == BIRD && HERE(SNAKE)) {
287             RSPEAK(30);
288             if (game.closed) return(19000);
289             DSTROY(SNAKE);
290             /* Set game.prop for use by travel options */
291             game.prop[SNAKE]=1;
292
293         } else if ((GSTONE(obj) && AT(CAVITY) && game.prop[CAVITY] != 0)) {
294             RSPEAK(218);
295             game.prop[obj]=1;
296             game.prop[CAVITY]=0;
297             if (HERE(RUG) && ((obj == EMRALD && game.prop[RUG] != 2) || (obj == RUBY &&
298                                                                          game.prop[RUG] == 2))) {
299                 SPK=219;
300                 if (TOTING(RUG))SPK=220;
301                 if (obj == RUBY)SPK=221;
302                 RSPEAK(SPK);
303                 if (SPK != 220) {
304                     K=2-game.prop[RUG];
305                     game.prop[RUG]=K;
306                     if (K == 2)K=PLAC[SAPPH];
307                     MOVE(RUG+NOBJECTS,K);
308                 }
309             }
310         } else if (obj == COINS && HERE(VEND)) {
311             DSTROY(COINS);
312             DROP(BATTER,game.loc);
313             PSPEAK(BATTER,0);
314             return(2012);
315         } else if (obj == BIRD && AT(DRAGON) && game.prop[DRAGON] == 0) {
316             RSPEAK(154);
317             DSTROY(BIRD);
318             game.prop[BIRD]=0;
319             return(2012);
320         } else if (obj == BEAR && AT(TROLL)) {
321             RSPEAK(163);
322             MOVE(TROLL,0);
323             MOVE(TROLL+NOBJECTS,0);
324             MOVE(TROLL2,PLAC[TROLL]);
325             MOVE(TROLL2+NOBJECTS,FIXD[TROLL]);
326             JUGGLE(CHASM);
327             game.prop[TROLL]=2;
328         } else if (obj != VASE || game.loc == PLAC[PILLOW]) {
329             RSPEAK(54);
330         } else {
331             game.prop[VASE]=2;
332             if (AT(PILLOW))game.prop[VASE]=0;
333             PSPEAK(VASE,game.prop[VASE]+1);
334             if (game.prop[VASE] != 0)game.fixed[VASE]= -1;
335         }
336     }
337     K=LIQUID();
338     if (K == obj)obj=BOTTLE;
339     if (obj == BOTTLE && K != 0)game.place[K]=0;
340     if (obj == CAGE && game.prop[BIRD] == 1)DROP(BIRD,game.loc);
341     DROP(obj,game.loc);
342     if (obj != BIRD) return(2012);
343     game.prop[BIRD]=0;
344     if (FOREST(game.loc))game.prop[BIRD]=2;
345     return(2012);
346 }
347
348 static int drink(token_t obj)
349 /*  Drink.  If no object, assume water and look for it here.  If water is in
350  *  the bottle, drink that, else must be at a water loc, so drink stream. */
351 {
352     if (obj == 0 && LIQLOC(game.loc) != WATER && (LIQUID() != WATER || !HERE(BOTTLE)))
353         return(8000);
354     if (obj != BLOOD) {
355         if (obj != 0 && obj != WATER)SPK=110;
356         if (SPK == 110 || LIQUID() != WATER || !HERE(BOTTLE)) {RSPEAK(SPK); return 2012;}
357         game.prop[BOTTLE]=1;
358         game.place[WATER]=0;
359         SPK=74;
360         {RSPEAK(SPK); return 2012;}
361     } else {
362         DSTROY(BLOOD);
363         game.prop[DRAGON]=2;
364         OBJSND[BIRD]=OBJSND[BIRD]+3;
365         SPK=240;
366         {RSPEAK(SPK); return 2012;}
367     }
368 }
369
370 static int eat(token_t obj)
371 /*  Eat.  Intransitive: assume food if present, else ask what.  Transitive: food
372  *  ok, some things lose appetite, rest are ridiculous. */
373 {
374     if (obj == INTRANSITIVE) {
375         if (!HERE(FOOD))
376             return(8000);
377         DSTROY(FOOD);
378         SPK=72;
379         {RSPEAK(SPK); return 2012;}
380     } else {
381         if (obj == FOOD) {
382             DSTROY(FOOD);
383             SPK=72;
384             {RSPEAK(SPK); return 2012;}
385         }
386         if (obj == BIRD || obj == SNAKE || obj == CLAM || obj == OYSTER || obj ==
387            DWARF || obj == DRAGON || obj == TROLL || obj == BEAR || obj ==
388            OGRE)SPK=71;
389         {RSPEAK(SPK); return 2012;}
390     }
391 }
392
393 static int extinguish(int obj)
394 /* Extinguish.  Lamp, urn, dragon/volcano (nice try). */
395 {
396     if (obj == INTRANSITIVE) {
397         if (HERE(LAMP) && game.prop[LAMP] == 1)obj=LAMP;
398         if (HERE(URN) && game.prop[URN] == 2)obj=obj*NOBJECTS+URN;
399         if (obj == 0 || obj > NOBJECTS) return(8000);
400     }
401
402     if (obj == URN) {
403         game.prop[URN]=game.prop[URN]/2;
404         SPK=210;
405         {RSPEAK(SPK); return 2012;}
406     }
407     if (obj == LAMP) {
408         game.prop[LAMP]=0;
409         RSPEAK(40);
410         if (DARK(game.loc))
411             RSPEAK(16);
412         return(2012);
413     }
414     if (obj == DRAGON || obj == VOLCAN)
415         SPK=146;
416     {RSPEAK(SPK); return 2012;}
417 }
418
419 static int feed(long obj)
420 /*  Feed.  If bird, no seed.  Snake, dragon, troll: quip.  If dwarf, make him
421  *  mad.  Bear, special. */
422 {
423     if (obj == BIRD) {
424         SPK=100;
425         {RSPEAK(SPK); return 2012;}
426     }
427
428     if (!(obj != SNAKE && obj != DRAGON && obj != TROLL)) {
429         SPK=102;
430         if (obj == DRAGON && game.prop[DRAGON] != 0)SPK=110;
431         if (obj == TROLL)SPK=182;
432         if (obj != SNAKE || game.closed || !HERE(BIRD))
433             {RSPEAK(SPK); return 2012;}
434         SPK=101;
435         DSTROY(BIRD);
436         game.prop[BIRD]=0;
437         {RSPEAK(SPK); return 2012;}
438     }
439
440     if (obj == DWARF) {
441         if (!HERE(FOOD))
442             {RSPEAK(SPK); return 2012;}
443         SPK=103;
444         game.dflag=game.dflag+2;
445         {RSPEAK(SPK); return 2012;}
446     }
447
448     if (obj == BEAR) {
449         if (game.prop[BEAR] == 0)SPK=102;
450         if (game.prop[BEAR] == 3)SPK=110;
451         if (!HERE(FOOD))
452             {RSPEAK(SPK); return 2012;}
453         DSTROY(FOOD);
454         game.prop[BEAR]=1;
455         game.fixed[AXE]=0;
456         game.prop[AXE]=0;
457         SPK=168;
458         {RSPEAK(SPK); return 2012;}
459     }
460
461     if (obj == OGRE) {
462         if (HERE(FOOD))
463             SPK=202;
464         {RSPEAK(SPK); return 2012;}
465     }
466
467     SPK=14;
468     {RSPEAK(SPK); return 2012;}
469 }
470
471 int fill(long obj)
472 /*  Fill.  Bottle or urn must be empty, and liquid available.  (Vase
473  *  is nasty.) */
474 {
475     int k;
476     if (obj == VASE) {
477         SPK=29;
478         if (LIQLOC(game.loc) == 0)SPK=144;
479         if (LIQLOC(game.loc) == 0 || !TOTING(VASE))
480             {RSPEAK(SPK); return 2012;}
481         RSPEAK(145);
482         game.prop[VASE]=2;
483         game.fixed[VASE]= -1;
484         return(discard(obj, true));
485     }
486
487     if (obj == URN){
488         SPK=213;
489         if (game.prop[URN] != 0) {RSPEAK(SPK); return 2012;}
490         SPK=144;
491         k=LIQUID();
492         if (k == 0 || !HERE(BOTTLE)) {RSPEAK(SPK); return 2012;}
493         game.place[k]=0;
494         game.prop[BOTTLE]=1;
495         if (k == OIL)game.prop[URN]=1;
496         SPK=211+game.prop[URN];
497         {RSPEAK(SPK); return 2012;}
498     }
499
500     if (obj != 0 && obj != BOTTLE)
501         {RSPEAK(SPK); return 2012;}
502     if (obj == 0 && !HERE(BOTTLE))
503         return(8000);
504     SPK=107;
505     if (LIQLOC(game.loc) == 0)
506         SPK=106;
507     if (HERE(URN) && game.prop[URN] != 0)
508         SPK=214;
509     if (LIQUID() != 0)
510         SPK=105;
511     if (SPK != 107)
512         {RSPEAK(SPK); return 2012;}
513     game.prop[BOTTLE]=MOD(COND[game.loc],4)/2*2;
514     k=LIQUID();
515     if (TOTING(BOTTLE))
516         game.place[k]= -1;
517     if (k == OIL)
518         SPK=108;
519     {RSPEAK(SPK); return 2012;}
520 }
521
522 static int find(token_t obj)
523 /* Find.  Might be carrying it, or it might be here.  Else give caveat. */
524 {
525     if (AT(obj) ||
526        (LIQUID() == obj && AT(BOTTLE)) ||
527        obj == LIQLOC(game.loc) ||
528        (obj == DWARF && ATDWRF(game.loc) > 0))
529         SPK=94;
530     if (game.closed)SPK=138;
531     if (TOTING(obj))SPK=24;
532     {RSPEAK(SPK); return 2012;}
533 }
534
535 static int fly(token_t obj)
536 /* Fly.  Snide remarks unless hovering rug is here. */
537 {
538     if (obj == INTRANSITIVE) {
539         if (game.prop[RUG] != 2)SPK=224;
540         if (!HERE(RUG))SPK=225;
541         if (SPK/2 == 112) {RSPEAK(SPK); return 2012;}
542         obj=RUG;
543     }
544
545     if (obj != RUG) {RSPEAK(SPK); return 2012;}
546     SPK=223;
547     if (game.prop[RUG] != 2) {RSPEAK(SPK); return 2012;}
548     game.oldlc2=game.oldloc;
549     game.oldloc=game.loc;
550     game.newloc=game.place[RUG]+game.fixed[RUG]-game.loc;
551     SPK=226;
552     if (game.prop[SAPPH] >= 0)SPK=227;
553     RSPEAK(SPK);
554     return(2);
555 }
556     
557 static int inven(token_t obj)
558 /* Inventory. If object, treat same as find.  Else report on current burden. */
559 {
560     int i;
561     SPK=98;
562     for (i=1; i<=NOBJECTS; i++) {
563         if (i == BEAR || !TOTING(i))
564             continue;
565         if (SPK == 98)RSPEAK(99);
566         game.blklin=false;
567         PSPEAK(i,-1);
568         game.blklin=true;
569         SPK=0;
570     }
571     if (TOTING(BEAR))
572         SPK=141;
573     {RSPEAK(SPK); return 2012;}
574 }
575
576 int light(token_t obj)
577 /*  Light.  Applicable only to lamp and urn. */
578 {
579     if (obj == INTRANSITIVE) {
580         if (HERE(LAMP) && game.prop[LAMP] == 0 && game.limit >= 0)obj=LAMP;
581         if (HERE(URN) && game.prop[URN] == 1)obj=obj*NOBJECTS+URN;
582         if (obj == 0 || obj > NOBJECTS) return(8000);
583     }
584
585     if (obj == URN) {
586         SPK=38;
587         if (game.prop[URN] == 0)
588             {RSPEAK(SPK); return 2012;}
589         SPK=209;
590         game.prop[URN]=2;
591         {RSPEAK(SPK); return 2012;}
592     } else {
593         if (obj != LAMP) {RSPEAK(SPK); return 2012;}
594         SPK=184;
595         if (game.limit < 0) {RSPEAK(SPK); return 2012;}
596         game.prop[LAMP]=1;
597         RSPEAK(39);
598         if (game.wzdark) return(2000);
599         return(2012);
600     }    
601 }
602
603 static int listen(void)
604 /*  Listen.  Intransitive only.  Print stuff based on objsnd/locsnd. */
605 {
606     int i, k;
607     SPK=228;
608     k=LOCSND[game.loc];
609     if (k != 0) {
610         RSPEAK(labs(k));
611         if (k < 0) return(2012);
612         SPK=0;
613     }
614     SETPRM(1,game.zzword,0);
615     for (i=1; i<=NOBJECTS; i++) {
616         if (!HERE(i) || OBJSND[i] == 0 || game.prop[i] < 0)
617             continue;
618         PSPEAK(i,OBJSND[i]+game.prop[i]);
619         SPK=0;
620         if (i == BIRD && OBJSND[i]+game.prop[i] == 8)
621             DSTROY(BIRD);
622     }
623     {RSPEAK(SPK); return 2012;}
624 }
625
626 static int lock(token_t verb, token_t obj)
627 /* Lock, unlock, no object given.  Assume various things if present. */
628 {
629     int k;
630     if (obj == INTRANSITIVE) {
631         SPK=28;
632         if (HERE(CLAM))obj=CLAM;
633         if (HERE(OYSTER))obj=OYSTER;
634         if (AT(DOOR))obj=DOOR;
635         if (AT(GRATE))obj=GRATE;
636         if (obj != 0 && HERE(CHAIN)) return(8000);
637         if (HERE(CHAIN))obj=CHAIN;
638         if (obj == 0) {RSPEAK(SPK); return 2012;}
639     }
640         
641     /*  Lock, unlock object.  Special stuff for opening clam/oyster
642      *  and for chain. */
643     if (obj == CLAM || obj == OYSTER)
644         return bivalve(verb, obj);
645     if (obj == DOOR)SPK=111;
646     if (obj == DOOR && game.prop[DOOR] == 1)SPK=54;
647     if (obj == CAGE)SPK=32;
648     if (obj == KEYS)SPK=55;
649     if (obj == GRATE || obj == CHAIN)SPK=31;
650     if (SPK != 31 || !HERE(KEYS)) {RSPEAK(SPK); return 2012;}
651     if (obj == CHAIN)
652         return chain(verb);
653     if (game.closng) {
654         SPK=130;
655         if (!game.panic)game.clock2=15;
656         game.panic=true;
657         {RSPEAK(SPK); return 2012;}
658     }
659     SPK=34+game.prop[GRATE];
660     game.prop[GRATE]=1;
661     if (verb == LOCK)game.prop[GRATE]=0;
662     SPK=SPK+2*game.prop[GRATE];
663     {RSPEAK(SPK); return 2012;}
664 }
665
666 static int pour(token_t obj)
667 /*  Pour.  If no object, or object is bottle, assume contents of bottle.
668  *  special tests for pouring water or oil on plant or rusty door. */
669 {
670     if (obj == BOTTLE || obj == 0)obj=LIQUID();
671     if (obj == 0) return(8000);
672     if (!TOTING(obj)) {RSPEAK(SPK); return 2012;}
673     SPK=78;
674     if (obj != OIL && obj != WATER) {RSPEAK(SPK); return 2012;}
675     if (HERE(URN) && game.prop[URN] == 0)
676         return fill(URN);
677     game.prop[BOTTLE]=1;
678     game.place[obj]=0;
679     SPK=77;
680     if (!(AT(PLANT) || AT(DOOR)))
681         {RSPEAK(SPK); return 2012;}
682     if (!AT(DOOR)) {
683         SPK=112;
684         if (obj != WATER) {RSPEAK(SPK); return 2012;}
685         PSPEAK(PLANT,game.prop[PLANT]+3);
686         game.prop[PLANT]=MOD(game.prop[PLANT]+1,3);
687         game.prop[PLANT2]=game.prop[PLANT];
688         K=NUL;
689         return(8);
690     } else {
691         game.prop[DOOR]=0;
692         if (obj == OIL)game.prop[DOOR]=1;
693         SPK=113+game.prop[DOOR];
694         {RSPEAK(SPK); return 2012;}
695     }
696 }
697
698 static int quit(FILE *input)
699 /*  Quit.  Intransitive only.  Verify intent and exit if that's what he wants. */
700 {
701     if (YES(input,22,54,54))
702         score(1);
703     return(2012);
704 }
705
706 static int read(FILE *input, token_t obj)
707 /*  Read.  Print stuff based on objtxt.  Oyster (?) is special case. */
708 {
709     int i;
710     if (obj == INTRANSITIVE) {
711         obj = 0;
712         for (i=1; i<=NOBJECTS; i++) {
713             if (HERE(i) && OBJTXT[i] != 0 && game.prop[i] >= 0)
714                 obj = obj * NOBJECTS + i;
715         }
716         if (obj > NOBJECTS || obj == 0 || DARK(game.loc)) return(8000);
717     }
718         
719     if (DARK(game.loc)) {
720         SETPRM(1,WD1,WD1X);
721         RSPEAK(256);
722         return(2012);
723     }
724     if (OBJTXT[obj] == 0 || game.prop[obj] < 0)
725         {RSPEAK(SPK); return 2012;}
726     if (obj == OYSTER && !game.clshnt) {
727         game.clshnt=YES(input,192,193,54);
728         return(2012);
729     }
730     PSPEAK(obj,OBJTXT[obj]+game.prop[obj]);
731     return(2012);
732 }
733
734 static int reservoir(void)
735 /*  Z'ZZZ (word gets recomputed at startup; different each game). */
736 {
737     if (!AT(RESER) && game.loc != game.fixed[RESER]-1) {RSPEAK(SPK); return 2012;}
738     PSPEAK(RESER,game.prop[RESER]+1);
739     game.prop[RESER]=1-game.prop[RESER];
740     if (AT(RESER)) return(2012);
741     game.oldlc2=game.loc;
742     game.newloc=0;
743     RSPEAK(241);
744     return(2);
745 }
746
747 static int rub(token_t obj)
748 /* Rub.  Yields various snide remarks except for lit urn. */
749 {
750     if (obj != LAMP)SPK=76;
751     if (obj != URN || game.prop[URN] != 2) {RSPEAK(SPK); return 2012;}
752     DSTROY(URN);
753     DROP(AMBER,game.loc);
754     game.prop[AMBER]=1;
755     --game.tally;
756     DROP(CAVITY,game.loc);
757     SPK=216;
758     {RSPEAK(SPK); return 2012;}
759 }
760
761 static int say(void)
762 /* SAY.  Echo WD2 (or WD1 if no WD2 (SAY WHAT?, etc.).)  Magic words override. */
763 {
764     /* FIXME: ugly use of globals */
765     SETPRM(1,WD2,WD2X); if (WD2 <= 0)SETPRM(1,WD1,WD1X);
766     if (WD2 > 0)WD1=WD2;
767     int wd=VOCAB(WD1,-1);
768     if (wd == 62 || wd == 65 || wd == 71 || wd == 2025 || wd == 2034) {
769         WD2=0;
770         return(2630);
771     }
772     RSPEAK(258);
773     return(2012);
774
775 }
776
777 static int throw_support(long spk)
778 {
779     RSPEAK(spk);
780     DROP(AXE,game.loc);
781     K=NUL;
782     return(8);
783 }
784
785 static int throw(FILE *cmdin, long verb, long obj)
786 /*  Throw.  Same as discard unless axe.  Then same as attack except
787  *  ignore bird, and if dwarf is present then one might be killed.
788  *  (Only way to do so!)  Axe also special for dragon, bear, and
789  *  troll.  Treasures special for troll. */
790 {
791     if (TOTING(ROD2) && obj == ROD && !TOTING(ROD))obj=ROD2;
792     if (!TOTING(obj))
793         {RSPEAK(SPK); return 2012;}
794     if (obj >= 50 && obj <= MAXTRS && AT(TROLL)) {
795         SPK=159;
796         /*  Snarf a treasure for the troll. */
797         DROP(obj,0);
798         MOVE(TROLL,0);
799         MOVE(TROLL+NOBJECTS,0);
800         DROP(TROLL2,PLAC[TROLL]);
801         DROP(TROLL2+NOBJECTS,FIXD[TROLL]);
802         JUGGLE(CHASM);
803         {RSPEAK(SPK); return 2012;}
804     }
805     if (obj == FOOD && HERE(BEAR)) {
806     /* But throwing food is another story. */
807         obj=BEAR;
808         return(feed(obj));
809     }
810     if (obj != AXE)
811         return(discard(obj, false));
812     int i=ATDWRF(game.loc);
813     if (i <= 0) {
814         if (AT(DRAGON) && game.prop[DRAGON] == 0) {
815             SPK=152;
816             return throw_support(SPK);
817         }
818         if (AT(TROLL)) {
819             SPK=158;
820             return throw_support(SPK);
821         }
822         if (AT(OGRE)) {
823             SPK=203;
824             return throw_support(SPK);
825         }
826         if (HERE(BEAR) && game.prop[BEAR] == 0) {
827             /* This'll teach him to throw the axe at the bear! */
828             SPK=164;
829             DROP(AXE,game.loc);
830             game.fixed[AXE]= -1;
831             game.prop[AXE]=1;
832             JUGGLE(BEAR);
833             {RSPEAK(SPK); return 2012;}
834         }
835         return(attack(cmdin, verb, 0));
836     }
837
838     if (randrange(NDWARVES+1) < game.dflag) {
839         SPK=48;
840         return throw_support(SPK);
841     }
842     game.dseen[i]=false;
843     game.dloc[i]=0;
844     SPK=47;
845     ++game.dkill;
846     if (game.dkill == 1)SPK=149;
847
848     return throw_support(SPK);
849 }
850
851 static int vscore(void)
852 /* Score.  Call scoring routine but tell it to return. */
853 {
854     score(-1);
855     return(2012);
856 }
857
858 static int wake(token_t obj)
859 /* Wake.  Only use is to disturb the dwarves. */
860 {
861     if (obj != DWARF || !game.closed) {RSPEAK(SPK); return 2012;}
862     SPK=199;
863     return(18999);
864 }
865
866 static int wave(token_t obj)
867 /* Wave.  No effect unless waving rod at fissure or at bird. */
868 {
869     if ((!TOTING(obj)) && (obj != ROD || !TOTING(ROD2)))SPK=29;
870     if (obj != ROD ||
871        !TOTING(obj) ||
872        (!HERE(BIRD) && (game.closng || !AT(FISSUR))))
873         {RSPEAK(SPK); return 2012;}
874     if (HERE(BIRD))SPK=206+MOD(game.prop[BIRD],2);
875     if (SPK == 206 && game.loc == game.place[STEPS] && game.prop[JADE] < 0) {
876         DROP(JADE,game.loc);
877         game.prop[JADE]=0;
878         --game.tally;
879         SPK=208;
880         {RSPEAK(SPK); return 2012;}
881     } else {
882         if (game.closed) return(18999);
883         if (game.closng || !AT(FISSUR)) {RSPEAK(SPK); return 2012;}
884         if (HERE(BIRD))RSPEAK(SPK);
885         game.prop[FISSUR]=1-game.prop[FISSUR];
886         PSPEAK(FISSUR,2-game.prop[FISSUR]);
887         return(2012);
888     }
889 }
890
891 int action(FILE *input, enum speechpart part, long verb, long obj)
892 /*  Analyse a verb.  Remember what it was, go back for object if second word
893  *  unless verb is "say", which snarfs arbitrary second word.
894  */
895 {
896     int kk;
897
898     if (part == unknown)
899     {
900         /*  Analyse an object word.  See if the thing is here, whether
901          *  we've got a verb yet, and so on.  Object must be here
902          *  unless verb is "find" or "invent(ory)" (and no new verb
903          *  yet to be analysed).  Water and oil are also funny, since
904          *  they are never actually dropped at any location, but might
905          *  be here inside the bottle or urn or as a feature of the
906          *  location. */
907         if (HERE(obj))
908             /* FALL THROUGH */;
909         else if (obj == GRATE) {
910             if (game.loc == 1 || game.loc == 4 || game.loc == 7)
911                 obj=DPRSSN;
912             if (game.loc > 9 && game.loc < 15)
913                 obj=ENTRNC;
914             if (obj != GRATE)
915                 return(8);
916         }
917         else if (obj == DWARF && ATDWRF(game.loc) > 0)
918             /* FALL THROUGH */;
919         else if ((LIQUID() == obj && HERE(BOTTLE)) || obj == LIQLOC(game.loc))
920             /* FALL THROUGH */;
921         else if (obj == OIL && HERE(URN) && game.prop[URN] != 0) {
922             obj=URN;
923             /* FALL THROUGH */;
924         }
925         else if (obj == PLANT && AT(PLANT2) && game.prop[PLANT2] != 0) {
926             obj=PLANT2;
927             /* FALL THROUGH */;
928         }
929         else if (obj == KNIFE && game.knfloc == game.loc) {
930             game.knfloc= -1;
931             SPK=116;
932             {RSPEAK(SPK); return 2012;}
933         }
934         else if (obj == ROD && HERE(ROD2)) {
935             obj=ROD2;
936             /* FALL THROUGH */;
937         }
938         else if ((verb == FIND || verb == INVENT) && WD2 <= 0)
939             /* FALL THROUGH */;
940         else {
941             SETPRM(1,WD1,WD1X);
942             RSPEAK(256);
943             return(2012);
944         }
945
946         if (WD2 > 0)
947             return(2800);
948         if (verb != 0)
949             part = transitive;
950     }
951
952     switch(part)
953     {
954         case intransitive:
955             SPK=ACTSPK[verb];
956             if (WD2 > 0 && verb != SAY) return(2800);
957             if (verb == SAY)obj=WD2;
958             if (obj == 0) {
959                 /*  Analyse an intransitive verb (ie, no object given yet). */
960                 switch (verb-1) {
961                     case  0: /* CARRY */ return carry(INTRANSITIVE);
962                     case  1: /* DROP  */ return(8000); 
963                     case  2: /* SAY   */ return(8000); 
964                     case  3: /* UNLOC */ return lock(verb, INTRANSITIVE);    
965                     case  4: /* NOTHI */ return(2009); 
966                     case  5: /* LOCK  */ return lock(verb, INTRANSITIVE);    
967                     case  6: /* LIGHT */ return light(INTRANSITIVE);    
968                     case  7: /* EXTIN */ return extinguish(INTRANSITIVE);    
969                     case  8: /* WAVE  */ return(8000); 
970                     case  9: /* CALM  */ return(8000); 
971                     case 10: /* WALK  */ {RSPEAK(SPK); return 2012;} 
972                     case 11: /* ATTAC */ return attack(input, verb, obj);   
973                     case 12: /* POUR  */ return pour(obj);   
974                     case 13: /* EAT   */ return eat(INTRANSITIVE);   
975                     case 14: /* DRINK */ return drink(obj);   
976                     case 15: /* RUB   */ return(8000); 
977                     case 16: /* TOSS  */ return(8000); 
978                     case 17: /* QUIT  */ return quit(input);   
979                     case 18: /* FIND  */ return(8000); 
980                     case 19: /* INVEN */ return inven(obj);   
981                     case 20: /* FEED  */ return(8000); 
982                     case 21: /* FILL  */ return fill(obj);   
983                     case 22: /* BLAST */ return blast();   
984                     case 23: /* SCOR  */ return vscore();   
985                     case 24: /* FOO   */ return bigwords(WD1);   
986                     case 25: /* BRIEF */ return brief();   
987                     case 26: /* READ  */ return read(input, INTRANSITIVE);   
988                     case 27: /* BREAK */ return(8000); 
989                     case 28: /* WAKE  */ return(8000); 
990                     case 29: /* SUSP  */ return saveresume(input, false);   
991                     case 30: /* RESU  */ return saveresume(input, true);   
992                     case 31: /* FLY   */ return fly(INTRANSITIVE);   
993                     case 32: /* LISTE */ return listen();   
994                     case 33: /* ZZZZ  */ return reservoir();   
995                 }
996                 BUG(23);
997             }
998             /* FALLTHRU */
999         case transitive:
1000             /*  Analyse a transitive verb. */
1001             switch (verb-1) {
1002                 case  0: /* CARRY */ return carry(obj);    
1003                 case  1: /* DROP  */ return discard(obj, false);    
1004                 case  2: /* SAY   */ return say();    
1005                 case  3: /* UNLOC */ return lock(verb, obj);    
1006                 case  4: /* NOTHI */ return(2009); 
1007                 case  5: /* LOCK  */ return lock(verb, obj);    
1008                 case  6: /* LIGHT */ return light(obj);    
1009                 case  7: /* EXTI  */ return extinguish(obj);    
1010                 case  8: /* WAVE  */ return wave(obj);    
1011                 case  9: /* CALM  */ {RSPEAK(SPK); return 2012;} 
1012                 case 10: /* WALK  */ {RSPEAK(SPK); return 2012;} 
1013                 case 11: /* ATTAC */ return attack(input, verb, obj);   
1014                 case 12: /* POUR  */ return pour(obj);   
1015                 case 13: /* EAT   */ return eat(obj);   
1016                 case 14: /* DRINK */ return drink(obj);   
1017                 case 15: /* RUB   */ return rub(obj);   
1018                 case 16: /* TOSS  */ return throw(input, verb, obj);   
1019                 case 17: /* QUIT  */ {RSPEAK(SPK); return 2012;} 
1020                 case 18: /* FIND  */ return find(obj);   
1021                 case 19: /* INVEN */ return find(obj);   
1022                 case 20: /* FEED  */ return feed(obj);   
1023                 case 21: /* FILL  */ return fill(obj);   
1024                 case 22: /* BLAST */ return blast();   
1025                 case 23: /* SCOR  */ {RSPEAK(SPK); return 2012;} 
1026                 case 24: /* FOO   */ {RSPEAK(SPK); return 2012;} 
1027                 case 25: /* BRIEF */ {RSPEAK(SPK); return 2012;} 
1028                 case 26: /* READ  */ return read(input, obj);   
1029                 case 27: /* BREAK */ return vbreak(obj);   
1030                 case 28: /* WAKE  */ return wake(obj);   
1031                 case 29: /* SUSP  */ {RSPEAK(SPK); return 2012;} 
1032                 case 30: /* RESU  */ {RSPEAK(SPK); return 2012;} 
1033                 case 31: /* FLY   */ return fly(obj);   
1034                 case 32: /* LISTE */ {RSPEAK(SPK); return 2012;} 
1035                 case 33: /* ZZZZ  */ return reservoir();   
1036             }
1037             BUG(24);
1038         case unknown:
1039             /* Unknown verb, couldn't deduce object - might need hint */
1040             SETPRM(1,WD1,WD1X);
1041             RSPEAK(255);
1042             return(2600);
1043     default:
1044             BUG(99);
1045     }
1046 }