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 * @(#)fly.c 8.1 (Berkeley) 5/31/93
30 * $FreeBSD: src/games/battlestar/fly.c,v 1.6.2.1 2001/03/05 11:45:36 kris Exp $
37 #define MIDR (LINES / 2 - 1)
38 #define MIDC (COLS / 2 - 1)
43 int gclock
= 120; /* gtime for all the flights in the game */
47 static void blast(void);
48 static void endfly(void);
49 static void moveenemy(int);
50 static void notarget(void);
51 static void succumb(int);
52 static void screen(void);
53 static void target(void);
56 succumb(int sig __unused
)
58 if (oldsig
== SIG_DFL
) {
62 if (oldsig
!= SIG_IGN
) {
72 if (initscr() == NULL
) {
73 puts("Whoops! No more memory...");
76 oldsig
= signal(SIGINT
, succumb
);
80 row
= rnd(LINES
- 3) + 1;
81 column
= rnd(COLS
- 2) + 1;
144 if (row
== MIDR
&& column
- MIDC
< 2 &&
150 mvaddstr(0, 0, "*** Out of torpedoes. ***");
158 mvaddstr(0, 26, "Commands = r,R,l,L,u,U,d,D,f,+,q");
185 for (n
= 0; n
< i
; n
++) {
186 r
= rnd(LINES
- 3) + 1;
190 mvaddstr(LINES
- 1 - 1, 21, "TORPEDOES FUEL TIME");
199 move(MIDR
, MIDC
- 10);
200 addstr("------- + -------");
201 for (n
= MIDR
- 4; n
< MIDR
- 1; n
++) {
202 mvaddch(n
, MIDC
, '|');
203 mvaddch(n
+ 6, MIDC
, '|');
212 move(MIDR
, MIDC
- 10);
214 for (n
= MIDR
- 4; n
< MIDR
- 1; n
++) {
215 mvaddch(n
, MIDC
, ' ');
216 mvaddch(n
+ 6, MIDC
, ' ');
227 printw((char *)(uintptr_t)(const void *)"%3d", torps
);
228 for (n
= LINES
- 1 - 2; n
>= MIDR
+ 1; n
--) {
229 mvaddch(n
, MIDC
+ MIDR
- n
, '/');
230 mvaddch(n
, MIDC
- MIDR
+ n
, '\\');
233 mvaddch(MIDR
, MIDC
, '*');
234 for (n
= LINES
- 1 - 2; n
>= MIDR
+ 1; n
--) {
235 mvaddch(n
, MIDC
+ MIDR
- n
, ' ');
236 mvaddch(n
, MIDC
- MIDR
+ n
, ' ');
243 moveenemy(__unused
int sig
)
252 if (row
+ dr
<= LINES
- 3 && row
+ dr
> 0)
254 if (column
+ dc
< COLS
- 1 && column
+ dc
> 0)
256 } else if (fuel
< 0) {
258 mvaddstr(0, 60, "*** Out of fuel ***");
260 d
= (double)((row
- MIDR
) * (row
- MIDR
) + (column
- MIDC
) *
263 row
+= (rnd(9) - 4) % (4 - abs(row
- MIDR
));
264 column
+= (rnd(9) - 4) % (4 - abs(column
- MIDC
));
267 mvaddstr(oldr
, oldc
- 1, " ");
270 mvaddstr(row
, column
- 1, "/-\\");
272 printw((char *)(uintptr_t)(const void *)"%3d", torps
);
274 printw((char *)(uintptr_t)(const void *)"%3d", fuel
);
276 printw((char *)(uintptr_t)(const void *)"%3d", gclock
);
278 signal(SIGALRM
, moveenemy
);
286 signal(SIGALRM
, SIG_DFL
);
287 mvcur(0, COLS
- 1, LINES
- 1, 0);
290 signal(SIGTSTP
, SIG_DFL
);
291 signal(SIGINT
, oldsig
);