dr_3.c revision 1.15 1 1.15 agc /* $NetBSD: dr_3.c,v 1.15 2003/08/07 09:37:42 agc Exp $ */
2 1.3 cgd
3 1.1 cgd /*
4 1.3 cgd * Copyright (c) 1983, 1993
5 1.3 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.15 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd */
31 1.1 cgd
32 1.4 christos #include <sys/cdefs.h>
33 1.1 cgd #ifndef lint
34 1.3 cgd #if 0
35 1.3 cgd static char sccsid[] = "@(#)dr_3.c 8.1 (Berkeley) 5/31/93";
36 1.3 cgd #else
37 1.15 agc __RCSID("$NetBSD: dr_3.c,v 1.15 2003/08/07 09:37:42 agc Exp $");
38 1.3 cgd #endif
39 1.1 cgd #endif /* not lint */
40 1.1 cgd
41 1.11 jwise #include <stdlib.h>
42 1.12 jwise #include <string.h>
43 1.11 jwise #include "extern.h"
44 1.1 cgd #include "driver.h"
45 1.1 cgd
46 1.10 jwise static int stillmoving(int);
47 1.10 jwise static int is_isolated(struct ship *);
48 1.10 jwise static int push(struct ship *, struct ship *);
49 1.13 jwise static void step(struct ship *, int, char *);
50 1.10 jwise
51 1.9 jwise /* move all comp ships */
52 1.4 christos void
53 1.9 jwise moveall(void)
54 1.1 cgd {
55 1.4 christos struct ship *sp, *sq;
56 1.4 christos int n;
57 1.4 christos int k, l;
58 1.1 cgd int row[NSHIP], col[NSHIP], dir[NSHIP], drift[NSHIP];
59 1.1 cgd char moved[NSHIP];
60 1.1 cgd
61 1.1 cgd /*
62 1.1 cgd * first try to create moves for OUR ships
63 1.1 cgd */
64 1.1 cgd foreachship(sp) {
65 1.1 cgd struct ship *closest;
66 1.1 cgd int ma, ta;
67 1.1 cgd char af;
68 1.1 cgd
69 1.1 cgd if (sp->file->captain[0] || sp->file->dir == 0)
70 1.1 cgd continue;
71 1.1 cgd if (!sp->file->struck && windspeed && !snagged(sp)
72 1.1 cgd && sp->specs->crew3) {
73 1.1 cgd ta = maxturns(sp, &af);
74 1.1 cgd ma = maxmove(sp, sp->file->dir, 0);
75 1.1 cgd closest = closestenemy(sp, 0, 0);
76 1.1 cgd if (closest == 0)
77 1.1 cgd *sp->file->movebuf = '\0';
78 1.1 cgd else
79 1.1 cgd closeon(sp, closest, sp->file->movebuf,
80 1.1 cgd ta, ma, af);
81 1.1 cgd } else
82 1.1 cgd *sp->file->movebuf = '\0';
83 1.1 cgd }
84 1.1 cgd /*
85 1.1 cgd * Then execute the moves for ALL ships (dead ones too),
86 1.1 cgd * checking for collisions and snags at each step.
87 1.1 cgd * The old positions are saved in row[], col[], dir[].
88 1.1 cgd * At the end, we compare and write out the changes.
89 1.1 cgd */
90 1.1 cgd n = 0;
91 1.1 cgd foreachship(sp) {
92 1.1 cgd if (snagged(sp))
93 1.9 jwise strcpy(sp->file->movebuf, "d");
94 1.1 cgd else
95 1.1 cgd if (*sp->file->movebuf != 'd')
96 1.9 jwise strcat(sp->file->movebuf, "d");
97 1.1 cgd row[n] = sp->file->row;
98 1.1 cgd col[n] = sp->file->col;
99 1.1 cgd dir[n] = sp->file->dir;
100 1.1 cgd drift[n] = sp->file->drift;
101 1.1 cgd moved[n] = 0;
102 1.1 cgd n++;
103 1.1 cgd }
104 1.1 cgd /*
105 1.1 cgd * Now resolve collisions.
106 1.1 cgd * This is the tough part.
107 1.1 cgd */
108 1.1 cgd for (k = 0; stillmoving(k); k++) {
109 1.1 cgd /*
110 1.1 cgd * Step once.
111 1.1 cgd * And propagate the nulls at the end of sp->file->movebuf.
112 1.1 cgd */
113 1.1 cgd n = 0;
114 1.1 cgd foreachship(sp) {
115 1.1 cgd if (!sp->file->movebuf[k])
116 1.1 cgd sp->file->movebuf[k+1] = '\0';
117 1.1 cgd else if (sp->file->dir)
118 1.13 jwise step(sp, sp->file->movebuf[k], &moved[n]);
119 1.1 cgd n++;
120 1.1 cgd }
121 1.1 cgd /*
122 1.1 cgd * The real stuff.
123 1.1 cgd */
124 1.1 cgd n = 0;
125 1.1 cgd foreachship(sp) {
126 1.7 jsm if (sp->file->dir == 0 || is_isolated(sp))
127 1.1 cgd goto cont1;
128 1.1 cgd l = 0;
129 1.1 cgd foreachship(sq) {
130 1.1 cgd char snap = 0;
131 1.1 cgd
132 1.1 cgd if (sp == sq)
133 1.1 cgd goto cont2;
134 1.1 cgd if (sq->file->dir == 0)
135 1.1 cgd goto cont2;
136 1.1 cgd if (!push(sp, sq))
137 1.1 cgd goto cont2;
138 1.1 cgd if (snagged2(sp, sq) && range(sp, sq) > 1)
139 1.1 cgd snap++;
140 1.1 cgd if (!range(sp, sq) && !fouled2(sp, sq)) {
141 1.5 christos makesignal(sp, "collision with $$", sq);
142 1.8 jwise if (dieroll() < 4) {
143 1.5 christos makesignal(sp, "fouled with $$",
144 1.5 christos sq);
145 1.6 hubertf Write(W_FOUL, sp, l, 0, 0, 0);
146 1.6 hubertf Write(W_FOUL, sq, n, 0, 0, 0);
147 1.1 cgd }
148 1.1 cgd snap++;
149 1.1 cgd }
150 1.1 cgd if (snap) {
151 1.1 cgd sp->file->movebuf[k + 1] = 0;
152 1.1 cgd sq->file->movebuf[k + 1] = 0;
153 1.1 cgd sq->file->row = sp->file->row - 1;
154 1.1 cgd if (sp->file->dir == 1
155 1.1 cgd || sp->file->dir == 5)
156 1.1 cgd sq->file->col =
157 1.1 cgd sp->file->col - 1;
158 1.1 cgd else
159 1.1 cgd sq->file->col = sp->file->col;
160 1.1 cgd sq->file->dir = sp->file->dir;
161 1.1 cgd }
162 1.1 cgd cont2:
163 1.1 cgd l++;
164 1.1 cgd }
165 1.1 cgd cont1:
166 1.1 cgd n++;
167 1.1 cgd }
168 1.1 cgd }
169 1.1 cgd /*
170 1.1 cgd * Clear old moves. And write out new pos.
171 1.1 cgd */
172 1.1 cgd n = 0;
173 1.1 cgd foreachship(sp) {
174 1.1 cgd if (sp->file->dir != 0) {
175 1.1 cgd *sp->file->movebuf = 0;
176 1.1 cgd if (row[n] != sp->file->row)
177 1.6 hubertf Write(W_ROW, sp, sp->file->row, 0, 0, 0);
178 1.1 cgd if (col[n] != sp->file->col)
179 1.6 hubertf Write(W_COL, sp, sp->file->col, 0, 0, 0);
180 1.1 cgd if (dir[n] != sp->file->dir)
181 1.6 hubertf Write(W_DIR, sp, sp->file->dir, 0, 0, 0);
182 1.1 cgd if (drift[n] != sp->file->drift)
183 1.6 hubertf Write(W_DRIFT, sp, sp->file->drift, 0, 0, 0);
184 1.1 cgd }
185 1.1 cgd n++;
186 1.1 cgd }
187 1.1 cgd }
188 1.1 cgd
189 1.10 jwise static int
190 1.9 jwise stillmoving(int k)
191 1.1 cgd {
192 1.4 christos struct ship *sp;
193 1.1 cgd
194 1.1 cgd foreachship(sp)
195 1.1 cgd if (sp->file->movebuf[k])
196 1.1 cgd return 1;
197 1.1 cgd return 0;
198 1.1 cgd }
199 1.1 cgd
200 1.10 jwise static int
201 1.9 jwise is_isolated(struct ship *ship)
202 1.1 cgd {
203 1.4 christos struct ship *sp;
204 1.1 cgd
205 1.1 cgd foreachship(sp) {
206 1.1 cgd if (ship != sp && range(ship, sp) <= 10)
207 1.1 cgd return 0;
208 1.1 cgd }
209 1.1 cgd return 1;
210 1.1 cgd }
211 1.1 cgd
212 1.10 jwise static int
213 1.9 jwise push(struct ship *from, struct ship *to)
214 1.1 cgd {
215 1.4 christos int bs, sb;
216 1.1 cgd
217 1.1 cgd sb = to->specs->guns;
218 1.1 cgd bs = from->specs->guns;
219 1.1 cgd if (sb > bs)
220 1.1 cgd return 1;
221 1.1 cgd if (sb < bs)
222 1.1 cgd return 0;
223 1.1 cgd return from < to;
224 1.1 cgd }
225 1.1 cgd
226 1.10 jwise static void
227 1.13 jwise step(struct ship *sp, int com, char *moved)
228 1.1 cgd {
229 1.4 christos int dist;
230 1.1 cgd
231 1.1 cgd switch (com) {
232 1.1 cgd case 'r':
233 1.1 cgd if (++sp->file->dir == 9)
234 1.1 cgd sp->file->dir = 1;
235 1.1 cgd break;
236 1.1 cgd case 'l':
237 1.1 cgd if (--sp->file->dir == 0)
238 1.1 cgd sp->file->dir = 8;
239 1.1 cgd break;
240 1.1 cgd case '0': case '1': case '2': case '3':
241 1.1 cgd case '4': case '5': case '6': case '7':
242 1.1 cgd if (sp->file->dir % 2 == 0)
243 1.1 cgd dist = dtab[com - '0'];
244 1.1 cgd else
245 1.1 cgd dist = com - '0';
246 1.1 cgd sp->file->row -= dr[sp->file->dir] * dist;
247 1.1 cgd sp->file->col -= dc[sp->file->dir] * dist;
248 1.1 cgd *moved = 1;
249 1.1 cgd break;
250 1.1 cgd case 'b':
251 1.1 cgd break;
252 1.1 cgd case 'd':
253 1.1 cgd if (!*moved) {
254 1.1 cgd if (windspeed != 0 && ++sp->file->drift > 2 &&
255 1.4 christos ((sp->specs->class >= 3 && !snagged(sp))
256 1.1 cgd || (turn & 1) == 0)) {
257 1.1 cgd sp->file->row -= dr[winddir];
258 1.1 cgd sp->file->col -= dc[winddir];
259 1.1 cgd }
260 1.1 cgd } else
261 1.1 cgd sp->file->drift = 0;
262 1.1 cgd break;
263 1.1 cgd }
264 1.1 cgd }
265 1.1 cgd
266 1.4 christos void
267 1.9 jwise sendbp(struct ship *from, struct ship *to, int sections, int isdefense)
268 1.1 cgd {
269 1.1 cgd int n;
270 1.4 christos struct BP *bp;
271 1.1 cgd
272 1.1 cgd bp = isdefense ? from->file->DBP : from->file->OBP;
273 1.1 cgd for (n = 0; n < NBP && bp[n].turnsent; n++)
274 1.1 cgd ;
275 1.1 cgd if (n < NBP && sections) {
276 1.6 hubertf Write(isdefense ? W_DBP : W_OBP, from,
277 1.1 cgd n, turn, to->file->index, sections);
278 1.1 cgd if (isdefense)
279 1.5 christos makemsg(from, "repelling boarders");
280 1.1 cgd else
281 1.5 christos makesignal(from, "boarding the $$", to);
282 1.1 cgd }
283 1.1 cgd }
284 1.1 cgd
285 1.4 christos int
286 1.9 jwise is_toughmelee(struct ship *ship, struct ship *to, int isdefense, int count)
287 1.1 cgd {
288 1.4 christos struct BP *bp;
289 1.4 christos int obp = 0;
290 1.1 cgd int n, OBP = 0, DBP = 0, dbp = 0;
291 1.1 cgd int qual;
292 1.1 cgd
293 1.1 cgd qual = ship->specs->qual;
294 1.1 cgd bp = isdefense ? ship->file->DBP : ship->file->OBP;
295 1.1 cgd for (n = 0; n < NBP; n++, bp++) {
296 1.1 cgd if (bp->turnsent && (to == bp->toship || isdefense)) {
297 1.1 cgd obp += bp->mensent / 100
298 1.1 cgd ? ship->specs->crew1 * qual : 0;
299 1.1 cgd obp += (bp->mensent % 100)/10
300 1.1 cgd ? ship->specs->crew2 * qual : 0;
301 1.1 cgd obp += bp->mensent % 10
302 1.1 cgd ? ship->specs->crew3 * qual : 0;
303 1.1 cgd }
304 1.1 cgd }
305 1.1 cgd if (count || isdefense)
306 1.1 cgd return obp;
307 1.7 jsm OBP = is_toughmelee(to, ship, 0, count + 1);
308 1.7 jsm dbp = is_toughmelee(ship, to, 1, count + 1);
309 1.7 jsm DBP = is_toughmelee(to, ship, 1, count + 1);
310 1.1 cgd if (OBP > obp + 10 || OBP + DBP >= obp + dbp + 10)
311 1.1 cgd return 1;
312 1.1 cgd else
313 1.1 cgd return 0;
314 1.1 cgd }
315 1.1 cgd
316 1.4 christos void
317 1.9 jwise reload(void)
318 1.1 cgd {
319 1.4 christos struct ship *sp;
320 1.1 cgd
321 1.1 cgd foreachship(sp) {
322 1.1 cgd sp->file->loadwith = 0;
323 1.1 cgd }
324 1.1 cgd }
325 1.1 cgd
326 1.4 christos void
327 1.9 jwise checksails(void)
328 1.1 cgd {
329 1.4 christos struct ship *sp;
330 1.4 christos int rig, full;
331 1.1 cgd struct ship *close;
332 1.1 cgd
333 1.1 cgd foreachship(sp) {
334 1.1 cgd if (sp->file->captain[0] != 0)
335 1.1 cgd continue;
336 1.1 cgd rig = sp->specs->rig1;
337 1.4 christos if (windspeed == 6 || (windspeed == 5 && sp->specs->class > 4))
338 1.1 cgd rig = 0;
339 1.1 cgd if (rig && sp->specs->crew3) {
340 1.1 cgd close = closestenemy(sp, 0, 0);
341 1.1 cgd if (close != 0) {
342 1.1 cgd if (range(sp, close) > 9)
343 1.1 cgd full = 1;
344 1.1 cgd else
345 1.1 cgd full = 0;
346 1.1 cgd } else
347 1.1 cgd full = 0;
348 1.1 cgd } else
349 1.1 cgd full = 0;
350 1.1 cgd if ((sp->file->FS != 0) != full)
351 1.6 hubertf Write(W_FS, sp, full, 0, 0, 0);
352 1.1 cgd }
353 1.1 cgd }
354