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. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#)externs.h 8.1 (Berkeley) 5/31/93
34 * $DragonFly: src/games/sail/externs.h,v 1.2 2004/01/23 20:28:01 joerg Exp $
51 /* command line flags */
53 char randomize
; /* -x, give first available ship */
54 char longfmt
; /* -l, print score in long format */
55 char nobells
; /* -b, don't ring bell before Signal */
57 /* other initial modes */
58 char issetuid
; /* running setuid */
60 #define die() (random() % 6 + 1)
61 #define sqr(a) ((a) * (a))
62 #define abs(a) ((a) > 0 ? (a) : -(a))
63 #define min(a,b) ((a) < (b) ? (a) : (b))
65 #define grappled(a) ((a)->file->ngrap)
66 #define fouled(a) ((a)->file->nfoul)
67 #define snagged(a) (grappled(a) + fouled(a))
69 #define grappled2(a, b) ((a)->file->grap[(b)->file->index].sn_count)
70 #define fouled2(a, b) ((a)->file->foul[(b)->file->index].sn_count)
71 #define snagged2(a, b) (grappled2(a, b) + fouled2(a, b))
73 #define Xgrappled2(a, b) ((a)->file->grap[(b)->file->index].sn_turn < turn-1 ? grappled2(a, b) : 0)
74 #define Xfouled2(a, b) ((a)->file->foul[(b)->file->index].sn_turn < turn-1 ? fouled2(a, b) : 0)
75 #define Xsnagged2(a, b) (Xgrappled2(a, b) + Xfouled2(a, b))
77 #define cleangrapple(a, b, c) Cleansnag(a, b, c, 1)
78 #define cleanfoul(a, b, c) Cleansnag(a, b, c, 2)
79 #define cleansnag(a, b, c) Cleansnag(a, b, c, 3)
81 #define sterncolour(sp) ((sp)->file->stern+'0'-((sp)->file->captured?10:0))
82 #define sternrow(sp) ((sp)->file->row + dr[(sp)->file->dir])
83 #define sterncol(sp) ((sp)->file->col + dc[(sp)->file->dir])
85 #define capship(sp) ((sp)->file->captured?(sp)->file->captured:(sp))
87 #define readyname(r) ((r) & R_LOADING ? '*' : ((r) & R_INITIAL ? '!' : ' '))
89 /* loadL and loadR, should match loadname[] */
90 #define L_EMPTY 0 /* should be 0, don't change */
98 * readyL and readyR, these are bits, except R_EMPTY
100 #define R_EMPTY 0 /* not loaded and not loading */
101 #define R_LOADING 1 /* loading */
102 #define R_DOUBLE 2 /* loading double */
103 #define R_LOADED 4 /* loaded */
104 #define R_INITIAL 8 /* loaded initial */
169 #define NSCENE nscene
185 char captain
[20]; /* 0 */
186 short points
; /* 20 */
189 char readyL
; /* 26 */
190 char readyR
; /* 28 */
191 struct BP OBP
[NBP
]; /* 30 */
192 struct BP DBP
[NBP
]; /* 48 */
193 char struck
; /* 66 */
194 struct ship
*captured
; /* 68 */
195 short pcrew
; /* 70 */
196 char movebuf
[60]; /* 72 */
197 char drift
; /* 132 */
200 struct snag foul
[NSHIP
]; /* 134 */
201 struct snag grap
[NSHIP
]; /* 144 */
206 char explode
; /* 282 */
216 char *shipname
; /* 0 */
217 struct shipspecs
*specs
; /* 2 */
218 char nationality
; /* 4 */
219 short shiprow
; /* 6 */
220 short shipcol
; /* 8 */
221 char shipdir
; /* 10 */
222 struct File
*file
; /* 12 */
226 char winddir
; /* 0 */
227 char windspeed
; /* 2 */
228 char windchange
; /* 4 */
229 char vessels
; /* 12 */
231 struct ship ship
[NSHIP
]; /* 16 */
233 extern struct scenario scene
[];
257 extern struct shipspecs specs
[];
259 struct scenario
*cc
; /* the current scenario */
260 struct ship
*ls
; /* &cc->ship[cc->vessels] */
262 #define SHIP(s) (&cc->ship[s])
263 #define foreachship(sp) for ((sp) = cc->ship; (sp) < ls; (sp)++)
268 struct windeffects WET
[7][6];
273 struct Tables RigTable
[11][6];
274 struct Tables HullTable
[11][6];
282 extern char *countryname
[];
283 extern char *classname
[];
284 extern char *directionname
[];
285 extern char *qualname
[];
286 extern char loadname
[];
288 extern char rangeofshot
[];
290 extern char dr
[], dc
[];
304 struct ship
*closestenemy();
313 int log(struct ship
*s
);