]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - sail/extern.h
1 /* $NetBSD: extern.h,v 1.3 1997/04/19 07:35:33 thorpej Exp $ */
4 * Copyright (c) 1983, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * @(#)externs.h 8.1 (Berkeley) 5/31/93
52 /* command line flags */
54 char randomize
; /* -x, give first available ship */
55 char longfmt
; /* -l, print score in long format */
56 char nobells
; /* -b, don't ring bell before Signal */
58 /* other initial modes */
59 char issetuid
; /* running setuid */
61 #define die() ((rand() >> 3) % 6 + 1)
62 #define sqr(a) ((a) * (a))
63 #define abs(a) ((a) > 0 ? (a) : -(a))
64 #define min(a,b) ((a) < (b) ? (a) : (b))
66 #define grappled(a) ((a)->file->ngrap)
67 #define fouled(a) ((a)->file->nfoul)
68 #define snagged(a) (grappled(a) + fouled(a))
70 #define grappled2(a, b) ((a)->file->grap[(b)->file->index].sn_count)
71 #define fouled2(a, b) ((a)->file->foul[(b)->file->index].sn_count)
72 #define snagged2(a, b) (grappled2(a, b) + fouled2(a, b))
74 #define Xgrappled2(a, b) ((a)->file->grap[(b)->file->index].sn_turn < turn-1 ? grappled2(a, b) : 0)
75 #define Xfouled2(a, b) ((a)->file->foul[(b)->file->index].sn_turn < turn-1 ? fouled2(a, b) : 0)
76 #define Xsnagged2(a, b) (Xgrappled2(a, b) + Xfouled2(a, b))
78 #define cleangrapple(a, b, c) Cleansnag(a, b, c, 1)
79 #define cleanfoul(a, b, c) Cleansnag(a, b, c, 2)
80 #define cleansnag(a, b, c) Cleansnag(a, b, c, 3)
82 #define sterncolour(sp) ((sp)->file->stern+'0'-((sp)->file->captured?10:0))
83 #define sternrow(sp) ((sp)->file->row + dr[(sp)->file->dir])
84 #define sterncol(sp) ((sp)->file->col + dc[(sp)->file->dir])
86 #define capship(sp) ((sp)->file->captured?(sp)->file->captured:(sp))
88 #define readyname(r) ((r) & R_LOADING ? '*' : ((r) & R_INITIAL ? '!' : ' '))
90 /* loadL and loadR, should match loadname[] */
91 #define L_EMPTY 0 /* should be 0, don't change */
99 * readyL and readyR, these are bits, except R_EMPTY
101 #define R_EMPTY 0 /* not loaded and not loading */
102 #define R_LOADING 1 /* loading */
103 #define R_DOUBLE 2 /* loading double */
104 #define R_LOADED 4 /* loaded */
105 #define R_INITIAL 8 /* loaded initial */
170 #define NSCENE nscene
186 char captain
[20]; /* 0 */
187 short points
; /* 20 */
190 char readyL
; /* 26 */
191 char readyR
; /* 28 */
192 struct BP OBP
[NBP
]; /* 30 */
193 struct BP DBP
[NBP
]; /* 48 */
194 char struck
; /* 66 */
195 struct ship
*captured
; /* 68 */
196 short pcrew
; /* 70 */
197 char movebuf
[10]; /* 72 */
201 struct snag foul
[NSHIP
]; /* 84 */
202 struct snag grap
[NSHIP
]; /* 124 */
207 char explode
; /* 232 */
217 char *shipname
; /* 0 */
218 struct shipspecs
*specs
; /* 2 */
219 char nationality
; /* 4 */
220 short shiprow
; /* 6 */
221 short shipcol
; /* 8 */
222 char shipdir
; /* 10 */
223 struct File
*file
; /* 12 */
227 char winddir
; /* 0 */
228 char windspeed
; /* 2 */
229 char windchange
; /* 4 */
230 char vessels
; /* 12 */
232 struct ship ship
[NSHIP
]; /* 16 */
234 struct scenario scene
[];
258 struct shipspecs specs
[];
260 struct scenario
*cc
; /* the current scenario */
261 struct ship
*ls
; /* &cc->ship[cc->vessels] */
263 #define SHIP(s) (&cc->ship[s])
264 #define foreachship(sp) for ((sp) = cc->ship; (sp) < ls; (sp)++)
269 struct windeffects WET
[7][6];
274 struct Tables RigTable
[11][6];
275 struct Tables HullTable
[11][6];
285 char *directionname
[];
305 struct ship
*closestenemy();