]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - robots/move.c
1 /* $NetBSD: move.c,v 1.12 2004/08/27 09:07:08 christos Exp $ */
4 * Copyright (c) 1980, 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. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
35 static char sccsid
[] = "@(#)move.c 8.1 (Berkeley) 5/31/93";
37 __RCSID("$NetBSD: move.c,v 1.12 2004/08/27 09:07:08 christos Exp $");
47 * Get and execute a move from the player
62 if (Next_move
>= Move_list
)
63 lastmove
= *Next_move
;
65 lastmove
= -1; /* flag for "first time in" */
67 lastmove
= 0; /* Shut up gcc */
70 if (Teleport
&& must_telep())
77 else if (Num_robots
> 1 && Stand_still
)
79 else if (Num_robots
> 1 && Pattern_roll
) {
80 if (*++Next_move
== '\0') {
83 Next_move
= Move_list
;
103 while (isdigit(c
= getchar()))
104 Count
= Count
* 10 + (c
- '0');
109 leaveok(stdscr
, TRUE
);
151 case 'Y': case 'U': case 'H': case 'J':
152 case 'K': case 'L': case 'B': case 'N':
159 leaveok(stdscr
, TRUE
);
163 if (query("Really quit?"))
170 leaveok(stdscr
, TRUE
);
176 mvaddch(My_pos
.y
, My_pos
.x
, ' ');
182 mvaddch(My_pos
.y
, My_pos
.x
, PLAYER
);
183 leaveok(stdscr
, FALSE
);
202 leaveok(stdscr
, FALSE
);
207 * Must I teleport; i.e., is there anywhere I can move without
217 if (Stand_still
&& Num_robots
> 1 && eaten(&My_pos
))
221 for (y
= -1; y
<= 1; y
++) {
222 newpos
.y
= My_pos
.y
+ y
;
223 if (newpos
.y
<= 0 || newpos
.y
>= Y_FIELDSIZE
)
225 for (x
= -1; x
<= 1; x
++) {
226 newpos
.x
= My_pos
.x
+ x
;
227 if (newpos
.x
<= 0 || newpos
.x
>= X_FIELDSIZE
)
229 if (Field
[newpos
.y
][newpos
.x
] > 0)
248 newpos
.y
= My_pos
.y
+ dy
;
249 newpos
.x
= My_pos
.x
+ dx
;
250 if (newpos
.y
<= 0 || newpos
.y
>= Y_FIELDSIZE
||
251 newpos
.x
<= 0 || newpos
.x
>= X_FIELDSIZE
||
252 Field
[newpos
.y
][newpos
.x
] > 0 || eaten(&newpos
)) {
255 leaveok(stdscr
, FALSE
);
256 move(My_pos
.y
, My_pos
.x
);
265 else if (dy
== 0 && dx
== 0)
267 mvaddch(My_pos
.y
, My_pos
.x
, ' ');
269 mvaddch(My_pos
.y
, My_pos
.x
, PLAYER
);
277 * Player would get eaten at this place
285 for (y
= pos
->y
- 1; y
<= pos
->y
+ 1; y
++) {
286 if (y
<= 0 || y
>= Y_FIELDSIZE
)
288 for (x
= pos
->x
- 1; x
<= pos
->x
+ 1; x
++) {
289 if (x
<= 0 || x
>= X_FIELDSIZE
)
291 if (Field
[y
][x
] == 1)
300 * Reset the count variables
307 leaveok(stdscr
, FALSE
);
313 * See if we are jumping, i.e., we should not refresh.
318 return (Jump
&& (Count
|| Running
|| Waiting
));