nrelease - fix/improve livecd
[dragonfly.git] / games / battlestar / fly.c
CommitLineData
4318c66e
SW
1/* @(#)fly.c 8.2 (Berkeley) 4/28/95 */
2/* $NetBSD: fly.c,v 1.15 2012/10/13 19:58:53 dholland Exp $ */
3
4/*
984263bc
MD
5 * Copyright (c) 1983, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
6693db17 16 * 3. Neither the name of the University nor the names of its contributors
984263bc
MD
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
4318c66e 33#include "extern.h"
984263bc
MD
34#undef UP
35#include <curses.h>
4318c66e 36#include <assert.h>
984263bc 37
4318c66e
SW
38#define MIDR (LINES/2 - 1)
39#define MIDC (COLS/2 - 1)
984263bc 40
4318c66e
SW
41static int row, column;
42static int dr = 0, dc = 0;
43static char destroyed;
44int ourclock = 120; /* time for all the flights in the game */
45static char cross = 0;
46static sig_t oldsig;
984263bc 47
4318c66e
SW
48static void blast(void);
49static void endfly(void);
50static void moveenemy(int);
51static void notarget(void);
52static void screen(void);
53static void succumb(int);
54static void target(void);
984263bc 55
5c7cac79 56static void
4318c66e 57succumb(int dummy __unused)
984263bc 58{
984263bc
MD
59 if (oldsig == SIG_DFL) {
60 endfly();
61 exit(1);
62 }
63 if (oldsig != SIG_IGN) {
64 endfly();
4318c66e 65 (*oldsig) (SIGINT);
984263bc
MD
66 }
67}
68
69int
5c7cac79 70visual(void)
984263bc 71{
984263bc 72 destroyed = 0;
6693db17 73 if (initscr() == NULL) {
984263bc 74 puts("Whoops! No more memory...");
6693db17 75 return (0);
984263bc
MD
76 }
77 oldsig = signal(SIGINT, succumb);
6693db17 78 cbreak();
984263bc
MD
79 noecho();
80 screen();
6693db17
SW
81 row = rnd(LINES - 3) + 1;
82 column = rnd(COLS - 2) + 1;
984263bc
MD
83 moveenemy(0);
84 for (;;) {
6693db17 85 switch (getchar()) {
4318c66e 86
6693db17
SW
87 case 'h':
88 case 'r':
89 dc = -1;
90 fuel--;
91 break;
984263bc 92
6693db17
SW
93 case 'H':
94 case 'R':
95 dc = -5;
96 fuel -= 10;
97 break;
984263bc 98
6693db17
SW
99 case 'l':
100 dc = 1;
101 fuel--;
102 break;
984263bc 103
6693db17
SW
104 case 'L':
105 dc = 5;
106 fuel -= 10;
107 break;
984263bc 108
6693db17
SW
109 case 'j':
110 case 'u':
111 dr = 1;
112 fuel--;
113 break;
984263bc 114
6693db17
SW
115 case 'J':
116 case 'U':
117 dr = 5;
118 fuel -= 10;
119 break;
984263bc 120
6693db17
SW
121 case 'k':
122 case 'd':
123 dr = -1;
124 fuel--;
125 break;
984263bc 126
6693db17
SW
127 case 'K':
128 case 'D':
129 dr = -5;
130 fuel -= 10;
131 break;
984263bc 132
6693db17
SW
133 case '+':
134 if (cross) {
135 cross = 0;
136 notarget();
137 } else
138 cross = 1;
139 break;
984263bc 140
6693db17
SW
141 case ' ':
142 case 'f':
143 if (torps) {
144 torps -= 2;
145 blast();
4318c66e
SW
146 if (row == MIDR && column < MIDC + 2 &&
147 column > MIDC - 2) {
6693db17
SW
148 destroyed = 1;
149 alarm(0);
984263bc 150 }
6693db17
SW
151 } else
152 mvaddstr(0, 0, "*** Out of torpedoes. ***");
153 break;
984263bc 154
6693db17
SW
155 case 'q':
156 endfly();
157 return (0);
984263bc 158
6693db17
SW
159 default:
160 mvaddstr(0, 26, "Commands = r,R,l,L,u,U,d,D,f,+,q");
161 continue;
984263bc 162
6693db17
SW
163 case EOF:
164 break;
984263bc 165 }
6693db17 166 if (destroyed) {
984263bc 167 endfly();
6693db17 168 return (1);
984263bc 169 }
4318c66e 170 if (ourclock <= 0) {
984263bc 171 endfly();
4318c66e 172 die();
984263bc
MD
173 }
174 }
984263bc
MD
175}
176
5c7cac79
PA
177static void
178screen(void)
984263bc 179{
4318c66e
SW
180 int r, c, n;
181 int i;
984263bc
MD
182
183 clear();
184 i = rnd(100);
6693db17
SW
185 for (n = 0; n < i; n++) {
186 r = rnd(LINES - 3) + 1;
984263bc
MD
187 c = rnd(COLS);
188 mvaddch(r, c, '.');
189 }
6693db17 190 mvaddstr(LINES - 1 - 1, 21, "TORPEDOES FUEL TIME");
984263bc
MD
191 refresh();
192}
193
5c7cac79
PA
194static void
195target(void)
984263bc 196{
4318c66e 197 int n;
984263bc 198
6693db17 199 move(MIDR, MIDC - 10);
984263bc 200 addstr("------- + -------");
6693db17
SW
201 for (n = MIDR - 4; n < MIDR - 1; n++) {
202 mvaddch(n, MIDC, '|');
203 mvaddch(n + 6, MIDC, '|');
984263bc
MD
204 }
205}
206
5c7cac79
PA
207static void
208notarget(void)
984263bc 209{
4318c66e 210 int n;
984263bc 211
6693db17 212 move(MIDR, MIDC - 10);
984263bc 213 addstr(" ");
6693db17
SW
214 for (n = MIDR - 4; n < MIDR - 1; n++) {
215 mvaddch(n, MIDC, ' ');
216 mvaddch(n + 6, MIDC, ' ');
984263bc
MD
217 }
218}
219
5c7cac79
PA
220static void
221blast(void)
984263bc 222{
4318c66e 223 int n;
984263bc
MD
224
225 alarm(0);
6693db17 226 move(LINES - 1, 24);
4318c66e 227 printw("%3d", torps);
6693db17
SW
228 for (n = LINES - 1 - 2; n >= MIDR + 1; n--) {
229 mvaddch(n, MIDC + MIDR - n, '/');
230 mvaddch(n, MIDC - MIDR + n, '\\');
984263bc
MD
231 refresh();
232 }
6693db17
SW
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, ' ');
984263bc
MD
237 refresh();
238 }
239 alarm(1);
240}
241
5c7cac79 242static void
4318c66e 243moveenemy(int dummy __unused)
984263bc 244{
4318c66e
SW
245 double d;
246 int oldr, oldc;
984263bc 247
984263bc
MD
248 oldr = row;
249 oldc = column;
6693db17
SW
250 if (fuel > 0) {
251 if (row + dr <= LINES - 3 && row + dr > 0)
984263bc 252 row += dr;
6693db17 253 if (column + dc < COLS - 1 && column + dc > 0)
984263bc 254 column += dc;
4318c66e
SW
255 } else
256 if (fuel < 0) {
257 fuel = 0;
258 mvaddstr(0, 60, "*** Out of fuel ***");
259 }
260 d = (double) ((row - MIDR) * (row - MIDR) + (column - MIDC) *
6693db17
SW
261 (column - MIDC));
262 if (d < 16) {
984263bc
MD
263 row += (rnd(9) - 4) % (4 - abs(row - MIDR));
264 column += (rnd(9) - 4) % (4 - abs(column - MIDC));
265 }
4318c66e 266 ourclock--;
984263bc
MD
267 mvaddstr(oldr, oldc - 1, " ");
268 if (cross)
269 target();
270 mvaddstr(row, column - 1, "/-\\");
6693db17 271 move(LINES - 1, 24);
4318c66e 272 printw("%3d", torps);
6693db17 273 move(LINES - 1, 42);
4318c66e 274 printw("%3d", fuel);
6693db17 275 move(LINES - 1, 57);
4318c66e 276 printw("%3d", ourclock);
984263bc
MD
277 refresh();
278 signal(SIGALRM, moveenemy);
279 alarm(1);
280}
281
5c7cac79
PA
282static void
283endfly(void)
984263bc
MD
284{
285 alarm(0);
286 signal(SIGALRM, SIG_DFL);
6693db17 287 mvcur(0, COLS - 1, LINES - 1, 0);
984263bc
MD
288 endwin();
289 signal(SIGTSTP, SIG_DFL);
290 signal(SIGINT, oldsig);
291}