]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - rogue/throw.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: @(#)throw.c 5.3 (Berkeley) 6/1/90";*/
39 static char rcsid
[] = "$Id: throw.c,v 1.2 1993/08/01 18:52:11 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
56 extern short cur_room
;
57 extern char *curse_message
;
58 extern char hit_message
[];
63 boolean first_miss
= 1;
68 while (!is_direction(dir
= rgetchar(), &d
)) {
71 message("direction? ", 0);
79 if ((wch
= pack_letter("throw what?", WEAPON
)) == CANCEL
) {
84 if (!(weapon
= get_letter_object(wch
))) {
85 message("no such item.", 0);
88 if ((weapon
->in_use_flags
& BEING_USED
) && weapon
->is_cursed
) {
89 message(curse_message
, 0);
92 row
= rogue
.row
; col
= rogue
.col
;
94 if ((weapon
->in_use_flags
& BEING_WIELDED
) && (weapon
->quantity
<= 1)) {
95 unwield(rogue
.weapon
);
96 } else if (weapon
->in_use_flags
& BEING_WORN
) {
99 print_stats(STAT_ARMOR
);
100 } else if (weapon
->in_use_flags
& ON_EITHER_HAND
) {
103 monster
= get_thrown_at_monster(weapon
, d
, &row
, &col
);
104 mvaddch(rogue
.row
, rogue
.col
, rogue
.fchar
);
107 if (rogue_can_see(row
, col
) && ((row
!= rogue
.row
) || (col
!= rogue
.col
))){
108 mvaddch(row
, col
, get_dungeon_char(row
, col
));
112 check_gold_seeker(monster
);
114 if (!throw_at_monster(monster
, weapon
)) {
115 flop_weapon(weapon
, row
, col
);
118 flop_weapon(weapon
, row
, col
);
120 vanish(weapon
, 1, &rogue
.pack
);
123 throw_at_monster(monster
, weapon
)
124 object
*monster
, *weapon
;
126 short damage
, hit_chance
;
129 hit_chance
= get_hit_chance(weapon
);
130 damage
= get_weapon_damage(weapon
);
131 if ((weapon
->which_kind
== ARROW
) &&
132 (rogue
.weapon
&& (rogue
.weapon
->which_kind
== BOW
))) {
133 damage
+= get_weapon_damage(rogue
.weapon
);
134 damage
= ((damage
* 2) / 3);
135 hit_chance
+= (hit_chance
/ 3);
136 } else if ((weapon
->in_use_flags
& BEING_WIELDED
) &&
137 ((weapon
->which_kind
== DAGGER
) ||
138 (weapon
->which_kind
== SHURIKEN
) ||
139 (weapon
->which_kind
== DART
))) {
140 damage
= ((damage
* 3) / 2);
141 hit_chance
+= (hit_chance
/ 3);
143 t
= weapon
->quantity
;
144 weapon
->quantity
= 1;
145 sprintf(hit_message
, "the %s", name_of(weapon
));
146 weapon
->quantity
= t
;
148 if (!rand_percent(hit_chance
)) {
149 (void) strcat(hit_message
, "misses ");
153 (void) strcat(hit_message
, "hit ");
154 (void) mon_damage(monster
, damage
);
159 get_thrown_at_monster(obj
, dir
, row
, col
)
167 orow
= *row
; ocol
= *col
;
169 ch
= get_mask_char(obj
->what_is
);
171 for (i
= 0; i
< 24; i
++) {
172 get_dir_rc(dir
, row
, col
, 0);
173 if ( (((*col
<= 0) || (*col
>= DCOLS
-1)) ||
174 (dungeon
[*row
][*col
] == NOTHING
)) ||
175 ((dungeon
[*row
][*col
] & (HORWALL
| VERTWALL
| HIDDEN
)) &&
176 (!(dungeon
[*row
][*col
] & TRAP
)))) {
181 if ((i
!= 0) && rogue_can_see(orow
, ocol
)) {
182 mvaddch(orow
, ocol
, get_dungeon_char(orow
, ocol
));
184 if (rogue_can_see(*row
, *col
)) {
185 if (!(dungeon
[*row
][*col
] & MONSTER
)) {
186 mvaddch(*row
, *col
, ch
);
190 orow
= *row
; ocol
= *col
;
191 if (dungeon
[*row
][*col
] & MONSTER
) {
192 if (!imitating(*row
, *col
)) {
193 return(object_at(&level_monsters
, *row
, *col
));
196 if (dungeon
[*row
][*col
] & TUNNEL
) {
203 flop_weapon(weapon
, row
, col
)
207 object
*new_weapon
, *monster
;
214 while ((i
< 9) && dungeon
[row
][col
] & ~(FLOOR
| TUNNEL
| DOOR
| MONSTER
)) {
215 rand_around(i
++, &row
, &col
);
216 if ((row
> (DROWS
-2)) || (row
< MIN_ROW
) ||
217 (col
> (DCOLS
-1)) || (col
< 0) || (!dungeon
[row
][col
]) ||
218 (dungeon
[row
][col
] & ~(FLOOR
| TUNNEL
| DOOR
| MONSTER
))) {
225 if (found
|| (i
== 0)) {
226 new_weapon
= alloc_object();
227 *new_weapon
= *weapon
;
228 new_weapon
->in_use_flags
= NOT_USED
;
229 new_weapon
->quantity
= 1;
230 new_weapon
->ichar
= 'L';
231 place_at(new_weapon
, row
, col
);
232 if (rogue_can_see(row
, col
) &&
233 ((row
!= rogue
.row
) || (col
!= rogue
.col
))) {
234 mon
= dungeon
[row
][col
] & MONSTER
;
235 dungeon
[row
][col
] &= (~MONSTER
);
236 dch
= get_dungeon_char(row
, col
);
238 mch
= mvinch(row
, col
);
239 if (monster
= object_at(&level_monsters
, row
, col
)) {
240 monster
->trail_char
= dch
;
242 if ((mch
< 'A') || (mch
> 'Z')) {
243 mvaddch(row
, col
, dch
);
246 mvaddch(row
, col
, dch
);
248 dungeon
[row
][col
] |= mon
;
253 t
= weapon
->quantity
;
254 weapon
->quantity
= 1;
255 sprintf(msg
, "the %svanishes as it hits the ground",
257 weapon
->quantity
= t
;
265 static char* pos
= "\010\007\001\003\004\005\002\006\0";
266 static short row
, col
;
277 for (j
= 0; j
< 5; j
++) {
285 switch((short)pos
[i
]) {