hdr.h revision 1.1 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 * @(#)hdr.h 8.1 (Berkeley) 5/31/93
39 */
40
41 /* ADVENTURE -- Jim Gillogly, Jul 1977
42 * This program is a re-write of ADVENT, written in FORTRAN mostly by
43 * Don Woods of SAIL. In most places it is as nearly identical to the
44 * original as possible given the language and word-size differences.
45 * A few places, such as the message arrays and travel arrays were changed
46 * to reflect the smaller core size and word size. The labels of the
47 * original are reflected in this version, so that the comments of the
48 * fortran are still applicable here.
49 *
50 * The data file distributed with the fortran source is assumed to be called
51 * "glorkz" in the directory where the program is first run.
52 */
53
54 /* hdr.h: included by c advent files */
55
56 int datfd; /* message file descriptor */
57 int delhit;
58 int yea;
59 extern char data_file[]; /* Virtual data file */
60
61 #define TAB 011
62 #define LF 012
63 #define FLUSHLINE while (getchar()!='\n')
64 #define FLUSHLF while (next()!=LF)
65
66 int loc,newloc,oldloc,oldlc2,wzdark,gaveup,kq,k,k2;
67 char *wd1,*wd2; /* the complete words */
68 int verb,obj,spk;
69 extern int blklin;
70 int saved,savet,mxscor,latncy;
71
72 #define SHORT 50 /* How short is a demo game? */
73
74 #define MAXSTR 20 /* max length of user's words */
75
76 #define HTSIZE 512 /* max number of vocab words */
77 struct hashtab /* hash table for vocabulary */
78 { int val; /* word type &index (ktab) */
79 char *atab; /* pointer to actual string */
80 } voc[HTSIZE];
81
82 #define SEED 1815622 /* "Encryption" seed */
83
84 struct text
85 #ifdef OLDSTUFF
86 { int seekadr; /* DATFILE must be < 2**16 */
87 #endif OLDSTUFF
88 { char *seekadr; /* Msg start in virtual disk */
89 int txtlen; /* length of msg starting here */
90 };
91
92 #define RTXSIZ 205
93 struct text rtext[RTXSIZ]; /* random text messages */
94
95 #define MAGSIZ 35
96 struct text mtext[MAGSIZ]; /* magic messages */
97
98 int clsses;
99 #define CLSMAX 12
100 struct text ctext[CLSMAX]; /* classes of adventurer */
101 int cval[CLSMAX];
102
103 struct text ptext[101]; /* object descriptions */
104
105 #define LOCSIZ 141 /* number of locations */
106 struct text ltext[LOCSIZ]; /* long loc description */
107 struct text stext[LOCSIZ]; /* short loc descriptions */
108
109 struct travlist /* direcs & conditions of travel*/
110 { struct travlist *next; /* ptr to next list entry */
111 int conditions; /* m in writeup (newloc / 1000) */
112 int tloc; /* n in writeup (newloc % 1000) */
113 int tverb; /* the verb that takes you there*/
114 } *travel[LOCSIZ],*tkk; /* travel is closer to keys(...)*/
115
116 int atloc[LOCSIZ];
117
118 int plac[101]; /* initial object placement */
119 int fixd[101],fixed[101]; /* location fixed? */
120
121 int actspk[35]; /* rtext msg for verb <n> */
122
123 int cond[LOCSIZ]; /* various condition bits */
124
125 extern int setbit[16]; /* bit defn masks 1,2,4,... */
126
127 int hntmax;
128 int hints[20][5]; /* info on hints */
129 int hinted[20],hintlc[20];
130
131 int place[101], prop[101],link[201];
132 int abb[LOCSIZ];
133
134 int maxtrs,tally,tally2; /* treasure values */
135
136 #define FALSE 0
137 #define TRUE 1
138
139 int keys,lamp,grate,cage,rod,rod2,steps,/* mnemonics */
140 bird,door,pillow,snake,fissur,tablet,clam,oyster,magzin,
141 dwarf,knife,food,bottle,water,oil,plant,plant2,axe,mirror,dragon,
142 chasm,troll,troll2,bear,messag,vend,batter,
143 nugget,coins,chest,eggs,tridnt,vase,emrald,pyram,pearl,rug,chain,
144 spices,
145 back,look,cave,null,entrnc,dprssn,
146 enter, stream, pour,
147 say,lock,throw,find,invent;
148
149 int chloc,chloc2,dseen[7],dloc[7], /* dwarf stuff */
150 odloc[7],dflag,daltlc;
151
152 int tk[21],stick,dtotal,attack;
153 int turns,lmwarn,iwest,knfloc,detail, /* various flags & counters */
154 abbnum,maxdie,numdie,holdng,dkill,foobar,bonus,clock1,clock2,
155 saved,closng,panic,closed,scorng;
156
157 int demo,newloc,limit;
158
159 char *malloc();
160 char *decr();
161 unsigned long crc();
162
163 /* We need to get a little tricky to avoid strings */
164 #define DECR(a,b,c,d,e) decr('a'+'+','b'+'-','c'+'#','d'+'&','e'+'%')
165