]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - sail/dr_1.c
Don't cast the return value of calloc().
[bsdgames-darwin.git] / sail / dr_1.c
1 /* $NetBSD: dr_1.c,v 1.25 2009/03/14 19:35:13 dholland Exp $ */
2
3 /*
4 * Copyright (c) 1983, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 #include <sys/cdefs.h>
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)dr_1.c 8.1 (Berkeley) 5/31/93";
36 #else
37 __RCSID("$NetBSD: dr_1.c,v 1.25 2009/03/14 19:35:13 dholland Exp $");
38 #endif
39 #endif /* not lint */
40
41 #include <ctype.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include "extern.h"
46 #include "driver.h"
47
48 static int fightitout(struct ship *, struct ship *, int);
49
50 void
51 unfoul(void)
52 {
53 struct ship *sp;
54 struct ship *to;
55 int nat;
56 int i;
57
58 foreachship(sp) {
59 if (sp->file->captain[0])
60 continue;
61 nat = capship(sp)->nationality;
62 foreachship(to) {
63 if (nat != capship(to)->nationality &&
64 !is_toughmelee(sp, to, 0, 0))
65 continue;
66 for (i = fouled2(sp, to); --i >= 0;)
67 if (dieroll() <= 2)
68 cleanfoul(sp, to, 0);
69 }
70 }
71 }
72
73 void
74 boardcomp(void)
75 {
76 int crew[3];
77 struct ship *sp, *sq;
78
79 foreachship(sp) {
80 if (*sp->file->captain)
81 continue;
82 if (sp->file->dir == 0)
83 continue;
84 if (sp->file->struck || sp->file->captured != 0)
85 continue;
86 if (!snagged(sp))
87 continue;
88 crew[0] = sp->specs->crew1 != 0;
89 crew[1] = sp->specs->crew2 != 0;
90 crew[2] = sp->specs->crew3 != 0;
91 foreachship(sq) {
92 if (!Xsnagged2(sp, sq))
93 continue;
94 if (meleeing(sp, sq))
95 continue;
96 if (!sq->file->dir
97 || sp->nationality == capship(sq)->nationality)
98 continue;
99 switch (sp->specs->class - sq->specs->class) {
100 case -3: case -4: case -5:
101 if (crew[0]) {
102 /* OBP */
103 sendbp(sp, sq, crew[0]*100, 0);
104 crew[0] = 0;
105 } else if (crew[1]) {
106 /* OBP */
107 sendbp(sp, sq, crew[1]*10, 0);
108 crew[1] = 0;
109 }
110 break;
111 case -2:
112 if (crew[0] || crew[1]) {
113 /* OBP */
114 sendbp(sp, sq, crew[0]*100+crew[1]*10,
115 0);
116 crew[0] = crew[1] = 0;
117 }
118 break;
119 case -1: case 0: case 1:
120 if (crew[0]) {
121 /* OBP */
122 sendbp(sp, sq, crew[0]*100+crew[1]*10,
123 0);
124 crew[0] = crew[1] = 0;
125 }
126 break;
127 case 2: case 3: case 4: case 5:
128 /* OBP */
129 sendbp(sp, sq, crew[0]*100+crew[1]*10+crew[2],
130 0);
131 crew[0] = crew[1] = crew[2] = 0;
132 break;
133 }
134 }
135 }
136 }
137
138 static int
139 fightitout(struct ship *from, struct ship *to, int key)
140 {
141 struct ship *fromcap, *tocap;
142 int crewfrom[3], crewto[3], menfrom, mento;
143 int pcto, pcfrom, fromstrength, strengthto, frominjured, toinjured;
144 int topoints;
145 int indx, totalfrom = 0, totalto = 0;
146 int count;
147 char message[60];
148
149 menfrom = mensent(from, to, crewfrom, &fromcap, &pcfrom, key);
150 mento = mensent(to, from, crewto, &tocap, &pcto, 0);
151 if (fromcap == 0)
152 fromcap = from;
153 if (tocap == 0)
154 tocap = to;
155 if (key) {
156 if (!menfrom) { /* if crew surprised */
157 if (fromcap == from)
158 menfrom = from->specs->crew1
159 + from->specs->crew2
160 + from->specs->crew3;
161 else
162 menfrom = from->file->pcrew;
163 } else {
164 menfrom *= 2; /* DBP's fight at an advantage */
165 }
166 }
167 fromstrength = menfrom * fromcap->specs->qual;
168 strengthto = mento * tocap->specs->qual;
169 for (count = 0;
170 ((fromstrength < strengthto * 3 && strengthto < fromstrength * 3)
171 || fromstrength == -1) && count < 4;
172 count++) {
173 indx = fromstrength/10;
174 if (indx > 8)
175 indx = 8;
176 toinjured = MT[indx][2 - dieroll() / 3];
177 totalto += toinjured;
178 indx = strengthto/10;
179 if (indx > 8)
180 indx = 8;
181 frominjured = MT[indx][2 - dieroll() / 3];
182 totalfrom += frominjured;
183 menfrom -= frominjured;
184 mento -= toinjured;
185 fromstrength = menfrom * fromcap->specs->qual;
186 strengthto = mento * tocap->specs->qual;
187 }
188 if (fromstrength >= strengthto * 3 || count == 4) {
189 unboard(to, from, 0);
190 subtract(from, fromcap, totalfrom, crewfrom, pcfrom);
191 subtract(to, tocap, totalto, crewto, pcto);
192 makemsg(from, "boarders from %s repelled", to->shipname);
193 snprintf(message, sizeof(message),
194 "killed in melee: %d. %s: %d",
195 totalto, from->shipname, totalfrom);
196 Writestr(W_SIGNAL, to, message);
197 if (key)
198 return 1;
199 } else if (strengthto >= fromstrength * 3) {
200 unboard(from, to, 0);
201 subtract(from, fromcap, totalfrom, crewfrom, pcfrom);
202 subtract(to, tocap, totalto, crewto, pcto);
203 if (key) {
204 if (fromcap != from)
205 Write(W_POINTS, fromcap,
206 fromcap->file->points -
207 from->file->struck
208 ? from->specs->pts
209 : 2 * from->specs->pts,
210 0, 0, 0);
211
212 /* ptr1 points to the shipspec for the ship that was just unboarded.
213 I guess that what is going on here is that the pointer is multiplied
214 or something. */
215
216 Write(W_CAPTURED, from, to->file->index, 0, 0, 0);
217 topoints = 2 * from->specs->pts + to->file->points;
218 if (from->file->struck)
219 topoints -= from->specs->pts;
220 Write(W_POINTS, to, topoints, 0, 0, 0);
221 mento = crewto[0] ? crewto[0] : crewto[1];
222 if (mento) {
223 subtract(to, tocap, mento, crewto, pcto);
224 subtract(from, to, - mento, crewfrom, 0);
225 }
226 snprintf(message, sizeof(message),
227 "captured by the %s!", to->shipname);
228 Writestr(W_SIGNAL, from, message);
229 snprintf(message, sizeof(message),
230 "killed in melee: %d. %s: %d",
231 totalto, from->shipname, totalfrom);
232 Writestr(W_SIGNAL, to, message);
233 mento = 0;
234 return 0;
235 }
236 }
237 return 0;
238 }
239
240 void
241 resolve(void)
242 {
243 int thwart;
244 struct ship *sp, *sq;
245
246 foreachship(sp) {
247 if (sp->file->dir == 0)
248 continue;
249 for (sq = sp + 1; sq < ls; sq++)
250 if (sq->file->dir && meleeing(sp, sq) &&
251 meleeing(sq, sp))
252 fightitout(sp, sq, 0);
253 thwart = 2;
254 foreachship(sq) {
255 if (sq->file->dir && meleeing(sq, sp))
256 thwart = fightitout(sp, sq, 1);
257 if (!thwart)
258 break;
259 }
260 if (!thwart) {
261 foreachship(sq) {
262 if (sq->file->dir && meleeing(sq, sp))
263 unboard(sq, sp, 0);
264 unboard(sp, sq, 0);
265 }
266 unboard(sp, sp, 1);
267 } else if (thwart == 2)
268 unboard(sp, sp, 1);
269 }
270 }
271
272 void
273 compcombat(void)
274 {
275 int n;
276 struct ship *sp;
277 struct ship *closest;
278 int crew[3], men = 0, target, temp;
279 int r, guns, ready, load, car;
280 int indx, rakehim, sternrake;
281 int shootat, hit;
282
283 foreachship(sp) {
284 if (sp->file->captain[0] || sp->file->dir == 0)
285 continue;
286 crew[0] = sp->specs->crew1;
287 crew[1] = sp->specs->crew2;
288 crew[2] = sp->specs->crew3;
289 for (n = 0; n < 3; n++) {
290 if (sp->file->OBP[n].turnsent)
291 men += sp->file->OBP[n].mensent;
292 }
293 for (n = 0; n < 3; n++) {
294 if (sp->file->DBP[n].turnsent)
295 men += sp->file->DBP[n].mensent;
296 }
297 if (men) {
298 crew[0] = men/100 ? 0 : crew[0] != 0;
299 crew[1] = (men%100)/10 ? 0 : crew[1] != 0;
300 crew[2] = men%10 ? 0 : crew[2] != 0;
301 }
302 for (r = 0; r < 2; r++) {
303 if (!crew[2])
304 continue;
305 if (sp->file->struck)
306 continue;
307 if (r) {
308 ready = sp->file->readyR;
309 guns = sp->specs->gunR;
310 car = sp->specs->carR;
311 } else {
312 ready = sp->file->readyL;
313 guns = sp->specs->gunL;
314 car = sp->specs->carL;
315 }
316 if (!guns && !car)
317 continue;
318 if ((ready & R_LOADED) == 0)
319 continue;
320 closest = closestenemy(sp, r ? 'r' : 'l', 0);
321 if (closest == 0)
322 continue;
323 if (range(closest, sp) >
324 range(sp, closestenemy(sp, r ? 'r' : 'l', 1)))
325 continue;
326 if (closest->file->struck)
327 continue;
328 target = range(sp, closest);
329 if (target > 10)
330 continue;
331 if (!guns && target >= 3)
332 continue;
333 load = L_ROUND;
334 if (target == 1 && sp->file->loadwith == L_GRAPE)
335 load = L_GRAPE;
336 if (target <= 3 && closest->file->FS)
337 load = L_CHAIN;
338 if (target == 1 && load != L_GRAPE)
339 load = L_DOUBLE;
340 if (load > L_CHAIN && target < 6)
341 shootat = HULL;
342 else
343 shootat = RIGGING;
344 rakehim = gunsbear(sp, closest)
345 && !gunsbear(closest, sp);
346 temp = portside(closest, sp, 1)
347 - closest->file->dir + 1;
348 if (temp < 1)
349 temp += 8;
350 if (temp > 8)
351 temp -= 8;
352 sternrake = temp > 4 && temp < 6;
353 indx = guns;
354 if (target < 3)
355 indx += car;
356 indx = (indx - 1) / 3;
357 indx = indx > 8 ? 8 : indx;
358 if (!rakehim)
359 hit = HDT[indx][target-1];
360 else
361 hit = HDTrake[indx][target-1];
362 if (rakehim && sternrake)
363 hit++;
364 hit += QUAL[indx][capship(sp)->specs->qual - 1];
365 for (n = 0; n < 3 && sp->file->captured == 0; n++) {
366 if (!crew[n]) {
367 if (indx <= 5)
368 hit--;
369 else
370 hit -= 2;
371 }
372 }
373 if (ready & R_INITIAL) {
374 if (!r)
375 sp->file->readyL &= ~R_INITIAL;
376 else
377 sp->file->readyR &= ~R_INITIAL;
378 if (indx <= 3)
379 hit++;
380 else
381 hit += 2;
382 }
383 if (sp->file->captured != 0) {
384 if (indx <= 1)
385 hit--;
386 else
387 hit -= 2;
388 }
389 hit += AMMO[indx][load - 1];
390 temp = sp->specs->class;
391 if ((temp >= 5 || temp == 1) && windspeed == 5)
392 hit--;
393 if (windspeed == 6 && temp == 4)
394 hit -= 2;
395 if (windspeed == 6 && temp <= 3)
396 hit--;
397 if (hit >= 0) {
398 if (load != L_GRAPE)
399 hit = hit > 10 ? 10 : hit;
400 table(sp, closest, shootat, load, hit,
401 dieroll());
402 }
403 }
404 }
405 }
406
407 int
408 next(void)
409 {
410 if (++turn % 55 == 0) {
411 if (alive)
412 alive = 0;
413 else
414 people = 0;
415 }
416 if (people <= 0 || windspeed == 7) {
417 struct ship *s;
418 struct ship *bestship = NULL;
419 float net, best = 0.0;
420 foreachship(s) {
421 if (*s->file->captain)
422 continue;
423 net = (float)s->file->points / s->specs->pts;
424 if (net > best) {
425 best = net;
426 bestship = s;
427 }
428 }
429 if (best > 0.0 && bestship) {
430 char *tp = getenv("WOTD");
431 const char *p;
432 if (tp == 0)
433 p = "Driver";
434 else {
435 *tp = toupper((unsigned char)*tp);
436 p = tp;
437 }
438 strlcpy(bestship->file->captain, p,
439 sizeof bestship->file->captain);
440 logger(bestship);
441 }
442 return -1;
443 }
444 Write(W_TURN, SHIP(0), turn, 0, 0, 0);
445 if (turn % 7 == 0 && (dieroll() >= cc->windchange || !windspeed)) {
446 switch (dieroll()) {
447 case 1:
448 winddir = 1;
449 break;
450 case 2:
451 break;
452 case 3:
453 winddir++;
454 break;
455 case 4:
456 winddir--;
457 break;
458 case 5:
459 winddir += 2;
460 break;
461 case 6:
462 winddir -= 2;
463 break;
464 }
465 if (winddir > 8)
466 winddir -= 8;
467 if (winddir < 1)
468 winddir += 8;
469 if (windspeed)
470 switch (dieroll()) {
471 case 1:
472 case 2:
473 windspeed--;
474 break;
475 case 5:
476 case 6:
477 windspeed++;
478 break;
479 }
480 else
481 windspeed++;
482 Write(W_WIND, SHIP(0), winddir, windspeed, 0, 0);
483 }
484 return 0;
485 }