| Commit | Line | Data |
|---|---|---|
| 984263bc MD |
1 | /*- |
| 2 | * Copyright (c) 1991, 1993 | |
| 3 | * The Regents of the University of California. All rights reserved. | |
| 4 | * | |
| 5 | * The game adventure was originally written in Fortran by Will Crowther | |
| 6 | * and Don Woods. It was later translated to C and enhanced by Jim | |
| 7 | * Gillogly. This code is derived from software contributed to Berkeley | |
| 8 | * by Jim Gillogly at The Rand Corporation. | |
| 9 | * | |
| 10 | * Redistribution and use in source and binary forms, with or without | |
| 11 | * modification, are permitted provided that the following conditions | |
| 12 | * are met: | |
| 13 | * 1. Redistributions of source code must retain the above copyright | |
| 14 | * notice, this list of conditions and the following disclaimer. | |
| 15 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 16 | * notice, this list of conditions and the following disclaimer in the | |
| 17 | * documentation and/or other materials provided with the distribution. | |
| 6693db17 | 18 | * 3. Neither the name of the University nor the names of its contributors |
| 984263bc MD |
19 | * may be used to endorse or promote products derived from this software |
| 20 | * without specific prior written permission. | |
| 21 | * | |
| 22 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
| 23 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 24 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 25 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
| 26 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 27 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 28 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 29 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 30 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 31 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 32 | * SUCH DAMAGE. | |
| 1de703da MD |
33 | * |
| 34 | * @(#)io.c 8.1 (Berkeley) 5/31/93 | |
| 35 | * $FreeBSD: src/games/adventure/io.c,v 1.8.2.1 2001/03/05 11:43:11 kris Exp $ | |
| 984263bc MD |
36 | */ |
| 37 | ||
| 6693db17 | 38 | /* Re-coding of advent in C: file i/o and user i/o */ |
| 984263bc MD |
39 | |
| 40 | #include "hdr.h" | |
| 41 | #include <stdio.h> | |
| 42 | #include <stdlib.h> | |
| 43 | #include <string.h> | |
| 44 | #include <err.h> | |
| 45 | ||
| 6693db17 SW |
46 | static int next(void); |
| 47 | static void rdesc(int); | |
| 48 | static void rdflt(void); | |
| 49 | static void rhints(void); | |
| 50 | static void rliq(void); | |
| 51 | static void rlocs(void); | |
| 52 | static int rnum(void); | |
| 53 | static void rtrav(void); | |
| 54 | static void rvoc(void); | |
| 984263bc | 55 | #ifdef DEBUG |
| 6693db17 | 56 | static void twrite(int); |
| 984263bc MD |
57 | #endif |
| 58 | ||
| 6693db17 | 59 | /* Get command from user. No prompt, usually. */ |
| 984263bc | 60 | void |
| c11b8fa9 | 61 | getin(char **wrd1, char **wrd2) |
| 6693db17 SW |
62 | { |
| 63 | char *s; | |
| 64 | static char wd1buf[MAXSTR], wd2buf[MAXSTR]; | |
| 984263bc MD |
65 | int first, numch; |
| 66 | ||
| 6693db17 SW |
67 | *wrd1 = wd1buf; /* return ptr to internal string */ |
| 68 | *wrd2 = wd2buf; | |
| 69 | wd2buf[0] = 0; /* in case it isn't set here */ | |
| 70 | for (s = wd1buf, first = 1, numch = 0;;) { | |
| 71 | if ((*s = getchar()) >= 'A' && *s <= 'Z') | |
| 72 | *s = *s - ('A' - 'a'); /* convert to upper case */ | |
| 73 | switch (*s) { /* start reading from user */ | |
| 74 | case '\n': | |
| 75 | *s = 0; | |
| 984263bc | 76 | return; |
| 6693db17 SW |
77 | case ' ': |
| 78 | if (s == wd1buf || s == wd2buf) /* initial blank */ | |
| 984263bc | 79 | continue; |
| 6693db17 SW |
80 | *s = 0; |
| 81 | if (first) { /* finished 1st wd; start 2nd */ | |
| 82 | first = numch = 0; | |
| 83 | s = wd2buf; | |
| 984263bc | 84 | break; |
| 6693db17 SW |
85 | } else { /* finished 2nd word */ |
| 86 | FLUSHLINE; | |
| 87 | *s = 0; | |
| 984263bc MD |
88 | return; |
| 89 | } | |
| 6693db17 | 90 | case EOF: |
| 984263bc MD |
91 | printf("user closed input stream, quitting...\n"); |
| 92 | exit(0); | |
| 6693db17 SW |
93 | default: |
| 94 | if (++numch >= MAXSTR) { /* string too long */ | |
| 95 | printf("Give me a break!!\n"); | |
| 96 | wd1buf[0] = wd2buf[0] = 0; | |
| 984263bc MD |
97 | FLUSHLINE; |
| 98 | return; | |
| 99 | } | |
| 100 | s++; | |
| 101 | } | |
| 102 | } | |
| 103 | } | |
| 104 | ||
| 6693db17 | 105 | /* confirm with rspeak */ |
| 984263bc | 106 | int |
| c11b8fa9 | 107 | yes(int x, int y, int z) |
| 6693db17 SW |
108 | { |
| 109 | int result; | |
| 984263bc MD |
110 | int ch; |
| 111 | ||
| 112 | result = FALSE; | |
| 6693db17 SW |
113 | for (;;) { |
| 114 | rspeak(x); /* tell him what we want */ | |
| 115 | if ((ch = getchar()) == 'y') | |
| 116 | result = TRUE; | |
| 117 | else if (ch == 'n') | |
| 118 | result = FALSE; | |
| 984263bc MD |
119 | else if (ch == EOF) { |
| 120 | printf("user closed input stream, quitting...\n"); | |
| 121 | exit(0); | |
| 122 | } | |
| 123 | FLUSHLINE; | |
| 6693db17 SW |
124 | if (ch == 'y' || ch == 'n') |
| 125 | break; | |
| 984263bc MD |
126 | printf("Please answer the question.\n"); |
| 127 | } | |
| 6693db17 SW |
128 | if (result == TRUE) |
| 129 | rspeak(y); | |
| 130 | if (result == FALSE) | |
| 131 | rspeak(z); | |
| 132 | return (result); | |
| 984263bc MD |
133 | } |
| 134 | ||
| 6693db17 | 135 | /* confirm with mspeak */ |
| 984263bc | 136 | int |
| c11b8fa9 | 137 | yesm(int x, int y, int z) |
| 6693db17 SW |
138 | { |
| 139 | int result; | |
| 984263bc MD |
140 | int ch; |
| 141 | ||
| 142 | result = FALSE; | |
| 6693db17 SW |
143 | for (;;) { |
| 144 | mspeak(x); /* tell him what we want */ | |
| 145 | if ((ch = getchar()) == 'y') | |
| 146 | result = TRUE; | |
| 147 | else if (ch == 'n') | |
| 148 | result = FALSE; | |
| 984263bc MD |
149 | else if (ch == EOF) { |
| 150 | printf("user closed input stream, quitting...\n"); | |
| 151 | exit(0); | |
| 152 | } | |
| 153 | FLUSHLINE; | |
| 6693db17 SW |
154 | if (ch == 'y' || ch == 'n') |
| 155 | break; | |
| 984263bc MD |
156 | printf("Please answer the question.\n"); |
| 157 | } | |
| 6693db17 SW |
158 | if (result == TRUE) |
| 159 | mspeak(y); | |
| 160 | if (result == FALSE) | |
| 161 | mspeak(z); | |
| 162 | return (result); | |
| 984263bc MD |
163 | } |
| 164 | ||
| 6693db17 | 165 | /* FILE *inbuf, *outbuf; */ |
| 984263bc | 166 | |
| 6693db17 | 167 | char *inptr; /* Pointer into virtual disk */ |
| 984263bc | 168 | |
| 6693db17 | 169 | int outsw = 0; /* putting stuff to data file? */ |
| 984263bc MD |
170 | |
| 171 | const char iotape[] = "Ax3F'\003tt$8h\315qer*h\017nGKrX\207:!l"; | |
| 6693db17 | 172 | const char *tape = iotape; /* pointer to encryption tape */ |
| 984263bc | 173 | |
| 6693db17 | 174 | /* next virtual char, bump adr */ |
| 984263bc | 175 | static int |
| c11b8fa9 | 176 | next(void) |
| 984263bc MD |
177 | { |
| 178 | int ch; | |
| 179 | ||
| 6693db17 SW |
180 | ch = (*inptr ^ random()) & 0xFF; /* Decrypt input data */ |
| 181 | if (outsw) { /* putting data in tmp file */ | |
| 182 | if (*tape == 0) | |
| 183 | tape = iotape; /* rewind encryption tape */ | |
| 184 | *inptr = ch ^ *tape++; /* re-encrypt and replace value */ | |
| 984263bc MD |
185 | } |
| 186 | inptr++; | |
| 6693db17 | 187 | return (ch); |
| 984263bc MD |
188 | } |
| 189 | ||
| 6693db17 | 190 | char breakch; /* tell which char ended rnum */ |
| 984263bc | 191 | |
| 6693db17 | 192 | /* "read" data from virtual file */ |
| 984263bc | 193 | void |
| c11b8fa9 | 194 | rdata(void) |
| 6693db17 SW |
195 | { |
| 196 | int sect; | |
| 984263bc MD |
197 | char ch; |
| 198 | ||
| 6693db17 SW |
199 | inptr = data_file; /* Pointer to virtual data file */ |
| 200 | srandom(SEED); /* which is lightly encrypted. */ | |
| 984263bc | 201 | |
| 6693db17 SW |
202 | clsses = 1; |
| 203 | for (;;) { /* read data sections */ | |
| 204 | sect = next() - '0'; /* 1st digit of section number */ | |
| 984263bc | 205 | #ifdef VERBOSE |
| 6693db17 | 206 | printf("Section %c", sect + '0'); |
| 984263bc | 207 | #endif |
| 6693db17 | 208 | if ((ch = next()) != LF) { /* is there a second digit? */ |
| 984263bc MD |
209 | FLUSHLF; |
| 210 | #ifdef VERBOSE | |
| 211 | putchar(ch); | |
| 212 | #endif | |
| 6693db17 | 213 | sect = 10 * sect + ch - '0'; |
| 984263bc MD |
214 | } |
| 215 | #ifdef VERBOSE | |
| 216 | putchar('\n'); | |
| 217 | #endif | |
| 6693db17 SW |
218 | switch (sect) { |
| 219 | case 0: /* finished reading database */ | |
| 984263bc | 220 | return; |
| 6693db17 | 221 | case 1: /* long form descriptions */ |
| 984263bc MD |
222 | rdesc(1); |
| 223 | break; | |
| 6693db17 | 224 | case 2: /* short form descriptions */ |
| 984263bc MD |
225 | rdesc(2); |
| 226 | break; | |
| 6693db17 SW |
227 | case 3: /* travel table */ |
| 228 | rtrav(); | |
| 229 | break; | |
| 230 | case 4: /* vocabulary */ | |
| 984263bc MD |
231 | rvoc(); |
| 232 | break; | |
| 6693db17 | 233 | case 5: /* object descriptions */ |
| 984263bc MD |
234 | rdesc(5); |
| 235 | break; | |
| 6693db17 | 236 | case 6: /* arbitrary messages */ |
| 984263bc MD |
237 | rdesc(6); |
| 238 | break; | |
| 6693db17 SW |
239 | case 7: /* object locations */ |
| 240 | rlocs(); | |
| 241 | break; | |
| 242 | case 8: /* action defaults */ | |
| 243 | rdflt(); | |
| 244 | break; | |
| 245 | case 9: /* liquid assets */ | |
| 246 | rliq(); | |
| 247 | break; | |
| 248 | case 10: /* class messages */ | |
| 984263bc MD |
249 | rdesc(10); |
| 250 | break; | |
| 6693db17 SW |
251 | case 11: /* hints */ |
| 252 | rhints(); | |
| 253 | break; | |
| 254 | case 12: /* magic messages */ | |
| 984263bc MD |
255 | rdesc(12); |
| 256 | break; | |
| 6693db17 SW |
257 | default: |
| 258 | printf("Invalid data section number: %d\n", sect); | |
| 259 | for (;;) | |
| 260 | putchar(next()); | |
| 984263bc | 261 | } |
| 6693db17 | 262 | if (breakch != LF) /* routines return after "-1" */ |
| 984263bc MD |
263 | FLUSHLF; |
| 264 | } | |
| 265 | } | |
| 266 | ||
| 267 | char nbf[12]; | |
| 268 | ||
| 6693db17 | 269 | /* read initial location num */ |
| 984263bc | 270 | static int |
| c11b8fa9 | 271 | rnum(void) |
| 6693db17 SW |
272 | { |
| 273 | char *s; | |
| 274 | ||
| 275 | tape = iotape; /* restart encryption tape */ | |
| 276 | for (s = nbf, *s = 0;; s++) | |
| 277 | if ((*s = next()) == TAB || *s == '\n' || *s == LF) | |
| 984263bc | 278 | break; |
| 6693db17 SW |
279 | breakch = *s; /* save char for rtrav() */ |
| 280 | *s = 0; /* got the number as ascii */ | |
| 281 | if (nbf[0] == '-') /* end of data */ | |
| 282 | return (-1); | |
| 283 | return (atoi(nbf)); /* convert it to integer */ | |
| 984263bc MD |
284 | } |
| 285 | ||
| 286 | char *seekhere; | |
| 287 | ||
| c11b8fa9 | 288 | /* read description-format msgs */ |
| 984263bc | 289 | static void |
| c11b8fa9 | 290 | rdesc(int sect) |
| 984263bc MD |
291 | { |
| 292 | int locc; | |
| 293 | char *seekstart, *maystart; | |
| 294 | ||
| 6693db17 SW |
295 | seekhere = inptr; /* Where are we in virtual file? */ |
| 296 | outsw = 1; /* these msgs go into tmp file */ | |
| 297 | for (oldloc = -1, seekstart = seekhere;;) { | |
| 298 | maystart = inptr; /* maybe starting new entry */ | |
| 299 | if ((locc = rnum()) != oldloc && oldloc >= 0 /* finished msg */ | |
| 300 | /* unless sect 5 */ | |
| 301 | && !(sect == 5 && (locc == 0 || locc >= 100))) { | |
| 302 | switch (sect) { /* now put it into right table */ | |
| 303 | case 1: /* long descriptions */ | |
| 304 | ltext[oldloc].seekadr = seekhere; | |
| 305 | ltext[oldloc].txtlen = maystart - seekstart; | |
| 984263bc | 306 | break; |
| 6693db17 SW |
307 | case 2: /* short descriptions */ |
| 308 | stext[oldloc].seekadr = seekhere; | |
| 309 | stext[oldloc].txtlen = maystart - seekstart; | |
| 984263bc | 310 | break; |
| 6693db17 SW |
311 | case 5: /* object descriptions */ |
| 312 | ptext[oldloc].seekadr = seekhere; | |
| 313 | ptext[oldloc].txtlen = maystart - seekstart; | |
| 984263bc | 314 | break; |
| 6693db17 SW |
315 | case 6: /* random messages */ |
| 316 | if (oldloc > RTXSIZ) | |
| 317 | errx(1, "Too many random msgs"); | |
| 318 | rtext[oldloc].seekadr = seekhere; | |
| 319 | rtext[oldloc].txtlen = maystart - seekstart; | |
| 984263bc | 320 | break; |
| 6693db17 SW |
321 | case 10: /* class messages */ |
| 322 | ctext[clsses].seekadr = seekhere; | |
| 323 | ctext[clsses].txtlen = maystart - seekstart; | |
| 324 | cval[clsses++] = oldloc; | |
| 984263bc | 325 | break; |
| 6693db17 SW |
326 | case 12: /* magic messages */ |
| 327 | if (oldloc > MAGSIZ) | |
| 328 | errx(1, "Too many magic msgs"); | |
| 329 | mtext[oldloc].seekadr = seekhere; | |
| 330 | mtext[oldloc].txtlen = maystart - seekstart; | |
| 984263bc | 331 | break; |
| 6693db17 | 332 | default: |
| 984263bc MD |
333 | errx(1, "rdesc called with bad section"); |
| 334 | } | |
| 6693db17 | 335 | seekhere += maystart - seekstart; |
| 984263bc | 336 | } |
| 6693db17 SW |
337 | if (locc < 0) { |
| 338 | outsw = 0; /* turn off output */ | |
| 339 | seekhere += 3; /* -1<delimiter> */ | |
| 984263bc MD |
340 | return; |
| 341 | } | |
| 6693db17 SW |
342 | if (sect != 5 || (locc > 0 && locc < 100)) { |
| 343 | if (oldloc != locc) /* starting a new message */ | |
| 344 | seekstart = maystart; | |
| 345 | oldloc = locc; | |
| 984263bc | 346 | } |
| 6693db17 | 347 | FLUSHLF; /* scan the line */ |
| 984263bc MD |
348 | } |
| 349 | } | |
| 350 | ||
| 6693db17 | 351 | /* read travel table */ |
| 984263bc | 352 | static void |
| c11b8fa9 | 353 | rtrav(void) |
| 6693db17 SW |
354 | { |
| 355 | int locc; | |
| 984263bc MD |
356 | struct travlist *t; |
| 357 | char *s; | |
| 358 | char buf[12]; | |
| 6693db17 | 359 | int len, m, n, entries; |
| 984263bc MD |
360 | |
| 361 | entries = 0; | |
| 362 | t = NULL; | |
| 6693db17 SW |
363 | for (oldloc = -1;;) { /* get another line */ |
| 364 | /* end of entry */ | |
| 365 | if ((locc = rnum()) != oldloc && oldloc >= 0) { | |
| 366 | t->next = 0; /* terminate the old entry */ | |
| 984263bc | 367 | #if DEBUG |
| 6693db17 | 368 | printf("%d:%d entries\n", oldloc, entries); |
| 984263bc MD |
369 | twrite(oldloc); |
| 370 | #endif | |
| 371 | } | |
| 6693db17 SW |
372 | if (locc == -1) |
| 373 | return; | |
| 374 | if (locc != oldloc) { /* getting a new entry */ | |
| 375 | t = travel[locc] = malloc(sizeof(*t)); | |
| 984263bc MD |
376 | if (t == NULL) |
| 377 | errx(1, "Out of memory!"); | |
| 6693db17 SW |
378 | /* printf("New travel list for %d\n", locc); */ |
| 379 | entries = 0; | |
| 380 | oldloc = locc; | |
| 984263bc | 381 | } |
| 6693db17 SW |
382 | for (s = buf;; s++) /* get the newloc number /ASCII */ |
| 383 | if ((*s = next()) == TAB || *s == LF) | |
| 384 | break; | |
| 385 | *s = 0; | |
| 386 | len = strlen(buf); /* quad long number handling */ | |
| 387 | /* printf("Newloc: %s (%d chars)\n", buf, len); */ | |
| 388 | if (len < 4) { /* no "m" conditions */ | |
| 389 | m = 0; | |
| 390 | n = atoi(buf); /* newloc mod 1000 = newloc */ | |
| 391 | } else { /* a long integer */ | |
| 392 | n = atoi(buf + len - 3); | |
| 393 | buf[len - 3] = 0; /* terminate newloc/1000 */ | |
| 394 | m = atoi(buf); | |
| 984263bc | 395 | } |
| 6693db17 SW |
396 | while (breakch != LF) { /* only do one line at a time */ |
| 397 | if (entries++) { | |
| 398 | t = t->next = malloc(sizeof(*t)); | |
| 984263bc MD |
399 | if (t == NULL) |
| 400 | errx(1, "Out of memory!"); | |
| 401 | } | |
| 6693db17 SW |
402 | t->tverb = rnum(); /* get verb from the file */ |
| 403 | t->tloc = n; /* table entry mod 1000 */ | |
| 404 | t->conditions = m; /* table entry / 1000 */ | |
| 405 | /* printf("entry %d for %d\n", entries, locc); */ | |
| 984263bc MD |
406 | } |
| 407 | } | |
| 408 | } | |
| 409 | ||
| 410 | #ifdef DEBUG | |
| 411 | ||
| c11b8fa9 | 412 | /* travel options from this loc */ |
| 984263bc | 413 | static void |
| c11b8fa9 | 414 | twrite(int loq) |
| 6693db17 SW |
415 | { |
| 416 | struct travlist *t; | |
| 417 | ||
| 984263bc MD |
418 | printf("If"); |
| 419 | speak(<ext[loq]); | |
| 420 | printf("then\n"); | |
| 678e8cc6 | 421 | for (t = travel[loq]; t != NULL; t = t->next) { |
| 6693db17 SW |
422 | printf("verb %d takes you to ", t->tverb); |
| 423 | if (t->tloc <= 300) | |
| 984263bc | 424 | speak(<ext[t->tloc]); |
| 6693db17 SW |
425 | else if (t->tloc <= 500) |
| 426 | printf("special code %d\n", t->tloc - 300); | |
| 984263bc | 427 | else |
| 6693db17 SW |
428 | rspeak(t->tloc - 500); |
| 429 | printf("under conditions %d\n", t->conditions); | |
| 984263bc MD |
430 | } |
| 431 | } | |
| 984263bc MD |
432 | #endif /* DEBUG */ |
| 433 | ||
| 6693db17 | 434 | /* read the vocabulary */ |
| 984263bc | 435 | static void |
| c11b8fa9 | 436 | rvoc(void) |
| 6693db17 SW |
437 | { |
| 438 | char *s; | |
| 984263bc MD |
439 | int rv_index; |
| 440 | char buf[6]; | |
| 6693db17 SW |
441 | |
| 442 | for (;;) { | |
| 443 | rv_index = rnum(); | |
| 444 | if (rv_index < 0) | |
| 445 | break; | |
| 446 | for (s = buf, *s = 0;; s++) /* get the word */ | |
| 447 | if ((*s = next()) == TAB || *s == '\n' || *s == LF | |
| 448 | || *s == ' ') | |
| 449 | break; | |
| 450 | /* terminate word with newline, LF, tab, blank */ | |
| 451 | if (*s != '\n' && *s != LF) | |
| 452 | FLUSHLF; /* can be comments */ | |
| 453 | *s = 0; | |
| 454 | /* printf("\"%s\"=%d\n", buf, rv_index); */ | |
| 455 | vocab(buf, -2, rv_index); | |
| 984263bc MD |
456 | } |
| 457 | } | |
| 458 | ||
| 6693db17 | 459 | /* initial object locations */ |
| 984263bc | 460 | static void |
| c11b8fa9 | 461 | rlocs(void) |
| 6693db17 SW |
462 | { |
| 463 | for (;;) { | |
| 464 | if ((obj = rnum()) < 0) | |
| 465 | break; | |
| 466 | plac[obj] = rnum(); /* initial loc for this obj */ | |
| 467 | if (breakch == TAB) /* there's another entry */ | |
| 468 | fixd[obj] = rnum(); | |
| 469 | else | |
| 470 | fixd[obj] = 0; | |
| 984263bc MD |
471 | } |
| 472 | } | |
| 473 | ||
| 6693db17 | 474 | /* default verb messages */ |
| 984263bc | 475 | static void |
| c11b8fa9 | 476 | rdflt(void) |
| 6693db17 SW |
477 | { |
| 478 | for (;;) { | |
| 479 | if ((verb = rnum()) < 0) | |
| 480 | break; | |
| 481 | actspk[verb] = rnum(); | |
| 984263bc MD |
482 | } |
| 483 | } | |
| 484 | ||
| 6693db17 | 485 | /* liquid assets &c: cond bits */ |
| 984263bc | 486 | static void |
| c11b8fa9 | 487 | rliq(void) |
| 6693db17 SW |
488 | { |
| 489 | int bitnum; | |
| 490 | ||
| 491 | for (;;) { /* read new bit list */ | |
| 492 | if ((bitnum = rnum()) < 0) | |
| 493 | break; | |
| 494 | for (;;) { /* read locs for bits */ | |
| 495 | cond[rnum()] |= setbit[bitnum]; | |
| 496 | if (breakch == LF) | |
| 497 | break; | |
| 984263bc MD |
498 | } |
| 499 | } | |
| 500 | } | |
| 501 | ||
| 502 | static void | |
| c11b8fa9 | 503 | rhints(void) |
| 6693db17 SW |
504 | { |
| 505 | int hintnum, i; | |
| 506 | ||
| 507 | hntmax = 0; | |
| 508 | for (;;) { | |
| 509 | if ((hintnum = rnum()) < 0) | |
| 510 | break; | |
| 511 | for (i = 1; i < 5; i++) | |
| 512 | hints[hintnum][i] = rnum(); | |
| 513 | if (hintnum > hntmax) | |
| 514 | hntmax = hintnum; | |
| 984263bc MD |
515 | } |
| 516 | } | |
| 517 | ||
| 984263bc | 518 | void |
| c11b8fa9 | 519 | rspeak(int msg) |
| 6693db17 SW |
520 | { |
| 521 | if (msg != 0) | |
| 522 | speak(&rtext[msg]); | |
| 984263bc MD |
523 | } |
| 524 | ||
| 984263bc | 525 | void |
| c11b8fa9 | 526 | mspeak(int msg) |
| 6693db17 SW |
527 | { |
| 528 | if (msg != 0) | |
| 529 | speak(&mtext[msg]); | |
| 984263bc MD |
530 | } |
| 531 | ||
| 6693db17 | 532 | /* read, decrypt, and print a message (not ptext) */ |
| c11b8fa9 | 533 | /* msg is a pointer to seek address and length of mess */ |
| 984263bc | 534 | void |
| c11b8fa9 | 535 | speak(const struct text *msg) |
| 984263bc MD |
536 | { |
| 537 | char *s, nonfirst; | |
| 538 | ||
| 539 | s = msg->seekadr; | |
| 6693db17 SW |
540 | nonfirst = 0; |
| 541 | while (s - msg->seekadr < msg->txtlen) { /* read a line at a time */ | |
| 542 | tape = iotape; /* restart decryption tape */ | |
| 543 | while ((*s++ ^ *tape++) != TAB); /* read past loc num */ | |
| 544 | /* assume tape is longer than location number */ | |
| 545 | /* plus the lookahead put together */ | |
| 984263bc | 546 | if ((*s ^ *tape) == '>' && |
| 6693db17 SW |
547 | (*(s + 1) ^ *(tape + 1)) == '$' && |
| 548 | (*(s + 2) ^ *(tape + 2)) == '<') | |
| 549 | break; | |
| 550 | if (blklin && !nonfirst++) | |
| 551 | putchar('\n'); | |
| 552 | do { | |
| 553 | if (*tape == 0) | |
| 554 | tape = iotape; /* rewind decryp tape */ | |
| 984263bc | 555 | putchar(*s ^ *tape); |
| 6693db17 | 556 | } while ((*s++ ^ *tape++) != LF); /* better end with LF */ |
| 984263bc MD |
557 | } |
| 558 | } | |
| 559 | ||
| 6693db17 SW |
560 | /* read, decrypt and print a ptext message */ |
| 561 | /* msg is the number of all the p msgs for this place */ | |
| 562 | /* assumes object 1 doesn't have prop 1, obj 2 no prop 2, etc. */ | |
| 984263bc | 563 | void |
| c11b8fa9 | 564 | pspeak(int m, int skip) |
| 984263bc | 565 | { |
| 6693db17 | 566 | char *s, nonfirst; |
| 435f923e | 567 | char *numst; |
| 984263bc MD |
568 | struct text *msg; |
| 569 | char *tbuf; | |
| 570 | ||
| 571 | msg = &ptext[m]; | |
| 678e8cc6 | 572 | if ((tbuf = malloc(msg->txtlen + 1)) == NULL) |
| 984263bc | 573 | errx(1, "Out of memory!"); |
| 6693db17 | 574 | memcpy(tbuf, msg->seekadr, (unsigned)msg->txtlen + 1); /* Room to null */ |
| 984263bc MD |
575 | s = tbuf; |
| 576 | ||
| 6693db17 SW |
577 | nonfirst = 0; |
| 578 | while (s - tbuf < msg->txtlen) { /* read line at a time */ | |
| 579 | tape = iotape; /* restart decryption tape */ | |
| 580 | for (numst = s; (*s ^= *tape++) != TAB; s++) /* get number */ | |
| 581 | ; /* nothing */ | |
| 984263bc | 582 | |
| 435f923e SW |
583 | /* Temporarily trash the string (cringe) */ |
| 584 | *s++ = 0; /* decrypting number within the string */ | |
| 984263bc | 585 | |
| 6693db17 SW |
586 | if (atoi(numst) != 100 * skip && skip >= 0) { |
| 587 | while ((*s++ ^ *tape++) != LF) /* flush the line */ | |
| 588 | if (*tape == 0) | |
| 589 | tape = iotape; | |
| 984263bc MD |
590 | continue; |
| 591 | } | |
| 6693db17 SW |
592 | if ((*s ^ *tape) == '>' && (*(s + 1) ^ *(tape + 1)) == '$' && |
| 593 | (*(s + 2) ^ *(tape + 2)) == '<') | |
| 594 | break; | |
| 595 | if (blklin && !nonfirst++) | |
| 596 | putchar('\n'); | |
| 597 | do { | |
| 598 | if (*tape == 0) | |
| 599 | tape = iotape; | |
| 600 | putchar(*s ^ *tape); | |
| 601 | } while ((*s++ ^ *tape++) != LF); /* better end with LF */ | |
| 602 | if (skip < 0) | |
| 603 | break; | |
| 984263bc MD |
604 | } |
| 605 | free(tbuf); | |
| 606 | } |