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