]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - games/adventure/vocab.c
This commit was generated by cvs2svn to compensate for changes in r92686,
[FreeBSD/FreeBSD.git] / games / adventure / vocab.c
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.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  */
38
39 #ifndef lint
40 #if 0
41 static char sccsid[] = "@(#)vocab.c     8.1 (Berkeley) 5/31/93";
42 #endif
43 static const char rcsid[] =
44  "$FreeBSD$";
45 #endif /* not lint */
46
47 /*      Re-coding of advent in C: data structure routines               */
48
49 #include <stdio.h>
50 #include <stdlib.h>
51 #include <string.h>
52 #include <err.h>
53 #include "hdr.h"
54
55 void
56 dstroy(int object)
57 {       move(object,0);
58 }
59
60 void
61 juggle(int object)
62 {       int i,j;
63
64         i=place[object];
65         j=fixed[object];
66         move(object,i);
67         move(object+100,j);
68 }
69
70
71 void
72 move(int object, int where)
73 {       int from;
74
75         if (object<=100)
76                 from=place[object];
77         else
78                 from=fixed[object-100];
79         if (from>0 && from<=300) carry(object,from);
80         drop(object,where);
81 }
82
83
84 int
85 put(int object, int where, int pval)
86 {       move(object,where);
87         return(-1-pval);
88 }
89
90 void
91 carry(int object, int where)
92 {       int temp;
93
94         if (object<=100)
95         {       if (place[object]== -1) return;
96                 place[object] = -1;
97                 holdng++;
98         }
99         if (atloc[where]==object)
100         {       atloc[where]=linkx[object];
101                 return;
102         }
103         for (temp=atloc[where]; linkx[temp]!=object; temp=linkx[temp]);
104         linkx[temp]=linkx[object];
105 }
106
107
108 void
109 drop(int object, int where)
110 {       if (object>100) fixed[object-100]=where;
111         else
112         {       if (place[object]== -1) holdng--;
113                 place[object]=where;
114         }
115         if (where<=0) return;
116         linkx[object]=atloc[where];
117         atloc[where]=object;
118 }
119
120 /* vocab(): look up or store a word      */
121 /* type: -2 for store, -1 for user word, >=0 for canned lookup*/
122 /* store: used for storing only        */
123 int
124 vocab(const char *word, int type, int value)
125 {       int adr;
126         const char *s;
127         char *t;
128         int hash, i;
129         struct hashtab *h;
130
131         for (hash=0,s=word,i=0; i<5 &&*s; i++)  /* some kind of hash    */
132                 hash += *s++;           /* add all chars in the word    */
133         hash = (hash*3719)&077777;      /* pulled that one out of a hat */
134         hash %= HTSIZE;                 /* put it into range of table   */
135
136         for(adr=hash;; adr++)           /* look for entry in table      */
137         {       if (adr==HTSIZE) adr=0; /* wrap around                  */
138                 h = &voc[adr];          /* point at the entry           */
139                 switch(type)
140                 {   case -2:            /* fill in entry                */
141                         if (h->val)     /* already got an entry?        */
142                                 goto exitloop2;
143                         h->val=value;
144                         h->atab=malloc(strlen(word)+1);
145                         if (h->atab == NULL)
146                                 errx(1, "Out of memory!");
147                         for (s=word,t=h->atab; *s;)
148                                 *t++ = *s++ ^ '=';
149                         *t=0^'=';
150                         /* encrypt slightly to thwart core reader       */
151                 /*      printf("Stored \"%s\" (%d ch) as entry %d\n",   */
152                 /*              word, strlen(word)+1, adr);               */
153                         return(0);      /* entry unused                 */
154                     case -1:            /* looking up user word         */
155                         if (h->val==0) return(-1);   /* not found    */
156                         for (s=word, t=h->atab;*t ^ '=';)
157                                 if ((*s++ ^ '=') != *t++)
158                                         goto exitloop2;
159                         if ((*s ^ '=') != *t && s-word<5) goto exitloop2;
160                         /* the word matched o.k.                        */
161                         return(h->val);
162                     default:            /* looking up known word        */
163                         if (h->val==0)
164                         {       errx(1, "Unable to find %s in vocab", word);
165                         }
166                         for (s=word, t=h->atab;*t ^ '=';)
167                                 if ((*s++ ^ '=') != *t++) goto exitloop2;
168                         /* the word matched o.k.                        */
169                         if (h->val/1000 != type) continue;
170                         return(h->val%1000);
171                 }
172
173             exitloop2:                  /* hashed entry does not match  */
174                 if (adr+1==hash || (adr==HTSIZE && hash==0))
175                 {       errx(1, "Hash table overflow");
176                 }
177         }
178 }