-
Notifications
You must be signed in to change notification settings - Fork 128
/
dso3.c
205 lines (173 loc) · 3.94 KB
/
dso3.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/* FINDXT- FIND EXIT FROM ROOM */
/*COPYRIGHT 1980, INFOCOM COMPUTERS AND COMMUNICATIONS, CAMBRIDGE MA. 02142*/
/* ALL RIGHTS RESERVED, COMMERCIAL USAGE STRICTLY PROHIBITED */
/* WRITTEN BY R. M. SUPNIK */
#include <stdio.h>
#include "funcs.h"
#include "vars.h"
logical findxt_(dir, rm)
integer dir;
integer rm;
{
/* System generated locals */
logical ret_val;
/* Local variables */
integer i, xi;
integer xxxflg;
ret_val = TRUE_;
/* !ASSUME WINS. */
xi = rooms_1.rexit[rm - 1];
/* !FIND FIRST ENTRY. */
if (xi == 0) {
goto L1000;
}
/* !NO EXITS? */
L100:
i = exits_1.travel[xi - 1];
/* !GET ENTRY. */
curxt_1.xroom1 = i & xpars_1.xrmask;
/* mask to 16-bits to get rid of sign extension problems with 32-bit ints
*/
xxxflg = ~ xpars_1.xlflag & 65535;
curxt_1.xtype = ((i & xxxflg) / xpars_1.xfshft & xpars_1.xfmask) + 1;
switch (curxt_1.xtype) {
case 1: goto L110;
case 2: goto L120;
case 3: goto L130;
case 4: goto L130;
}
/* !BRANCH ON ENTRY. */
bug_(10, curxt_1.xtype);
L130:
curxt_1.xobj = exits_1.travel[xi + 1] & xpars_1.xrmask;
curxt_1.xactio = exits_1.travel[xi + 1] / xpars_1.xashft;
L120:
curxt_1.xstrng = exits_1.travel[xi];
/* !DOOR/CEXIT/NEXIT - STRING. */
L110:
xi += xpars_1.xelnt[curxt_1.xtype - 1];
/* !ADVANCE TO NEXT ENTRY. */
if ((i & xpars_1.xdmask) == dir) {
return ret_val;
}
if ((i & xpars_1.xlflag) == 0) {
goto L100;
}
L1000:
ret_val = FALSE_;
/* !YES, LOSE. */
return ret_val;
} /* findxt_ */
/* FWIM- FIND WHAT I MEAN */
/* DECLARATIONS */
integer fwim_(f1, f2, rm, con, adv, nocare)
integer f1;
integer f2;
integer rm;
integer con;
integer adv;
logical nocare;
{
/* System generated locals */
integer ret_val, i__1, i__2;
/* Local variables */
integer i, j;
/* OBJECTS */
ret_val = 0;
/* !ASSUME NOTHING. */
i__1 = objcts_1.olnt;
for (i = 1; i <= i__1; ++i) {
/* !LOOP */
if ((rm == 0 || objcts_1.oroom[i - 1] != rm) && (adv == 0 ||
objcts_1.oadv[i - 1] != adv) && (con == 0 || objcts_1.ocan[
i - 1] != con)) {
goto L1000;
}
/* OBJECT IS ON LIST... IS IT A MATCH? */
if ((objcts_1.oflag1[i - 1] & VISIBT) == 0) {
goto L1000;
}
if (~ (nocare) & (objcts_1.oflag1[i - 1] & TAKEBT) == 0 || (
objcts_1.oflag1[i - 1] & f1) == 0 && (objcts_1.oflag2[i - 1]
& f2) == 0) {
goto L500;
}
if (ret_val == 0) {
goto L400;
}
/* !ALREADY GOT SOMETHING? */
ret_val = -ret_val;
/* !YES, AMBIGUOUS. */
return ret_val;
L400:
ret_val = i;
/* !NOTE MATCH. */
/* DOES OBJECT CONTAIN A MATCH? */
L500:
if ((objcts_1.oflag2[i - 1] & OPENBT) == 0) {
goto L1000;
}
i__2 = objcts_1.olnt;
for (j = 1; j <= i__2; ++j) {
/* !NO, SEARCH CONTENTS. */
if (objcts_1.ocan[j - 1] != i || (objcts_1.oflag1[j - 1] &
VISIBT) == 0 || (objcts_1.oflag1[j - 1] & f1) ==
0 && (objcts_1.oflag2[j - 1] & f2) == 0) {
goto L700;
}
if (ret_val == 0) {
goto L600;
}
ret_val = -ret_val;
return ret_val;
L600:
ret_val = j;
L700:
;
}
L1000:
;
}
return ret_val;
} /* fwim_ */
/* YESNO- OBTAIN YES/NO ANSWER */
/* CALLED BY- */
/* YES-IS-TRUE=YESNO(QUESTION,YES-STRING,NO-STRING) */
logical yesno_(q, y, n)
integer q;
integer y;
integer n;
{
/* System generated locals */
logical ret_val;
/* Local variables */
char ans[100];
L100:
rspeak_(q);
/* !ASK */
(void) fflush(stdout);
(void) fgets(ans, sizeof ans, stdin);
more_input();
/* !GET ANSWER */
if (*ans == 'Y' || *ans == 'y') {
goto L200;
}
if (*ans == 'N' || *ans == 'n') {
goto L300;
}
rspeak_(6);
/* !SCOLD. */
goto L100;
L200:
ret_val = TRUE_;
/* !YES, */
rspeak_(y);
/* !OUT WITH IT. */
return ret_val;
L300:
ret_val = FALSE_;
/* !NO, */
rspeak_(n);
/* !LIKEWISE. */
return ret_val;
} /* yesno_ */