2004-11-06 00:30:31 +03:00
|
|
|
/* $NetBSD: dr_1.c,v 1.21 2004/11/05 21:30:32 dsl Exp $ */
|
1995-04-22 14:36:43 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1995-04-22 14:36:43 +04:00
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:36:50 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-10-13 23:42:53 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1995-04-22 14:36:43 +04:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)dr_1.c 8.1 (Berkeley) 5/31/93";
|
|
|
|
#else
|
2004-11-06 00:30:31 +03:00
|
|
|
__RCSID("$NetBSD: dr_1.c,v 1.21 2004/11/05 21:30:32 dsl Exp $");
|
1995-04-22 14:36:43 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
2001-01-04 06:51:23 +03:00
|
|
|
#include <ctype.h>
|
2001-01-04 06:21:16 +03:00
|
|
|
#include <stdio.h>
|
1997-10-13 23:42:53 +04:00
|
|
|
#include <stdlib.h>
|
2001-01-04 06:51:23 +03:00
|
|
|
#include <string.h>
|
2001-01-04 06:21:16 +03:00
|
|
|
#include "extern.h"
|
|
|
|
#include "driver.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2001-01-04 04:53:24 +03:00
|
|
|
static int fightitout(struct ship *, struct ship *, int);
|
|
|
|
|
1997-10-13 23:42:53 +04:00
|
|
|
void
|
2001-01-02 00:57:37 +03:00
|
|
|
unfoul(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-10-13 23:42:53 +04:00
|
|
|
struct ship *sp;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct ship *to;
|
1997-10-13 23:42:53 +04:00
|
|
|
int nat;
|
|
|
|
int i;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
foreachship(sp) {
|
|
|
|
if (sp->file->captain[0])
|
|
|
|
continue;
|
|
|
|
nat = capship(sp)->nationality;
|
|
|
|
foreachship(to) {
|
|
|
|
if (nat != capship(to)->nationality &&
|
1999-09-30 22:01:31 +04:00
|
|
|
!is_toughmelee(sp, to, 0, 0))
|
1993-03-21 12:45:37 +03:00
|
|
|
continue;
|
|
|
|
for (i = fouled2(sp, to); --i >= 0;)
|
2000-12-01 01:02:20 +03:00
|
|
|
if (dieroll() <= 2)
|
1993-03-21 12:45:37 +03:00
|
|
|
cleanfoul(sp, to, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-10-13 23:42:53 +04:00
|
|
|
void
|
2001-01-02 00:57:37 +03:00
|
|
|
boardcomp(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
int crew[3];
|
1997-10-13 23:42:53 +04:00
|
|
|
struct ship *sp, *sq;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
foreachship(sp) {
|
|
|
|
if (*sp->file->captain)
|
|
|
|
continue;
|
|
|
|
if (sp->file->dir == 0)
|
|
|
|
continue;
|
|
|
|
if (sp->file->struck || sp->file->captured != 0)
|
|
|
|
continue;
|
|
|
|
if (!snagged(sp))
|
|
|
|
continue;
|
|
|
|
crew[0] = sp->specs->crew1 != 0;
|
|
|
|
crew[1] = sp->specs->crew2 != 0;
|
|
|
|
crew[2] = sp->specs->crew3 != 0;
|
|
|
|
foreachship(sq) {
|
|
|
|
if (!Xsnagged2(sp, sq))
|
|
|
|
continue;
|
|
|
|
if (meleeing(sp, sq))
|
|
|
|
continue;
|
|
|
|
if (!sq->file->dir
|
|
|
|
|| sp->nationality == capship(sq)->nationality)
|
|
|
|
continue;
|
|
|
|
switch (sp->specs->class - sq->specs->class) {
|
|
|
|
case -3: case -4: case -5:
|
|
|
|
if (crew[0]) {
|
|
|
|
/* OBP */
|
|
|
|
sendbp(sp, sq, crew[0]*100, 0);
|
|
|
|
crew[0] = 0;
|
|
|
|
} else if (crew[1]){
|
|
|
|
/* OBP */
|
|
|
|
sendbp(sp, sq, crew[1]*10, 0);
|
|
|
|
crew[1] = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
if (crew[0] || crew[1]) {
|
|
|
|
/* OBP */
|
|
|
|
sendbp(sp, sq, crew[0]*100+crew[1]*10,
|
|
|
|
0);
|
|
|
|
crew[0] = crew[1] = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case -1: case 0: case 1:
|
|
|
|
if (crew[0]) {
|
|
|
|
/* OBP */
|
|
|
|
sendbp(sp, sq, crew[0]*100+crew[1]*10,
|
|
|
|
0);
|
|
|
|
crew[0] = crew[1] = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2: case 3: case 4: case 5:
|
|
|
|
/* OBP */
|
|
|
|
sendbp(sp, sq, crew[0]*100+crew[1]*10+crew[2],
|
|
|
|
0);
|
|
|
|
crew[0] = crew[1] = crew[2] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-04 04:53:24 +03:00
|
|
|
static int
|
2001-01-02 00:57:37 +03:00
|
|
|
fightitout(struct ship *from, struct ship *to, int key)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
struct ship *fromcap, *tocap;
|
|
|
|
int crewfrom[3], crewto[3], menfrom, mento;
|
|
|
|
int pcto, pcfrom, fromstrength, strengthto, frominjured, toinjured;
|
|
|
|
int topoints;
|
|
|
|
int index, totalfrom = 0, totalto = 0;
|
|
|
|
int count;
|
|
|
|
char message[60];
|
|
|
|
|
|
|
|
menfrom = mensent(from, to, crewfrom, &fromcap, &pcfrom, key);
|
|
|
|
mento = mensent(to, from, crewto, &tocap, &pcto, 0);
|
|
|
|
if (fromcap == 0)
|
|
|
|
fromcap = from;
|
|
|
|
if (tocap == 0)
|
|
|
|
tocap = to;
|
|
|
|
if (key) {
|
|
|
|
if (!menfrom) { /* if crew surprised */
|
|
|
|
if (fromcap == from)
|
|
|
|
menfrom = from->specs->crew1
|
|
|
|
+ from->specs->crew2
|
|
|
|
+ from->specs->crew3;
|
|
|
|
else
|
|
|
|
menfrom = from->file->pcrew;
|
|
|
|
} else {
|
|
|
|
menfrom *= 2; /* DBP's fight at an advantage */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fromstrength = menfrom * fromcap->specs->qual;
|
|
|
|
strengthto = mento * tocap->specs->qual;
|
|
|
|
for (count = 0;
|
1997-10-13 23:42:53 +04:00
|
|
|
((fromstrength < strengthto * 3 && strengthto < fromstrength * 3)
|
1993-03-21 12:45:37 +03:00
|
|
|
|| fromstrength == -1) && count < 4;
|
|
|
|
count++) {
|
|
|
|
index = fromstrength/10;
|
|
|
|
if (index > 8)
|
|
|
|
index = 8;
|
2000-12-01 01:02:20 +03:00
|
|
|
toinjured = MT[index][2 - dieroll() / 3];
|
1993-03-21 12:45:37 +03:00
|
|
|
totalto += toinjured;
|
|
|
|
index = strengthto/10;
|
|
|
|
if (index > 8)
|
|
|
|
index = 8;
|
2000-12-01 01:02:20 +03:00
|
|
|
frominjured = MT[index][2 - dieroll() / 3];
|
1993-03-21 12:45:37 +03:00
|
|
|
totalfrom += frominjured;
|
|
|
|
menfrom -= frominjured;
|
|
|
|
mento -= toinjured;
|
|
|
|
fromstrength = menfrom * fromcap->specs->qual;
|
|
|
|
strengthto = mento * tocap->specs->qual;
|
|
|
|
}
|
|
|
|
if (fromstrength >= strengthto * 3 || count == 4) {
|
|
|
|
unboard(to, from, 0);
|
2001-01-04 09:16:51 +03:00
|
|
|
subtract(from, fromcap, totalfrom, crewfrom, pcfrom);
|
|
|
|
subtract(to, tocap, totalto, crewto, pcto);
|
1997-10-14 01:02:57 +04:00
|
|
|
makemsg(from, "boarders from %s repelled", to->shipname);
|
2001-01-02 00:57:37 +03:00
|
|
|
sprintf(message, "killed in melee: %d. %s: %d",
|
1993-03-21 12:45:37 +03:00
|
|
|
totalto, from->shipname, totalfrom);
|
1999-02-10 03:45:45 +03:00
|
|
|
Writestr(W_SIGNAL, to, message);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (key)
|
|
|
|
return 1;
|
|
|
|
} else if (strengthto >= fromstrength * 3) {
|
|
|
|
unboard(from, to, 0);
|
2001-01-04 09:16:51 +03:00
|
|
|
subtract(from, fromcap, totalfrom, crewfrom, pcfrom);
|
|
|
|
subtract(to, tocap, totalto, crewto, pcto);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (key) {
|
|
|
|
if (fromcap != from)
|
1999-02-10 03:45:45 +03:00
|
|
|
Write(W_POINTS, fromcap,
|
1993-03-21 12:45:37 +03:00
|
|
|
fromcap->file->points -
|
|
|
|
from->file->struck
|
|
|
|
? from->specs->pts
|
|
|
|
: 2 * from->specs->pts,
|
|
|
|
0, 0, 0);
|
|
|
|
|
|
|
|
/* ptr1 points to the shipspec for the ship that was just unboarded.
|
|
|
|
I guess that what is going on here is that the pointer is multiplied
|
|
|
|
or something. */
|
|
|
|
|
1999-02-10 03:45:45 +03:00
|
|
|
Write(W_CAPTURED, from, to->file->index, 0, 0, 0);
|
1993-03-21 12:45:37 +03:00
|
|
|
topoints = 2 * from->specs->pts + to->file->points;
|
|
|
|
if (from->file->struck)
|
|
|
|
topoints -= from->specs->pts;
|
1999-02-10 03:45:45 +03:00
|
|
|
Write(W_POINTS, to, topoints, 0, 0, 0);
|
1993-03-21 12:45:37 +03:00
|
|
|
mento = crewto[0] ? crewto[0] : crewto[1];
|
|
|
|
if (mento) {
|
2001-01-04 09:16:51 +03:00
|
|
|
subtract(to, tocap, mento, crewto, pcto);
|
|
|
|
subtract(from, to, - mento, crewfrom, 0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2001-01-02 00:57:37 +03:00
|
|
|
sprintf(message, "captured by the %s!", to->shipname);
|
1999-02-10 03:45:45 +03:00
|
|
|
Writestr(W_SIGNAL, from, message);
|
2001-01-04 08:34:56 +03:00
|
|
|
sprintf(message, "killed in melee: %d. %s: %d",
|
1993-03-21 12:45:37 +03:00
|
|
|
totalto, from->shipname, totalfrom);
|
1999-02-10 03:45:45 +03:00
|
|
|
Writestr(W_SIGNAL, to, message);
|
1993-03-21 12:45:37 +03:00
|
|
|
mento = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-10-13 23:42:53 +04:00
|
|
|
void
|
2001-01-02 00:57:37 +03:00
|
|
|
resolve(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
int thwart;
|
1997-10-13 23:42:53 +04:00
|
|
|
struct ship *sp, *sq;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
foreachship(sp) {
|
|
|
|
if (sp->file->dir == 0)
|
|
|
|
continue;
|
|
|
|
for (sq = sp + 1; sq < ls; sq++)
|
|
|
|
if (sq->file->dir && meleeing(sp, sq) && meleeing(sq, sp))
|
2001-01-02 00:57:37 +03:00
|
|
|
fightitout(sp, sq, 0);
|
1993-03-21 12:45:37 +03:00
|
|
|
thwart = 2;
|
|
|
|
foreachship(sq) {
|
|
|
|
if (sq->file->dir && meleeing(sq, sp))
|
|
|
|
thwart = fightitout(sp, sq, 1);
|
|
|
|
if (!thwart)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!thwart) {
|
|
|
|
foreachship(sq) {
|
|
|
|
if (sq->file->dir && meleeing(sq, sp))
|
|
|
|
unboard(sq, sp, 0);
|
|
|
|
unboard(sp, sq, 0);
|
|
|
|
}
|
|
|
|
unboard(sp, sp, 1);
|
|
|
|
} else if (thwart == 2)
|
|
|
|
unboard(sp, sp, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-10-13 23:42:53 +04:00
|
|
|
void
|
2001-01-02 00:57:37 +03:00
|
|
|
compcombat(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-10-13 23:42:53 +04:00
|
|
|
int n;
|
|
|
|
struct ship *sp;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct ship *closest;
|
|
|
|
int crew[3], men = 0, target, temp;
|
|
|
|
int r, guns, ready, load, car;
|
|
|
|
int index, rakehim, sternrake;
|
|
|
|
int shootat, hit;
|
|
|
|
|
|
|
|
foreachship(sp) {
|
|
|
|
if (sp->file->captain[0] || sp->file->dir == 0)
|
|
|
|
continue;
|
|
|
|
crew[0] = sp->specs->crew1;
|
|
|
|
crew[1] = sp->specs->crew2;
|
|
|
|
crew[2] = sp->specs->crew3;
|
|
|
|
for (n = 0; n < 3; n++) {
|
|
|
|
if (sp->file->OBP[n].turnsent)
|
|
|
|
men += sp->file->OBP[n].mensent;
|
|
|
|
}
|
|
|
|
for (n = 0; n < 3; n++) {
|
|
|
|
if (sp->file->DBP[n].turnsent)
|
|
|
|
men += sp->file->DBP[n].mensent;
|
|
|
|
}
|
|
|
|
if (men){
|
|
|
|
crew[0] = men/100 ? 0 : crew[0] != 0;
|
|
|
|
crew[1] = (men%100)/10 ? 0 : crew[1] != 0;
|
|
|
|
crew[2] = men%10 ? 0 : crew[2] != 0;
|
|
|
|
}
|
|
|
|
for (r = 0; r < 2; r++) {
|
|
|
|
if (!crew[2])
|
|
|
|
continue;
|
|
|
|
if (sp->file->struck)
|
|
|
|
continue;
|
|
|
|
if (r) {
|
|
|
|
ready = sp->file->readyR;
|
|
|
|
guns = sp->specs->gunR;
|
|
|
|
car = sp->specs->carR;
|
|
|
|
} else {
|
|
|
|
ready = sp->file->readyL;
|
|
|
|
guns = sp->specs->gunL;
|
|
|
|
car = sp->specs->carL;
|
|
|
|
}
|
|
|
|
if (!guns && !car)
|
|
|
|
continue;
|
|
|
|
if ((ready & R_LOADED) == 0)
|
|
|
|
continue;
|
|
|
|
closest = closestenemy(sp, r ? 'r' : 'l', 0);
|
|
|
|
if (closest == 0)
|
|
|
|
continue;
|
|
|
|
if (range(closest, sp) > range(sp, closestenemy(sp, r ? 'r' : 'l', 1)))
|
|
|
|
continue;
|
|
|
|
if (closest->file->struck)
|
|
|
|
continue;
|
|
|
|
target = range(sp, closest);
|
|
|
|
if (target > 10)
|
|
|
|
continue;
|
|
|
|
if (!guns && target >= 3)
|
|
|
|
continue;
|
|
|
|
load = L_ROUND;
|
|
|
|
if (target == 1 && sp->file->loadwith == L_GRAPE)
|
|
|
|
load = L_GRAPE;
|
|
|
|
if (target <= 3 && closest->file->FS)
|
|
|
|
load = L_CHAIN;
|
|
|
|
if (target == 1 && load != L_GRAPE)
|
|
|
|
load = L_DOUBLE;
|
|
|
|
if (load > L_CHAIN && target < 6)
|
|
|
|
shootat = HULL;
|
|
|
|
else
|
|
|
|
shootat = RIGGING;
|
|
|
|
rakehim = gunsbear(sp, closest)
|
|
|
|
&& !gunsbear(closest, sp);
|
|
|
|
temp = portside(closest, sp, 1)
|
|
|
|
- closest->file->dir + 1;
|
|
|
|
if (temp < 1)
|
|
|
|
temp += 8;
|
|
|
|
if (temp > 8)
|
|
|
|
temp -= 8;
|
|
|
|
sternrake = temp > 4 && temp < 6;
|
|
|
|
index = guns;
|
|
|
|
if (target < 3)
|
|
|
|
index += car;
|
|
|
|
index = (index - 1) / 3;
|
|
|
|
index = index > 8 ? 8 : index;
|
|
|
|
if (!rakehim)
|
|
|
|
hit = HDT[index][target-1];
|
|
|
|
else
|
|
|
|
hit = HDTrake[index][target-1];
|
|
|
|
if (rakehim && sternrake)
|
|
|
|
hit++;
|
|
|
|
hit += QUAL[index][capship(sp)->specs->qual - 1];
|
|
|
|
for (n = 0; n < 3 && sp->file->captured == 0; n++)
|
1998-08-30 13:19:36 +04:00
|
|
|
if (!crew[n]) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (index <= 5)
|
|
|
|
hit--;
|
|
|
|
else
|
|
|
|
hit -= 2;
|
1998-08-30 13:19:36 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
if (ready & R_INITIAL) {
|
|
|
|
if (!r)
|
|
|
|
sp->file->readyL &= ~R_INITIAL;
|
|
|
|
else
|
|
|
|
sp->file->readyR &= ~R_INITIAL;
|
|
|
|
if (index <= 3)
|
|
|
|
hit++;
|
|
|
|
else
|
|
|
|
hit += 2;
|
|
|
|
}
|
1998-08-30 13:19:36 +04:00
|
|
|
if (sp->file->captured != 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (index <= 1)
|
|
|
|
hit--;
|
|
|
|
else
|
|
|
|
hit -= 2;
|
1998-08-30 13:19:36 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
hit += AMMO[index][load - 1];
|
|
|
|
temp = sp->specs->class;
|
|
|
|
if ((temp >= 5 || temp == 1) && windspeed == 5)
|
|
|
|
hit--;
|
|
|
|
if (windspeed == 6 && temp == 4)
|
|
|
|
hit -= 2;
|
|
|
|
if (windspeed == 6 && temp <= 3)
|
|
|
|
hit--;
|
|
|
|
if (hit >= 0) {
|
|
|
|
if (load != L_GRAPE)
|
|
|
|
hit = hit > 10 ? 10 : hit;
|
2001-01-04 09:16:51 +03:00
|
|
|
table(sp, closest, shootat, load, hit, dieroll());
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-10-13 23:42:53 +04:00
|
|
|
int
|
2001-01-02 00:57:37 +03:00
|
|
|
next(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1998-08-30 13:19:36 +04:00
|
|
|
if (++turn % 55 == 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (alive)
|
|
|
|
alive = 0;
|
|
|
|
else
|
|
|
|
people = 0;
|
1998-08-30 13:19:36 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
if (people <= 0 || windspeed == 7) {
|
1997-10-13 23:42:53 +04:00
|
|
|
struct ship *s;
|
|
|
|
struct ship *bestship = NULL;
|
1993-03-21 12:45:37 +03:00
|
|
|
float net, best = 0.0;
|
|
|
|
foreachship(s) {
|
|
|
|
if (*s->file->captain)
|
|
|
|
continue;
|
|
|
|
net = (float)s->file->points / s->specs->pts;
|
|
|
|
if (net > best) {
|
|
|
|
best = net;
|
|
|
|
bestship = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (best > 0.0) {
|
Add use of `const' where appropriate to the games.
This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).
Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
1999-09-09 01:17:44 +04:00
|
|
|
char *tp = getenv("WOTD");
|
|
|
|
const char *p;
|
|
|
|
if (tp == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
p = "Driver";
|
Add use of `const' where appropriate to the games.
This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).
Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
1999-09-09 01:17:44 +04:00
|
|
|
else {
|
2004-11-06 00:30:31 +03:00
|
|
|
*tp = toupper((unsigned char)*tp);
|
Add use of `const' where appropriate to the games.
This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).
Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
1999-09-09 01:17:44 +04:00
|
|
|
p = tp;
|
|
|
|
}
|
2004-09-07 17:20:39 +04:00
|
|
|
strlcpy(bestship->file->captain, p,
|
1993-03-21 12:45:37 +03:00
|
|
|
sizeof bestship->file->captain);
|
1997-10-13 23:42:53 +04:00
|
|
|
logger(bestship);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
1999-02-10 03:45:45 +03:00
|
|
|
Write(W_TURN, SHIP(0), turn, 0, 0, 0);
|
2000-12-01 01:02:20 +03:00
|
|
|
if (turn % 7 == 0 && (dieroll() >= cc->windchange || !windspeed)) {
|
|
|
|
switch (dieroll()) {
|
1993-03-21 12:45:37 +03:00
|
|
|
case 1:
|
|
|
|
winddir = 1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
winddir++;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
winddir--;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
winddir += 2;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
winddir -= 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (winddir > 8)
|
|
|
|
winddir -= 8;
|
|
|
|
if (winddir < 1)
|
|
|
|
winddir += 8;
|
|
|
|
if (windspeed)
|
2000-12-01 01:02:20 +03:00
|
|
|
switch (dieroll()) {
|
1993-03-21 12:45:37 +03:00
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
windspeed--;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
case 6:
|
|
|
|
windspeed++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
windspeed++;
|
1999-02-10 03:45:45 +03:00
|
|
|
Write(W_WIND, SHIP(0), winddir, windspeed, 0, 0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|