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 * @(#)fly.c 8.1 (Berkeley) 5/31/93
34 * $FreeBSD: src/games/battlestar/fly.c,v 1.6.2.1 2001/03/05 11:45:36 kris Exp $
35 * $DragonFly: src/games/battlestar/fly.c,v 1.4 2006/08/08 16:47:20 pavalos Exp $
42 #define abs(a) ((a) < 0 ? -(a) : (a))
43 #define MIDR (LINES/2 - 1)
44 #define MIDC (COLS/2 - 1)
49 int gclock
= 120; /* gtime for all the flights in the game */
53 static void blast (void);
54 static void endfly (void);
55 static void moveenemy (int);
56 static void notarget (void);
57 static void succumb (int);
58 static void screen (void);
59 static void target (void);
65 if (oldsig
== SIG_DFL
) {
69 if (oldsig
!= SIG_IGN
) {
79 if(initscr() == NULL
){
80 puts("Whoops! No more memory...");
83 oldsig
= signal(SIGINT
, succumb
);
87 row
= rnd(LINES
-3) + 1;
88 column
= rnd(COLS
-2) + 1;
153 if (row
== MIDR
&& column
- MIDC
< 2 && MIDC
- column
< 2){
159 mvaddstr(0,0,"*** Out of torpedoes. ***");
167 mvaddstr(0,26,"Commands = r,R,l,L,u,U,d,D,f,+,q");
194 for (n
=0; n
< i
; n
++){
195 r
= rnd(LINES
-3) + 1;
199 mvaddstr(LINES
-1-1,21,"TORPEDOES FUEL TIME");
209 addstr("------- + -------");
210 for (n
= MIDR
-4; n
< MIDR
-1; n
++){
212 mvaddch(n
+6,MIDC
,'|');
223 for (n
= MIDR
-4; n
< MIDR
-1; n
++){
225 mvaddch(n
+6,MIDC
,' ');
236 printw((char *)(uintptr_t)(const void *)"%3d", torps
);
237 for(n
= LINES
-1-2; n
>= MIDR
+ 1; n
--){
238 mvaddch(n
, MIDC
+MIDR
-n
, '/');
239 mvaddch(n
, MIDC
-MIDR
+n
, '\\');
242 mvaddch(MIDR
,MIDC
,'*');
243 for(n
= LINES
-1-2; n
>= MIDR
+ 1; n
--){
244 mvaddch(n
, MIDC
+MIDR
-n
, ' ');
245 mvaddch(n
, MIDC
-MIDR
+n
, ' ');
261 if (row
+ dr
<= LINES
-3 && row
+ dr
> 0)
263 if (column
+ dc
< COLS
-1 && column
+ dc
> 0)
265 } else if (fuel
< 0){
267 mvaddstr(0,60,"*** Out of fuel ***");
269 d
= (double) ((row
- MIDR
)*(row
- MIDR
) + (column
- MIDC
)*(column
- MIDC
));
271 row
+= (rnd(9) - 4) % (4 - abs(row
- MIDR
));
272 column
+= (rnd(9) - 4) % (4 - abs(column
- MIDC
));
275 mvaddstr(oldr
, oldc
- 1, " ");
278 mvaddstr(row
, column
- 1, "/-\\");
280 printw((char *)(uintptr_t)(const void *)"%3d", torps
);
282 printw((char *)(uintptr_t)(const void *)"%3d", fuel
);
284 printw((char *)(uintptr_t)(const void *)"%3d", gclock
);
286 signal(SIGALRM
, moveenemy
);
294 signal(SIGALRM
, SIG_DFL
);
295 mvcur(0,COLS
-1,LINES
-1,0);
297 signal(SIGTSTP
, SIG_DFL
);
298 signal(SIGINT
, oldsig
);