Home | History | Annotate | Line # | Download | only in adventure
vocab.c revision 1.8
      1  1.8   hubertf /*	$NetBSD: vocab.c,v 1.8 1998/09/13 15:24:09 hubertf 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.3  christos #include <sys/cdefs.h>
     42  1.1       jtc #ifndef lint
     43  1.2       cgd #if 0
     44  1.1       jtc static char sccsid[] = "@(#)vocab.c	8.1 (Berkeley) 5/31/93";
     45  1.2       cgd #else
     46  1.8   hubertf __RCSID("$NetBSD: vocab.c,v 1.8 1998/09/13 15:24:09 hubertf Exp $");
     47  1.2       cgd #endif
     48  1.5     lukem #endif				/* not lint */
     49  1.1       jtc 
     50  1.1       jtc /*      Re-coding of advent in C: data structure routines               */
     51  1.1       jtc 
     52  1.8   hubertf #include <err.h>
     53  1.3  christos #include <stdio.h>
     54  1.3  christos #include <stdlib.h>
     55  1.3  christos #include "hdr.h"
     56  1.3  christos #include "extern.h"
     57  1.1       jtc 
     58  1.3  christos void
     59  1.1       jtc dstroy(object)
     60  1.5     lukem 	int     object;
     61  1.5     lukem {
     62  1.5     lukem 	move(object, 0);
     63  1.1       jtc }
     64  1.1       jtc 
     65  1.3  christos void
     66  1.1       jtc juggle(object)
     67  1.5     lukem 	int     object;
     68  1.5     lukem {
     69  1.5     lukem 	int     i, j;
     70  1.5     lukem 
     71  1.5     lukem 	i = place[object];
     72  1.5     lukem 	j = fixed[object];
     73  1.5     lukem 	move(object, i);
     74  1.5     lukem 	move(object + 100, j);
     75  1.1       jtc }
     76  1.1       jtc 
     77  1.1       jtc 
     78  1.3  christos void
     79  1.5     lukem move(object, where)
     80  1.5     lukem 	int     object, where;
     81  1.5     lukem {
     82  1.5     lukem 	int     from;
     83  1.1       jtc 
     84  1.5     lukem 	if (object <= 100)
     85  1.5     lukem 		from = place[object];
     86  1.1       jtc 	else
     87  1.5     lukem 		from = fixed[object - 100];
     88  1.5     lukem 	if (from > 0 && from <= 300)
     89  1.5     lukem 		carry(object, from);
     90  1.5     lukem 	drop(object, where);
     91  1.1       jtc }
     92  1.1       jtc 
     93  1.3  christos int
     94  1.5     lukem put(object, where, pval)
     95  1.5     lukem 	int     object, where, pval;
     96  1.5     lukem {
     97  1.5     lukem 	move(object, where);
     98  1.5     lukem 	return (-1 - pval);
     99  1.1       jtc }
    100  1.1       jtc 
    101  1.3  christos void
    102  1.5     lukem carry(object, where)
    103  1.5     lukem 	int     object, where;
    104  1.5     lukem {
    105  1.5     lukem 	int     temp;
    106  1.5     lukem 
    107  1.5     lukem 	if (object <= 100) {
    108  1.5     lukem 		if (place[object] == -1)
    109  1.5     lukem 			return;
    110  1.1       jtc 		place[object] = -1;
    111  1.1       jtc 		holdng++;
    112  1.1       jtc 	}
    113  1.5     lukem 	if (atloc[where] == object) {
    114  1.5     lukem 		atloc[where] = links[object];
    115  1.1       jtc 		return;
    116  1.1       jtc 	}
    117  1.5     lukem 	for (temp = atloc[where]; links[temp] != object; temp = links[temp]);
    118  1.5     lukem 	links[temp] = links[object];
    119  1.1       jtc }
    120  1.1       jtc 
    121  1.1       jtc 
    122  1.3  christos void
    123  1.5     lukem drop(object, where)
    124  1.5     lukem 	int     object, where;
    125  1.5     lukem {
    126  1.5     lukem 	if (object > 100)
    127  1.5     lukem 		fixed[object - 100] = where;
    128  1.5     lukem 	else {
    129  1.5     lukem 		if (place[object] == -1)
    130  1.5     lukem 			holdng--;
    131  1.5     lukem 		place[object] = where;
    132  1.1       jtc 	}
    133  1.5     lukem 	if (where <= 0)
    134  1.5     lukem 		return;
    135  1.5     lukem 	links[object] = atloc[where];
    136  1.5     lukem 	atloc[where] = object;
    137  1.1       jtc }
    138  1.1       jtc 
    139  1.3  christos int
    140  1.5     lukem vocab(word, type, value)	/* look up or store a word      */
    141  1.7   hubertf 	const char   *word;
    142  1.5     lukem 	int     type;		/* -2 for store, -1 for user word, >=0 for
    143  1.5     lukem 				 * canned lookup */
    144  1.5     lukem 	int     value;		/* used for storing only        */
    145  1.5     lukem {
    146  1.5     lukem 	int     adr;
    147  1.7   hubertf 	const char *s;
    148  1.7   hubertf 	char   *t;
    149  1.5     lukem 	int     hash, i;
    150  1.1       jtc 	struct hashtab *h;
    151  1.1       jtc 
    152  1.5     lukem 	for (hash = 0, s = word, i = 0; i < 5 && *s; i++)	/* some kind of hash    */
    153  1.5     lukem 		hash += *s++;	/* add all chars in the word    */
    154  1.5     lukem 	hash = (hash * 3719) & 077777;	/* pulled that one out of a hat */
    155  1.5     lukem 	hash %= HTSIZE;		/* put it into range of table   */
    156  1.5     lukem 
    157  1.5     lukem 	for (adr = hash;; adr++) {	/* look for entry in table      */
    158  1.5     lukem 		if (adr == HTSIZE)
    159  1.5     lukem 			adr = 0;/* wrap around                  */
    160  1.5     lukem 		h = &voc[adr];	/* point at the entry           */
    161  1.5     lukem 		switch (type) {
    162  1.5     lukem 		case -2:	/* fill in entry                */
    163  1.5     lukem 			if (h->val)	/* already got an entry?        */
    164  1.1       jtc 				goto exitloop2;
    165  1.5     lukem 			h->val = value;
    166  1.5     lukem 			h->atab = malloc(length(word));
    167  1.8   hubertf 			if (h->atab == NULL)
    168  1.8   hubertf 				errx(1, "Out of memory!");
    169  1.5     lukem 			for (s = word, t = h->atab; *s;)
    170  1.1       jtc 				*t++ = *s++ ^ '=';
    171  1.5     lukem 			*t = 0 ^ '=';
    172  1.1       jtc 			/* encrypt slightly to thwart core reader       */
    173  1.5     lukem 			/* printf("Stored \"%s\" (%d ch) as entry %d\n",   */
    174  1.5     lukem 			/* word, length(word), adr);               */
    175  1.5     lukem 			return (0);	/* entry unused                 */
    176  1.5     lukem 		case -1:	/* looking up user word         */
    177  1.5     lukem 			if (h->val == 0)
    178  1.5     lukem 				return (-1);	/* not found    */
    179  1.5     lukem 			for (s = word, t = h->atab; *t ^ '=';)
    180  1.1       jtc 				if ((*s++ ^ '=') != *t++)
    181  1.1       jtc 					goto exitloop2;
    182  1.5     lukem 			if ((*s ^ '=') != *t && s - word < 5)
    183  1.5     lukem 				goto exitloop2;
    184  1.1       jtc 			/* the word matched o.k.                        */
    185  1.5     lukem 			return (h->val);
    186  1.5     lukem 		default:	/* looking up known word        */
    187  1.5     lukem 			if (h->val == 0) {
    188  1.5     lukem 				printf("Unable to find %s in vocab\n", word);
    189  1.1       jtc 				exit(0);
    190  1.1       jtc 			}
    191  1.5     lukem 			for (s = word, t = h->atab; *t ^ '=';)
    192  1.5     lukem 				if ((*s++ ^ '=') != *t++)
    193  1.5     lukem 					goto exitloop2;
    194  1.1       jtc 			/* the word matched o.k.                        */
    195  1.5     lukem 			if (h->val / 1000 != type)
    196  1.5     lukem 				continue;
    197  1.5     lukem 			return (h->val % 1000);
    198  1.1       jtc 		}
    199  1.1       jtc 
    200  1.5     lukem exitloop2:			/* hashed entry does not match  */
    201  1.5     lukem 		if (adr + 1 == hash || (adr == HTSIZE && hash == 0)) {
    202  1.5     lukem 			printf("Hash table overflow\n");
    203  1.1       jtc 			exit(0);
    204  1.1       jtc 		}
    205  1.1       jtc 	}
    206  1.1       jtc }
    207  1.1       jtc 
    208  1.3  christos void
    209  1.5     lukem prht()
    210  1.5     lukem {				/* print hash table             */
    211  1.5     lukem 	int     i, j, l;
    212  1.5     lukem 	char   *c;
    213  1.1       jtc 	struct hashtab *h;
    214  1.5     lukem 	for (i = 0; i < HTSIZE / 10 + 1; i++) {
    215  1.5     lukem 		printf("%4d", i * 10);
    216  1.5     lukem 		for (j = 0; j < 10; j++) {
    217  1.5     lukem 			if (i * 10 + j >= HTSIZE)
    218  1.5     lukem 				break;
    219  1.5     lukem 			h = &voc[i * 10 + j];
    220  1.1       jtc 			putchar(' ');
    221  1.5     lukem 			if (h->val == 0) {
    222  1.5     lukem 				printf("-----");
    223  1.1       jtc 				continue;
    224  1.1       jtc 			}
    225  1.5     lukem 			for (l = 0, c = h->atab; l < 5; l++)
    226  1.5     lukem 				if ((*c ^ '='))
    227  1.5     lukem 					putchar(*c++ ^ '=');
    228  1.5     lukem 				else
    229  1.5     lukem 					putchar(' ');
    230  1.1       jtc 		}
    231  1.1       jtc 		putchar('\n');
    232  1.1       jtc 	}
    233  1.1       jtc }
    234