Clean up logic for exiting input loop and scoring.
[open-adventure.git] / misc.c
1 #include <unistd.h>
2 #include <stdlib.h>
3 #include <stdio.h>
4 #include "main.h"
5 #include "share.h"      /* for SETUP */
6 #include "misc.h"
7 #include "funcs.h"
8
9 /* hack to ignore GCC Unused Result */
10 #define IGNORE(r) do{if(r){}}while(0)
11
12 /*  I/O routines (SPEAK, PSPEAK, RSPEAK, SETPRM, GETIN, YES) */
13
14 #undef SPEAK
15 void fSPEAK(long N) {
16 long BLANK, CASE, I, K, L, NEG, NPARMS, PARM, PRMTYP, STATE;
17
18 /*  Print the message which starts at LINES(N).  Precede it with a blank line
19  *  unless BLKLIN is false. */
20
21
22         if(N == 0)return;
23         BLANK=BLKLIN;
24         K=N;
25         NPARMS=1;
26 L10:    L=IABS(LINES[K])-1;
27         K=K+1;
28         LNLENG=0;
29         LNPOSN=1;
30         STATE=0;
31         for (I=K; I<=L; I++) {
32         PUTTXT(LINES[I],STATE,2,I);
33         } /* end loop */
34         LNPOSN=0;
35 L30:    LNPOSN=LNPOSN+1;
36 L32:    if(LNPOSN > LNLENG) goto L40;
37         if(INLINE[LNPOSN] != 63) goto L30;
38         {long x = LNPOSN+1; PRMTYP=INLINE[x];}
39 /*  63 is a "%"; the next character determine the type of parameter:  1 (!) =
40  *  suppress message completely, 29 (S) = NULL If PARM=1, else 'S' (optional
41  *  plural ending), 33 (W) = word (two 30-bit values) with trailing spaces
42  *  suppressed, 22 (L) or 31 (U) = word but map to lower/upper case, 13 (C) =
43  *  word in lower case with first letter capitalised, 30 (T) = text ending
44  *  with a word of -1, 65-73 (1-9) = number using that many characters,
45  *  12 (B) = variable number of blanks. */
46         if(PRMTYP == 1)return;
47         if(PRMTYP == 29) goto L320;
48         if(PRMTYP == 30) goto L340;
49         if(PRMTYP == 12) goto L360;
50         if(PRMTYP == 33 || PRMTYP == 22 || PRMTYP == 31 || PRMTYP == 13) goto
51                 L380;
52         PRMTYP=PRMTYP-64;
53         if(PRMTYP < 1 || PRMTYP > 9) goto L30;
54         SHFTXT(LNPOSN+2,PRMTYP-2);
55         LNPOSN=LNPOSN+PRMTYP;
56         PARM=IABS(PARMS[NPARMS]);
57         NEG=0;
58         if(PARMS[NPARMS] < 0)NEG=9;
59         /* 390 */ for (I=1; I<=PRMTYP; I++) {
60         LNPOSN=LNPOSN-1;
61         INLINE[LNPOSN]=MOD(PARM,10)+64;
62         if(I == 1 || PARM != 0) goto L390;
63         INLINE[LNPOSN]=NEG;
64         NEG=0;
65 L390:   PARM=PARM/10;
66         } /* end loop */
67         LNPOSN=LNPOSN+PRMTYP;
68 L395:   NPARMS=NPARMS+1;
69          goto L32;
70
71 L320:   SHFTXT(LNPOSN+2,-1);
72         INLINE[LNPOSN]=55;
73         if(PARMS[NPARMS] == 1)SHFTXT(LNPOSN+1,-1);
74          goto L395;
75
76 L340:   SHFTXT(LNPOSN+2,-2);
77         STATE=0;
78         CASE=2;
79 L345:   if(PARMS[NPARMS] < 0) goto L395;
80         {long x = NPARMS+1; if(PARMS[x] < 0)CASE=0;}
81         PUTTXT(PARMS[NPARMS],STATE,CASE,0);
82         NPARMS=NPARMS+1;
83          goto L345;
84
85 L360:   PRMTYP=PARMS[NPARMS];
86         SHFTXT(LNPOSN+2,PRMTYP-2);
87         if(PRMTYP == 0) goto L395;
88         for (I=1; I<=PRMTYP; I++) {
89         INLINE[LNPOSN]=0;
90         LNPOSN=LNPOSN+1;
91         } /* end loop */
92          goto L395;
93
94 L380:   SHFTXT(LNPOSN+2,-2);
95         STATE=0;
96         CASE= -1;
97         if(PRMTYP == 31)CASE=1;
98         if(PRMTYP == 33)CASE=0;
99         I=LNPOSN;
100         PUTTXT(PARMS[NPARMS],STATE,CASE,0);
101         {long x = NPARMS+1; PUTTXT(PARMS[x],STATE,CASE,0);}
102         if(PRMTYP == 13 && INLINE[I] >= 37 && INLINE[I] <=
103                 62)INLINE[I]=INLINE[I]-26;
104         NPARMS=NPARMS+2;
105          goto L32;
106
107 L40:    if(BLANK)TYPE0();
108         BLANK=false;
109         TYPE();
110         K=L+1;
111         if(LINES[K] >= 0) goto L10;
112         return;
113 }
114
115
116
117 #define SPEAK(N) fSPEAK(N)
118 #undef PSPEAK
119 void fPSPEAK(long MSG,long SKIP) {
120 long I, M;
121
122 /*  Find the skip+1st message from msg and print it.  MSG should be the index of
123  *  the inventory message for object.  (INVEN+N+1 message is PROP=N message). */
124
125
126         M=PTEXT[MSG];
127         if(SKIP < 0) goto L9;
128         for (I=0; I<=SKIP; I++) {
129 L1:     M=IABS(LINES[M]);
130         if(LINES[M] >= 0) goto L1;
131         /*etc*/ ;
132         } /* end loop */
133 L9:     SPEAK(M);
134         return;
135 }
136
137
138
139 #define PSPEAK(MSG,SKIP) fPSPEAK(MSG,SKIP)
140 #undef RSPEAK
141 void fRSPEAK(long I) {
142 ;
143
144 /*  Print the I-TH "random" message (section 6 of database). */
145
146
147         if(I != 0)SPEAK(RTEXT[I]);
148         return;
149 }
150
151
152
153 #define RSPEAK(I) fRSPEAK(I)
154 #undef SETPRM
155 void fSETPRM(long FIRST, long P1, long P2) {
156 ;
157
158 /*  Stores parameters into the PRMCOM parms array for use by speak.  P1 and P2
159  *  are stored into PARMS(FIRST) and PARMS(FIRST+1). */
160
161
162         if(FIRST >= 25)BUG(29);
163         PARMS[FIRST]=P1;
164         {long x = FIRST+1; PARMS[x]=P2;}
165         return;
166 }
167
168
169
170 #define SETPRM(FIRST,P1,P2) fSETPRM(FIRST,P1,P2)
171 #undef GETIN
172 #define WORD1 (*wORD1)
173 #define WORD1X (*wORD1X)
174 #define WORD2 (*wORD2)
175 #define WORD2X (*wORD2X)
176 bool fGETIN(FILE *input, long *wORD1, long *wORD1X, long *wORD2, long *wORD2X) {
177 long JUNK;
178
179 /*  Get a command from the adventurer.  Snarf out the first word, pad it with
180  *  blanks, and return it in WORD1.  Chars 6 thru 10 are returned in WORD1X, in
181  *  case we need to print out the whole word in an error message.  Any number of
182  *  blanks may follow the word.  If a second word appears, it is returned in
183  *  WORD2 (chars 6 thru 10 in WORD2X), else WORD2 is -1. */
184
185
186 L10:    if(BLKLIN)TYPE0();
187         MAPLIN(input);
188         if (feof(input))
189             return false;
190         WORD1=GETTXT(true,true,true,0);
191         if(BLKLIN && WORD1 < 0) goto L10;
192         WORD1X=GETTXT(false,true,true,0);
193 L12:    JUNK=GETTXT(false,true,true,0);
194         if(JUNK > 0) goto L12;
195         WORD2=GETTXT(true,true,true,0);
196         WORD2X=GETTXT(false,true,true,0);
197 L22:    JUNK=GETTXT(false,true,true,0);
198         if(JUNK > 0) goto L22;
199         if(GETTXT(true,true,true,0) <= 0)return true;
200         RSPEAK(53);
201          goto L10;
202 }
203
204
205
206 #undef WORD1
207 #undef WORD1X
208 #undef WORD2
209 #undef WORD2X
210 #define GETIN(SRC,WORD1,WORD1X,WORD2,WORD2X) fGETIN(SRC,&WORD1,&WORD1X,&WORD2,&WORD2X)
211 #undef YES
212 long fYES(FILE *input, long X, long Y, long Z) {
213
214 long YES, REPLY, JUNK1, JUNK2, JUNK3;
215
216 /*  Print message X, wait for yes/no answer.  If yes, print Y and return true;
217  *  if no, print Z and return false. */
218
219 L1:     RSPEAK(X);
220         GETIN(input, REPLY,JUNK1,JUNK2,JUNK3);
221         if(REPLY == MAKEWD(250519) || REPLY == MAKEWD(25)) goto L10;
222         if(REPLY == MAKEWD(1415) || REPLY == MAKEWD(14)) goto L20;
223         RSPEAK(185);
224          goto L1;
225 L10:    YES=true;
226         RSPEAK(Y);
227         return(YES);
228 L20:    YES=false;
229         RSPEAK(Z);
230         return(YES);
231 }
232
233
234
235
236
237 /*  Line-parsing routines (GETNUM, GETTXT, MAKEWD, PUTTXT, SHFTXT, TYPE0)
238                 */
239
240 /*  The routines on this page handle all the stuff that would normally be
241  *  taken care of by format statements.  We do it this way instead so that
242  *  we can handle textual data in a machine independent fashion.  All the
243  *  machine dependent i/o stuff is on the following page.  See that page
244  *  for a description of MAPCOM's inline array. */
245
246 #define YES(X,Y,Z) fYES(X,Y,Z)
247 #undef GETNUM
248 long fGETNUM(FILE *source) {
249 long DIGIT, GETNUM, SIGN;
250
251 /*  Obtain the next integer from an input line.  If K>0, we first read a
252  *  new input line from a file; if K<0, we read a line from the keyboard;
253  *  if K=0 we use a line that has already been read (and perhaps partially
254  *  scanned).  If we're at the end of the line or encounter an illegal
255  *  character (not a digit, hyphen, or blank), we return 0. */
256
257
258         if(source != NULL)MAPLIN(source);
259         GETNUM=0;
260 L10:    if(LNPOSN > LNLENG)return(GETNUM);
261         if(INLINE[LNPOSN] != 0) goto L20;
262         LNPOSN=LNPOSN+1;
263          goto L10;
264
265 L20:    SIGN=1;
266         if(INLINE[LNPOSN] != 9) goto L32;
267         SIGN= -1;
268 L30:    LNPOSN=LNPOSN+1;
269 L32:    if(LNPOSN > LNLENG || INLINE[LNPOSN] == 0) goto L42;
270         DIGIT=INLINE[LNPOSN]-64;
271         if(DIGIT < 0 || DIGIT > 9) goto L40;
272         GETNUM=GETNUM*10+DIGIT;
273          goto L30;
274
275 L40:    GETNUM=0;
276 L42:    GETNUM=GETNUM*SIGN;
277         LNPOSN=LNPOSN+1;
278         return(GETNUM);
279 }
280
281
282
283 #define GETNUM(K) fGETNUM(K)
284 #undef GETTXT
285 long fGETTXT(long SKIP,long ONEWRD, long UPPER, long HASH) {
286 long CHAR, GETTXT, I; static long SPLITTING = -1;
287
288 /*  Take characters from an input line and pack them into 30-bit words.
289  *  Skip says to skip leading blanks.  ONEWRD says stop if we come to a
290  *  blank.  UPPER says to map all letters to uppercase.  HASH may be used
291  *  as a parameter for encrypting the text if desired; however, a hash of 0
292  *  should result in unmodified bytes being packed.  If we reach the
293  *  end of the line, the word is filled up with blanks (which encode as 0's).
294  *  If we're already at end of line when GETTXT is called, we return -1. */
295
296         if(LNPOSN != SPLITTING)SPLITTING = -1;
297         GETTXT= -1;
298 L10:    if(LNPOSN > LNLENG)return(GETTXT);
299         if((!SKIP) || INLINE[LNPOSN] != 0) goto L11;
300         LNPOSN=LNPOSN+1;
301          goto L10;
302
303 L11:    GETTXT=0;
304         /* 15 */ for (I=1; I<=5; I++) {
305         GETTXT=GETTXT*64;
306         if(LNPOSN > LNLENG || (ONEWRD && INLINE[LNPOSN] == 0)) goto L15;
307         CHAR=INLINE[LNPOSN];
308         if(CHAR >= 63) goto L12;
309         SPLITTING = -1;
310         if(UPPER && CHAR >= 37)CHAR=CHAR-26;
311         GETTXT=GETTXT+CHAR;
312          goto L14;
313
314 L12:    if(SPLITTING == LNPOSN) goto L13;
315         GETTXT=GETTXT+63;
316         SPLITTING = LNPOSN;
317          goto L15;
318
319 L13:    GETTXT=GETTXT+CHAR-63;
320         SPLITTING = -1;
321 L14:    LNPOSN=LNPOSN+1;
322 L15:    /*etc*/ ;
323         } /* end loop */
324
325         if(HASH)GETTXT=GETTXT+MOD(HASH*13579L+5432L,97531L)*12345L+HASH;
326         return(GETTXT);
327 }
328
329
330
331 #define GETTXT(SKIP,ONEWRD,UPPER,HASH) fGETTXT(SKIP,ONEWRD,UPPER,HASH)
332 #undef MAKEWD
333 long fMAKEWD(long LETTRS) {
334 long I, L, MAKEWD;
335
336 /*  Combine five uppercase letters (represented by pairs of decimal digits
337  *  in lettrs) to form a 30-bit value matching the one that GETTXT would
338  *  return given those characters plus trailing blanks and HASH=0.  Caution:
339  *  lettrs will overflow 31 bits if 5-letter word starts with V-Z.  As a
340  *  kludgey workaround, you can increment a letter by 5 by adding 50 to
341  *  the next pair of digits. */
342
343
344         MAKEWD=0;
345         I=1;
346         L=LETTRS;
347 L10:    MAKEWD=MAKEWD+I*(MOD(L,50)+10);
348         I=I*64;
349         if(MOD(L,100) > 50)MAKEWD=MAKEWD+I*5;
350         L=L/100;
351         if(L != 0) goto L10;
352         I=64L*64L*64L*64L*64L/I;
353         MAKEWD=MAKEWD*I;
354         return(MAKEWD);
355 }
356
357
358
359 #define MAKEWD(LETTRS) fMAKEWD(LETTRS)
360 #undef PUTTXT
361 #define STATE (*sTATE)
362 void fPUTTXT(long WORD, long *sTATE, long CASE, long HASH) {
363 long ALPH1, ALPH2, BYTE, DIV, I, W;
364
365 /*  Unpack the 30-bit value in word to obtain up to 5 integer-encoded chars,
366  *  and store them in inline starting at LNPOSN.  If LNLENG>=LNPOSN, shift
367  *  existing characters to the right to make room.  HASH must be the same
368  *  as it was when gettxt created the 30-bit word.  STATE will be zero when
369  *  puttxt is called with the first of a sequence of words, but is thereafter
370  *  unchanged by the caller, so PUTTXT can use it to maintain state across
371  *  calls.  LNPOSN and LNLENG are incremented by the number of chars stored.
372  *  If CASE=1, all letters are made uppercase; if -1, lowercase; if 0, as is.
373  *  any other value for case is the same as 0 but also causes trailing blanks
374  *  to be included (in anticipation of subsequent additional text). */
375
376
377         ALPH1=13*CASE+24;
378         ALPH2=26*IABS(CASE)+ALPH1;
379         if(IABS(CASE) > 1)ALPH1=ALPH2;
380 /*  ALPH1&2 DEFINE RANGE OF WRONG-CASE CHARS, 11-36 OR 37-62 OR EMPTY. */
381         DIV=64L*64L*64L*64L;
382         W=WORD;
383         if(HASH)W=W-MOD(HASH*13579L+5432L,97531L)*12345L-HASH;
384         /* 18 */ for (I=1; I<=5; I++) {
385         if(W <= 0 && STATE == 0 && IABS(CASE) <= 1)return;
386         BYTE=W/DIV;
387         if(STATE != 0 || BYTE != 63) goto L12;
388         STATE=63;
389          goto L18;
390
391 L12:    SHFTXT(LNPOSN,1);
392         STATE=STATE+BYTE;
393         if(STATE < ALPH2 && STATE >= ALPH1)STATE=STATE-26*CASE;
394         INLINE[LNPOSN]=STATE;
395         LNPOSN=LNPOSN+1;
396         STATE=0;
397 L18:    W=(W-BYTE*DIV)*64;
398         } /* end loop */
399         return;
400 }
401
402
403
404 #undef STATE
405 #define PUTTXT(WORD,STATE,CASE,HASH) fPUTTXT(WORD,&STATE,CASE,HASH)
406 #undef SHFTXT
407 void fSHFTXT(long FROM, long DELTA) {
408 long I, II, JJ;
409
410 /*  Move INLINE(N) to INLINE(N+DELTA) for N=FROM,LNLENG.  Delta can be
411  *  negative.  LNLENG is updated; LNPOSN is not changed. */
412
413
414         if(LNLENG < FROM || DELTA == 0) goto L2;
415         for (I=FROM; I<=LNLENG; I++) {
416         II=I;
417         if(DELTA > 0)II=FROM+LNLENG-I;
418         JJ=II+DELTA;
419         INLINE[JJ]=INLINE[II];
420         } /* end loop */
421 L2:     LNLENG=LNLENG+DELTA;
422         return;
423 }
424
425
426
427 #define SHFTXT(FROM,DELTA) fSHFTXT(FROM,DELTA)
428 #undef TYPE0
429 void fTYPE0() {
430 long TEMP;
431
432 /*  Type a blank line.  This procedure is provided as a convenience for callers
433  *  who otherwise have no use for MAPCOM. */
434
435
436         TEMP=LNLENG;
437         LNLENG=0;
438         TYPE();
439         LNLENG=TEMP;
440         return;
441 }
442
443
444
445 #define TYPE0() fTYPE0()
446
447
448 /*  Suspend/resume I/O routines (SAVWDS, SAVARR, SAVWRD) */
449
450 #undef SAVWDS
451 void fSAVWDS(long *W1, long *W2, long *W3, long *W4, long *W5, long *W6, long *W7) {
452
453 /*  Write or read 7 variables.  See SAVWRD. */
454
455
456         SAVWRD(0,(*W1));
457         SAVWRD(0,(*W2));
458         SAVWRD(0,(*W3));
459         SAVWRD(0,(*W4));
460         SAVWRD(0,(*W5));
461         SAVWRD(0,(*W6));
462         SAVWRD(0,(*W7));
463         return;
464 }
465
466
467 #define SAVWDS(W1,W2,W3,W4,W5,W6,W7) fSAVWDS(&W1,&W2,&W3,&W4,&W5,&W6,&W7)
468 #undef SAVARR
469 void fSAVARR(long ARR[], long N) {
470 long I;
471
472 /*  Write or read an array of N words.  See SAVWRD. */
473
474
475         for (I=1; I<=N; I++) {
476         SAVWRD(0,ARR[I]);
477         } /* end loop */
478         return;
479 }
480
481
482
483 #define SAVARR(ARR,N) fSAVARR(ARR,N)
484 #undef SAVWRD
485 #define WORD (*wORD)
486 void fSAVWRD(long OP, long *wORD) {
487 static long BUF[250], CKSUM = 0, H1, HASH = 0, N = 0, STATE = 0;
488
489 /*  If OP<0, start writing a file, using word to initialise encryption; save
490  *  word in the file.  If OP>0, start reading a file; read the file to find
491  *  the value with which to decrypt the rest.  In either case, if a file is
492  *  already open, finish writing/reading it and don't start a new one.  If OP=0,
493  *  read/write a single word.  Words are buffered in case that makes for more
494  *  efficient disk use.  We also compute a simple checksum to catch elementary
495  *  poking within the saved file.  When we finish reading/writing the file,
496  *  we store zero into WORD if there's no checksum error, else nonzero. */
497
498
499         if(OP != 0){long ifvar; ifvar=(STATE); switch (ifvar<0? -1 : ifvar>0? 1 :
500                 0) { case -1: goto L30; case 0: goto L10; case 1: goto L30; }}
501         if(STATE == 0)return;
502         if(N == 250)SAVEIO(1,STATE > 0,BUF);
503         N=MOD(N,250)+1;
504         H1=MOD(HASH*1093L+221573L,1048576L);
505         HASH=MOD(H1*1093L+221573L,1048576L);
506         H1=MOD(H1,1234)*765432+MOD(HASH,123);
507         N--;
508         if(STATE > 0)WORD=BUF[N]+H1;
509         BUF[N]=WORD-H1;
510         N++;
511         CKSUM=MOD(CKSUM*13+WORD,1000000000L);
512         return;
513
514 L10:    STATE=OP;
515         SAVEIO(0,STATE > 0,BUF);
516         N=1;
517         if(STATE > 0) goto L15;
518         HASH=MOD(WORD,1048576L);
519         BUF[0]=1234L*5678L-HASH;
520 L13:    CKSUM=BUF[0];
521         return;
522
523 L15:    SAVEIO(1,true,BUF);
524         HASH=MOD(1234L*5678L-BUF[0],1048576L);
525          goto L13;
526
527 L30:    if(N == 250)SAVEIO(1,STATE > 0,BUF);
528         N=MOD(N,250)+1;
529         if(STATE > 0) goto L32;
530         N--; BUF[N]=CKSUM; N++;
531         SAVEIO(1,false,BUF);
532 L32:    N--; WORD=BUF[N]-CKSUM; N++;
533         SAVEIO(-1,STATE > 0,BUF);
534         STATE=0;
535         return;
536 }
537
538
539
540
541
542 /*  Data struc. routines (VOCAB, DSTROY, JUGGLE, MOVE, PUT, CARRY, DROP, ATDWRF)
543                 */
544
545 #undef WORD
546 #define SAVWRD(OP,WORD) fSAVWRD(OP,&WORD)
547 #undef VOCAB
548 long fVOCAB(long ID, long INIT) {
549 long HASH, I, VOCAB;
550
551 /*  Look up ID in the vocabulary (ATAB) and return its "definition" (KTAB), or
552  *  -1 if not found.  If INIT is positive, this is an initialisation call setting
553  *  up a keyword variable, and not finding it constitutes a bug.  It also means
554  *  that only KTAB values which taken over 1000 equal INIT may be considered.
555  *  (Thus "STEPS", which is a motion verb as well as an object, may be located
556  *  as an object.)  And it also means the KTAB value is taken modulo 1000. */
557
558         HASH=10000;
559         /* 1 */ for (I=1; I<=TABSIZ; I++) {
560         if(KTAB[I] == -1) goto L2;
561         HASH=HASH+7;
562         if(INIT >= 0 && KTAB[I]/1000 != INIT) goto L1;
563         if(ATAB[I] == ID+HASH*HASH) goto L3;
564 L1:     /*etc*/ ;
565         } /* end loop */
566         BUG(21);
567
568 L2:     VOCAB= -1;
569         if(INIT < 0)return(VOCAB);
570         BUG(5);
571
572 L3:     VOCAB=KTAB[I];
573         if(INIT >= 0)VOCAB=MOD(VOCAB,1000);
574         return(VOCAB);
575 }
576
577
578
579 #define VOCAB(ID,INIT) fVOCAB(ID,INIT)
580 #undef DSTROY
581 void fDSTROY(long OBJECT) {
582 ;
583
584 /*  Permanently eliminate "OBJECT" by moving to a non-existent location. */
585
586
587         MOVE(OBJECT,0);
588         return;
589 }
590
591
592
593 #define DSTROY(OBJECT) fDSTROY(OBJECT)
594 #undef JUGGLE
595 void fJUGGLE(long OBJECT) {
596 long I, J;
597
598 /*  Juggle an object by picking it up and putting it down again, the purpose
599  *  being to get the object to the front of the chain of things at its loc. */
600
601
602         I=PLACE[OBJECT];
603         J=FIXED[OBJECT];
604         MOVE(OBJECT,I);
605         MOVE(OBJECT+100,J);
606         return;
607 }
608
609
610
611 #define JUGGLE(OBJECT) fJUGGLE(OBJECT)
612 #undef MOVE
613 void fMOVE(long OBJECT, long WHERE) {
614 long FROM;
615
616 /*  Place any object anywhere by picking it up and dropping it.  May already be
617  *  toting, in which case the carry is a no-op.  Mustn't pick up objects which
618  *  are not at any loc, since carry wants to remove objects from ATLOC chains. */
619
620
621         if(OBJECT > 100) goto L1;
622         FROM=PLACE[OBJECT];
623          goto L2;
624 L1:     {long x = OBJECT-100; FROM=FIXED[x];}
625 L2:     if(FROM > 0 && FROM <= 300)CARRY(OBJECT,FROM);
626         DROP(OBJECT,WHERE);
627         return;
628 }
629
630
631
632 #define MOVE(OBJECT,WHERE) fMOVE(OBJECT,WHERE)
633 #undef PUT
634 long fPUT(long OBJECT, long WHERE, long PVAL) {
635 long PUT;
636
637 /*  PUT is the same as MOVE, except it returns a value used to set up the
638  *  negated PROP values for the repository objects. */
639
640
641         MOVE(OBJECT,WHERE);
642         PUT=(-1)-PVAL;
643         return(PUT);
644 }
645
646
647
648 #define PUT(OBJECT,WHERE,PVAL) fPUT(OBJECT,WHERE,PVAL)
649 #undef CARRY
650 void fCARRY(long OBJECT, long WHERE) {
651 long TEMP;
652
653 /*  Start toting an object, removing it from the list of things at its former
654  *  location.  Incr holdng unless it was already being toted.  If OBJECT>100
655  *  (moving "fixed" second loc), don't change PLACE or HOLDNG. */
656
657
658         if(OBJECT > 100) goto L5;
659         if(PLACE[OBJECT] == -1)return;
660         PLACE[OBJECT]= -1;
661         HOLDNG=HOLDNG+1;
662 L5:     if(ATLOC[WHERE] != OBJECT) goto L6;
663         ATLOC[WHERE]=LINK[OBJECT];
664         return;
665 L6:     TEMP=ATLOC[WHERE];
666 L7:     if(LINK[TEMP] == OBJECT) goto L8;
667         TEMP=LINK[TEMP];
668          goto L7;
669 L8:     LINK[TEMP]=LINK[OBJECT];
670         return;
671 }
672
673
674
675 #define CARRY(OBJECT,WHERE) fCARRY(OBJECT,WHERE)
676 #undef DROP
677 void fDROP(long OBJECT, long WHERE) {
678 ;
679
680 /*  Place an object at a given loc, prefixing it onto the ATLOC list.  Decr
681  *  HOLDNG if the object was being toted. */
682
683
684         if(OBJECT > 100) goto L1;
685         if(PLACE[OBJECT] == -1)HOLDNG=HOLDNG-1;
686         PLACE[OBJECT]=WHERE;
687          goto L2;
688 L1:     {long x = OBJECT-100; FIXED[x]=WHERE;}
689 L2:     if(WHERE <= 0)return;
690         LINK[OBJECT]=ATLOC[WHERE];
691         ATLOC[WHERE]=OBJECT;
692         return;
693 }
694
695
696
697 #define DROP(OBJECT,WHERE) fDROP(OBJECT,WHERE)
698 #undef ATDWRF
699 long fATDWRF(long WHERE) {
700 long ATDWRF, I;
701
702 /*  Return the index of first dwarf at the given location, zero if no dwarf is
703  *  there (or if dwarves not active yet), -1 if all dwarves are dead.  Ignore
704  *  the pirate (6th dwarf). */
705
706
707         ATDWRF=0;
708         if(DFLAG < 2)return(ATDWRF);
709         ATDWRF= -1;
710         for (I=1; I<=5; I++) {
711         if(DLOC[I] == WHERE) goto L2;
712         if(DLOC[I] != 0)ATDWRF=0;
713         } /* end loop */
714         return(ATDWRF);
715
716 L2:     ATDWRF=I;
717         return(ATDWRF);
718 }
719
720
721
722
723 #define ATDWRF(WHERE) fATDWRF(WHERE)
724
725
726
727 /*  Utility routines (SETBIT, TSTBIT, set_seed, get_next_lcg_value, randrange, RNDVOC, BUG) */
728
729 #undef SETBIT
730 long fSETBIT(long BIT) {
731 long I, SETBIT;
732
733 /*  Returns 2**bit for use in constructing bit-masks. */
734
735
736         SETBIT=1;
737         if(BIT <= 0)return(SETBIT);
738         for (I=1; I<=BIT; I++) {
739         SETBIT=SETBIT+SETBIT;
740         } /* end loop */
741         return(SETBIT);
742 }
743
744
745
746 #define SETBIT(BIT) fSETBIT(BIT)
747 #undef TSTBIT
748 long fTSTBIT(long MASK, long BIT) {
749 long TSTBIT;
750
751 /*  Returns true if the specified bit is set in the mask. */
752
753
754         TSTBIT=MOD(MASK/SETBIT(BIT),2) != 0;
755         return(TSTBIT);
756 }
757
758
759
760 #define TSTBIT(MASK,BIT) fTSTBIT(MASK,BIT)
761
762 void set_seed(long seedval)
763 {
764         srand(seedval);
765         lcgstate.x = (unsigned long) rand() % lcgstate.m;
766 }
767
768 unsigned long get_next_lcg_value(void)
769 {
770   /* Return the LCG's current value, and then iterate it. */
771   unsigned long old_x = lcgstate.x;
772   lcgstate.x = (lcgstate.a * lcgstate.x + lcgstate.c) % lcgstate.m;
773   return(old_x);
774 }
775
776 long randrange(long range)
777 {
778   /* Return a random integer from [0, range). */
779   long result = range * get_next_lcg_value() / lcgstate.m;
780   return(result);
781 }
782
783 #undef RNDVOC
784 long fRNDVOC(long CHAR, long FORCE) {
785 long DIV, I, J, RNDVOC;
786
787 /*  Searches the vocabulary for a word whose second character is char, and
788  *  changes that word such that each of the other four characters is a
789  *  random letter.  If force is non-zero, it is used as the new word.
790  *  Returns the new word. */
791
792
793         RNDVOC=FORCE;
794         if(RNDVOC != 0) goto L3;
795         for (I=1; I<=5; I++) {
796         J=11+randrange(26);
797         if(I == 2)J=CHAR;
798         RNDVOC=RNDVOC*64+J;
799         } /* end loop */
800 L3:     J=10000;
801         DIV=64L*64L*64L;
802         for (I=1; I<=TABSIZ; I++) {
803         J=J+7;
804         if(MOD((ATAB[I]-J*J)/DIV,64L) == CHAR) goto L8;
805         /*etc*/ ;
806         } /* end loop */
807         BUG(5);
808
809 L8:     ATAB[I]=RNDVOC+J*J;
810         return(RNDVOC);
811 }
812
813
814
815 #define RNDVOC(CHAR,FORCE) fRNDVOC(CHAR,FORCE)
816 #undef BUG
817 void fBUG(long NUM) {
818
819 /*  The following conditions are currently considered fatal bugs.  Numbers < 20
820  *  are detected while reading the database; the others occur at "run time".
821  *      0       Message line > 70 characters
822  *      1       Null line in message
823  *      2       Too many words of messages
824  *      3       Too many travel options
825  *      4       Too many vocabulary words
826  *      5       Required vocabulary word not found
827  *      6       Too many RTEXT messages
828  *      7       Too many hints
829  *      8       Location has cond bit being set twice
830  *      9       Invalid section number in database
831  *      10      Too many locations
832  *      11      Too many class or turn messages
833  *      20      Special travel (500>L>300) exceeds goto list
834  *      21      Ran off end of vocabulary table
835  *      22      Vocabulary type (N/1000) not between 0 and 3
836  *      23      Intransitive action verb exceeds goto list
837  *      24      Transitive action verb exceeds goto list
838  *      25      Conditional travel entry with no alternative
839  *      26      Location has no travel entries
840  *      27      Hint number exceeds goto list
841  *      28      Invalid month returned by date function
842  *      29      Too many parameters given to SETPRM */
843
844         printf("Fatal error %ld.  See source code for interpretation.\n",
845            NUM);
846         exit(0);
847 }
848
849
850
851
852
853 /*  Machine dependent routines (MAPLIN, TYPE, MPINIT, SAVEIO) */
854
855 #define BUG(NUM) fBUG(NUM)
856 #undef MAPLIN
857 void fMAPLIN(FILE *OPENED) {
858         signed char *cp;
859     
860 /*  Read a line of input, from the specified input source,
861  *  translate the chars to integers in the range 0-126 and store
862  *  them in the common array "INLINE".  Integer values are as follows:
863  *     0   = space [ASCII CODE 40 octal, 32 decimal]
864  *    1-2  = !" [ASCII 41-42 octal, 33-34 decimal]
865  *    3-10 = '()*+,-. [ASCII 47-56 octal, 39-46 decimal]
866  *   11-36 = upper-case letters
867  *   37-62 = lower-case letters
868  *    63   = percent (%) [ASCII 45 octal, 37 decimal]
869  *   64-73 = digits, 0 through 9
870  *  Remaining characters can be translated any way that is convenient;
871  *  The "TYPE" routine below is used to map them back to characters when
872  *  necessary.  The above mappings are required so that certain special
873  *  characters are known to fit in 6 bits and/or can be easily spotted.
874  *  Array elements beyond the end of the line should be filled with 0,
875  *  and LNLENG should be set to the index of the last character.
876  *
877  *  If the data file uses a character other than space (e.g., tab) to
878  *  separate numbers, that character should also translate to 0.
879  *
880  *  This procedure may use the map1,map2 arrays to maintain static data for
881  *  the mapping.  MAP2(1) is set to 0 when the program starts
882  *  and is not changed thereafter unless the routines on this page choose
883  *  to do so. */
884
885         if(MAP2[1] == 0)MPINIT();
886
887         if (!oldstyle && SETUP && OPENED == stdin)
888                 fputs("> ", stdout);
889         do {
890                 IGNORE(fgets(raw_input,sizeof(INLINE)-1,OPENED));
891         } while
892                 /* allow comments in logfiles */
893                 (!feof(OPENED) && raw_input[0] == '#');
894         if (feof(OPENED)) {
895                 if (logfp && OPENED == stdin)
896                         fclose(logfp);
897         } else {
898                 if (logfp)
899                         IGNORE(fputs(raw_input, logfp));
900                 else if (!isatty(0))
901                         IGNORE(fputs(raw_input, stdout));
902                 for (cp = raw_input; *cp; cp++)
903                         INLINE[cp - raw_input + 1]=MAP1[*cp + 1];
904                 LNLENG = (cp - raw_input);
905                 LNPOSN=1;
906         }
907 }
908 #define MAPLIN(FIL) fMAPLIN(FIL)
909
910 #undef TYPE
911 void fTYPE(void) {
912 long I, VAL;
913
914 /*  Type the first "LNLENG" characters stored in inline, mapping them
915  *  from integers to text per the rules described above.  INLINE(I),
916  *  I=1,LNLENG may be changed by this routine. */
917
918
919         if(LNLENG != 0) goto L10;
920         printf("\n");
921         return;
922
923 L10:    if(MAP2[1] == 0)MPINIT();
924         for (I=1; I<=LNLENG; I++) {
925         VAL=INLINE[I];
926         {long x = VAL+1; INLINE[I]=MAP2[x];}
927         } /* end loop */
928         {long x = LNLENG+1; INLINE[x]=0;}
929         printf("%s\n",INLINE+1);
930         return;
931 }
932
933
934
935 #define TYPE() fTYPE()
936 #undef MPINIT
937 void fMPINIT(void) {
938 long FIRST, I, J, LAST, VAL;
939 static long RUNS[7][2] = {32,34, 39,46, 65,90, 97,122, 37,37, 48,57, 0,126};
940
941
942         for (I=1; I<=128; I++) {
943         MAP1[I]= -1;
944         } /* end loop */
945         VAL=0;
946         for (I=0; I<7; I++) {
947         FIRST=RUNS[I][0];
948         LAST=RUNS[I][1];
949         /* 22 */ for (J=FIRST; J<=LAST; J++) {
950         J++; if(MAP1[J] >= 0) goto L22;
951         MAP1[J]=VAL;
952         VAL=VAL+1;
953 L22:    J--;
954         } /* end loop */
955         /*etc*/ ;
956         } /* end loop */
957         MAP1[128]=MAP1[10];
958 /*  For this version, tab (9) maps to space (32), so del (127) uses tab's value */
959         MAP1[10]=MAP1[33];
960         MAP1[11]=MAP1[33];
961
962         for (I=0; I<=126; I++) {
963         I++; VAL=MAP1[I]+1; I--;
964         MAP2[VAL]=I*('B'-'A');
965         if(I >= 64)MAP2[VAL]=(I-64)*('B'-'A')+'@';
966         } /* end loop */
967
968         return;
969 }
970
971
972
973 #define MPINIT() fMPINIT()
974 #undef SAVEIO
975 void fSAVEIO(long OP, long IN, long ARR[]) {
976 static FILE *F; char NAME[50];
977
978 /*  If OP=0, ask for a file name and open a file.  (If IN=true, the file is for
979  *  input, else output.)  If OP>0, read/write ARR from/into the previously-opened
980  *  file.  (ARR is a 250-integer array.)  If OP<0, finish reading/writing the
981  *  file.  (Finishing writing can be a no-op if a "stop" statement does it
982  *  automatically.  Finishing reading can be a no-op as long as a subsequent
983  *  SAVEIO(0,false,X) will still work.)  If you can catch errors (e.g., no such
984  *  file) and try again, great.  DEC F40 can't. */
985
986
987         {long ifvar; ifvar=(OP); switch (ifvar<0? -1 : ifvar>0? 1 : 0) { case -1:
988                 goto L10; case 0: goto L20; case 1: goto L30; }}
989
990 L10:    fclose(F);
991         return;
992
993 L20:    printf("\nFile name: ");
994         IGNORE(fgets(NAME, sizeof(NAME), stdin));
995         F=fopen(NAME,(IN ? READ_MODE : WRITE_MODE));
996         if(F == NULL) {printf("Can't open file, try again.\n"); goto L20;}
997         return;
998
999 L30:    if(IN)IGNORE(fread(ARR,sizeof(long),250,F));
1000         if(!IN)fwrite(ARR,sizeof(long),250,F);
1001         return;
1002
1003 }
1004
1005
1006
1007 long fIABS(N)long N; {return(N<0? -N : N);}
1008 long fMOD(N,M)long N, M; {return(N%M);}