2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
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.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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.
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
38 * @(#)vocab.c 8.1 (Berkeley) 5/31/93
39 * $FreeBSD: src/games/adventure/vocab.c,v 1.9 1999/12/19 00:21:51 billf Exp $
40 * $DragonFly: src/games/adventure/vocab.c,v 1.4 2007/04/18 18:32:12 swildner Exp $
43 /* Re-coding of advent in C: data structure routines */
68 move(int object
, int where
)
74 from
=fixed
[object
-100];
75 if (from
>0 && from
<=300) carry(object
,from
);
81 put(int object
, int where
, int pval
)
87 carry(int object
, int where
)
91 { if (place
[object
]== -1) return;
95 if (atloc
[where
]==object
)
96 { atloc
[where
]=linkx
[object
];
99 for (temp
=atloc
[where
]; linkx
[temp
]!=object
; temp
=linkx
[temp
]);
100 linkx
[temp
]=linkx
[object
];
105 drop(int object
, int where
)
106 { if (object
>100) fixed
[object
-100]=where
;
108 { if (place
[object
]== -1) holdng
--;
111 if (where
<=0) return;
112 linkx
[object
]=atloc
[where
];
117 /* look up or store a word */
118 /* type is -2 for store, -1 for user word, >=0 for canned lookup*/
119 /* value is used for storing only */
121 vocab(const char *word
, int type
, int value
)
128 for (hash
=0,s
=word
,i
=0; i
<5 &&*s
; i
++) /* some kind of hash */
129 hash
+= *s
++; /* add all chars in the word */
130 hash
= (hash
*3719)&077777; /* pulled that one out of a hat */
131 hash
%= HTSIZE
; /* put it into range of table */
133 for(adr
=hash
;; adr
++) /* look for entry in table */
134 { if (adr
==HTSIZE
) adr
=0; /* wrap around */
135 h
= &voc
[adr
]; /* point at the entry */
137 { case -2: /* fill in entry */
138 if (h
->val
) /* already got an entry? */
141 h
->atab
=malloc(strlen(word
)+1);
143 errx(1, "Out of memory!");
144 for (s
=word
,t
=h
->atab
; *s
;)
147 /* encrypt slightly to thwart core reader */
148 /* printf("Stored \"%s\" (%d ch) as entry %d\n", */
149 /* word, strlen(word)+1, adr); */
150 return(0); /* entry unused */
151 case -1: /* looking up user word */
152 if (h
->val
==0) return(-1); /* not found */
153 for (s
=word
, t
=h
->atab
;*t
^ '=';)
154 if ((*s
++ ^ '=') != *t
++)
156 if ((*s
^ '=') != *t
&& s
-word
<5) goto exitloop2
;
157 /* the word matched o.k. */
159 default: /* looking up known word */
161 { errx(1, "Unable to find %s in vocab", word
);
163 for (s
=word
, t
=h
->atab
;*t
^ '=';)
164 if ((*s
++ ^ '=') != *t
++) goto exitloop2
;
165 /* the word matched o.k. */
166 if (h
->val
/1000 != type
) continue;
170 exitloop2
: /* hashed entry does not match */
171 if (adr
+1==hash
|| (adr
==HTSIZE
&& hash
==0))
172 { errx(1, "Hash table overflow");