NetBSD/games/battlestar/fly.c

300 lines
5.8 KiB
C
Raw Normal View History

2012-10-13 23:58:53 +04:00
/* $NetBSD: fly.c,v 1.15 2012/10/13 19:58:53 dholland Exp $ */
1995-03-21 18:03:38 +03:00
1993-03-21 12:45:37 +03:00
/*
1995-03-21 18:03:38 +03:00
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-10-10 15:39:08 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1995-03-21 18:03:38 +03:00
#if 0
1997-01-07 14:56:32 +03:00
static char sccsid[] = "@(#)fly.c 8.2 (Berkeley) 4/28/95";
1995-03-21 18:03:38 +03:00
#else
2012-10-13 23:58:53 +04:00
__RCSID("$NetBSD: fly.c,v 1.15 2012/10/13 19:58:53 dholland Exp $");
1995-03-21 18:03:38 +03:00
#endif
1997-10-11 06:06:55 +04:00
#endif /* not lint */
1993-03-21 12:45:37 +03:00
1997-01-07 14:56:32 +03:00
#include "extern.h"
1993-03-21 12:45:37 +03:00
#undef UP
#include <curses.h>
2012-10-13 23:58:53 +04:00
#include <assert.h>
1993-03-21 12:45:37 +03:00
#define MIDR (LINES/2 - 1)
#define MIDC (COLS/2 - 1)
static int row, column;
static int dr = 0, dc = 0;
static char destroyed;
1997-10-11 06:06:55 +04:00
int ourclock = 120; /* time for all the flights in the game */
static char cross = 0;
static sig_t oldsig;
1993-03-21 12:45:37 +03:00
2004-01-27 23:30:28 +03:00
static void blast(void);
static void endfly(void);
static void moveenemy(int);
static void notarget(void);
static void screen(void);
static void succumb(int);
static void target(void);
static void
succumb(int dummy __unused)
1993-03-21 12:45:37 +03:00
{
if (oldsig == SIG_DFL) {
endfly();
exit(1);
}
if (oldsig != SIG_IGN) {
endfly();
1997-10-11 06:06:55 +04:00
(*oldsig) (SIGINT);
1993-03-21 12:45:37 +03:00
}
}
1997-10-10 15:39:08 +04:00
int
2005-07-01 10:04:46 +04:00
visual(void)
1993-03-21 12:45:37 +03:00
{
destroyed = 0;
if (initscr() == NULL) {
1993-03-21 12:45:37 +03:00
puts("Whoops! No more memory...");
1997-10-11 06:06:55 +04:00
return (0);
1993-03-21 12:45:37 +03:00
}
oldsig = signal(SIGINT, succumb);
cbreak();
1993-03-21 12:45:37 +03:00
noecho();
screen();
1997-10-11 06:06:55 +04:00
row = rnd(LINES - 3) + 1;
column = rnd(COLS - 2) + 1;
1997-10-10 15:39:08 +04:00
moveenemy(0);
1993-03-21 12:45:37 +03:00
for (;;) {
1997-10-11 06:06:55 +04:00
switch (getchar()) {
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'h':
case 'r':
dc = -1;
fuel--;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'H':
case 'R':
dc = -5;
fuel -= 10;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'l':
dc = 1;
fuel--;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'L':
dc = 5;
fuel -= 10;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'j':
case 'u':
dr = 1;
fuel--;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'J':
case 'U':
dr = 5;
fuel -= 10;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'k':
case 'd':
dr = -1;
fuel--;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'K':
case 'D':
dr = -5;
fuel -= 10;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case '+':
if (cross) {
cross = 0;
notarget();
} else
cross = 1;
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case ' ':
case 'f':
if (torps) {
torps -= 2;
blast();
2012-10-13 23:58:53 +04:00
if (row == MIDR && column < MIDC + 2 &&
column > MIDC - 2) {
1997-10-11 06:06:55 +04:00
destroyed = 1;
alarm(0);
1993-03-21 12:45:37 +03:00
}
1997-10-11 06:06:55 +04:00
} else
mvaddstr(0, 0, "*** Out of torpedoes. ***");
break;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case 'q':
endfly();
return (0);
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
default:
mvaddstr(0, 26, "Commands = r,R,l,L,u,U,d,D,f,+,q");
continue;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
case EOF:
break;
1993-03-21 12:45:37 +03:00
}
1997-10-11 06:06:55 +04:00
if (destroyed) {
1993-03-21 12:45:37 +03:00
endfly();
1997-10-11 06:06:55 +04:00
return (1);
1993-03-21 12:45:37 +03:00
}
1997-10-11 06:06:55 +04:00
if (ourclock <= 0) {
1993-03-21 12:45:37 +03:00
endfly();
die();
}
}
}
static void
2005-07-01 10:04:46 +04:00
screen(void)
1993-03-21 12:45:37 +03:00
{
1997-10-11 06:06:55 +04:00
int r, c, n;
int i;
1993-03-21 12:45:37 +03:00
clear();
i = rnd(100);
1997-10-11 06:06:55 +04:00
for (n = 0; n < i; n++) {
r = rnd(LINES - 3) + 1;
1993-03-21 12:45:37 +03:00
c = rnd(COLS);
mvaddch(r, c, '.');
}
1997-10-11 06:06:55 +04:00
mvaddstr(LINES - 1 - 1, 21, "TORPEDOES FUEL TIME");
1993-03-21 12:45:37 +03:00
refresh();
}
static void
2005-07-01 10:04:46 +04:00
target(void)
1993-03-21 12:45:37 +03:00
{
1997-10-11 06:06:55 +04:00
int n;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
move(MIDR, MIDC - 10);
1993-03-21 12:45:37 +03:00
addstr("------- + -------");
1997-10-11 06:06:55 +04:00
for (n = MIDR - 4; n < MIDR - 1; n++) {
mvaddch(n, MIDC, '|');
mvaddch(n + 6, MIDC, '|');
1993-03-21 12:45:37 +03:00
}
}
static void
2005-07-01 10:04:46 +04:00
notarget(void)
1993-03-21 12:45:37 +03:00
{
1997-10-11 06:06:55 +04:00
int n;
1993-03-21 12:45:37 +03:00
1997-10-11 06:06:55 +04:00
move(MIDR, MIDC - 10);
1993-03-21 12:45:37 +03:00
addstr(" ");
1997-10-11 06:06:55 +04:00
for (n = MIDR - 4; n < MIDR - 1; n++) {
mvaddch(n, MIDC, ' ');
mvaddch(n + 6, MIDC, ' ');
1993-03-21 12:45:37 +03:00
}
}
static void
2005-07-01 10:04:46 +04:00
blast(void)
1993-03-21 12:45:37 +03:00
{
1997-10-11 06:06:55 +04:00
int n;
1993-03-21 12:45:37 +03:00
alarm(0);
1997-10-11 06:06:55 +04:00
move(LINES - 1, 24);
1993-03-21 12:45:37 +03:00
printw("%3d", torps);
1997-10-11 06:06:55 +04:00
for (n = LINES - 1 - 2; n >= MIDR + 1; n--) {
mvaddch(n, MIDC + MIDR - n, '/');
mvaddch(n, MIDC - MIDR + n, '\\');
1993-03-21 12:45:37 +03:00
refresh();
}
1997-10-11 06:06:55 +04:00
mvaddch(MIDR, MIDC, '*');
for (n = LINES - 1 - 2; n >= MIDR + 1; n--) {
mvaddch(n, MIDC + MIDR - n, ' ');
mvaddch(n, MIDC - MIDR + n, ' ');
1993-03-21 12:45:37 +03:00
refresh();
}
alarm(1);
}
static void
moveenemy(int dummy __unused)
1993-03-21 12:45:37 +03:00
{
1997-10-11 06:06:55 +04:00
double d;
int oldr, oldc;
1993-03-21 12:45:37 +03:00
oldr = row;
oldc = column;
1997-10-11 06:06:55 +04:00
if (fuel > 0) {
if (row + dr <= LINES - 3 && row + dr > 0)
1993-03-21 12:45:37 +03:00
row += dr;
1997-10-11 06:06:55 +04:00
if (column + dc < COLS - 1 && column + dc > 0)
1993-03-21 12:45:37 +03:00
column += dc;
1997-10-11 06:06:55 +04:00
} else
if (fuel < 0) {
fuel = 0;
mvaddstr(0, 60, "*** Out of fuel ***");
}
2005-07-01 10:04:46 +04:00
d = (double) ((row - MIDR) * (row - MIDR) + (column - MIDC) *
(column - MIDC));
1997-10-11 06:06:55 +04:00
if (d < 16) {
1993-03-21 12:45:37 +03:00
row += (rnd(9) - 4) % (4 - abs(row - MIDR));
column += (rnd(9) - 4) % (4 - abs(column - MIDC));
}
1997-10-10 15:39:08 +04:00
ourclock--;
1993-03-21 12:45:37 +03:00
mvaddstr(oldr, oldc - 1, " ");
if (cross)
target();
mvaddstr(row, column - 1, "/-\\");
1997-10-11 06:06:55 +04:00
move(LINES - 1, 24);
1993-03-21 12:45:37 +03:00
printw("%3d", torps);
1997-10-11 06:06:55 +04:00
move(LINES - 1, 42);
1993-03-21 12:45:37 +03:00
printw("%3d", fuel);
1997-10-11 06:06:55 +04:00
move(LINES - 1, 57);
1997-10-10 15:39:08 +04:00
printw("%3d", ourclock);
1993-03-21 12:45:37 +03:00
refresh();
signal(SIGALRM, moveenemy);
alarm(1);
}
static void
2005-07-01 10:04:46 +04:00
endfly(void)
1993-03-21 12:45:37 +03:00
{
alarm(0);
signal(SIGALRM, SIG_DFL);
1997-10-11 06:06:55 +04:00
mvcur(0, COLS - 1, LINES - 1, 0);
1993-03-21 12:45:37 +03:00
endwin();
signal(SIGTSTP, SIG_DFL);
signal(SIGINT, oldsig);
}