Home | History | Annotate | Line # | Download | only in adventure
main.c revision 1.2
      1  1.2  cgd /*	$NetBSD: main.c,v 1.2 1995/03/21 12:05:07 cgd Exp $	*/
      2  1.2  cgd 
      3  1.1  jtc /*-
      4  1.1  jtc  * Copyright (c) 1991, 1993
      5  1.1  jtc  *	The Regents of the University of California.  All rights reserved.
      6  1.1  jtc  *
      7  1.1  jtc  * The game adventure was originally written in Fortran by Will Crowther
      8  1.1  jtc  * and Don Woods.  It was later translated to C and enhanced by Jim
      9  1.1  jtc  * Gillogly.  This code is derived from software contributed to Berkeley
     10  1.1  jtc  * by Jim Gillogly at The Rand Corporation.
     11  1.1  jtc  *
     12  1.1  jtc  * Redistribution and use in source and binary forms, with or without
     13  1.1  jtc  * modification, are permitted provided that the following conditions
     14  1.1  jtc  * are met:
     15  1.1  jtc  * 1. Redistributions of source code must retain the above copyright
     16  1.1  jtc  *    notice, this list of conditions and the following disclaimer.
     17  1.1  jtc  * 2. Redistributions in binary form must reproduce the above copyright
     18  1.1  jtc  *    notice, this list of conditions and the following disclaimer in the
     19  1.1  jtc  *    documentation and/or other materials provided with the distribution.
     20  1.1  jtc  * 3. All advertising materials mentioning features or use of this software
     21  1.1  jtc  *    must display the following acknowledgement:
     22  1.1  jtc  *	This product includes software developed by the University of
     23  1.1  jtc  *	California, Berkeley and its contributors.
     24  1.1  jtc  * 4. Neither the name of the University nor the names of its contributors
     25  1.1  jtc  *    may be used to endorse or promote products derived from this software
     26  1.1  jtc  *    without specific prior written permission.
     27  1.1  jtc  *
     28  1.1  jtc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29  1.1  jtc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30  1.1  jtc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31  1.1  jtc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32  1.1  jtc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33  1.1  jtc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34  1.1  jtc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35  1.1  jtc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36  1.1  jtc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37  1.1  jtc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38  1.1  jtc  * SUCH DAMAGE.
     39  1.1  jtc  */
     40  1.1  jtc 
     41  1.1  jtc #ifndef lint
     42  1.1  jtc static char copyright[] =
     43  1.1  jtc "@(#) Copyright (c) 1991, 1993\n\
     44  1.1  jtc 	The Regents of the University of California.  All rights reserved.\n";
     45  1.1  jtc #endif /* not lint */
     46  1.1  jtc 
     47  1.1  jtc #ifndef lint
     48  1.2  cgd #if 0
     49  1.1  jtc static char sccsid[] = "@(#)main.c	8.1 (Berkeley) 6/2/93";
     50  1.2  cgd #else
     51  1.2  cgd static char rcsid[] = "$NetBSD: main.c,v 1.2 1995/03/21 12:05:07 cgd Exp $";
     52  1.2  cgd #endif
     53  1.1  jtc #endif /* not lint */
     54  1.1  jtc 
     55  1.1  jtc /*      Re-coding of advent in C: main program                          */
     56  1.1  jtc 
     57  1.1  jtc #include <sys/file.h>
     58  1.1  jtc #include <stdio.h>
     59  1.1  jtc #include "hdr.h"
     60  1.1  jtc 
     61  1.1  jtc 
     62  1.1  jtc main(argc,argv)
     63  1.1  jtc int argc;
     64  1.1  jtc char **argv;
     65  1.1  jtc {
     66  1.1  jtc 	extern int errno;
     67  1.1  jtc 	register int i;
     68  1.1  jtc 	int rval,ll;
     69  1.1  jtc 	struct text *kk;
     70  1.1  jtc 	extern trapdel();
     71  1.1  jtc 
     72  1.1  jtc 	init();         /* Initialize everything */
     73  1.1  jtc 	signal(2,trapdel);
     74  1.1  jtc 
     75  1.1  jtc 	if (argc > 1)   /* Restore file specified */
     76  1.1  jtc 	{               /* Restart is label 8305 (Fortran) */
     77  1.1  jtc 		i = restore(argv[1]);       /* See what we've got */
     78  1.1  jtc 		switch(i)
     79  1.1  jtc 		{
     80  1.1  jtc 		    case 0:     /* The restore worked fine */
     81  1.1  jtc 			yea=Start(0);
     82  1.1  jtc 			k=null;
     83  1.1  jtc 			unlink(argv[1]);/* Don't re-use the save */
     84  1.1  jtc 			goto l8;        /* Get where we're going */
     85  1.1  jtc 		    case 1:             /* Couldn't open it */
     86  1.1  jtc 			exit(0);        /* So give up */
     87  1.1  jtc 		    case 2:             /* Oops -- file was altered */
     88  1.1  jtc 			rspeak(202);    /* You dissolve */
     89  1.1  jtc 			exit(0);        /* File could be non-adventure */
     90  1.1  jtc 		}                       /* So don't unlink it. */
     91  1.1  jtc 	}
     92  1.1  jtc 
     93  1.1  jtc 	startup();              /* prepare for a user           */
     94  1.1  jtc 
     95  1.1  jtc 	for (;;)                        /* main command loop (label 2)  */
     96  1.1  jtc 	{       if (newloc<9 && newloc!=0 && closng)
     97  1.1  jtc 		{       rspeak(130);    /* if closing leave only by     */
     98  1.1  jtc 			newloc=loc;     /*      main office             */
     99  1.1  jtc 			if (!panic) clock2=15;
    100  1.1  jtc 			panic=TRUE;
    101  1.1  jtc 		}
    102  1.1  jtc 
    103  1.1  jtc 		rval=fdwarf();          /* dwarf stuff                  */
    104  1.1  jtc 		if (rval==99) die(99);
    105  1.1  jtc 
    106  1.1  jtc 	l2000:  if (loc==0) die(99);    /* label 2000                   */
    107  1.1  jtc 		kk = &stext[loc];
    108  1.1  jtc 		if ((abb[loc]%abbnum)==0 || kk->seekadr==0)
    109  1.1  jtc 			kk = &ltext[loc];
    110  1.1  jtc 		if (!forced(loc) && dark(0))
    111  1.1  jtc 		{       if (wzdark && pct(35))
    112  1.1  jtc 			{       die(90);
    113  1.1  jtc 				goto l2000;
    114  1.1  jtc 			}
    115  1.1  jtc 			kk = &rtext[16];
    116  1.1  jtc 		}
    117  1.1  jtc 	l2001:  if (toting(bear)) rspeak(141);  /* 2001                 */
    118  1.1  jtc 		speak(kk);
    119  1.1  jtc 		k=1;
    120  1.1  jtc 		if (forced(loc))
    121  1.1  jtc 			goto l8;
    122  1.1  jtc 		if (loc==33 && pct(25)&&!closng) rspeak(8);
    123  1.1  jtc 		if (!dark(0))
    124  1.1  jtc 		{       abb[loc]++;
    125  1.1  jtc 			for (i=atloc[loc]; i!=0; i=link[i])     /*2004  */
    126  1.1  jtc 			{       obj=i;
    127  1.1  jtc 				if (obj>100) obj -= 100;
    128  1.1  jtc 				if (obj==steps && toting(nugget)) continue;
    129  1.1  jtc 				if (prop[obj]<0)
    130  1.1  jtc 				{       if (closed) continue;
    131  1.1  jtc 					prop[obj]=0;
    132  1.1  jtc 					if (obj==rug||obj==chain)
    133  1.1  jtc 						prop[obj]=1;
    134  1.1  jtc 					tally--;
    135  1.1  jtc 					if (tally==tally2 && tally != 0)
    136  1.1  jtc 						if (limit>35) limit=35;
    137  1.1  jtc 				}
    138  1.1  jtc 				ll =  prop[obj];   /* 2006         */
    139  1.1  jtc 				if (obj==steps && loc==fixed[steps])
    140  1.1  jtc 					ll = 1;
    141  1.1  jtc 				pspeak(obj, ll);
    142  1.1  jtc 			}                                       /* 2008 */
    143  1.1  jtc 			goto l2012;
    144  1.1  jtc 	l2009:          k=54;                   /* 2009                 */
    145  1.1  jtc 	l2010:          spk=k;
    146  1.1  jtc 	l2011:          rspeak(spk);
    147  1.1  jtc 		}
    148  1.1  jtc 	l2012:  verb=0;                         /* 2012                 */
    149  1.1  jtc 		obj=0;
    150  1.1  jtc 	l2600:	checkhints();                   /* to 2600-2602         */
    151  1.1  jtc 		if (closed)
    152  1.1  jtc 		{       if (prop[oyster]<0 && toting(oyster))
    153  1.1  jtc 				pspeak(oyster,1);
    154  1.1  jtc 			for (i=1; i<100; i++)
    155  1.1  jtc 				if (toting(i)&&prop[i]<0)       /*2604  */
    156  1.1  jtc 					prop[i] = -1-prop[i];
    157  1.1  jtc 		}
    158  1.1  jtc 		wzdark=dark(0);                 /* 2605                 */
    159  1.1  jtc 		if (knfloc>0 && knfloc!=loc) knfloc=1;
    160  1.1  jtc 		getin(&wd1,&wd2);
    161  1.1  jtc 		if (delhit)                     /* user typed a DEL     */
    162  1.1  jtc 		{       delhit=0;               /* reset counter        */
    163  1.1  jtc 			copystr("quit",wd1);    /* pretend he's quitting*/
    164  1.1  jtc 			*wd2=0;
    165  1.1  jtc 		}
    166  1.1  jtc 	l2608:  if ((foobar = -foobar)>0) foobar=0;     /* 2608         */
    167  1.1  jtc 		/* should check here for "magic mode"                   */
    168  1.1  jtc 		turns++;
    169  1.1  jtc 		if (demo && turns>=SHORT) done(1);      /* to 13000     */
    170  1.1  jtc 
    171  1.1  jtc 		if (verb==say && *wd2!=0) verb=0;
    172  1.1  jtc 		if (verb==say)
    173  1.1  jtc 			goto l4090;
    174  1.1  jtc 		if (tally==0 && loc>=15 && loc!=33) clock1--;
    175  1.1  jtc 		if (clock1==0)
    176  1.1  jtc 		{       closing();                      /* to 10000     */
    177  1.1  jtc 			goto l19999;
    178  1.1  jtc 		}
    179  1.1  jtc 		if (clock1<0) clock2--;
    180  1.1  jtc 		if (clock2==0)
    181  1.1  jtc 		{       caveclose();            /* to 11000             */
    182  1.1  jtc 			continue;               /* back to 2            */
    183  1.1  jtc 		}
    184  1.1  jtc 		if (prop[lamp]==1) limit--;
    185  1.1  jtc 		if (limit<=30 && here(batter) && prop[batter]==0
    186  1.1  jtc 			&& here(lamp))
    187  1.1  jtc 		{       rspeak(188);            /* 12000                */
    188  1.1  jtc 			prop[batter]=1;
    189  1.1  jtc 			if (toting(batter)) drop(batter,loc);
    190  1.1  jtc 			limit=limit+2500;
    191  1.1  jtc 			lmwarn=FALSE;
    192  1.1  jtc 			goto l19999;
    193  1.1  jtc 		}
    194  1.1  jtc 		if (limit==0)
    195  1.1  jtc 		{       limit = -1;             /* 12400                */
    196  1.1  jtc 			prop[lamp]=0;
    197  1.1  jtc 			rspeak(184);
    198  1.1  jtc 			goto l19999;
    199  1.1  jtc 		}
    200  1.1  jtc 		if (limit<0&&loc<=8)
    201  1.1  jtc 		{       rspeak(185);            /* 12600                */
    202  1.1  jtc 			gaveup=TRUE;
    203  1.1  jtc 			done(2);                /* to 20000             */
    204  1.1  jtc 		}
    205  1.1  jtc 		if (limit<=30)
    206  1.1  jtc 		{       if (lmwarn|| !here(lamp)) goto l19999;  /*12200*/
    207  1.1  jtc 			lmwarn=TRUE;
    208  1.1  jtc 			spk=187;
    209  1.1  jtc 			if (place[batter]==0) spk=183;
    210  1.1  jtc 			if (prop[batter]==1) spk=189;
    211  1.1  jtc 			rspeak(spk);
    212  1.1  jtc 		}
    213  1.1  jtc 	l19999: k=43;
    214  1.1  jtc 		if (liqloc(loc)==water) k=70;
    215  1.1  jtc 		if (weq(wd1,"enter") &&
    216  1.1  jtc 		    (weq(wd2,"strea")||weq(wd2,"water")))
    217  1.1  jtc 			goto l2010;
    218  1.1  jtc 		if (weq(wd1,"enter") && *wd2!=0) goto l2800;
    219  1.1  jtc 		if ((!weq(wd1,"water")&&!weq(wd1,"oil"))
    220  1.1  jtc 		    || (!weq(wd2,"plant")&&!weq(wd2,"door")))
    221  1.1  jtc 			goto l2610;
    222  1.1  jtc 		if (at(vocab(wd2,1))) copystr("pour",wd2);
    223  1.1  jtc 
    224  1.1  jtc 	l2610:  if (weq(wd1,"west"))
    225  1.1  jtc 			if (++iwest==10) rspeak(17);
    226  1.1  jtc 	l2630:  i=vocab(wd1,-1);
    227  1.1  jtc 		if (i== -1)
    228  1.1  jtc 		{       spk=60;                 /* 3000         */
    229  1.1  jtc 			if (pct(20)) spk=61;
    230  1.1  jtc 			if (pct(20)) spk=13;
    231  1.1  jtc 			rspeak(spk);
    232  1.1  jtc 			goto l2600;
    233  1.1  jtc 		}
    234  1.1  jtc 		k=i%1000;
    235  1.1  jtc 		kq=i/1000+1;
    236  1.1  jtc 		switch(kq)
    237  1.1  jtc 		{   case 1: goto l8;
    238  1.1  jtc 		    case 2: goto l5000;
    239  1.1  jtc 		    case 3: goto l4000;
    240  1.1  jtc 		    case 4: goto l2010;
    241  1.1  jtc 		    default:
    242  1.1  jtc 			printf("Error 22\n");
    243  1.1  jtc 			exit(0);
    244  1.1  jtc 		}
    245  1.1  jtc 
    246  1.1  jtc 	l8:
    247  1.1  jtc 		switch(march())
    248  1.1  jtc 		{   case 2: continue;           /* i.e. goto l2         */
    249  1.1  jtc 		    case 99:
    250  1.1  jtc 			switch(die(99))
    251  1.1  jtc 			{   case 2000: goto l2000;
    252  1.1  jtc 			    default: bug(111);
    253  1.1  jtc 			}
    254  1.1  jtc 		    default: bug(110);
    255  1.1  jtc 		}
    256  1.1  jtc 
    257  1.1  jtc 	l2800:  copystr(wd2,wd1);
    258  1.1  jtc 		*wd2=0;
    259  1.1  jtc 		goto l2610;
    260  1.1  jtc 
    261  1.1  jtc 	l4000:  verb=k;
    262  1.1  jtc 		spk=actspk[verb];
    263  1.1  jtc 		if (*wd2!=0 && verb!=say) goto l2800;
    264  1.1  jtc 		if (verb==say) obj= *wd2;
    265  1.1  jtc 		if (obj!=0) goto l4090;
    266  1.1  jtc 	l4080:
    267  1.1  jtc 		switch(verb)
    268  1.1  jtc 		{   case 1:                     /* take = 8010          */
    269  1.1  jtc 			if (atloc[loc]==0||link[atloc[loc]]!=0) goto l8000;
    270  1.1  jtc 			for (i=1; i<=5; i++)
    271  1.1  jtc 				if (dloc[i]==loc&&dflag>=2) goto l8000;
    272  1.1  jtc 			obj=atloc[loc];
    273  1.1  jtc 			goto l9010;
    274  1.1  jtc 		    case 2: case 3: case 9:     /* 8000 : drop,say,wave */
    275  1.1  jtc 		    case 10: case 16: case 17:  /* calm,rub,toss        */
    276  1.1  jtc 		    case 19: case 21: case 28:  /* find,feed,break      */
    277  1.1  jtc 		    case 29:                    /* wake                 */
    278  1.1  jtc 		l8000:  printf("%s what?\n",wd1);
    279  1.1  jtc 			obj=0;
    280  1.1  jtc 			goto l2600;
    281  1.1  jtc 		    case 4: case 6:             /* 8040 open,lock       */
    282  1.1  jtc 			spk=28;
    283  1.1  jtc 			if (here(clam)) obj=clam;
    284  1.1  jtc 			if (here(oyster)) obj=oyster;
    285  1.1  jtc 			if (at(door)) obj=door;
    286  1.1  jtc 			if (at(grate)) obj=grate;
    287  1.1  jtc 			if (obj!=0 && here(chain)) goto l8000;
    288  1.1  jtc 			if (here(chain)) obj=chain;
    289  1.1  jtc 			if (obj==0) goto l2011;
    290  1.1  jtc 			goto l9040;
    291  1.1  jtc 		    case 5: goto l2009;         /* nothing              */
    292  1.1  jtc 		    case 7: goto l9070;         /* on                   */
    293  1.1  jtc 		    case 8: goto l9080;         /* off                  */
    294  1.1  jtc 		    case 11: goto l8000;        /* walk                 */
    295  1.1  jtc 		    case 12: goto l9120;        /* kill                 */
    296  1.1  jtc 		    case 13: goto l9130;        /* pour                 */
    297  1.1  jtc 		    case 14:                    /* eat: 8140            */
    298  1.1  jtc 			if (!here(food)) goto l8000;
    299  1.1  jtc 		l8142:  dstroy(food);
    300  1.1  jtc 			spk=72;
    301  1.1  jtc 			goto l2011;
    302  1.1  jtc 		    case 15: goto l9150;        /* drink                */
    303  1.1  jtc 		    case 18:                    /* quit: 8180           */
    304  1.1  jtc 			gaveup=yes(22,54,54);
    305  1.1  jtc 			if (gaveup) done(2);    /* 8185                 */
    306  1.1  jtc 			goto l2012;
    307  1.1  jtc 		    case 20:                    /* invent=8200          */
    308  1.1  jtc 			spk=98;
    309  1.1  jtc 			for (i=1; i<=100; i++)
    310  1.1  jtc 			{       if (i!=bear && toting(i))
    311  1.1  jtc 				{       if (spk==98) rspeak(99);
    312  1.1  jtc 					blklin=FALSE;
    313  1.1  jtc 					pspeak(i,-1);
    314  1.1  jtc 					blklin=TRUE;
    315  1.1  jtc 					spk=0;
    316  1.1  jtc 				}
    317  1.1  jtc 			}
    318  1.1  jtc 			if (toting(bear)) spk=141;
    319  1.1  jtc 			goto l2011;
    320  1.1  jtc 		    case 22: goto l9220;        /* fill                 */
    321  1.1  jtc 		    case 23: goto l9230;        /* blast                */
    322  1.1  jtc 		    case 24:                    /* score: 8240          */
    323  1.1  jtc 			scorng=TRUE;
    324  1.1  jtc 			printf("If you were to quit now, you would score");
    325  1.1  jtc 			printf(" %d out of a possible ",score());
    326  1.1  jtc 			printf("%d.",mxscor);
    327  1.1  jtc 			scorng=FALSE;
    328  1.1  jtc 			gaveup=yes(143,54,54);
    329  1.1  jtc 			if (gaveup) done(2);
    330  1.1  jtc 			goto l2012;
    331  1.1  jtc 		    case 25:                    /* foo: 8250            */
    332  1.1  jtc 			k=vocab(wd1,3);
    333  1.1  jtc 			spk=42;
    334  1.1  jtc 			if (foobar==1-k) goto l8252;
    335  1.1  jtc 			if (foobar!=0) spk=151;
    336  1.1  jtc 			goto l2011;
    337  1.1  jtc 		l8252:  foobar=k;
    338  1.1  jtc 			if (k!=4) goto l2009;
    339  1.1  jtc 			foobar=0;
    340  1.1  jtc 			if (place[eggs]==plac[eggs]
    341  1.1  jtc 				||(toting(eggs)&&loc==plac[eggs])) goto l2011;
    342  1.1  jtc 			if (place[eggs]==0&&place[troll]==0&&prop[troll]==0)
    343  1.1  jtc 				prop[troll]=1;
    344  1.1  jtc 			k=2;
    345  1.1  jtc 			if (here(eggs)) k=1;
    346  1.1  jtc 			if (loc==plac[eggs]) k=0;
    347  1.1  jtc 			move(eggs,plac[eggs]);
    348  1.1  jtc 			pspeak(eggs,k);
    349  1.1  jtc 			goto l2012;
    350  1.1  jtc 		    case 26:                    /* brief=8260           */
    351  1.1  jtc 			spk=156;
    352  1.1  jtc 			abbnum=10000;
    353  1.1  jtc 			detail=3;
    354  1.1  jtc 			goto l2011;
    355  1.1  jtc 		    case 27:                    /* read=8270            */
    356  1.1  jtc 			if (here(magzin)) obj=magzin;
    357  1.1  jtc 			if (here(tablet)) obj=obj*100+tablet;
    358  1.1  jtc 			if (here(messag)) obj=obj*100+messag;
    359  1.1  jtc 			if (closed&&toting(oyster)) obj=oyster;
    360  1.1  jtc 			if (obj>100||obj==0||dark(0)) goto l8000;
    361  1.1  jtc 			goto l9270;
    362  1.1  jtc 		    case 30:                    /* suspend=8300         */
    363  1.1  jtc 			spk=201;
    364  1.1  jtc 			if (demo) goto l2011;
    365  1.1  jtc 			printf("I can suspend your adventure for you so");
    366  1.1  jtc 			printf(" you can resume later, but\n");
    367  1.1  jtc 			printf("you will have to wait at least");
    368  1.1  jtc 			printf(" %d minutes before continuing.",latncy);
    369  1.1  jtc 			if (!yes(200,54,54)) goto l2012;
    370  1.1  jtc 			datime(&saved,&savet);
    371  1.1  jtc 			ciao(argv[0]);          /* Do we quit? */
    372  1.1  jtc 			continue;               /* Maybe not */
    373  1.1  jtc 		    case 31:                    /* hours=8310           */
    374  1.1  jtc 			printf("Colossal cave is closed 9am-5pm Mon ");
    375  1.1  jtc 			printf("through Fri except holidays.\n");
    376  1.1  jtc 			goto l2012;
    377  1.1  jtc 		    default: bug(23);
    378  1.1  jtc 		}
    379  1.1  jtc 
    380  1.1  jtc 	l4090:
    381  1.1  jtc 		switch(verb)
    382  1.1  jtc 		{   case 1:                     /* take = 9010          */
    383  1.1  jtc 	l9010:          switch(trtake())
    384  1.1  jtc 			{   case 2011: goto l2011;
    385  1.1  jtc 			    case 9220: goto l9220;
    386  1.1  jtc 			    case 2009: goto l2009;
    387  1.1  jtc 			    case 2012: goto l2012;
    388  1.1  jtc 			    default: bug(102);
    389  1.1  jtc 			}
    390  1.1  jtc 	l9020:      case 2:                     /* drop = 9020          */
    391  1.1  jtc 			switch(trdrop())
    392  1.1  jtc 			{   case 2011: goto l2011;
    393  1.1  jtc 			    case 19000: done(3);
    394  1.1  jtc 			    case 2012: goto l2012;
    395  1.1  jtc 			    default: bug(105);
    396  1.1  jtc 			}
    397  1.1  jtc 	l9030:      case 3:
    398  1.1  jtc 			switch(trsay())
    399  1.1  jtc 			{   case 2012: goto l2012;
    400  1.1  jtc 			    case 2630: goto l2630;
    401  1.1  jtc 			    default: bug(107);
    402  1.1  jtc 			}
    403  1.1  jtc 	l9040:      case 4:  case 6:            /* open, close          */
    404  1.1  jtc 			switch(tropen())
    405  1.1  jtc 			{   case 2011: goto l2011;
    406  1.1  jtc 			    case 2010: goto l2010;
    407  1.1  jtc 			    default: bug(106);
    408  1.1  jtc 			}
    409  1.1  jtc 		    case 5: goto l2009;         /* nothing              */
    410  1.1  jtc 		    case 7:                     /* on   9070            */
    411  1.1  jtc 	l9070:          if (!here(lamp))  goto l2011;
    412  1.1  jtc 			spk=184;
    413  1.1  jtc 			if (limit<0) goto l2011;
    414  1.1  jtc 			prop[lamp]=1;
    415  1.1  jtc 			rspeak(39);
    416  1.1  jtc 			if (wzdark) goto l2000;
    417  1.1  jtc 			goto l2012;
    418  1.1  jtc 
    419  1.1  jtc 		    case 8:                     /* off                  */
    420  1.1  jtc 	l9080:          if (!here(lamp)) goto l2011;
    421  1.1  jtc 			prop[lamp]=0;
    422  1.1  jtc 			rspeak(40);
    423  1.1  jtc 			if (dark(0)) rspeak(16);
    424  1.1  jtc 			goto l2012;
    425  1.1  jtc 
    426  1.1  jtc 		    case 9:                     /* wave                 */
    427  1.1  jtc 			if ((!toting(obj))&&(obj!=rod||!toting(rod2)))
    428  1.1  jtc 				spk=29;
    429  1.1  jtc 			if (obj!=rod||!at(fissur)||!toting(obj)||closng)
    430  1.1  jtc 				goto l2011;
    431  1.1  jtc 			prop[fissur]=1-prop[fissur];
    432  1.1  jtc 			pspeak(fissur,2-prop[fissur]);
    433  1.1  jtc 			goto l2012;
    434  1.1  jtc 		    case 10: case 11: case 18:  /* calm, walk, quit     */
    435  1.1  jtc 		    case 24: case 25: case 26:  /* score, foo, brief    */
    436  1.1  jtc 		    case 30: case 31:           /* suspend, hours       */
    437  1.1  jtc 			     goto l2011;
    438  1.1  jtc 	l9120:      case 12:                    /* kill                 */
    439  1.1  jtc 			switch(trkill())
    440  1.1  jtc 			{   case 8000: goto l8000;
    441  1.1  jtc 			    case 8: goto l8;
    442  1.1  jtc 			    case 2011: goto l2011;
    443  1.1  jtc 			    case 2608: goto l2608;
    444  1.1  jtc 			    case 19000: done(3);
    445  1.1  jtc 			    default: bug(112);
    446  1.1  jtc 			}
    447  1.1  jtc 	l9130:      case 13:                    /* pour                 */
    448  1.1  jtc 			if (obj==bottle||obj==0) obj=liq(0);
    449  1.1  jtc 			if (obj==0) goto l8000;
    450  1.1  jtc 			if (!toting(obj)) goto l2011;
    451  1.1  jtc 			spk=78;
    452  1.1  jtc 			if (obj!=oil&&obj!=water) goto l2011;
    453  1.1  jtc 			prop[bottle]=1;
    454  1.1  jtc 			place[obj]=0;
    455  1.1  jtc 			spk=77;
    456  1.1  jtc 			if (!(at(plant)||at(door))) goto l2011;
    457  1.1  jtc 			if (at(door))
    458  1.1  jtc 			{       prop[door]=0;   /* 9132                 */
    459  1.1  jtc 				if (obj==oil) prop[door]=1;
    460  1.1  jtc 				spk=113+prop[door];
    461  1.1  jtc 				goto l2011;
    462  1.1  jtc 			}
    463  1.1  jtc 			spk=112;
    464  1.1  jtc 			if (obj!=water) goto l2011;
    465  1.1  jtc 			pspeak(plant,prop[plant]+1);
    466  1.1  jtc 			prop[plant]=(prop[plant]+2)% 6;
    467  1.1  jtc 			prop[plant2]=prop[plant]/2;
    468  1.1  jtc 			k=null;
    469  1.1  jtc 			goto l8;
    470  1.1  jtc 		    case 14:                    /* 9140 - eat           */
    471  1.1  jtc 			if (obj==food) goto l8142;
    472  1.1  jtc 			if (obj==bird||obj==snake||obj==clam||obj==oyster
    473  1.1  jtc 			    ||obj==dwarf||obj==dragon||obj==troll
    474  1.1  jtc 			    ||obj==bear) spk=71;
    475  1.1  jtc 			goto l2011;
    476  1.1  jtc 	l9150:      case 15:                    /* 9150 - drink         */
    477  1.1  jtc 			if (obj==0&&liqloc(loc)!=water&&(liq(0)!=water
    478  1.1  jtc 				||!here(bottle))) goto l8000;
    479  1.1  jtc 			if (obj!=0&&obj!=water) spk=110;
    480  1.1  jtc 			if (spk==110||liq(0)!=water||!here(bottle))
    481  1.1  jtc 				goto l2011;
    482  1.1  jtc 			prop[bottle]=1;
    483  1.1  jtc 			place[water]=0;
    484  1.1  jtc 			spk=74;
    485  1.1  jtc 			goto l2011;
    486  1.1  jtc 		    case 16:                    /* 9160: rub            */
    487  1.1  jtc 			if (obj!=lamp) spk=76;
    488  1.1  jtc 			goto l2011;
    489  1.1  jtc 		    case 17:                    /* 9170: throw          */
    490  1.1  jtc 			switch(trtoss())
    491  1.1  jtc 			{   case 2011: goto l2011;
    492  1.1  jtc 			    case 9020: goto l9020;
    493  1.1  jtc 			    case 9120: goto l9120;
    494  1.1  jtc 			    case 8: goto l8;
    495  1.1  jtc 			    case 9210: goto l9210;
    496  1.1  jtc 			    default: bug(113);
    497  1.1  jtc 			}
    498  1.1  jtc 		    case 19: case 20:           /* 9190: find, invent   */
    499  1.1  jtc 			if (at(obj)||(liq(0)==obj&&at(bottle))
    500  1.1  jtc 				||k==liqloc(loc)) spk=94;
    501  1.1  jtc 			for (i=1; i<=5; i++)
    502  1.1  jtc 				if (dloc[i]==loc&&dflag>=2&&obj==dwarf)
    503  1.1  jtc 					spk=94;
    504  1.1  jtc 			if (closed) spk=138;
    505  1.1  jtc 			if (toting(obj)) spk=24;
    506  1.1  jtc 			goto l2011;
    507  1.1  jtc 	l9210:      case 21:                    /* feed                 */
    508  1.1  jtc 			switch(trfeed())
    509  1.1  jtc 			{   case 2011: goto l2011;
    510  1.1  jtc 			    default: bug(114);
    511  1.1  jtc 			}
    512  1.1  jtc 	l9220:      case 22:                    /* fill                 */
    513  1.1  jtc 			switch(trfill())
    514  1.1  jtc 			{   case 2011: goto l2011;
    515  1.1  jtc 			    case 8000: goto l8000;
    516  1.1  jtc 			    case 9020: goto l9020;
    517  1.1  jtc 			    default: bug(115);
    518  1.1  jtc 			}
    519  1.1  jtc 	l9230:      case 23:                    /* blast                */
    520  1.1  jtc 			if (prop[rod2]<0||!closed) goto l2011;
    521  1.1  jtc 			bonus=133;
    522  1.1  jtc 			if (loc==115) bonus=134;
    523  1.1  jtc 			if (here(rod2)) bonus=135;
    524  1.1  jtc 			rspeak(bonus);
    525  1.1  jtc 			done(2);
    526  1.1  jtc 	l9270:      case 27:                    /* read                 */
    527  1.1  jtc 			if (dark(0)) goto l5190;
    528  1.1  jtc 			if (obj==magzin) spk=190;
    529  1.1  jtc 			if (obj==tablet) spk=196;
    530  1.1  jtc 			if (obj==messag) spk=191;
    531  1.1  jtc 			if (obj==oyster&&hinted[2]&&toting(oyster)) spk=194;
    532  1.1  jtc 			if (obj!=oyster||hinted[2]||!toting(oyster)
    533  1.1  jtc 				||!closed) goto l2011;
    534  1.1  jtc 			hinted[2]=yes(192,193,54);
    535  1.1  jtc 			goto l2012;
    536  1.1  jtc 	l9280:      case 28:                    /* break                */
    537  1.1  jtc 			if (obj==mirror) spk=148;
    538  1.1  jtc 			if (obj==vase&&prop[vase]==0)
    539  1.1  jtc 			{       spk=198;
    540  1.1  jtc 				if (toting(vase)) drop(vase,loc);
    541  1.1  jtc 				prop[vase]=2;
    542  1.1  jtc 				fixed[vase]= -1;
    543  1.1  jtc 				goto l2011;
    544  1.1  jtc 			}
    545  1.1  jtc 			if (obj!=mirror||!closed) goto l2011;
    546  1.1  jtc 			rspeak(197);
    547  1.1  jtc 			done(3);
    548  1.1  jtc 
    549  1.1  jtc 	l9290:      case 29:                    /* wake                 */
    550  1.1  jtc 			if (obj!=dwarf||!closed) goto l2011;
    551  1.1  jtc 			rspeak(199);
    552  1.1  jtc 			done(3);
    553  1.1  jtc 
    554  1.1  jtc 		    default: bug(24);
    555  1.1  jtc 		}
    556  1.1  jtc 
    557  1.1  jtc 	l5000:
    558  1.1  jtc 		obj=k;
    559  1.1  jtc 		if (fixed[k]!=loc && !here(k)) goto l5100;
    560  1.1  jtc 	l5010:  if (*wd2!=0) goto l2800;
    561  1.1  jtc 		if (verb!=0) goto l4090;
    562  1.1  jtc 		printf("What do you want to do with the %s?\n",wd1);
    563  1.1  jtc 		goto l2600;
    564  1.1  jtc 	l5100:  if (k!=grate) goto l5110;
    565  1.1  jtc 		if (loc==1||loc==4||loc==7) k=dprssn;
    566  1.1  jtc 		if (loc>9&&loc<15) k=entrnc;
    567  1.1  jtc 		if (k!=grate) goto l8;
    568  1.1  jtc 	l5110:  if (k!=dwarf) goto l5120;
    569  1.1  jtc 		for (i=1; i<=5; i++)
    570  1.1  jtc 			if (dloc[i]==loc&&dflag>=2) goto l5010;
    571  1.1  jtc 	l5120:  if ((liq(0)==k&&here(bottle))||k==liqloc(loc)) goto l5010;
    572  1.1  jtc 		if (obj!=plant||!at(plant2)||prop[plant2]==0) goto l5130;
    573  1.1  jtc 		obj=plant2;
    574  1.1  jtc 		goto l5010;
    575  1.1  jtc 	l5130:  if (obj!=knife||knfloc!=loc) goto l5140;
    576  1.1  jtc 		knfloc = -1;
    577  1.1  jtc 		spk=116;
    578  1.1  jtc 		goto l2011;
    579  1.1  jtc 	l5140:  if (obj!=rod||!here(rod2)) goto l5190;
    580  1.1  jtc 		obj=rod2;
    581  1.1  jtc 		goto l5010;
    582  1.1  jtc 	l5190:  if ((verb==find||verb==invent)&&*wd2==0) goto l5010;
    583  1.1  jtc 		printf("I see no %s here\n",wd1);
    584  1.1  jtc 		goto l2012;
    585  1.1  jtc 	}
    586  1.1  jtc }
    587