OSDN Git Service

[Refactor] #39010 Separated check_racial_target_seen() from do_cmd_throw()
[hengband/hengband.git] / src / cmd-item / cmd-throw.c
1 #include "cmd-item/cmd-throw.h"
2 #include "action/throw-util.h"
3 #include "action/weapon-shield.h"
4 #include "art-definition/art-weapon-types.h"
5 #include "combat/attack-power-table.h"
6 #include "combat/shoot.h"
7 #include "combat/slaying.h"
8 #include "core/player-redraw-types.h"
9 #include "core/player-update-types.h"
10 #include "core/stuff-handler.h"
11 #include "core/window-redrawer.h"
12 #include "effect/spells-effect-util.h"
13 #include "flavor/flavor-describer.h"
14 #include "flavor/object-flavor-types.h"
15 #include "floor/cave.h"
16 #include "floor/floor-object.h"
17 #include "floor/geometry.h"
18 #include "game-option/cheat-types.h"
19 #include "game-option/special-options.h"
20 #include "grid/feature-flag-types.h"
21 #include "grid/grid.h"
22 #include "inventory/inventory-object.h"
23 #include "inventory/inventory-slot-types.h"
24 #include "io/cursor.h"
25 #include "io/screen-util.h"
26 #include "main/sound-definitions-table.h"
27 #include "main/sound-of-music.h"
28 #include "monster-floor/monster-death.h"
29 #include "monster-floor/monster-summon.h"
30 #include "monster-floor/place-monster-types.h"
31 #include "monster/monster-describer.h"
32 #include "monster/monster-info.h"
33 #include "monster/monster-status.h"
34 #include "object-enchant/tr-types.h"
35 #include "object-hook/hook-checker.h"
36 #include "object-hook/hook-expendable.h"
37 #include "object-hook/hook-weapon.h"
38 #include "object/item-tester-hooker.h"
39 #include "object/item-use-flags.h"
40 #include "object/object-broken.h"
41 #include "object/object-flags.h"
42 #include "object/object-generator.h"
43 #include "object/object-info.h"
44 #include "object/object-kind.h"
45 #include "object/object-stack.h"
46 #include "player/attack-defense-types.h"
47 #include "player/special-defense-types.h"
48 #include "racial/racial-android.h"
49 #include "specific-object/torch.h"
50 #include "status/action-setter.h"
51 #include "system/floor-type-definition.h"
52 #include "system/object-type-definition.h"
53 #include "target/target-checker.h"
54 #include "target/target-getter.h"
55 #include "term/screen-processor.h"
56 #include "util/bit-flags-calculator.h"
57 #include "view/display-messages.h"
58 #include "view/object-describer.h"
59 #include "wizard/wizard-messages.h"
60
61 static bool check_throw_boomerang(player_type *creature_ptr, it_type *it_ptr, concptr *q, concptr *s)
62 {
63     if (!it_ptr->boomerang)
64         return TRUE;
65
66     if (has_melee_weapon(creature_ptr, INVEN_RARM) && has_melee_weapon(creature_ptr, INVEN_LARM)) {
67         item_tester_hook = item_tester_hook_boomerang;
68         *q = _("どの武器を投げますか? ", "Throw which it_ptr->item? ");
69         *s = _("投げる武器がない。", "You have nothing to throw.");
70         it_ptr->o_ptr = choose_object(creature_ptr, &it_ptr->item, *q, *s, USE_EQUIP, 0);
71         if (!it_ptr->o_ptr) {
72             flush();
73             return FALSE;
74         }
75
76         return TRUE;
77     }
78
79     if (has_melee_weapon(creature_ptr, INVEN_LARM)) {
80         it_ptr->item = INVEN_LARM;
81         it_ptr->o_ptr = &creature_ptr->inventory_list[it_ptr->item];
82         return TRUE;
83     }
84
85     it_ptr->item = INVEN_RARM;
86     it_ptr->o_ptr = &creature_ptr->inventory_list[it_ptr->item];
87     return TRUE;
88 }
89
90 static bool check_what_throw(player_type *creature_ptr, it_type *it_ptr)
91 {
92     if (it_ptr->shuriken >= 0) {
93         it_ptr->item = it_ptr->shuriken;
94         it_ptr->o_ptr = &creature_ptr->inventory_list[it_ptr->item];
95         return TRUE;
96     }
97
98     concptr q, s;
99     if (!check_throw_boomerang(creature_ptr, it_ptr, &q, &s))
100         return FALSE;
101
102     q = _("どのアイテムを投げますか? ", "Throw which it_ptr->item? ");
103     s = _("投げるアイテムがない。", "You have nothing to throw.");
104     it_ptr->o_ptr = choose_object(creature_ptr, &it_ptr->item, q, s, USE_INVEN | USE_FLOOR | USE_EQUIP, 0);
105     if (!it_ptr->o_ptr) {
106         flush();
107         return FALSE;
108     }
109
110     return TRUE;
111 }
112
113 static bool check_can_throw(player_type *creature_ptr, it_type *it_ptr)
114 {
115     if (!check_what_throw(creature_ptr, it_ptr))
116         return FALSE;
117
118     if (object_is_cursed(it_ptr->o_ptr) && (it_ptr->item >= INVEN_RARM)) {
119         msg_print(_("ふーむ、どうやら呪われているようだ。", "Hmmm, it seems to be cursed."));
120         return FALSE;
121     }
122
123     if (creature_ptr->current_floor_ptr->inside_arena && !it_ptr->boomerang && (it_ptr->o_ptr->tval != TV_SPIKE)) {
124         msg_print(_("アリーナではアイテムを使えない!", "You're in the arena now. This is hand-to-hand!"));
125         msg_print(NULL);
126         return FALSE;
127     }
128
129     return TRUE;
130 }
131
132 static void calc_throw_range(player_type *creature_ptr, it_type *it_ptr)
133 {
134     object_copy(it_ptr->q_ptr, it_ptr->o_ptr);
135     object_flags(creature_ptr, it_ptr->q_ptr, it_ptr->obj_flags);
136     torch_flags(it_ptr->q_ptr, it_ptr->obj_flags);
137     distribute_charges(it_ptr->o_ptr, it_ptr->q_ptr, 1);
138     it_ptr->q_ptr->number = 1;
139     describe_flavor(creature_ptr, it_ptr->o_name, it_ptr->q_ptr, OD_OMIT_PREFIX);
140     if (creature_ptr->mighty_throw)
141         it_ptr->mult += 3;
142
143     int mul = 10 + 2 * (it_ptr->mult - 1);
144     int div = ((it_ptr->q_ptr->weight > 10) ? it_ptr->q_ptr->weight : 10);
145     if ((have_flag(it_ptr->obj_flags, TR_THROW)) || it_ptr->boomerang)
146         div /= 2;
147
148     it_ptr->tdis = (adj_str_blow[creature_ptr->stat_ind[A_STR]] + 20) * mul / div;
149     if (it_ptr->tdis > mul)
150         it_ptr->tdis = mul;
151 }
152
153 static bool calc_throw_grid(player_type *creature_ptr, it_type *it_ptr)
154 {
155     if (it_ptr->shuriken >= 0) {
156         it_ptr->ty = randint0(101) - 50 + creature_ptr->y;
157         it_ptr->tx = randint0(101) - 50 + creature_ptr->x;
158         return TRUE;
159     }
160
161     project_length = it_ptr->tdis + 1;
162     DIRECTION dir;
163     if (!get_aim_dir(creature_ptr, &dir))
164         return FALSE;
165
166     it_ptr->tx = creature_ptr->x + 99 * ddx[dir];
167     it_ptr->ty = creature_ptr->y + 99 * ddy[dir];
168     if ((dir == 5) && target_okay(creature_ptr)) {
169         it_ptr->tx = target_col;
170         it_ptr->ty = target_row;
171     }
172
173     project_length = 0;
174     return TRUE;
175 }
176
177 static void reflect_inventory_by_throw(player_type *creature_ptr, it_type *it_ptr)
178 {
179     if ((it_ptr->q_ptr->name1 == ART_MJOLLNIR) || (it_ptr->q_ptr->name1 == ART_AEGISFANG) || it_ptr->boomerang)
180         it_ptr->return_when_thrown = TRUE;
181
182     if (it_ptr->item < 0) {
183         floor_item_increase(creature_ptr->current_floor_ptr, 0 - it_ptr->item, -1);
184         floor_item_optimize(creature_ptr, 0 - it_ptr->item);
185         return;
186     }
187
188     inven_item_increase(creature_ptr, it_ptr->item, -1);
189     if (!it_ptr->return_when_thrown)
190         inven_item_describe(creature_ptr, it_ptr->item);
191
192     inven_item_optimize(creature_ptr, it_ptr->item);
193 }
194
195 static void set_class_specific_throw_params(player_type *creature_ptr, it_type *it_ptr)
196 {
197     take_turn(creature_ptr, 100);
198     if ((creature_ptr->pclass == CLASS_ROGUE) || (creature_ptr->pclass == CLASS_NINJA))
199         creature_ptr->energy_use -= creature_ptr->lev;
200
201     it_ptr->y = creature_ptr->y;
202     it_ptr->x = creature_ptr->x;
203     handle_stuff(creature_ptr);
204     it_ptr->shuriken = (creature_ptr->pclass == CLASS_NINJA)
205         && ((it_ptr->q_ptr->tval == TV_SPIKE) || ((have_flag(it_ptr->obj_flags, TR_THROW)) && (it_ptr->q_ptr->tval == TV_SWORD)));
206 }
207
208 static void set_racial_chance(player_type *creature_ptr, it_type *it_ptr)
209 {
210     if (have_flag(it_ptr->obj_flags, TR_THROW))
211         it_ptr->chance = ((creature_ptr->skill_tht) + ((creature_ptr->to_h_b + it_ptr->q_ptr->to_h) * BTH_PLUS_ADJ));
212     else
213         it_ptr->chance = (creature_ptr->skill_tht + (creature_ptr->to_h_b * BTH_PLUS_ADJ));
214
215     if (it_ptr->shuriken != 0)
216         it_ptr->chance *= 2;
217 }
218
219 static bool check_racial_target_bold(player_type *creature_ptr, it_type *it_ptr)
220 {
221     it_ptr->ny[it_ptr->cur_dis] = it_ptr->y;
222     it_ptr->nx[it_ptr->cur_dis] = it_ptr->x;
223     mmove2(&it_ptr->ny[it_ptr->cur_dis], &it_ptr->nx[it_ptr->cur_dis], creature_ptr->y, creature_ptr->x, it_ptr->ty, it_ptr->tx);
224     if (cave_have_flag_bold(creature_ptr->current_floor_ptr, it_ptr->ny[it_ptr->cur_dis], it_ptr->nx[it_ptr->cur_dis], FF_PROJECT))
225         return FALSE;
226
227     it_ptr->hit_wall = TRUE;
228     return (it_ptr->q_ptr->tval == TV_FIGURINE) || object_is_potion(it_ptr->q_ptr)
229         || (creature_ptr->current_floor_ptr->grid_array[it_ptr->ny[it_ptr->cur_dis]][it_ptr->nx[it_ptr->cur_dis]].m_idx == 0);
230 }
231
232 static void check_racial_target_seen(player_type *creature_ptr, it_type *it_ptr)
233 {
234     if (!panel_contains(it_ptr->ny[it_ptr->cur_dis], it_ptr->nx[it_ptr->cur_dis])
235         || !player_can_see_bold(creature_ptr, it_ptr->ny[it_ptr->cur_dis], it_ptr->nx[it_ptr->cur_dis])) {
236         term_xtra(TERM_XTRA_DELAY, it_ptr->msec);
237         return;
238     }
239
240     SYMBOL_CODE c = object_char(it_ptr->q_ptr);
241     TERM_COLOR a = object_attr(it_ptr->q_ptr);
242     print_rel(creature_ptr, c, a, it_ptr->ny[it_ptr->cur_dis], it_ptr->nx[it_ptr->cur_dis]);
243     move_cursor_relative(it_ptr->ny[it_ptr->cur_dis], it_ptr->nx[it_ptr->cur_dis]);
244     term_fresh();
245     term_xtra(TERM_XTRA_DELAY, it_ptr->msec);
246     lite_spot(creature_ptr, it_ptr->ny[it_ptr->cur_dis], it_ptr->nx[it_ptr->cur_dis]);
247     term_fresh();
248 }
249
250 /*!
251  * @brief 投射処理メインルーチン /
252  * Throw an object from the pack or floor.
253  * @param mult 威力の倍率
254  * @param creature_ptr プレーヤーへの参照ポインタ
255  * @param boomerang ブーメラン処理ならばTRUE
256  * @param shuriken 忍者の手裏剣処理ならばTRUE
257  * @return ターンを消費した場合TRUEを返す
258  * @details
259  * <pre>
260  * Note: "unseen" monsters are very hard to hit.
261  *
262  * Should throwing a weapon do full damage?  Should it allow the magic
263  * to hit bonus of the weapon to have an effect?  Should it ever cause
264  * the item to be destroyed?  Should it do any damage at all?
265  * </pre>
266  */
267 bool do_cmd_throw(player_type *creature_ptr, int mult, bool boomerang, OBJECT_IDX shuriken)
268 {
269     if (creature_ptr->wild_mode)
270         return FALSE;
271
272     if (creature_ptr->special_defense & KATA_MUSOU)
273         set_action(creature_ptr, ACTION_NONE);
274
275     it_type tmp_it;
276     object_type tmp_object;
277     it_type *it_ptr = initialize_it_type(&tmp_it, &tmp_object, delay_factor, mult, boomerang, shuriken);
278     if (!check_can_throw(creature_ptr, it_ptr))
279         return FALSE;
280
281     calc_throw_range(creature_ptr, it_ptr);
282     if (!calc_throw_grid(creature_ptr, it_ptr))
283         return FALSE;
284
285     reflect_inventory_by_throw(creature_ptr, it_ptr);
286     if (it_ptr->item >= INVEN_RARM) {
287         it_ptr->equiped_item = TRUE;
288         creature_ptr->redraw |= PR_EQUIPPY;
289     }
290
291     set_class_specific_throw_params(creature_ptr, it_ptr);
292     set_racial_chance(creature_ptr, it_ptr);
293     it_ptr->prev_y = it_ptr->y;
294     it_ptr->prev_x = it_ptr->x;
295     for (it_ptr->cur_dis = 0; it_ptr->cur_dis <= it_ptr->tdis;) {
296         if ((it_ptr->y == it_ptr->ty) && (it_ptr->x == it_ptr->tx))
297             break;
298
299         if (check_racial_target_bold(creature_ptr, it_ptr))
300             break;
301
302         check_racial_target_seen(creature_ptr, it_ptr);
303         it_ptr->prev_y = it_ptr->y;
304         it_ptr->prev_x = it_ptr->x;
305         it_ptr->x = it_ptr->nx[it_ptr->cur_dis];
306         it_ptr->y = it_ptr->ny[it_ptr->cur_dis];
307         it_ptr->cur_dis++;
308         if (creature_ptr->current_floor_ptr->grid_array[it_ptr->y][it_ptr->x].m_idx == 0)
309             continue;
310
311         grid_type *g_ptr = &creature_ptr->current_floor_ptr->grid_array[it_ptr->y][it_ptr->x];
312         monster_type *m_ptr = &creature_ptr->current_floor_ptr->m_list[g_ptr->m_idx];
313         GAME_TEXT m_name[MAX_NLEN];
314         monster_name(creature_ptr, g_ptr->m_idx, m_name);
315         it_ptr->visible = m_ptr->ml;
316         it_ptr->hit_body = TRUE;
317         if (test_hit_fire(creature_ptr, it_ptr->chance - it_ptr->cur_dis, m_ptr, m_ptr->ml, it_ptr->o_name)) {
318             if (!it_ptr->visible) {
319                 msg_format(_("%sが敵を捕捉した。", "The %s finds a mark."), it_ptr->o_name);
320             } else {
321                 msg_format(_("%sが%sに命中した。", "The %s hits %s."), it_ptr->o_name, m_name);
322                 if (m_ptr->ml) {
323                     if (!creature_ptr->image)
324                         monster_race_track(creature_ptr, m_ptr->ap_r_idx);
325                     health_track(creature_ptr, g_ptr->m_idx);
326                 }
327             }
328
329             int dd = it_ptr->q_ptr->dd;
330             int ds = it_ptr->q_ptr->ds;
331             torch_dice(it_ptr->q_ptr, &dd, &ds);
332             it_ptr->tdam = damroll(dd, ds);
333             it_ptr->tdam = calc_attack_damage_with_slay(creature_ptr, it_ptr->q_ptr, it_ptr->tdam, m_ptr, 0, TRUE);
334             it_ptr->tdam = critical_shot(creature_ptr, it_ptr->q_ptr->weight, it_ptr->q_ptr->to_h, 0, it_ptr->tdam);
335             if (it_ptr->q_ptr->to_d > 0)
336                 it_ptr->tdam += it_ptr->q_ptr->to_d;
337             else
338                 it_ptr->tdam += -it_ptr->q_ptr->to_d;
339
340             if (it_ptr->boomerang) {
341                 it_ptr->tdam *= (it_ptr->mult + creature_ptr->num_blow[it_ptr->item - INVEN_RARM]);
342                 it_ptr->tdam += creature_ptr->to_d_m;
343             } else if (have_flag(it_ptr->obj_flags, TR_THROW)) {
344                 it_ptr->tdam *= (3 + it_ptr->mult);
345                 it_ptr->tdam += creature_ptr->to_d_m;
346             } else {
347                 it_ptr->tdam *= it_ptr->mult;
348             }
349
350             if (it_ptr->shuriken != 0)
351                 it_ptr->tdam += ((creature_ptr->lev + 30) * (creature_ptr->lev + 30) - 900) / 55;
352
353             if (it_ptr->tdam < 0)
354                 it_ptr->tdam = 0;
355
356             it_ptr->tdam = mon_damage_mod(creature_ptr, m_ptr, it_ptr->tdam, FALSE);
357             msg_format_wizard(creature_ptr, CHEAT_MONSTER, _("%dのダメージを与えた。(残りHP %d/%d(%d))", "You do %d damage. (left HP %d/%d(%d))"), it_ptr->tdam,
358                 m_ptr->hp - it_ptr->tdam, m_ptr->maxhp, m_ptr->max_maxhp);
359
360             bool fear = FALSE;
361             if (mon_take_hit(creature_ptr, g_ptr->m_idx, it_ptr->tdam, &fear, extract_note_dies(real_r_idx(m_ptr))))
362                 break;
363
364             message_pain(creature_ptr, g_ptr->m_idx, it_ptr->tdam);
365             if ((it_ptr->tdam > 0) && !object_is_potion(it_ptr->q_ptr))
366                 anger_monster(creature_ptr, m_ptr);
367
368             if (fear && m_ptr->ml) {
369                 sound(SOUND_FLEE);
370                 msg_format(_("%^sは恐怖して逃げ出した!", "%^s flees in terror!"), m_name);
371             }
372         }
373
374         break;
375     }
376
377     if (it_ptr->hit_body)
378         torch_lost_fuel(it_ptr->q_ptr);
379
380     it_ptr->corruption_possibility = (it_ptr->hit_body ? breakage_chance(creature_ptr, it_ptr->q_ptr, creature_ptr->pclass == CLASS_ARCHER, 0) : 0);
381
382     if ((it_ptr->q_ptr->tval == TV_FIGURINE) && !(creature_ptr->current_floor_ptr->inside_arena)) {
383         it_ptr->corruption_possibility = 100;
384         if (!(summon_named_creature(creature_ptr, 0, it_ptr->y, it_ptr->x, it_ptr->q_ptr->pval, !(object_is_cursed(it_ptr->q_ptr)) ? PM_FORCE_PET : 0L)))
385             msg_print(_("人形は捻じ曲がり砕け散ってしまった!", "The Figurine writhes and then shatters."));
386         else if (object_is_cursed(it_ptr->q_ptr))
387             msg_print(_("これはあまり良くない気がする。", "You have a bad feeling about this."));
388     }
389
390     if (object_is_potion(it_ptr->q_ptr)) {
391         if (!it_ptr->hit_body && !it_ptr->hit_wall && (randint1(100) >= it_ptr->corruption_possibility)) {
392             msg_format(_("%sは砕け散った!", "The %s shatters!"), it_ptr->o_name);
393             if (potion_smash_effect(creature_ptr, 0, it_ptr->y, it_ptr->x, it_ptr->q_ptr->k_idx)) {
394                 monster_type *m_ptr = &creature_ptr->current_floor_ptr->m_list[creature_ptr->current_floor_ptr->grid_array[it_ptr->y][it_ptr->x].m_idx];
395                 if (creature_ptr->current_floor_ptr->grid_array[it_ptr->y][it_ptr->x].m_idx && is_friendly(m_ptr) && !monster_invulner_remaining(m_ptr)) {
396                     GAME_TEXT m_name[MAX_NLEN];
397                     monster_desc(creature_ptr, m_name, m_ptr, 0);
398                     msg_format(_("%sは怒った!", "%^s gets angry!"), m_name);
399                     set_hostile(
400                         creature_ptr, &creature_ptr->current_floor_ptr->m_list[creature_ptr->current_floor_ptr->grid_array[it_ptr->y][it_ptr->x].m_idx]);
401                 }
402             }
403
404             it_ptr->do_drop = FALSE;
405         } else {
406             it_ptr->corruption_possibility = 0;
407         }
408     }
409
410     if (it_ptr->return_when_thrown) {
411         int back_chance = randint1(30) + 20 + ((int)(adj_dex_th[creature_ptr->stat_ind[A_DEX]]) - 128);
412         char o2_name[MAX_NLEN];
413         bool super_boomerang = (((it_ptr->q_ptr->name1 == ART_MJOLLNIR) || (it_ptr->q_ptr->name1 == ART_AEGISFANG)) && boomerang);
414         it_ptr->corruption_possibility = -1;
415         if (boomerang)
416             back_chance += 4 + randint1(5);
417         if (super_boomerang)
418             back_chance += 100;
419         describe_flavor(creature_ptr, o2_name, it_ptr->q_ptr, OD_OMIT_PREFIX | OD_NAME_ONLY);
420         if ((back_chance <= 30) || (one_in_(100) && !super_boomerang)) {
421             msg_format(_("%sが返ってこなかった!", "%s doesn't come back!"), o2_name);
422         } else {
423             for (int i = it_ptr->cur_dis - 1; i > 0; i--) {
424                 if (!panel_contains(it_ptr->ny[i], it_ptr->nx[i]) || !player_can_see_bold(creature_ptr, it_ptr->ny[i], it_ptr->nx[i])) {
425                     term_xtra(TERM_XTRA_DELAY, it_ptr->msec);
426                     continue;
427                 }
428
429                 SYMBOL_CODE c = object_char(it_ptr->q_ptr);
430                 byte a = object_attr(it_ptr->q_ptr);
431                 print_rel(creature_ptr, c, a, it_ptr->ny[i], it_ptr->nx[i]);
432                 move_cursor_relative(it_ptr->ny[i], it_ptr->nx[i]);
433                 term_fresh();
434                 term_xtra(TERM_XTRA_DELAY, it_ptr->msec);
435                 lite_spot(creature_ptr, it_ptr->ny[i], it_ptr->nx[i]);
436                 term_fresh();
437             }
438
439             if ((back_chance > 37) && !creature_ptr->blind && (it_ptr->item >= 0)) {
440                 msg_format(_("%sが手元に返ってきた。", "%s comes back to you."), o2_name);
441                 it_ptr->come_back = TRUE;
442             } else {
443                 if (it_ptr->item >= 0)
444                     msg_format(_("%sを受け損ねた!", "%s comes back, but you can't catch!"), o2_name);
445                 else
446                     msg_format(_("%sが返ってきた。", "%s comes back."), o2_name);
447
448                 it_ptr->y = creature_ptr->y;
449                 it_ptr->x = creature_ptr->x;
450             }
451         }
452     }
453
454     if (it_ptr->come_back) {
455         if ((it_ptr->item != INVEN_RARM) && (it_ptr->item != INVEN_LARM)) {
456             store_item_to_inventory(creature_ptr, it_ptr->q_ptr);
457         } else {
458             it_ptr->o_ptr = &creature_ptr->inventory_list[it_ptr->item];
459             object_copy(it_ptr->o_ptr, it_ptr->q_ptr);
460             creature_ptr->total_weight += it_ptr->q_ptr->weight;
461             creature_ptr->equip_cnt++;
462             creature_ptr->update |= PU_BONUS | PU_TORCH | PU_MANA;
463             creature_ptr->window |= PW_EQUIP;
464         }
465
466         it_ptr->do_drop = FALSE;
467     } else if (it_ptr->equiped_item) {
468         verify_equip_slot(creature_ptr, it_ptr->item);
469         calc_android_exp(creature_ptr);
470     }
471
472     if (it_ptr->do_drop) {
473         if (cave_have_flag_bold(creature_ptr->current_floor_ptr, it_ptr->y, it_ptr->x, FF_PROJECT))
474             (void)drop_near(creature_ptr, it_ptr->q_ptr, it_ptr->corruption_possibility, it_ptr->y, it_ptr->x);
475         else
476             (void)drop_near(creature_ptr, it_ptr->q_ptr, it_ptr->corruption_possibility, it_ptr->prev_y, it_ptr->prev_x);
477     }
478
479     return TRUE;
480 }