2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#)misc.c 8.1 (Berkeley) 5/31/93
30 * $FreeBSD: src/games/sail/misc.c,v 1.5 1999/11/30 03:49:34 billf Exp $
35 #include "pathnames.h"
37 #define distance(x,y) \
38 (abs(x) >= abs(y) ? abs(x) + abs(y)/2 : abs(y) + abs(x)/2)
40 static int angle(int, int);
44 range(struct ship
*from
, struct ship
*to
)
46 int bow1r
, bow1c
, bow2r
, bow2c
;
47 int stern1r
, stern1c
, stern2c
, stern2r
;
48 int bb
, bs
, sb
, ss
, result
;
52 stern1r
= bow1r
= from
->file
->row
;
53 stern1c
= bow1c
= from
->file
->col
;
54 stern2r
= bow2r
= to
->file
->row
;
55 stern2c
= bow2c
= to
->file
->col
;
56 result
= bb
= distance(bow2r
- bow1r
, bow2c
- bow1c
);
58 stern2r
+= dr
[to
->file
->dir
];
59 stern2c
+= dc
[to
->file
->dir
];
60 stern1r
+= dr
[from
->file
->dir
];
61 stern1c
+= dc
[from
->file
->dir
];
62 bs
= distance((bow2r
- stern1r
), (bow2c
- stern1c
));
63 sb
= distance((bow1r
- stern2r
), (bow1c
- stern2c
));
64 ss
= distance((stern2r
- stern1r
) ,(stern2c
- stern1c
));
65 result
= min(bb
, min(bs
, min(sb
, ss
)));
71 closestenemy(struct ship
*from
, char side
, char anyship
)
75 int olddist
= 30000, dist
;
76 struct ship
*closest
= NULL
;
78 a
= capship(from
)->nationality
;
82 if (sp
->file
->dir
== 0)
84 if (a
== capship(sp
)->nationality
&& !anyship
)
86 if (side
&& gunsbear(from
, sp
) != side
)
88 dist
= range(from
, sp
);
102 if (Dc
>= 0 && Dr
> 0)
104 else if (Dr
<= 0 && Dc
> 0)
106 else if (Dc
<= 0 && Dr
< 0)
112 if ((i
== 0 || i
== 4) && Dc
* 2.4 > Dr
) {
116 } else if ((i
== 2 || i
== 6) && Dr
* 2.4 > Dc
) {
124 /* checks for target bow or stern */
126 gunsbear(struct ship
*from
, struct ship
*to
)
131 Dr
= from
->file
->row
- to
->file
->row
;
132 Dc
= to
->file
->col
- from
->file
->col
;
133 for (i
= 2; i
; i
--) {
134 if ((ang
= angle(Dr
, Dc
) - from
->file
->dir
+ 1) < 1)
136 if (ang
>= 2 && ang
<= 4)
138 if (ang
>= 6 && ang
<= 7)
140 Dr
+= dr
[to
->file
->dir
];
141 Dc
+= dc
[to
->file
->dir
];
146 /* returns true if fromship is shooting at onship's starboard side */
148 portside(struct ship
*from
, struct ship
*on
, int quick
)
153 Dr
= from
->file
->row
- on
->file
->row
;
154 Dc
= on
->file
->col
- from
->file
->col
;
156 Dr
+= dr
[on
->file
->dir
];
157 Dc
+= dc
[on
->file
->dir
];
162 ang
= (ang
+ 4 - on
->file
->dir
- 1) % 8 + 1;
167 colours(struct ship
*sp
)
171 if (sp
->file
->struck
)
173 if (sp
->file
->explode
)
177 if (sp
->file
->struck
)
179 flag
= *countryname
[capship(sp
)->nationality
];
180 return sp
->file
->FS
? flag
: tolower(flag
);
184 write_log(struct ship
*s
)
189 struct logs log
[NLOG
];
193 if ((fp
= fopen(_PATH_LOGFILE
, "r+")) == NULL
)
196 if (flock(fileno(fp
), LOCK_EX
) < 0)
199 net
= (float)s
->file
->points
/ s
->specs
->pts
;
201 n
= fread((char *)log
, sizeof(struct logs
), NLOG
, fp
);
202 for (lp
= &log
[n
]; lp
< &log
[NLOG
]; lp
++)
203 lp
->l_name
[0] = lp
->l_uid
= lp
->l_shipnum
204 = lp
->l_gamenum
= lp
->l_netpoints
= 0;
209 putw(persons
+ 1, fp
);
210 for (lp
= log
; lp
< &log
[NLOG
]; lp
++)
211 if (net
> (float)lp
->l_netpoints
212 / scene
[lp
->l_gamenum
].ship
[lp
->l_shipnum
].specs
->pts
) {
214 sizeof (struct logs
), lp
- log
, fp
);
215 strcpy(log
[NLOG
-1].l_name
, s
->file
->captain
);
216 log
[NLOG
-1].l_uid
= getuid();
217 log
[NLOG
-1].l_shipnum
= s
->file
->index
;
218 log
[NLOG
-1].l_gamenum
= game
;
219 log
[NLOG
-1].l_netpoints
= s
->file
->points
;
220 fwrite((char *)&log
[NLOG
-1],
221 sizeof (struct logs
), 1, fp
);
223 sizeof (struct logs
), &log
[NLOG
-1] - lp
, fp
);
227 flock(fileno(fp
), LOCK_UN
);