2004-08-27 13:07:08 +04:00
|
|
|
/* $NetBSD: move.c,v 1.12 2004/08/27 09:07:08 christos Exp $ */
|
1995-04-22 14:08:46 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1995-04-22 14:08:46 +04:00
|
|
|
* Copyright (c) 1980, 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.
|
2003-08-07 13:36:50 +04:00
|
|
|
* 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-12 18:09:55 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1995-04-22 14:08:46 +04:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 5/31/93";
|
|
|
|
#else
|
2004-08-27 13:07:08 +04:00
|
|
|
__RCSID("$NetBSD: move.c,v 1.12 2004/08/27 09:07:08 christos Exp $");
|
1995-04-22 14:08:46 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1995-04-22 14:08:46 +04:00
|
|
|
#include "robots.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
# define ESC '\033'
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_move:
|
|
|
|
* Get and execute a move from the player
|
|
|
|
*/
|
1997-10-12 18:09:55 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
get_move()
|
|
|
|
{
|
1997-10-12 18:09:55 +04:00
|
|
|
int c;
|
1998-07-25 03:28:02 +04:00
|
|
|
#ifdef FANCY
|
|
|
|
int lastmove;
|
|
|
|
#endif /*FANCY*/
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (Waiting)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifdef FANCY
|
|
|
|
if (Pattern_roll) {
|
|
|
|
if (Next_move >= Move_list)
|
|
|
|
lastmove = *Next_move;
|
|
|
|
else
|
|
|
|
lastmove = -1; /* flag for "first time in" */
|
1998-07-25 03:28:02 +04:00
|
|
|
} else
|
|
|
|
lastmove = 0; /* Shut up gcc */
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
for (;;) {
|
|
|
|
if (Teleport && must_telep())
|
|
|
|
goto teleport;
|
|
|
|
if (Running)
|
|
|
|
c = Run_ch;
|
|
|
|
else if (Count != 0)
|
|
|
|
c = Cnt_move;
|
|
|
|
#ifdef FANCY
|
|
|
|
else if (Num_robots > 1 && Stand_still)
|
|
|
|
c = '>';
|
|
|
|
else if (Num_robots > 1 && Pattern_roll) {
|
|
|
|
if (*++Next_move == '\0') {
|
|
|
|
if (lastmove < 0)
|
|
|
|
goto over;
|
|
|
|
Next_move = Move_list;
|
|
|
|
}
|
|
|
|
c = *Next_move;
|
|
|
|
mvaddch(0, 0, c);
|
|
|
|
if (c == lastmove)
|
|
|
|
goto over;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else {
|
|
|
|
over:
|
2004-08-27 13:07:08 +04:00
|
|
|
if (Auto_bot) {
|
1999-05-16 03:56:35 +04:00
|
|
|
c = automove();
|
2004-08-27 13:07:08 +04:00
|
|
|
if (!Jump) {
|
|
|
|
usleep(10000);
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
} else
|
1999-05-16 03:56:35 +04:00
|
|
|
c = getchar();
|
1993-03-21 12:45:37 +03:00
|
|
|
if (isdigit(c)) {
|
|
|
|
Count = (c - '0');
|
|
|
|
while (isdigit(c = getchar()))
|
|
|
|
Count = Count * 10 + (c - '0');
|
|
|
|
if (c == ESC)
|
|
|
|
goto over;
|
|
|
|
Cnt_move = c;
|
|
|
|
if (Count)
|
|
|
|
leaveok(stdscr, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case ' ':
|
|
|
|
case '.':
|
|
|
|
if (do_move(0, 0))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'y':
|
|
|
|
if (do_move(-1, -1))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
if (do_move(-1, 0))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
if (do_move(-1, 1))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
if (do_move(0, -1))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
if (do_move(0, 1))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
if (do_move(1, -1))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'j':
|
|
|
|
if (do_move(1, 0))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
if (do_move(1, 1))
|
|
|
|
goto ret;
|
|
|
|
break;
|
|
|
|
case 'Y': case 'U': case 'H': case 'J':
|
|
|
|
case 'K': case 'L': case 'B': case 'N':
|
|
|
|
case '>':
|
|
|
|
Running = TRUE;
|
|
|
|
if (c == '>')
|
|
|
|
Run_ch = ' ';
|
|
|
|
else
|
|
|
|
Run_ch = tolower(c);
|
|
|
|
leaveok(stdscr, TRUE);
|
|
|
|
break;
|
|
|
|
case 'q':
|
|
|
|
case 'Q':
|
|
|
|
if (query("Really quit?"))
|
1997-10-12 18:09:55 +04:00
|
|
|
quit(0);
|
1993-03-21 12:45:37 +03:00
|
|
|
refresh();
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
case 'W':
|
|
|
|
Waiting = TRUE;
|
|
|
|
leaveok(stdscr, TRUE);
|
|
|
|
goto ret;
|
|
|
|
case 't':
|
|
|
|
case 'T':
|
|
|
|
teleport:
|
|
|
|
Running = FALSE;
|
|
|
|
mvaddch(My_pos.y, My_pos.x, ' ');
|
|
|
|
My_pos = *rnd_pos();
|
2002-01-31 20:35:52 +03:00
|
|
|
telmsg(1);
|
|
|
|
refresh();
|
|
|
|
sleep(1);
|
|
|
|
telmsg(0);
|
1993-03-21 12:45:37 +03:00
|
|
|
mvaddch(My_pos.y, My_pos.x, PLAYER);
|
|
|
|
leaveok(stdscr, FALSE);
|
|
|
|
refresh();
|
|
|
|
flush_in();
|
|
|
|
goto ret;
|
1993-04-23 07:34:42 +04:00
|
|
|
case CTRL('L'):
|
2004-08-27 13:07:08 +04:00
|
|
|
refresh();
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
case EOF:
|
|
|
|
break;
|
|
|
|
default:
|
1993-04-23 07:34:42 +04:00
|
|
|
putchar(CTRL('G'));
|
1993-03-21 12:45:37 +03:00
|
|
|
reset_count();
|
|
|
|
fflush(stdout);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret:
|
|
|
|
if (Count > 0)
|
|
|
|
if (--Count == 0)
|
|
|
|
leaveok(stdscr, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* must_telep:
|
|
|
|
* Must I teleport; i.e., is there anywhere I can move without
|
|
|
|
* being eaten?
|
|
|
|
*/
|
1997-10-12 18:09:55 +04:00
|
|
|
bool
|
1993-03-21 12:45:37 +03:00
|
|
|
must_telep()
|
|
|
|
{
|
1997-10-12 18:09:55 +04:00
|
|
|
int x, y;
|
1993-03-21 12:45:37 +03:00
|
|
|
static COORD newpos;
|
|
|
|
|
|
|
|
#ifdef FANCY
|
|
|
|
if (Stand_still && Num_robots > 1 && eaten(&My_pos))
|
|
|
|
return TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (y = -1; y <= 1; y++) {
|
|
|
|
newpos.y = My_pos.y + y;
|
|
|
|
if (newpos.y <= 0 || newpos.y >= Y_FIELDSIZE)
|
|
|
|
continue;
|
|
|
|
for (x = -1; x <= 1; x++) {
|
|
|
|
newpos.x = My_pos.x + x;
|
|
|
|
if (newpos.x <= 0 || newpos.x >= X_FIELDSIZE)
|
|
|
|
continue;
|
|
|
|
if (Field[newpos.y][newpos.x] > 0)
|
|
|
|
continue;
|
|
|
|
if (!eaten(&newpos))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* do_move:
|
|
|
|
* Execute a move
|
|
|
|
*/
|
1997-10-12 18:09:55 +04:00
|
|
|
bool
|
1993-03-21 12:45:37 +03:00
|
|
|
do_move(dy, dx)
|
1997-10-12 18:09:55 +04:00
|
|
|
int dy, dx;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
static COORD newpos;
|
|
|
|
|
|
|
|
newpos.y = My_pos.y + dy;
|
|
|
|
newpos.x = My_pos.x + dx;
|
|
|
|
if (newpos.y <= 0 || newpos.y >= Y_FIELDSIZE ||
|
|
|
|
newpos.x <= 0 || newpos.x >= X_FIELDSIZE ||
|
|
|
|
Field[newpos.y][newpos.x] > 0 || eaten(&newpos)) {
|
|
|
|
if (Running) {
|
|
|
|
Running = FALSE;
|
|
|
|
leaveok(stdscr, FALSE);
|
|
|
|
move(My_pos.y, My_pos.x);
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
else {
|
1993-04-23 07:34:42 +04:00
|
|
|
putchar(CTRL('G'));
|
1993-03-21 12:45:37 +03:00
|
|
|
reset_count();
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else if (dy == 0 && dx == 0)
|
|
|
|
return TRUE;
|
|
|
|
mvaddch(My_pos.y, My_pos.x, ' ');
|
|
|
|
My_pos = newpos;
|
|
|
|
mvaddch(My_pos.y, My_pos.x, PLAYER);
|
|
|
|
if (!jumping())
|
|
|
|
refresh();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* eaten:
|
|
|
|
* Player would get eaten at this place
|
|
|
|
*/
|
1997-10-12 18:09:55 +04:00
|
|
|
bool
|
1993-03-21 12:45:37 +03:00
|
|
|
eaten(pos)
|
Add use of `const' where appropriate to the games.
This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).
Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
1999-09-09 01:17:44 +04:00
|
|
|
const COORD *pos;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-10-12 18:09:55 +04:00
|
|
|
int x, y;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (y = pos->y - 1; y <= pos->y + 1; y++) {
|
|
|
|
if (y <= 0 || y >= Y_FIELDSIZE)
|
|
|
|
continue;
|
|
|
|
for (x = pos->x - 1; x <= pos->x + 1; x++) {
|
|
|
|
if (x <= 0 || x >= X_FIELDSIZE)
|
|
|
|
continue;
|
|
|
|
if (Field[y][x] == 1)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* reset_count:
|
|
|
|
* Reset the count variables
|
|
|
|
*/
|
1997-10-12 18:09:55 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
reset_count()
|
|
|
|
{
|
|
|
|
Count = 0;
|
|
|
|
Running = FALSE;
|
|
|
|
leaveok(stdscr, FALSE);
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* jumping:
|
|
|
|
* See if we are jumping, i.e., we should not refresh.
|
|
|
|
*/
|
1997-10-12 18:09:55 +04:00
|
|
|
bool
|
1993-03-21 12:45:37 +03:00
|
|
|
jumping()
|
|
|
|
{
|
|
|
|
return (Jump && (Count || Running || Waiting));
|
|
|
|
}
|