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