]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - adventure/vocab.c
1 /* $NetBSD: vocab.c,v 1.11 2003/08/07 09:36:51 agc Exp $ */
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
7 * The game adventure was originally written in Fortran by Will Crowther
8 * and Don Woods. It was later translated to C and enhanced by Jim
9 * Gillogly. This code is derived from software contributed to Berkeley
10 * by Jim Gillogly at The Rand Corporation.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #include <sys/cdefs.h>
40 static char sccsid
[] = "@(#)vocab.c 8.1 (Berkeley) 5/31/93";
42 __RCSID("$NetBSD: vocab.c,v 1.11 2003/08/07 09:36:51 agc Exp $");
46 /* Re-coding of advent in C: data structure routines */
70 move(object
+ 100, j
);
83 from
= fixed
[object
- 100];
84 if (from
> 0 && from
<= 300)
90 put(object
, where
, pval
)
91 int object
, where
, pval
;
104 if (place
[object
] == -1)
109 if (atloc
[where
] == object
) {
110 atloc
[where
] = links
[object
];
113 for (temp
= atloc
[where
]; links
[temp
] != object
; temp
= links
[temp
]);
114 links
[temp
] = links
[object
];
123 fixed
[object
- 100] = where
;
125 if (place
[object
] == -1)
127 place
[object
] = where
;
131 links
[object
] = atloc
[where
];
132 atloc
[where
] = object
;
136 vocab(word
, type
, value
) /* look up or store a word */
138 int type
; /* -2 for store, -1 for user word, >=0 for
140 int value
; /* used for storing only */
148 for (hash
= 0, s
= word
, i
= 0; i
< 5 && *s
; i
++) /* some kind of hash */
149 hash
+= *s
++; /* add all chars in the word */
150 hash
= (hash
* 3719) & 077777; /* pulled that one out of a hat */
151 hash
%= HTSIZE
; /* put it into range of table */
153 for (adr
= hash
;; adr
++) { /* look for entry in table */
155 adr
= 0;/* wrap around */
156 h
= &voc
[adr
]; /* point at the entry */
158 case -2: /* fill in entry */
159 if (h
->val
) /* already got an entry? */
162 h
->atab
= malloc(length(word
));
165 for (s
= word
, t
= h
->atab
; *s
;)
168 /* encrypt slightly to thwart core reader */
169 /* printf("Stored \"%s\" (%d ch) as entry %d\n", */
170 /* word, length(word), adr); */
171 return (0); /* entry unused */
172 case -1: /* looking up user word */
174 return (-1); /* not found */
175 for (s
= word
, t
= h
->atab
; *t
^ '=';)
176 if ((*s
++ ^ '=') != *t
++)
178 if ((*s
^ '=') != *t
&& s
- word
< 5)
180 /* the word matched o.k. */
182 default: /* looking up known word */
184 errx(1,"Unable to find %s in vocab", word
);
185 for (s
= word
, t
= h
->atab
; *t
^ '=';)
186 if ((*s
++ ^ '=') != *t
++)
188 /* the word matched o.k. */
189 if (h
->val
/ 1000 != type
)
191 return (h
->val
% 1000);
194 exitloop2
: /* hashed entry does not match */
195 if (adr
+ 1 == hash
|| (adr
== HTSIZE
&& hash
== 0))
196 errx(1,"Hash table overflow");
202 { /* print hash table */
206 for (i
= 0; i
< HTSIZE
/ 10 + 1; i
++) {
207 printf("%4d", i
* 10);
208 for (j
= 0; j
< 10; j
++) {
209 if (i
* 10 + j
>= HTSIZE
)
211 h
= &voc
[i
* 10 + j
];
217 for (l
= 0, c
= h
->atab
; l
< 5; l
++)