]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - battlestar/fly.c
1 /* $NetBSD: fly.c,v 1.7 1999/04/18 03:30:12 simonb 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
36 #include <sys/cdefs.h>
39 static char sccsid
[] = "@(#)fly.c 8.2 (Berkeley) 4/28/95";
41 __RCSID("$NetBSD: fly.c,v 1.7 1999/04/18 03:30:12 simonb Exp $");
49 #define abs(a) ((a) < 0 ? -(a) : (a))
50 #define MIDR (LINES/2 - 1)
51 #define MIDC (COLS/2 - 1)
56 int ourclock
= 120; /* time for all the flights in the game */
64 if (oldsig
== SIG_DFL
) {
68 if (oldsig
!= SIG_IGN
) {
78 if (initscr() == NULL
) {
79 puts("Whoops! No more memory...");
82 oldsig
= signal(SIGINT
, succumb
);
86 row
= rnd(LINES
- 3) + 1;
87 column
= rnd(COLS
- 2) + 1;
151 if (row
== MIDR
&& column
- MIDC
< 2 && MIDC
- column
< 2) {
156 mvaddstr(0, 0, "*** Out of torpedoes. ***");
164 mvaddstr(0, 26, "Commands = r,R,l,L,u,U,d,D,f,+,q");
189 for (n
= 0; n
< i
; n
++) {
190 r
= rnd(LINES
- 3) + 1;
194 mvaddstr(LINES
- 1 - 1, 21, "TORPEDOES FUEL TIME");
203 move(MIDR
, MIDC
- 10);
204 addstr("------- + -------");
205 for (n
= MIDR
- 4; n
< MIDR
- 1; n
++) {
206 mvaddch(n
, MIDC
, '|');
207 mvaddch(n
+ 6, MIDC
, '|');
216 move(MIDR
, MIDC
- 10);
218 for (n
= MIDR
- 4; n
< MIDR
- 1; n
++) {
219 mvaddch(n
, MIDC
, ' ');
220 mvaddch(n
+ 6, MIDC
, ' ');
231 printw("%3d", torps
);
232 for (n
= LINES
- 1 - 2; n
>= MIDR
+ 1; n
--) {
233 mvaddch(n
, MIDC
+ MIDR
- n
, '/');
234 mvaddch(n
, MIDC
- MIDR
+ n
, '\\');
237 mvaddch(MIDR
, MIDC
, '*');
238 for (n
= LINES
- 1 - 2; n
>= MIDR
+ 1; n
--) {
239 mvaddch(n
, MIDC
+ MIDR
- n
, ' ');
240 mvaddch(n
, MIDC
- MIDR
+ n
, ' ');
256 if (row
+ dr
<= LINES
- 3 && row
+ dr
> 0)
258 if (column
+ dc
< COLS
- 1 && column
+ dc
> 0)
263 mvaddstr(0, 60, "*** Out of fuel ***");
265 d
= (double) ((row
- MIDR
) * (row
- MIDR
) + (column
- MIDC
) * (column
- MIDC
));
267 row
+= (rnd(9) - 4) % (4 - abs(row
- MIDR
));
268 column
+= (rnd(9) - 4) % (4 - abs(column
- MIDC
));
271 mvaddstr(oldr
, oldc
- 1, " ");
274 mvaddstr(row
, column
- 1, "/-\\");
276 printw("%3d", torps
);
280 printw("%3d", ourclock
);
282 signal(SIGALRM
, moveenemy
);
290 signal(SIGALRM
, SIG_DFL
);
291 mvcur(0, COLS
- 1, LINES
- 1, 0);
293 signal(SIGTSTP
, SIG_DFL
);
294 signal(SIGINT
, oldsig
);