]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - battlestar/externs.h
2 * Copyright (c) 1983 Regents of the University of California.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#)externs.h 5.4 (Berkeley) 6/1/90
36 #include <sys/signal.h>
39 #define BITS (8 * sizeof (int))
41 #define OUTSIDE (position > 68 && position < 246 && position != 218)
42 #define rnd(x) (rand() % (x))
43 #define max(a,b) ((a) < (b) ? (b) : (a))
44 #define testbit(array, index) (array[index/BITS] & (1 << (index % BITS)))
45 #define setbit(array, index) (array[index/BITS] |= (1 << (index % BITS)))
46 #define clearbit(array, index) (array[index/BITS] &= ~(1 << (index % BITS)))
48 /* well known rooms */
119 #define DEADNATIVE 57
126 #define NUMOFOBJECTS 64
127 /* non-objects below */
150 #define EVERYTHING 1022
183 #define ARM 6 /* broken arm */
184 #define RIBS 7 /* broken ribs */
185 #define SPINE 9 /* broken back */
186 #define SKULL 11 /* fractured skull */
187 #define INCISE 10 /* deep incisions */
188 #define NECK 12 /* broken NECK */
189 #define NUMOFINJURIES 13
200 /* fundamental constants */
201 #define NUMOFROOMS 275
202 #define NUMOFWORDS ((NUMOFOBJECTS + BITS - 1) / BITS)
203 #define LINELENGTH 81
209 /* initial variable values */
218 #define north link[0]
219 #define south link[1]
223 #define access link[5]
225 #define flyhere link[7]
227 unsigned int objects
[NUMOFWORDS
];
229 struct room dayfile
[];
230 struct room nightfile
[];
231 struct room
*location
;
233 /* object characteristics */
234 char *objdes
[NUMOFOBJECTS
];
235 char *objsht
[NUMOFOBJECTS
];
236 char *ouch
[NUMOFINJURIES
];
237 int objwt
[NUMOFOBJECTS
];
238 int objcumber
[NUMOFOBJECTS
];
240 /* current input line */
241 #define NWORD 20 /* words per line */
242 char words
[NWORD
][15];
243 int wordvalue
[NWORD
];
245 int wordcount
, wordnumber
;
247 char *truedirec(), *rate();
248 char *getcom(), *getword();
250 /* state of the game */
254 int left
, right
, ahead
, back
;
255 int clock
, fuel
, torps
;
256 int carrying
, encumber
;
268 int matchlight
, matchcount
;
270 int pleasure
, power
, ego
;
273 int notes
[NUMOFNOTES
];
274 unsigned int inven
[NUMOFWORDS
];
275 unsigned int wear
[NUMOFWORDS
];
276 char beenthere
[NUMOFROOMS
+1];
277 char injuries
[NUMOFINJURIES
];
288 #define HASHMASK (HASHSIZE - 1)
289 struct wlist
*hashtab
[HASHSIZE
];
290 struct wlist wlist
[];
296 struct objs dayobjs
[];
297 struct objs nightobjs
[];