]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - rogue/move.c
2 * Copyright (c) 1988 The Regents of the University of California.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 /*static char sccsid[] = "from: @(#)move.c 5.3 (Berkeley) 6/1/90";*/
39 static char rcsid
[] = "$Id: move.c,v 1.2 1993/08/01 18:52:22 mycroft Exp $";
45 * This source herein may be modified and/or distributed by anybody who
46 * so desires, with the following restrictions:
47 * 1.) No portion of this notice shall be removed.
48 * 2.) Credit shall not be taken for the creation of this source.
49 * 3.) This code is not to be traded, sold, or used for personal
58 char *you_can_move_again
= "you can move again";
60 extern short cur_room
, halluc
, blind
, levitate
;
61 extern short cur_level
, max_level
;
62 extern short bear_trap
, haste_self
, confused
;
63 extern short e_rings
, regeneration
, auto_search
;
64 extern char hunger_str
[];
65 extern boolean being_held
, interrupted
, r_teleport
, passgo
;
67 one_move_rogue(dirch
, pickup
)
81 (void) is_direction(dirch
, &d
);
82 get_dir_rc(d
, &row
, &col
, 1);
84 if (!can_move(rogue
.row
, rogue
.col
, row
, col
)) {
87 if (being_held
|| bear_trap
) {
88 if (!(dungeon
[row
][col
] & MONSTER
)) {
90 message("you are being held", 1);
92 message("you are still stuck in the bear trap", 0);
99 if (rand_percent(R_TELE_PERCENT
)) {
101 return(STOPPED_ON_SOMETHING
);
104 if (dungeon
[row
][col
] & MONSTER
) {
105 rogue_hit(object_at(&level_monsters
, row
, col
), 0);
109 if (dungeon
[row
][col
] & DOOR
) {
110 if (cur_room
== PASSAGE
) {
111 cur_room
= get_room_number(row
, col
);
112 light_up_room(cur_room
);
113 wake_room(cur_room
, 1, row
, col
);
115 light_passage(row
, col
);
117 } else if ((dungeon
[rogue
.row
][rogue
.col
] & DOOR
) &&
118 (dungeon
[row
][col
] & TUNNEL
)) {
119 light_passage(row
, col
);
120 wake_room(cur_room
, 0, rogue
.row
, rogue
.col
);
121 darken_room(cur_room
);
123 } else if (dungeon
[row
][col
] & TUNNEL
) {
124 light_passage(row
, col
);
126 mvaddch(rogue
.row
, rogue
.col
, get_dungeon_char(rogue
.row
, rogue
.col
));
127 mvaddch(row
, col
, rogue
.fchar
);
134 if (dungeon
[row
][col
] & OBJECT
) {
135 if (levitate
&& pickup
) {
136 return(STOPPED_ON_SOMETHING
);
138 if (pickup
&& !levitate
) {
139 if (obj
= pick_up(row
, col
, &status
)) {
141 if (obj
->what_is
== GOLD
) {
145 } else if (!status
) {
152 obj
= object_at(&level_objects
, row
, col
);
153 (void) strcpy(desc
, "moved onto ");
154 get_desc(obj
, desc
+11);
159 desc
[n
+1] = obj
->ichar
;
165 return(STOPPED_ON_SOMETHING
);
167 if (dungeon
[row
][col
] & (DOOR
| STAIRS
| TRAP
)) {
168 if ((!levitate
) && (dungeon
[row
][col
] & TRAP
)) {
169 trap_player(row
, col
);
172 return(STOPPED_ON_SOMETHING
);
174 MVED
: if (reg_move()) { /* fainted from hunger */
175 return(STOPPED_ON_SOMETHING
);
177 return((confused
? STOPPED_ON_SOMETHING
: MOVED
));
180 multiple_move_rogue(dirch
)
198 if (((m
= one_move_rogue((dirch
+ 96), 1)) == MOVE_FAILED
) ||
199 (m
== STOPPED_ON_SOMETHING
) ||
203 } while (!next_to_something(row
, col
));
204 if ( (!interrupted
) && passgo
&& (m
== MOVE_FAILED
) &&
205 (dungeon
[rogue
.row
][rogue
.col
] & TUNNEL
)) {
206 turn_passage(dirch
+ 96, 0);
217 while ((!interrupted
) && (one_move_rogue((dirch
+ 32), 1) == MOVED
)) ;
219 if ( (!interrupted
) && passgo
&&
220 (dungeon
[rogue
.row
][rogue
.col
] & TUNNEL
)) {
221 turn_passage(dirch
+ 32, 1);
227 is_passable(row
, col
)
230 if ((row
< MIN_ROW
) || (row
> (DROWS
- 2)) || (col
< 0) ||
234 if (dungeon
[row
][col
] & HIDDEN
) {
235 return((dungeon
[row
][col
] & TRAP
) ? 1 : 0);
237 return(dungeon
[row
][col
] & (FLOOR
| TUNNEL
| DOOR
| STAIRS
| TRAP
));
240 next_to_something(drow
, dcol
)
243 short i
, j
, i_end
, j_end
, row
, col
;
244 short pass_count
= 0;
253 i_end
= (rogue
.row
< (DROWS
-2)) ? 1 : 0;
254 j_end
= (rogue
.col
< (DCOLS
-1)) ? 1 : 0;
256 for (i
= ((rogue
.row
> MIN_ROW
) ? -1 : 0); i
<= i_end
; i
++) {
257 for (j
= ((rogue
.col
> 0) ? -1 : 0); j
<= j_end
; j
++) {
258 if ((i
== 0) && (j
== 0)) {
261 if (((rogue
.row
+i
) == drow
) && ((rogue
.col
+j
) == dcol
)) {
266 s
= dungeon
[row
][col
];
270 /* If the rogue used to be right, up, left, down, or right of
271 * row,col, and now isn't, then don't stop */
272 if (s
& (MONSTER
| OBJECT
| STAIRS
)) {
273 if (((row
== drow
) || (col
== dcol
)) &&
274 (!((row
== rogue
.row
) || (col
== rogue
.col
)))) {
281 if (((row
== drow
) || (col
== dcol
)) &&
282 (!((row
== rogue
.row
) || (col
== rogue
.col
)))) {
288 if ((((i
- j
) == 1) || ((i
- j
) == -1)) && (s
& TUNNEL
)) {
289 if (++pass_count
> 1) {
293 if ((s
& DOOR
) && ((i
== 0) || (j
== 0))) {
301 can_move(row1
, col1
, row2
, col2
)
303 if (!is_passable(row2
, col2
)) {
306 if ((row1
!= row2
) && (col1
!= col2
)) {
307 if ((dungeon
[row1
][col1
] & DOOR
) || (dungeon
[row2
][col2
] & DOOR
)) {
310 if ((!dungeon
[row1
][col2
]) || (!dungeon
[row2
][col1
])) {
320 boolean first_miss
= 1;
322 while (!is_direction(ch
= rgetchar(), &d
)) {
325 message("direction? ", 0);
331 (void) one_move_rogue(ch
, 0);
374 check_hunger(msg_only
)
380 if (rogue
.moves_left
== HUNGRY
) {
381 (void) strcpy(hunger_str
, "hungry");
382 message(hunger_str
, 0);
383 print_stats(STAT_HUNGER
);
385 if (rogue
.moves_left
== WEAK
) {
386 (void) strcpy(hunger_str
, "weak");
387 message(hunger_str
, 1);
388 print_stats(STAT_HUNGER
);
390 if (rogue
.moves_left
<= FAINT
) {
391 if (rogue
.moves_left
== FAINT
) {
392 (void) strcpy(hunger_str
, "faint");
393 message(hunger_str
, 1);
394 print_stats(STAT_HUNGER
);
396 n
= get_rand(0, (FAINT
- rogue
.moves_left
));
399 if (rand_percent(40)) {
402 message("you faint", 1);
403 for (i
= 0; i
< n
; i
++) {
408 message(you_can_move_again
, 1);
414 if (rogue
.moves_left
<= STARVE
) {
415 killed_by((object
*) 0, STARVATION
);
420 Subtract 0, i.e. do nothing.
423 rogue
.moves_left
-= (rogue
.moves_left
% 2);
430 (void) check_hunger(1);
431 rogue
.moves_left
-= (rogue
.moves_left
% 2);
435 (void) check_hunger(1);
447 if ((rogue
.moves_left
<= HUNGRY
) || (cur_level
>= max_level
)) {
448 fainted
= check_hunger(0);
455 if (++m_moves
>= 120) {
481 message("you float gently to the ground", 1);
482 if (dungeon
[rogue
.row
][rogue
.col
] & TRAP
) {
483 trap_player(rogue
.row
, rogue
.col
);
488 if (!(--haste_self
)) {
489 message("you feel yourself slowing down", 0);
493 if (auto_search
> 0) {
494 search(auto_search
, auto_search
);
505 for (i
= 0; i
< count
; i
++) {
550 static short heal_exp
= -1, n
, c
= 0;
553 if (rogue
.hp_current
== rogue
.hp_max
) {
557 if (rogue
.exp
!= heal_exp
) {
558 heal_exp
= rogue
.exp
;
605 if ((rogue
.hp_current
+= regeneration
) > rogue
.hp_max
) {
606 rogue
.hp_current
= rogue
.hp_max
;
608 print_stats(STAT_HP
);
616 if ((dungeon
[nrow
][ncol
] & TUNNEL
) && is_passable(nrow
, ncol
)) {
622 turn_passage(dir
, fast
)
626 short crow
= rogue
.row
, ccol
= rogue
.col
, turns
= 0;
629 if ((dir
!= 'h') && can_turn(crow
, ccol
+ 1)) {
633 if ((dir
!= 'l') && can_turn(crow
, ccol
- 1)) {
637 if ((dir
!= 'k') && can_turn(crow
+ 1, ccol
)) {
641 if ((dir
!= 'j') && can_turn(crow
- 1, ccol
)) {
646 multiple_move_rogue(ndir
- (fast
? 32 : 96));