OSDN Git Service

a78dce626c60410f5a6eeb52b0c55d90a100d360
[hengband/hengband.git] / src / cmd1.c
1 /*!
2  *  @file cmd1.c
3  *  @brief プレイヤーのコマンド処理1 / Movement commands (part 1)
4  *  @date 2014/01/02
5  *  @author
6  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
7  *
8  * This software may be copied and distributed for educational, research,
9  * and not for profit purposes provided that this copyright and statement
10  * are included in all such copies.  Other copyrights may also apply.
11  * @note
12  * <pre>
13  * The running algorithm:                       -CJS-
14  *
15  * In the diagrams below, the player has just arrived in the
16  * grid marked as '@', and he has just come from a grid marked
17  * as 'o', and he is about to enter the grid marked as 'x'.
18  *
19  * Of course, if the "requested" move was impossible, then you
20  * will of course be blocked, and will stop.
21  *
22  * Overview: You keep moving until something interesting happens.
23  * If you are in an enclosed space, you follow corners. This is
24  * the usual corridor scheme. If you are in an open space, you go
25  * straight, but stop before entering enclosed space. This is
26  * analogous to reaching doorways. If you have enclosed space on
27  * one side only (that is, running along side a wall) stop if
28  * your wall opens out, or your open space closes in. Either case
29  * corresponds to a doorway.
30  *
31  * What happens depends on what you can really SEE. (i.e. if you
32  * have no light, then running along a dark corridor is JUST like
33  * running in a dark room.) The algorithm works equally well in
34  * corridors, rooms, mine tailings, earthquake rubble, etc, etc.
35  *
36  * These conditions are kept in static memory:
37  * find_openarea         You are in the open on at least one
38  * side.
39  * find_breakleft        You have a wall on the left, and will
40  * stop if it opens
41  * find_breakright       You have a wall on the right, and will
42  * stop if it opens
43  *
44  * To initialize these conditions, we examine the grids adjacent
45  * to the grid marked 'x', two on each side (marked 'L' and 'R').
46  * If either one of the two grids on a given side is seen to be
47  * closed, then that side is considered to be closed. If both
48  * sides are closed, then it is an enclosed (corridor) run.
49  *
50  * LL           L
51  * @@x          LxR
52  * RR          @@R
53  *
54  * Looking at more than just the immediate squares is
55  * significant. Consider the following case. A run along the
56  * corridor will stop just before entering the center point,
57  * because a choice is clearly established. Running in any of
58  * three available directions will be defined as a corridor run.
59  * Note that a minor hack is inserted to make the angled corridor
60  * entry (with one side blocked near and the other side blocked
61  * further away from the runner) work correctly. The runner moves
62  * diagonally, but then saves the previous direction as being
63  * straight into the gap. Otherwise, the tail end of the other
64  * entry would be perceived as an alternative on the next move.
65  *
66  * \#.\#
67  * \#\#.\#\#
68  * \.\@x..
69  * \#\#.\#\#
70  * \#.\#
71  *
72  * Likewise, a run along a wall, and then into a doorway (two
73  * runs) will work correctly. A single run rightwards from \@ will
74  * stop at 1. Another run right and down will enter the corridor
75  * and make the corner, stopping at the 2.
76  *
77  * \#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#
78  * o@@x       1
79  * \#\#\#\#\#\#\#\#\#\#\# \#\#\#\#\#\#
80  * \#2          \#
81  * \#\#\#\#\#\#\#\#\#\#\#\#\#
82  *
83  * After any move, the function area_affect is called to
84  * determine the new surroundings, and the direction of
85  * subsequent moves. It examines the current player location
86  * (at which the runner has just arrived) and the previous
87  * direction (from which the runner is considered to have come).
88  *
89  * Moving one square in some direction places you adjacent to
90  * three or five new squares (for straight and diagonal moves
91  * respectively) to which you were not previously adjacent,
92  * marked as '!' in the diagrams below.
93  *
94  *   ...!              ...
95  *   .o@@!  (normal)    .o.!  (diagonal)
96  *   ...!  (east)      ..@@!  (south east)
97  *                      !!!
98  *
99  * You STOP if any of the new squares are interesting in any way:
100  * for example, if they contain visible monsters or treasure.
101  *
102  * You STOP if any of the newly adjacent squares seem to be open,
103  * and you are also looking for a break on that side. (that is,
104  * find_openarea AND find_break).
105  *
106  * You STOP if any of the newly adjacent squares do NOT seem to be
107  * open and you are in an open area, and that side was previously
108  * entirely open.
109  *
110  * Corners: If you are not in the open (i.e. you are in a corridor)
111  * and there is only one way to go in the new squares, then turn in
112  * that direction. If there are more than two new ways to go, STOP.
113  * If there are two ways to go, and those ways are separated by a
114  * square which does not seem to be open, then STOP.
115  *
116  * Otherwise, we have a potential corner. There are two new open
117  * squares, which are also adjacent. One of the new squares is
118  * diagonally located, the other is straight on (as in the diagram).
119  * We consider two more squares further out (marked below as ?).
120  *
121  * We assign "option" to the straight-on grid, and "option2" to the
122  * diagonal grid, and "check_dir" to the grid marked 's'.
123  *
124  * \#\#s
125  * @@x?
126  * \#.?
127  *
128  * If they are both seen to be closed, then it is seen that no benefit
129  * is gained from moving straight. It is a known corner.  To cut the
130  * corner, go diagonally, otherwise go straight, but pretend you
131  * stepped diagonally into that next location for a full view next
132  * time. Conversely, if one of the ? squares is not seen to be closed,
133  * then there is a potential choice. We check to see whether it is a
134  * potential corner or an intersection/room entrance.  If the square
135  * two spaces straight ahead, and the space marked with 's' are both
136  * unknown space, then it is a potential corner and enter if
137  * find_examine is set, otherwise must stop because it is not a
138  * corner. (find_examine option is removed and always is TRUE.)
139  * </pre>
140  */
141
142
143 #include "angband.h"
144 #define MAX_VAMPIRIC_DRAIN 50 /*!< 吸血処理の最大回復HP */
145
146
147 /*!
148  * @brief プレイヤーからモンスターへの射撃命中判定 /
149  * Determine if the player "hits" a monster (normal combat).
150  * @param chance 基本命中値
151  * @param m_ptr モンスターの構造体参照ポインタ
152  * @param vis 目標を視界に捕らえているならばTRUEを指定
153  * @param o_name メッセージ表示時のモンスター名
154  * @return 命中と判定された場合TRUEを返す
155  * @note Always miss 5%, always hit 5%, otherwise random.
156  */
157 bool test_hit_fire(int chance, monster_type *m_ptr, int vis, char* o_name)
158 {
159         int k, ac;
160         monster_race *r_ptr = &r_info[m_ptr->r_idx];
161
162         /* Percentile dice */
163         k = randint1(100);
164         
165         /* Snipers with high-concentration reduce instant miss percentage.*/
166         k += p_ptr->concent;
167         
168         /* Hack -- Instant miss or hit */
169         if (k <= 5) return (FALSE);
170         if (k > 95) return (TRUE);
171
172         if (p_ptr->pseikaku == SEIKAKU_NAMAKE)
173                 if (one_in_(20)) return (FALSE);
174
175         /* Never hit */
176         if (chance <= 0) return (FALSE);
177
178         ac = r_ptr->ac;
179         if (p_ptr->concent)
180         {
181                 ac *= (8 - p_ptr->concent);
182                 ac /= 8;
183         }
184
185         if(m_ptr->r_idx == MON_GOEMON && !MON_CSLEEP(m_ptr)) ac *= 3;
186
187         /* Invisible monsters are harder to hit */
188         if (!vis) chance = (chance + 1) / 2;
189
190         /* Power competes against armor */
191         if (randint0(chance) < (ac * 3 / 4))
192         {
193                 if(m_ptr->r_idx == MON_GOEMON && !MON_CSLEEP(m_ptr))
194                 {
195                         char m_name[80];
196                         
197                         /* Extract monster name */
198                         monster_desc(m_name, m_ptr, 0);
199                         msg_format(_("%sは%sを斬り捨てた!", "%s cuts down %s!"), m_name, o_name);
200                 }
201                 return (FALSE);
202         }
203
204         /* Assume hit */
205         return (TRUE);
206 }
207
208
209
210 /*!
211  * @brief プレイヤーからモンスターへの打撃命中判定 /
212  * Determine if the player "hits" a monster (normal combat).
213  * @param chance 基本命中値
214  * @param ac モンスターのAC
215  * @param vis 目標を視界に捕らえているならばTRUEを指定
216  * @return 命中と判定された場合TRUEを返す
217  * @note Always miss 5%, always hit 5%, otherwise random.
218  */
219 bool test_hit_norm(int chance, int ac, int vis)
220 {
221         int k;
222
223         /* Percentile dice */
224         k = randint0(100);
225
226         /* Hack -- Instant miss or hit */
227         if (k < 10) return (k < 5);
228
229         if (p_ptr->pseikaku == SEIKAKU_NAMAKE)
230                 if (one_in_(20)) return (FALSE);
231
232         /* Wimpy attack never hits */
233         if (chance <= 0) return (FALSE);
234
235         /* Penalize invisible targets */
236         if (!vis) chance = (chance + 1) / 2;
237
238         /* Power must defeat armor */
239         if (randint0(chance) < (ac * 3 / 4)) return (FALSE);
240
241         /* Assume hit */
242         return (TRUE);
243 }
244
245
246
247 /*!
248  * @brief プレイヤーからモンスターへの射撃クリティカル判定 /
249  * Critical hits (from objects thrown by player) Factor in item weight, total plusses, and player level.
250  * @param weight 矢弾の重量
251  * @param plus_ammo 矢弾の命中修正
252  * @param plus_bow 弓の命中修正
253  * @param dam 現在算出中のダメージ値
254  * @return クリティカル修正が入ったダメージ値
255  */
256 s16b critical_shot(int weight, int plus_ammo, int plus_bow, int dam)
257 {
258         int i, k;
259         object_type *j_ptr =  &inventory[INVEN_BOW];
260         
261         /* Extract "shot" power */
262         i = p_ptr->to_h_b + plus_ammo;
263         
264         if (p_ptr->tval_ammo == TV_BOLT)
265                 i = (p_ptr->skill_thb + (p_ptr->weapon_exp[0][j_ptr->sval] / 400 + i) * BTH_PLUS_ADJ);
266         else
267                 i = (p_ptr->skill_thb + ((p_ptr->weapon_exp[0][j_ptr->sval] - (WEAPON_EXP_MASTER / 2)) / 200 + i) * BTH_PLUS_ADJ);
268
269         
270         /* Snipers can shot more critically with crossbows */
271         if (p_ptr->concent) i += ((i * p_ptr->concent) / 5);
272         if ((p_ptr->pclass == CLASS_SNIPER) && (p_ptr->tval_ammo == TV_BOLT)) i *= 2;
273         
274         /* Good bow makes more critical */
275         i += plus_bow * 8 * (p_ptr->concent ? p_ptr->concent + 5 : 5);
276         
277         /* Critical hit */
278         if (randint1(10000) <= i)
279         {
280                 k = weight * randint1(500);
281
282                 if (k < 900)
283                 {
284                         msg_print(_("手ごたえがあった!", "It was a good hit!"));
285                         dam += (dam / 2);
286                 }
287                 else if (k < 1350)
288                 {
289                         msg_print(_("かなりの手ごたえがあった!", "It was a great hit!"));
290                         dam *= 2;
291                 }
292                 else
293                 {
294                         msg_print(_("会心の一撃だ!", "It was a superb hit!"));
295                         dam *= 3;
296                 }
297         }
298
299         return (dam);
300 }
301
302
303
304 /*!
305  * @brief プレイヤーからモンスターへの打撃クリティカル判定 /
306  * Critical hits (by player) Factor in weapon weight, total plusses, player melee bonus
307  * @param weight 矢弾の重量
308  * @param plus 武器の命中修正
309  * @param dam 現在算出中のダメージ値
310  * @param meichuu 打撃の基本命中力
311  * @param mode オプションフラグ
312  * @return クリティカル修正が入ったダメージ値
313  */
314 s16b critical_norm(int weight, int plus, int dam, s16b meichuu, int mode)
315 {
316         int i, k;
317         
318         /* Extract "blow" power */
319         i = (weight + (meichuu * 3 + plus * 5) + p_ptr->skill_thn);
320
321         /* Chance */
322         if ((randint1((p_ptr->pclass == CLASS_NINJA) ? 4444 : 5000) <= i) || (mode == HISSATSU_MAJIN) || (mode == HISSATSU_3DAN))
323         {
324                 k = weight + randint1(650);
325                 if ((mode == HISSATSU_MAJIN) || (mode == HISSATSU_3DAN)) k+= randint1(650);
326
327                 if (k < 400)
328                 {
329                         msg_print(_("手ごたえがあった!", "It was a good hit!"));
330
331                         dam = 2 * dam + 5;
332                 }
333                 else if (k < 700)
334                 {
335                         msg_print(_("かなりの手ごたえがあった!", "It was a great hit!"));
336                         dam = 2 * dam + 10;
337                 }
338                 else if (k < 900)
339                 {
340                         msg_print(_("会心の一撃だ!", "It was a superb hit!"));
341                         dam = 3 * dam + 15;
342                 }
343                 else if (k < 1300)
344                 {
345                         msg_print(_("最高の会心の一撃だ!", "It was a *GREAT* hit!"));
346                         dam = 3 * dam + 20;
347                 }
348                 else
349                 {
350                         msg_print(_("比類なき最高の会心の一撃だ!", "It was a *SUPERB* hit!"));
351                         dam = ((7 * dam) / 2) + 25;
352                 }
353         }
354
355         return (dam);
356 }
357
358
359
360 /*!
361  * @brief プレイヤー攻撃の種族スレイング倍率計算
362  * @param mult 算出前の基本倍率(/10倍)
363  * @param flgs スレイフラグ配列
364  * @param m_ptr 目標モンスターの構造体参照ポインタ
365  * @return スレイング加味後の倍率(/10倍)
366  */
367 static int mult_slaying(int mult, const u32b* flgs, const monster_type* m_ptr)
368 {
369         static const struct slay_table_t {
370                 int slay_flag;
371                 u32b affect_race_flag;
372                 int slay_mult;
373                 size_t flag_offset;
374                 size_t r_flag_offset;
375         } slay_table[] = {
376 #define OFFSET(X) offsetof(monster_race, X)
377                 {TR_SLAY_ANIMAL, RF3_ANIMAL, 25, OFFSET(flags3), OFFSET(r_flags3)},
378                 {TR_KILL_ANIMAL, RF3_ANIMAL, 40, OFFSET(flags3), OFFSET(r_flags3)},
379                 {TR_SLAY_EVIL,   RF3_EVIL,   20, OFFSET(flags3), OFFSET(r_flags3)},
380                 {TR_KILL_EVIL,   RF3_EVIL,   35, OFFSET(flags3), OFFSET(r_flags3)},
381                 {TR_SLAY_GOOD,   RF3_GOOD,   20, OFFSET(flags3), OFFSET(r_flags3)},
382                 {TR_KILL_GOOD,   RF3_GOOD,   35, OFFSET(flags3), OFFSET(r_flags3)},
383                 {TR_SLAY_HUMAN,  RF2_HUMAN,  25, OFFSET(flags2), OFFSET(r_flags2)},
384                 {TR_KILL_HUMAN,  RF2_HUMAN,  40, OFFSET(flags2), OFFSET(r_flags2)},
385                 {TR_SLAY_UNDEAD, RF3_UNDEAD, 30, OFFSET(flags3), OFFSET(r_flags3)},
386                 {TR_KILL_UNDEAD, RF3_UNDEAD, 50, OFFSET(flags3), OFFSET(r_flags3)},
387                 {TR_SLAY_DEMON,  RF3_DEMON,  30, OFFSET(flags3), OFFSET(r_flags3)},
388                 {TR_KILL_DEMON,  RF3_DEMON,  50, OFFSET(flags3), OFFSET(r_flags3)},
389                 {TR_SLAY_ORC,    RF3_ORC,    30, OFFSET(flags3), OFFSET(r_flags3)},
390                 {TR_KILL_ORC,    RF3_ORC,    50, OFFSET(flags3), OFFSET(r_flags3)},
391                 {TR_SLAY_TROLL,  RF3_TROLL,  30, OFFSET(flags3), OFFSET(r_flags3)},
392                 {TR_KILL_TROLL,  RF3_TROLL,  50, OFFSET(flags3), OFFSET(r_flags3)},
393                 {TR_SLAY_GIANT,  RF3_GIANT,  30, OFFSET(flags3), OFFSET(r_flags3)},
394                 {TR_KILL_GIANT,  RF3_GIANT,  50, OFFSET(flags3), OFFSET(r_flags3)},
395                 {TR_SLAY_DRAGON, RF3_DRAGON, 30, OFFSET(flags3), OFFSET(r_flags3)},
396                 {TR_KILL_DRAGON, RF3_DRAGON, 50, OFFSET(flags3), OFFSET(r_flags3)},
397 #undef OFFSET
398         };
399         int i;
400         monster_race* r_ptr = &r_info[m_ptr->r_idx];
401
402         for (i = 0; i < sizeof(slay_table) / sizeof(slay_table[0]); ++ i)
403         {
404                 const struct slay_table_t* p = &slay_table[i];
405
406                 if ((have_flag(flgs, p->slay_flag)) &&
407                     (atoffset(u32b, r_ptr, p->flag_offset) & p->affect_race_flag))
408                 {
409                         if (is_original_ap_and_seen(m_ptr))
410                         {
411                                 atoffset(u32b, r_ptr, p->r_flag_offset) |= p->affect_race_flag;
412                         }
413
414                         mult = MAX(mult, p->slay_mult);
415                 }
416         }
417
418         return mult;
419 }
420
421 /*!
422  * @brief プレイヤー攻撃の属性スレイング倍率計算
423  * @param mult 算出前の基本倍率(/10倍)
424  * @param flgs スレイフラグ配列
425  * @param m_ptr 目標モンスターの構造体参照ポインタ
426  * @return スレイング加味後の倍率(/10倍)
427  */
428 static int mult_brand(int mult, const u32b* flgs, const monster_type* m_ptr)
429 {
430         static const struct brand_table_t {
431                 int brand_flag;
432                 u32b resist_mask;
433                 u32b hurt_flag;
434         } brand_table[] = {
435                 {TR_BRAND_ACID, RFR_EFF_IM_ACID_MASK, 0U           },
436                 {TR_BRAND_ELEC, RFR_EFF_IM_ELEC_MASK, 0U           },
437                 {TR_BRAND_FIRE, RFR_EFF_IM_FIRE_MASK, RF3_HURT_FIRE},
438                 {TR_BRAND_COLD, RFR_EFF_IM_COLD_MASK, RF3_HURT_COLD},
439                 {TR_BRAND_POIS, RFR_EFF_IM_POIS_MASK, 0U           },
440         };
441         int i;
442         monster_race* r_ptr = &r_info[m_ptr->r_idx];
443
444         for (i = 0; i < sizeof(brand_table) / sizeof(brand_table[0]); ++ i)
445         {
446                 const struct brand_table_t* p = &brand_table[i];
447
448                 if (have_flag(flgs, p->brand_flag))
449                 {
450                         /* Notice immunity */
451                         if (r_ptr->flagsr & p->resist_mask)
452                         {
453                                 if (is_original_ap_and_seen(m_ptr))
454                                 {
455                                         r_ptr->r_flagsr |= (r_ptr->flagsr & p->resist_mask);
456                                 }
457                         }
458
459                         /* Otherwise, take the damage */
460                         else if (r_ptr->flags3 & p->hurt_flag)
461                         {
462                                 if (is_original_ap_and_seen(m_ptr))
463                                 {
464                                         r_ptr->r_flags3 |= p->hurt_flag;
465                                 }
466
467                                 mult = MAX(mult, 50);
468                         }
469                         else
470                         {
471                                 mult = MAX(mult, 25);
472                         }
473                 }
474         }
475
476         return mult;
477 }
478
479 /*!
480  * @brief ダメージにスレイ要素を加える総合処理ルーチン /
481  * Extract the "total damage" from a given object hitting a given monster.
482  * @param o_ptr 使用武器オブジェクトの構造体参照ポインタ
483  * @param tdam 現在算出途中のダメージ値
484  * @param m_ptr 目標モンスターの構造体参照ポインタ
485  * @param mode 剣術のID
486  * @param thrown 射撃処理ならばTRUEを指定する
487  * @return 総合的なスレイを加味したダメージ値
488  * @note
489  * Note that "flasks of oil" do NOT do fire damage, although they\n
490  * certainly could be made to do so.  XXX XXX\n
491  *\n
492  * Note that most brands and slays are x3, except Slay Animal (x2),\n
493  * Slay Evil (x2), and Kill dragon (x5).\n
494  */
495 s16b tot_dam_aux(object_type *o_ptr, int tdam, monster_type *m_ptr, int mode, bool thrown)
496 {
497         int mult = 10;
498
499         u32b flgs[TR_FLAG_SIZE];
500
501         /* Extract the flags */
502         object_flags(o_ptr, flgs);
503         torch_flags(o_ptr, flgs); /* torches has secret flags */
504
505         if (!thrown)
506         {
507                 /* Magical Swords */
508                 if (p_ptr->special_attack & (ATTACK_ACID)) add_flag(flgs, TR_BRAND_ACID);
509                 if (p_ptr->special_attack & (ATTACK_COLD)) add_flag(flgs, TR_BRAND_COLD);
510                 if (p_ptr->special_attack & (ATTACK_ELEC)) add_flag(flgs, TR_BRAND_ELEC);
511                 if (p_ptr->special_attack & (ATTACK_FIRE)) add_flag(flgs, TR_BRAND_FIRE);
512                 if (p_ptr->special_attack & (ATTACK_POIS)) add_flag(flgs, TR_BRAND_POIS);
513         }
514
515         /* Hex - Slay Good (Runesword) */
516         if (hex_spelling(HEX_RUNESWORD)) add_flag(flgs, TR_SLAY_GOOD);
517
518         /* Some "weapons" and "ammo" do extra damage */
519         switch (o_ptr->tval)
520         {
521                 case TV_SHOT:
522                 case TV_ARROW:
523                 case TV_BOLT:
524                 case TV_HAFTED:
525                 case TV_POLEARM:
526                 case TV_SWORD:
527                 case TV_DIGGING:
528                 case TV_LITE:
529                 {
530                         /* Slaying */
531                         mult = mult_slaying(mult, flgs, m_ptr);
532
533                         /* Elemental Brand */
534                         mult = mult_brand(mult, flgs, m_ptr);
535
536                         /* Hissatsu */
537                         if (p_ptr->pclass == CLASS_SAMURAI)
538                         {
539                                 mult = mult_hissatsu(mult, flgs, m_ptr, mode);
540                         }
541
542                         /* Force Weapon */
543                         if ((p_ptr->pclass != CLASS_SAMURAI) && (have_flag(flgs, TR_FORCE_WEAPON)) && (p_ptr->csp > (o_ptr->dd * o_ptr->ds / 5)))
544                         {
545                                 p_ptr->csp -= (1+(o_ptr->dd * o_ptr->ds / 5));
546                                 p_ptr->redraw |= (PR_MANA);
547                                 mult = mult * 3 / 2 + 20;
548                         }
549
550                         /* Hack -- The Nothung cause special damage to Fafner */
551                         if ((o_ptr->name1 == ART_NOTHUNG) && (m_ptr->r_idx == MON_FAFNER))
552                                 mult = 150;
553                         break;
554                 }
555         }
556         if (mult > 150) mult = 150;
557
558         /* Return the total damage */
559         return (tdam * mult / 10);
560 }
561
562
563 /*!
564  * @brief 地形やその上のアイテムの隠された要素を明かす /
565  * Search for hidden things
566  * @param y 対象となるマスのY座標
567  * @param x 対象となるマスのX座標
568  * @return なし
569  */
570 static void discover_hidden_things(int y, int x)
571 {
572         s16b this_o_idx, next_o_idx = 0;
573
574         cave_type *c_ptr;
575
576         /* Access the grid */
577         c_ptr = &cave[y][x];
578
579         /* Invisible trap */
580         if (c_ptr->mimic && is_trap(c_ptr->feat))
581         {
582                 /* Pick a trap */
583                 disclose_grid(y, x);
584
585                 /* Message */
586                 msg_print(_("トラップを発見した。", "You have found a trap."));
587
588                 /* Disturb */
589                 disturb(0, 1);
590         }
591
592         /* Secret door */
593         if (is_hidden_door(c_ptr))
594         {
595                 /* Message */
596                 msg_print(_("隠しドアを発見した。", "You have found a secret door."));
597
598                 /* Disclose */
599                 disclose_grid(y, x);
600
601                 /* Disturb */
602                 disturb(0, 0);
603         }
604
605         /* Scan all objects in the grid */
606         for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
607         {
608                 object_type *o_ptr;
609
610                 /* Acquire object */
611                 o_ptr = &o_list[this_o_idx];
612
613                 /* Acquire next object */
614                 next_o_idx = o_ptr->next_o_idx;
615
616                 /* Skip non-chests */
617                 if (o_ptr->tval != TV_CHEST) continue;
618
619                 /* Skip non-trapped chests */
620                 if (!chest_traps[o_ptr->pval]) continue;
621
622                 /* Identify once */
623                 if (!object_is_known(o_ptr))
624                 {
625                         /* Message */
626                         msg_print(_("箱に仕掛けられたトラップを発見した!", "You have discovered a trap on the chest!"));
627
628                         /* Know the trap */
629                         object_known(o_ptr);
630
631                         /* Notice it */
632                         disturb(0, 0);
633                 }
634         }
635 }
636
637 /*!
638  * @brief プレイヤーの探索処理判定
639  * @return なし
640  */
641 void search(void)
642 {
643         int i, chance;
644
645         /* Start with base search ability */
646         chance = p_ptr->skill_srh;
647
648         /* Penalize various conditions */
649         if (p_ptr->blind || no_lite()) chance = chance / 10;
650         if (p_ptr->confused || p_ptr->image) chance = chance / 10;
651
652         /* Search the nearby grids, which are always in bounds */
653         for (i = 0; i < 9; ++ i)
654         {
655                 /* Sometimes, notice things */
656                 if (randint0(100) < chance)
657                 {
658                         discover_hidden_things(p_ptr->y + ddy_ddd[i], p_ptr->x + ddx_ddd[i]);
659                 }
660         }
661 }
662
663
664 /*!
665  * @brief プレイヤーがオブジェクトを拾った際のメッセージ表示処理 /
666  * Helper routine for py_pickup() and py_pickup_floor().
667  * @param o_idx 取得したオブジェクトの参照ID
668  * @return なし
669  * @details
670  * アイテムを拾った際に「2つのケーキを持っている」\n
671  * "You have two cakes." とアイテムを拾った後の合計のみの表示がオリジナル\n
672  * だが、違和感が\n
673  * あるという指摘をうけたので、「~を拾った、~を持っている」という表示\n
674  * にかえてある。そのための配列。\n
675  * Add the given dungeon object to the character's inventory.\n
676  * Delete the object afterwards.\n
677  */
678 void py_pickup_aux(int o_idx)
679 {
680         int slot;
681
682 #ifdef JP
683         char o_name[MAX_NLEN];
684         char old_name[MAX_NLEN];
685         char kazu_str[80];
686         int hirottakazu;
687 #else
688         char o_name[MAX_NLEN];
689 #endif
690
691         object_type *o_ptr;
692
693         o_ptr = &o_list[o_idx];
694
695 #ifdef JP
696         /* Describe the object */
697         object_desc(old_name, o_ptr, OD_NAME_ONLY);
698         object_desc_kosuu(kazu_str, o_ptr);
699         hirottakazu = o_ptr->number;
700 #endif
701         /* Carry the object */
702         slot = inven_carry(o_ptr);
703
704         /* Get the object again */
705         o_ptr = &inventory[slot];
706
707         /* Delete the object */
708         delete_object_idx(o_idx);
709
710         if (p_ptr->pseikaku == SEIKAKU_MUNCHKIN)
711         {
712                 bool old_known = identify_item(o_ptr);
713
714                 /* Auto-inscription/destroy */
715                 autopick_alter_item(slot, (bool)(destroy_identify && !old_known));
716
717                 /* If it is destroyed, don't pick it up */
718                 if (o_ptr->marked & OM_AUTODESTROY) return;
719         }
720
721         /* Describe the object */
722         object_desc(o_name, o_ptr, 0);
723
724         /* Message */
725 #ifdef JP
726         if ((o_ptr->name1 == ART_CRIMSON) && (p_ptr->pseikaku == SEIKAKU_COMBAT))
727         {
728                 msg_format("こうして、%sは『クリムゾン』を手に入れた。", p_ptr->name);
729                 msg_print("しかし今、『混沌のサーペント』の放ったモンスターが、");
730                 msg_format("%sに襲いかかる...", p_ptr->name);
731         }
732         else
733         {
734                 if (plain_pickup)
735                 {
736                         msg_format("%s(%c)を持っている。",o_name, index_to_label(slot));
737                 }
738                 else
739                 {
740                         if (o_ptr->number > hirottakazu) {
741                             msg_format("%s拾って、%s(%c)を持っている。",
742                                kazu_str, o_name, index_to_label(slot));
743                         } else {
744                                 msg_format("%s(%c)を拾った。", o_name, index_to_label(slot));
745                         }
746                 }
747         }
748         strcpy(record_o_name, old_name);
749 #else
750         msg_format("You have %s (%c).", o_name, index_to_label(slot));
751         strcpy(record_o_name, o_name);
752 #endif
753         record_turn = turn;
754
755
756         check_find_art_quest_completion(o_ptr);
757 }
758
759
760 /*!
761  * @brief プレイヤーがオブジェクト上に乗った際の表示処理
762  * @param pickup 自動拾い処理を行うならばTRUEとする
763  * @return なし
764  * @details
765  * Player "wants" to pick up an object or gold.
766  * Note that we ONLY handle things that can be picked up.
767  * See "move_player()" for handling of other things.
768  */
769 void carry(bool pickup)
770 {
771         cave_type *c_ptr = &cave[p_ptr->y][p_ptr->x];
772
773         s16b this_o_idx, next_o_idx = 0;
774
775         char    o_name[MAX_NLEN];
776
777         /* Recenter the map around the player */
778         verify_panel();
779
780         /* Update stuff */
781         p_ptr->update |= (PU_MONSTERS);
782
783         /* Redraw map */
784         p_ptr->redraw |= (PR_MAP);
785
786         /* Window stuff */
787         p_ptr->window |= (PW_OVERHEAD);
788
789         /* Handle stuff */
790         handle_stuff();
791
792         /* Automatically pickup/destroy/inscribe items */
793         autopick_pickup_items(c_ptr);
794
795
796 #ifdef ALLOW_EASY_FLOOR
797
798         if (easy_floor)
799         {
800                 py_pickup_floor(pickup);
801                 return;
802         }
803
804 #endif /* ALLOW_EASY_FLOOR */
805
806         /* Scan the pile of objects */
807         for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
808         {
809                 object_type *o_ptr;
810
811                 /* Acquire object */
812                 o_ptr = &o_list[this_o_idx];
813
814 #ifdef ALLOW_EASY_SENSE /* TNB */
815
816                 /* Option: Make item sensing easy */
817                 if (easy_sense)
818                 {
819                         /* Sense the object */
820                         (void)sense_object(o_ptr);
821                 }
822
823 #endif /* ALLOW_EASY_SENSE -- TNB */
824
825                 /* Describe the object */
826                 object_desc(o_name, o_ptr, 0);
827
828                 /* Acquire next object */
829                 next_o_idx = o_ptr->next_o_idx;
830
831                 /* Hack -- disturb */
832                 disturb(0, 0);
833
834                 /* Pick up gold */
835                 if (o_ptr->tval == TV_GOLD)
836                 {
837                         int value = (long)o_ptr->pval;
838
839                         /* Delete the gold */
840                         delete_object_idx(this_o_idx);
841
842                         /* Message */
843 #ifdef JP
844                 msg_format(" $%ld の価値がある%sを見つけた。",
845                            (long)value, o_name);
846 #else
847                         msg_format("You collect %ld gold pieces worth of %s.",
848                                    (long)value, o_name);
849 #endif
850
851
852                         sound(SOUND_SELL);
853
854                         /* Collect the gold */
855                         p_ptr->au += value;
856
857                         /* Redraw gold */
858                         p_ptr->redraw |= (PR_GOLD);
859
860                         /* Window stuff */
861                         p_ptr->window |= (PW_PLAYER);
862                 }
863
864                 /* Pick up objects */
865                 else
866                 {
867                         /* Hack - some objects were handled in autopick_pickup_items(). */
868                         if (o_ptr->marked & OM_NOMSG)
869                         {
870                                 /* Clear the flag. */
871                                 o_ptr->marked &= ~OM_NOMSG;
872                         }
873                         /* Describe the object */
874                         else if (!pickup)
875                         {
876                                 msg_format(_("%sがある。", "You see %s."), o_name);
877                         }
878
879                         /* Note that the pack is too full */
880                         else if (!inven_carry_okay(o_ptr))
881                         {
882                                 msg_format(_("ザックには%sを入れる隙間がない。", "You have no room for %s."), o_name);
883                         }
884
885                         /* Pick up the item (if requested and allowed) */
886                         else
887                         {
888                                 int okay = TRUE;
889
890                                 /* Hack -- query every item */
891                                 if (carry_query_flag)
892                                 {
893                                         char out_val[MAX_NLEN+20];
894                                         sprintf(out_val, _("%sを拾いますか? ", "Pick up %s? "), o_name);
895                                         okay = get_check(out_val);
896                                 }
897
898                                 /* Attempt to pick up an object. */
899                                 if (okay)
900                                 {
901                                         /* Pick up the object */
902                                         py_pickup_aux(this_o_idx);
903                                 }
904                         }
905                 }
906         }
907 }
908
909
910 /*!
911  * @brief プレイヤーへのトラップ命中判定 /
912  * Determine if a trap affects the player.
913  * @param power 基本回避難度
914  * @return トラップが命中した場合TRUEを返す。
915  * @details
916  * Always miss 5% of the time, Always hit 5% of the time.
917  * Otherwise, match trap power against player armor.
918  */
919 static int check_hit(int power)
920 {
921         int k, ac;
922
923         /* Percentile dice */
924         k = randint0(100);
925
926         /* Hack -- 5% hit, 5% miss */
927         if (k < 10) return (k < 5);
928
929         if (p_ptr->pseikaku == SEIKAKU_NAMAKE)
930                 if (one_in_(20)) return (TRUE);
931
932         /* Paranoia -- No power */
933         if (power <= 0) return (FALSE);
934
935         /* Total armor */
936         ac = p_ptr->ac + p_ptr->to_a;
937
938         /* Power competes against Armor */
939         if (randint1(power) > ((ac * 3) / 4)) return (TRUE);
940
941         /* Assume miss */
942         return (FALSE);
943 }
944
945
946 /*!
947  * @brief 落とし穴系トラップの判定とプレイヤーの被害処理
948  * @param trap_feat_type トラップの種別ID
949  * @return なし
950  */
951 static void hit_trap_pit(int trap_feat_type)
952 {
953         int dam;
954         cptr trap_name = "";
955         cptr spike_name = "";
956
957         switch (trap_feat_type)
958         {
959         case TRAP_PIT:
960                 trap_name = _("落とし穴", "a pit trap");
961                 break;
962         case TRAP_SPIKED_PIT:
963                 trap_name = _("スパイクが敷かれた落とし穴", "a spiked pit");
964                 spike_name = _("スパイク", "spikes");
965                 break;
966         case TRAP_POISON_PIT:
967                 trap_name = _("スパイクが敷かれた落とし穴", "a spiked pit");
968                 spike_name = _("毒を塗られたスパイク", "poisonous spikes");
969                 break;
970         default:
971                 return;
972         }
973
974         if (p_ptr->levitation)
975         {
976                 msg_format(_("%sを飛び越えた。", "You fly over %s."), trap_name);
977                 return;
978         }
979
980         msg_format(_("%sに落ちてしまった!", "You have fallen into %s!"), trap_name);
981
982         /* Base damage */
983         dam = damroll(2, 6);
984
985         /* Extra spike damage */
986         if ((trap_feat_type == TRAP_SPIKED_PIT || trap_feat_type == TRAP_POISON_PIT) &&
987             one_in_(2))
988         {
989                 msg_format(_("%sが刺さった!", "You are impaled on %s!"), spike_name);
990
991                 dam = dam * 2;
992                 (void)set_cut(p_ptr->cut + randint1(dam));
993
994                 if (trap_feat_type == TRAP_POISON_PIT) {
995                         if (p_ptr->resist_pois || IS_OPPOSE_POIS())
996                         {
997                                 msg_print(_("しかし毒の影響はなかった!", "The poison does not affect you!"));
998                         }
999                         else
1000                         {
1001                                 dam = dam * 2;
1002                                 (void)set_poisoned(p_ptr->poisoned + randint1(dam));
1003                         }
1004                 }
1005         }
1006
1007         /* Take the damage */
1008         take_hit(DAMAGE_NOESCAPE, dam, trap_name, -1);
1009 }
1010
1011 /*!
1012  * @brief ダーツ系トラップ(通常ダメージ)の判定とプレイヤーの被害処理
1013  * @return ダーツが命中した場合TRUEを返す
1014  */
1015 static bool hit_trap_dart(void)
1016 {
1017         bool hit = FALSE;
1018
1019         if (check_hit(125))
1020         {
1021                 msg_print(_("小さなダーツが飛んできて刺さった!", "A small dart hits you!"));
1022
1023                 take_hit(DAMAGE_ATTACK, damroll(1, 4), _("ダーツの罠", "a dart trap"), -1);
1024
1025                 if (!CHECK_MULTISHADOW()) hit = TRUE;
1026         }
1027         else
1028         {
1029                 msg_print(_("小さなダーツが飛んできた!が、運良く当たらなかった。", "A small dart barely misses you."));
1030         }
1031
1032         return hit;
1033 }
1034
1035 /*!
1036  * @brief ダーツ系トラップ(通常ダメージ+能力値減少)の判定とプレイヤーの被害処理
1037  * @param stat 低下する能力値ID
1038  * @return なし
1039  */
1040 static void hit_trap_lose_stat(int stat)
1041 {
1042         if (hit_trap_dart())
1043         {
1044                 do_dec_stat(stat);
1045         }
1046 }
1047
1048 /*!
1049  * @brief ダーツ系トラップ(通常ダメージ+減速)の判定とプレイヤーの被害処理
1050  * @return なし
1051  */
1052 static void hit_trap_slow(void)
1053 {
1054         if (hit_trap_dart())
1055         {
1056                 set_slow(p_ptr->slow + randint0(20) + 20, FALSE);
1057         }
1058 }
1059
1060 /*!
1061  * @brief ダーツ系トラップ(通常ダメージ+状態異常)の判定とプレイヤーの被害処理
1062  * @param trap_message メッセージの補完文字列
1063  * @param resist 状態異常に抵抗する判定が出たならTRUE
1064  * @param set_status 状態異常を指定する関数ポインタ
1065  * @param turn 状態異常の追加ターン量
1066  * @return なし
1067  */
1068 static void hit_trap_set_abnormal_status(cptr trap_message, bool resist, bool (*set_status)(int), int turn_aux)
1069 {
1070         msg_print(trap_message);
1071
1072         if (!resist)
1073         {
1074                 set_status(turn_aux);
1075         }
1076 }
1077
1078 /*!
1079  * @brief プレイヤーへのトラップ作動処理メインルーチン /
1080  * Handle player hitting a real trap
1081  * @param break_trap 作動後のトラップ破壊が確定しているならばTRUE
1082  * @return なし
1083  */
1084 static void hit_trap(bool break_trap)
1085 {
1086         int i, num, dam;
1087         int x = p_ptr->x, y = p_ptr->y;
1088
1089         /* Get the cave grid */
1090         cave_type *c_ptr = &cave[y][x];
1091         feature_type *f_ptr = &f_info[c_ptr->feat];
1092         int trap_feat_type = have_flag(f_ptr->flags, FF_TRAP) ? f_ptr->subtype : NOT_TRAP;
1093         cptr name = _("トラップ", "a trap");
1094
1095         /* Disturb the player */
1096         disturb(0, 1);
1097
1098         cave_alter_feat(y, x, FF_HIT_TRAP);
1099
1100         /* Analyze XXX XXX XXX */
1101         switch (trap_feat_type)
1102         {
1103                 case TRAP_TRAPDOOR:
1104                 {
1105                         if (p_ptr->levitation)
1106                         {
1107                                 msg_print(_("落とし戸を飛び越えた。", "You fly over a trap door."));
1108                         }
1109                         else
1110                         {
1111                                 msg_print(_("落とし戸に落ちた!", "You have fallen through a trap door!"));
1112                                 if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
1113                                         msg_print(_("くっそ~!", ""));
1114
1115                                 sound(SOUND_FALL);
1116                                 dam = damroll(2, 8);
1117                                 name = _("落とし戸", "a trap door");
1118
1119                                 take_hit(DAMAGE_NOESCAPE, dam, name, -1);
1120
1121                                 /* Still alive and autosave enabled */
1122                                 if (autosave_l && (p_ptr->chp >= 0))
1123                                         do_cmd_save_game(TRUE);
1124
1125                                 do_cmd_write_nikki(NIKKI_BUNSHOU, 0, _("落とし戸に落ちた", "You have fallen through a trap door!"));
1126                                 prepare_change_floor_mode(CFM_SAVE_FLOORS | CFM_DOWN | CFM_RAND_PLACE | CFM_RAND_CONNECT);
1127
1128                                 /* Leaving */
1129                                 p_ptr->leaving = TRUE;
1130                         }
1131                         break;
1132                 }
1133
1134                 case TRAP_PIT:
1135                 case TRAP_SPIKED_PIT:
1136                 case TRAP_POISON_PIT:
1137                 {
1138                         hit_trap_pit(trap_feat_type);
1139                         break;
1140                 }
1141
1142                 case TRAP_TY_CURSE:
1143                 {
1144                         msg_print(_("何かがピカッと光った!", "There is a flash of shimmering light!"));
1145                         num = 2 + randint1(3);
1146                         for (i = 0; i < num; i++)
1147                         {
1148                                 (void)summon_specific(0, y, x, dun_level, 0, (PM_ALLOW_GROUP | PM_ALLOW_UNIQUE | PM_NO_PET));
1149                         }
1150
1151                         if (dun_level > randint1(100)) /* No nasty effect for low levels */
1152                         {
1153                                 bool stop_ty = FALSE;
1154                                 int count = 0;
1155
1156                                 do
1157                                 {
1158                                         stop_ty = activate_ty_curse(stop_ty, &count);
1159                                 }
1160                                 while (one_in_(6));
1161                         }
1162                         break;
1163                 }
1164
1165                 case TRAP_TELEPORT:
1166                 {
1167                         msg_print(_("テレポート・トラップにひっかかった!", "You hit a teleport trap!"));
1168                         teleport_player(100, TELEPORT_PASSIVE);
1169                         break;
1170                 }
1171
1172                 case TRAP_FIRE:
1173                 {
1174                         msg_print(_("炎に包まれた!", "You are enveloped in flames!"));
1175                         dam = damroll(4, 6);
1176                         (void)fire_dam(dam, _("炎のトラップ", "a fire trap"), -1, FALSE);
1177                         break;
1178                 }
1179
1180                 case TRAP_ACID:
1181                 {
1182                         msg_print(_("酸が吹きかけられた!", "You are splashed with acid!"));
1183                         dam = damroll(4, 6);
1184                         (void)acid_dam(dam, _("酸のトラップ", "an acid trap"), -1, FALSE);
1185                         break;
1186                 }
1187
1188                 case TRAP_SLOW:
1189                 {
1190                         hit_trap_slow();
1191                         break;
1192                 }
1193
1194                 case TRAP_LOSE_STR:
1195                 {
1196                         hit_trap_lose_stat(A_STR);
1197                         break;
1198                 }
1199
1200                 case TRAP_LOSE_DEX:
1201                 {
1202                         hit_trap_lose_stat(A_DEX);
1203                         break;
1204                 }
1205
1206                 case TRAP_LOSE_CON:
1207                 {
1208                         hit_trap_lose_stat(A_CON);
1209                         break;
1210                 }
1211
1212                 case TRAP_BLIND:
1213                 {
1214                         hit_trap_set_abnormal_status(
1215                                 _("黒いガスに包み込まれた!", "A black gas surrounds you!"),
1216                                 p_ptr->resist_blind,
1217                                 set_blind, p_ptr->blind + randint0(50) + 25);
1218                         break;
1219                 }
1220
1221                 case TRAP_CONFUSE:
1222                 {
1223                         hit_trap_set_abnormal_status(
1224                                 _("きらめくガスに包み込まれた!", "A gas of scintillating colors surrounds you!"),
1225                                 p_ptr->resist_conf,
1226                                 set_confused, p_ptr->confused + randint0(20) + 10);
1227                         break;
1228                 }
1229
1230                 case TRAP_POISON:
1231                 {
1232                         hit_trap_set_abnormal_status(
1233                                 _("刺激的な緑色のガスに包み込まれた!", "A pungent green gas surrounds you!"),
1234                                 p_ptr->resist_pois || IS_OPPOSE_POIS(),
1235                                 set_poisoned, p_ptr->poisoned + randint0(20) + 10);
1236                         break;
1237                 }
1238
1239                 case TRAP_SLEEP:
1240                 {
1241                         msg_print(_("奇妙な白い霧に包まれた!", "A strange white mist surrounds you!"));
1242                         if (!p_ptr->free_act)
1243                         {
1244                                 msg_print(_("あなたは眠りに就いた。", "You fall asleep."));
1245
1246                                 if (ironman_nightmare)
1247                                 {
1248                                         msg_print(_("身の毛もよだつ光景が頭に浮かんだ。", "A horrible vision enters your mind."));
1249
1250                                         /* Have some nightmares */
1251                                         sanity_blast(NULL, FALSE);
1252
1253                                 }
1254                                 (void)set_paralyzed(p_ptr->paralyzed + randint0(10) + 5);
1255                         }
1256                         break;
1257                 }
1258
1259                 case TRAP_TRAPS:
1260                 {
1261                         msg_print(_("まばゆい閃光が走った!", "There is a bright flash of light!"));
1262                         /* Make some new traps */
1263                         project(0, 1, y, x, 0, GF_MAKE_TRAP, PROJECT_HIDE | PROJECT_JUMP | PROJECT_GRID, -1);
1264
1265                         break;
1266                 }
1267
1268                 case TRAP_ALARM:
1269                 {
1270                         msg_print(_("けたたましい音が鳴り響いた!", "An alarm sounds!"));
1271
1272                         aggravate_monsters(0);
1273
1274                         break;
1275                 }
1276
1277                 case TRAP_OPEN:
1278                 {
1279                         msg_print(_("大音響と共にまわりの壁が崩れた!", "Suddenly, surrounding walls are opened!"));
1280                         (void)project(0, 3, y, x, 0, GF_DISINTEGRATE, PROJECT_GRID | PROJECT_HIDE, -1);
1281                         (void)project(0, 3, y, x - 4, 0, GF_DISINTEGRATE, PROJECT_GRID | PROJECT_HIDE, -1);
1282                         (void)project(0, 3, y, x + 4, 0, GF_DISINTEGRATE, PROJECT_GRID | PROJECT_HIDE, -1);
1283                         aggravate_monsters(0);
1284
1285                         break;
1286                 }
1287
1288                 case TRAP_ARMAGEDDON:
1289                 {
1290                         static int levs[10] = {0, 0, 20, 10, 5, 3, 2, 1, 1, 1};
1291                         int evil_idx = 0, good_idx = 0;
1292
1293                         int lev;
1294                         msg_print(_("突然天界の戦争に巻き込まれた!", "Suddenly, you are surrounded by immotal beings!"));
1295
1296                         /* Summon Demons and Angels */
1297                         for (lev = dun_level; lev >= 20; lev -= 1 + lev/16)
1298                         {
1299                                 num = levs[MIN(lev/10, 9)];
1300                                 for (i = 0; i < num; i++)
1301                                 {
1302                                         int x1 = rand_spread(x, 7);
1303                                         int y1 = rand_spread(y, 5);
1304
1305                                         /* Skip illegal grids */
1306                                         if (!in_bounds(y1, x1)) continue;
1307
1308                                         /* Require line of projection */
1309                                         if (!projectable(p_ptr->y, p_ptr->x, y1, x1)) continue;
1310
1311                                         if (summon_specific(0, y1, x1, lev, SUMMON_ARMAGE_EVIL, (PM_NO_PET)))
1312                                                 evil_idx = hack_m_idx_ii;
1313
1314                                         if (summon_specific(0, y1, x1, lev, SUMMON_ARMAGE_GOOD, (PM_NO_PET)))
1315                                         {
1316                                                 good_idx = hack_m_idx_ii;
1317                                         }
1318
1319                                         /* Let them fight each other */
1320                                         if (evil_idx && good_idx)
1321                                         {
1322                                                 monster_type *evil_ptr = &m_list[evil_idx];
1323                                                 monster_type *good_ptr = &m_list[good_idx];
1324                                                 evil_ptr->target_y = good_ptr->fy;
1325                                                 evil_ptr->target_x = good_ptr->fx;
1326                                                 good_ptr->target_y = evil_ptr->fy;
1327                                                 good_ptr->target_x = evil_ptr->fx;
1328                                         }
1329                                 }
1330                         }
1331                         break;
1332                 }
1333
1334                 case TRAP_PIRANHA:
1335                 {
1336                         msg_print(_("突然壁から水が溢れ出した!ピラニアがいる!", "Suddenly, the room is filled with water with piranhas!"));
1337
1338                         /* Water fills room */
1339                         fire_ball_hide(GF_WATER_FLOW, 0, 1, 10);
1340
1341                         /* Summon Piranhas */
1342                         num = 1 + dun_level/20;
1343                         for (i = 0; i < num; i++)
1344                         {
1345                                 (void)summon_specific(0, y, x, dun_level, SUMMON_PIRANHAS, (PM_ALLOW_GROUP | PM_NO_PET));
1346                         }
1347                         break;
1348                 }
1349         }
1350
1351         if (break_trap && is_trap(c_ptr->feat))
1352         {
1353                 cave_alter_feat(y, x, FF_DISARM);
1354                 msg_print(_("トラップを粉砕した。", "You destroyed the trap."));
1355         }
1356 }
1357
1358
1359 /*!
1360  * @brief 敵オーラによるプレイヤーのダメージ処理(補助)
1361  * @param m_ptr オーラを持つモンスターの構造体参照ポインタ
1362  * @param immune ダメージを回避できる免疫フラグ
1363  * @param flags_offset オーラフラグ配列の参照オフセット
1364  * @param r_flags_offset モンスターの耐性配列の参照オフセット
1365  * @param aura_flag オーラフラグ配列
1366  * @param dam_func ダメージ処理を行う関数の参照ポインタ
1367  * @param message オーラダメージを受けた際のメッセージ
1368  * @return なし
1369  */
1370 static void touch_zap_player_aux(monster_type *m_ptr, bool immune, int flags_offset, int r_flags_offset, u32b aura_flag,
1371                                  int (*dam_func)(int dam, cptr kb_str, int monspell, bool aura), cptr message)
1372 {
1373         monster_race *r_ptr = &r_info[m_ptr->r_idx];
1374
1375         if ((atoffset(u32b, r_ptr, flags_offset) & aura_flag) && !immune)
1376         {
1377                 char mon_name[80];
1378                 int aura_damage = damroll(1 + (r_ptr->level / 26), 1 + (r_ptr->level / 17));
1379
1380                 /* Hack -- Get the "died from" name */
1381                 monster_desc(mon_name, m_ptr, MD_IGNORE_HALLU | MD_ASSUME_VISIBLE | MD_INDEF_VISIBLE);
1382
1383                 msg_print(message);
1384
1385                 dam_func(aura_damage, mon_name, -1, TRUE);
1386
1387                 if (is_original_ap_and_seen(m_ptr))
1388                 {
1389                         atoffset(u32b, r_ptr, r_flags_offset) |= aura_flag;
1390                 }
1391
1392                 handle_stuff();
1393         }
1394 }
1395
1396 /*!
1397  * @brief 敵オーラによるプレイヤーのダメージ処理(メイン)
1398  * @param m_ptr オーラを持つモンスターの構造体参照ポインタ
1399  * @return なし
1400  */
1401 static void touch_zap_player(monster_type *m_ptr)
1402 {
1403         touch_zap_player_aux(m_ptr, p_ptr->immune_fire, offsetof(monster_race, flags2), offsetof(monster_race, r_flags2), RF2_AURA_FIRE,
1404                              fire_dam, _("突然とても熱くなった!", "You are suddenly very hot!"));
1405         touch_zap_player_aux(m_ptr, p_ptr->immune_cold, offsetof(monster_race, flags3), offsetof(monster_race, r_flags3), RF3_AURA_COLD,
1406                              cold_dam, _("突然とても寒くなった!", "You are suddenly very cold!"));
1407         touch_zap_player_aux(m_ptr, p_ptr->immune_elec, offsetof(monster_race, flags2), offsetof(monster_race, r_flags2), RF2_AURA_ELEC,
1408                              elec_dam, _("電撃をくらった!", "You get zapped!"));
1409 }
1410
1411
1412 /*!
1413  * @brief プレイヤーの変異要素による打撃処理
1414  * @param m_idx 攻撃目標となったモンスターの参照ID
1415  * @param attack 変異要素による攻撃要素の種類
1416  * @param fear 攻撃を受けたモンスターが恐慌状態に陥ったかを返す参照ポインタ
1417  * @param mdeath 攻撃を受けたモンスターが死亡したかを返す参照ポインタ
1418  * @return なし
1419  */
1420 static void natural_attack(s16b m_idx, int attack, bool *fear, bool *mdeath)
1421 {
1422         int             k, bonus, chance;
1423         int             n_weight = 0;
1424         monster_type    *m_ptr = &m_list[m_idx];
1425         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
1426         char            m_name[80];
1427
1428         int             dice_num, dice_side;
1429
1430         cptr            atk_desc;
1431
1432         switch (attack)
1433         {
1434                 case MUT2_SCOR_TAIL:
1435                         dice_num = 3;
1436                         dice_side = 7;
1437                         n_weight = 5;
1438                         atk_desc = _("尻尾", "tail");
1439
1440                         break;
1441                 case MUT2_HORNS:
1442                         dice_num = 2;
1443                         dice_side = 6;
1444                         n_weight = 15;
1445                         atk_desc = _("角", "horns");
1446
1447                         break;
1448                 case MUT2_BEAK:
1449                         dice_num = 2;
1450                         dice_side = 4;
1451                         n_weight = 5;
1452                         atk_desc = _("クチバシ", "beak");
1453
1454                         break;
1455                 case MUT2_TRUNK:
1456                         dice_num = 1;
1457                         dice_side = 4;
1458                         n_weight = 35;
1459                         atk_desc = _("象の鼻", "trunk");
1460
1461                         break;
1462                 case MUT2_TENTACLES:
1463                         dice_num = 2;
1464                         dice_side = 5;
1465                         n_weight = 5;
1466                         atk_desc = _("触手", "tentacles");
1467
1468                         break;
1469                 default:
1470                         dice_num = dice_side = n_weight = 1;
1471                         atk_desc = _("未定義の部位", "undefined body part");
1472
1473         }
1474
1475         /* Extract monster name (or "it") */
1476         monster_desc(m_name, m_ptr, 0);
1477
1478
1479         /* Calculate the "attack quality" */
1480         bonus = p_ptr->to_h_m;
1481         bonus += (p_ptr->lev * 6 / 5);
1482         chance = (p_ptr->skill_thn + (bonus * BTH_PLUS_ADJ));
1483
1484         /* Test for hit */
1485         if ((!(r_ptr->flags2 & RF2_QUANTUM) || !randint0(2)) && test_hit_norm(chance, r_ptr->ac, m_ptr->ml))
1486         {
1487                 /* Sound */
1488                 sound(SOUND_HIT);
1489                 msg_format(_("%sを%sで攻撃した。", "You hit %s with your %s."), m_name, atk_desc);
1490
1491                 k = damroll(dice_num, dice_side);
1492                 k = critical_norm(n_weight, bonus, k, (s16b)bonus, 0);
1493
1494                 /* Apply the player damage bonuses */
1495                 k += p_ptr->to_d_m;
1496
1497                 /* No negative damage */
1498                 if (k < 0) k = 0;
1499
1500                 /* Modify the damage */
1501                 k = mon_damage_mod(m_ptr, k, FALSE);
1502
1503                 /* Complex message */
1504                 msg_format_wizard(CHEAT_MONSTER,
1505                         _("%dのダメージを与えた。(残りHP %d/%d(%d))", "You do %d damage. (left HP %d/%d(%d))"),
1506                         k, m_ptr->hp - k, m_ptr->maxhp, m_ptr->max_maxhp);
1507
1508                 /* Anger the monster */
1509                 if (k > 0) anger_monster(m_ptr);
1510
1511                 /* Damage, check for fear and mdeath */
1512                 switch (attack)
1513                 {
1514                         case MUT2_SCOR_TAIL:
1515                                 project(0, 0, m_ptr->fy, m_ptr->fx, k, GF_POIS, PROJECT_KILL, -1);
1516                                 *mdeath = (m_ptr->r_idx == 0);
1517                                 break;
1518                         case MUT2_HORNS:
1519                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1520                                 break;
1521                         case MUT2_BEAK:
1522                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1523                                 break;
1524                         case MUT2_TRUNK:
1525                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1526                                 break;
1527                         case MUT2_TENTACLES:
1528                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1529                                 break;
1530                         default:
1531                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1532                 }
1533
1534                 touch_zap_player(m_ptr);
1535         }
1536         /* Player misses */
1537         else
1538         {
1539                 /* Sound */
1540                 sound(SOUND_MISS);
1541
1542                 /* Message */
1543                 msg_format(_("ミス! %sにかわされた。", "You miss %s."), m_name);
1544         }
1545 }
1546
1547
1548 /*!
1549  * @brief プレイヤーの打撃処理サブルーチン /
1550  * Player attacks a (poor, defenseless) creature        -RAK-
1551  * @param y 攻撃目標のY座標
1552  * @param x 攻撃目標のX座標
1553  * @param fear 攻撃を受けたモンスターが恐慌状態に陥ったかを返す参照ポインタ
1554  * @param mdeath 攻撃を受けたモンスターが死亡したかを返す参照ポインタ
1555  * @param hand 攻撃を行うための武器を持つ手
1556  * @param mode 発動中の剣術ID
1557  * @return なし
1558  * @details
1559  * If no "weapon" is available, then "punch" the monster one time.
1560  */
1561 static void py_attack_aux(int y, int x, bool *fear, bool *mdeath, s16b hand, int mode)
1562 {
1563         int             num = 0, k, bonus, chance, vir;
1564
1565         cave_type       *c_ptr = &cave[y][x];
1566
1567         monster_type    *m_ptr = &m_list[c_ptr->m_idx];
1568         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
1569
1570         /* Access the weapon */
1571         object_type     *o_ptr = &inventory[INVEN_RARM + hand];
1572
1573         char            m_name[80];
1574
1575         bool            success_hit = FALSE;
1576         bool            backstab = FALSE;
1577         bool            vorpal_cut = FALSE;
1578         int             chaos_effect = 0;
1579         bool            stab_fleeing = FALSE;
1580         bool            fuiuchi = FALSE;
1581         bool            monk_attack = FALSE;
1582         bool            do_quake = FALSE;
1583         bool            weak = FALSE;
1584         bool            drain_msg = TRUE;
1585         int             drain_result = 0, drain_heal = 0;
1586         bool            can_drain = FALSE;
1587         int             num_blow;
1588         int             drain_left = MAX_VAMPIRIC_DRAIN;
1589         u32b flgs[TR_FLAG_SIZE]; /* A massive hack -- life-draining weapons */
1590         bool            is_human = (r_ptr->d_char == 'p');
1591         bool            is_lowlevel = (r_ptr->level < (p_ptr->lev - 15));
1592         bool            zantetsu_mukou, e_j_mukou;
1593
1594         switch (p_ptr->pclass)
1595         {
1596         case CLASS_ROGUE:
1597         case CLASS_NINJA:
1598                 if (buki_motteruka(INVEN_RARM + hand) && !p_ptr->icky_wield[hand])
1599                 {
1600                         int tmp = p_ptr->lev * 6 + (p_ptr->skill_stl + 10) * 4;
1601                         if (p_ptr->monlite && (mode != HISSATSU_NYUSIN)) tmp /= 3;
1602                         if (p_ptr->cursed & TRC_AGGRAVATE) tmp /= 2;
1603                         if (r_ptr->level > (p_ptr->lev * p_ptr->lev / 20 + 10)) tmp /= 3;
1604                         if (MON_CSLEEP(m_ptr) && m_ptr->ml)
1605                         {
1606                                 /* Can't backstab creatures that we can't see, right? */
1607                                 backstab = TRUE;
1608                         }
1609                         else if ((p_ptr->special_defense & NINJA_S_STEALTH) && (randint0(tmp) > (r_ptr->level+20)) && m_ptr->ml && !(r_ptr->flagsr & RFR_RES_ALL))
1610                         {
1611                                 fuiuchi = TRUE;
1612                         }
1613                         else if (MON_MONFEAR(m_ptr) && m_ptr->ml)
1614                         {
1615                                 stab_fleeing = TRUE;
1616                         }
1617                 }
1618                 break;
1619
1620         case CLASS_MONK:
1621         case CLASS_FORCETRAINER:
1622         case CLASS_BERSERKER:
1623                 if ((empty_hands(TRUE) & EMPTY_HAND_RARM) && !p_ptr->riding) monk_attack = TRUE;
1624                 break;
1625         }
1626
1627         if (!o_ptr->k_idx) /* Empty hand */
1628         {
1629                 if ((r_ptr->level + 10) > p_ptr->lev)
1630                 {
1631                         if (p_ptr->skill_exp[GINOU_SUDE] < s_info[p_ptr->pclass].s_max[GINOU_SUDE])
1632                         {
1633                                 if (p_ptr->skill_exp[GINOU_SUDE] < WEAPON_EXP_BEGINNER)
1634                                         p_ptr->skill_exp[GINOU_SUDE] += 40;
1635                                 else if ((p_ptr->skill_exp[GINOU_SUDE] < WEAPON_EXP_SKILLED))
1636                                         p_ptr->skill_exp[GINOU_SUDE] += 5;
1637                                 else if ((p_ptr->skill_exp[GINOU_SUDE] < WEAPON_EXP_EXPERT) && (p_ptr->lev > 19))
1638                                         p_ptr->skill_exp[GINOU_SUDE] += 1;
1639                                 else if ((p_ptr->lev > 34))
1640                                         if (one_in_(3)) p_ptr->skill_exp[GINOU_SUDE] += 1;
1641                                 p_ptr->update |= (PU_BONUS);
1642                         }
1643                 }
1644         }
1645         else if (object_is_melee_weapon(o_ptr))
1646         {
1647                 if ((r_ptr->level + 10) > p_ptr->lev)
1648                 {
1649                         int tval = inventory[INVEN_RARM+hand].tval - TV_WEAPON_BEGIN;
1650                         int sval = inventory[INVEN_RARM+hand].sval;
1651                         int now_exp = p_ptr->weapon_exp[tval][sval];
1652                         if (now_exp < s_info[p_ptr->pclass].w_max[tval][sval])
1653                         {
1654                                 int amount = 0;
1655                                 if (now_exp < WEAPON_EXP_BEGINNER) amount = 80;
1656                                 else if (now_exp < WEAPON_EXP_SKILLED) amount = 10;
1657                                 else if ((now_exp < WEAPON_EXP_EXPERT) && (p_ptr->lev > 19)) amount = 1;
1658                                 else if ((p_ptr->lev > 34) && one_in_(2)) amount = 1;
1659                                 p_ptr->weapon_exp[tval][sval] += amount;
1660                                 p_ptr->update |= (PU_BONUS);
1661                         }
1662                 }
1663         }
1664
1665         /* Disturb the monster */
1666         (void)set_monster_csleep(c_ptr->m_idx, 0);
1667
1668         /* Extract monster name (or "it") */
1669         monster_desc(m_name, m_ptr, 0);
1670
1671         /* Calculate the "attack quality" */
1672         bonus = p_ptr->to_h[hand] + o_ptr->to_h;
1673         chance = (p_ptr->skill_thn + (bonus * BTH_PLUS_ADJ));
1674         if (mode == HISSATSU_IAI) chance += 60;
1675         if (p_ptr->special_defense & KATA_KOUKIJIN) chance += 150;
1676
1677         if (p_ptr->sutemi) chance = MAX(chance * 3 / 2, chance + 60);
1678
1679         vir = virtue_number(V_VALOUR);
1680         if (vir)
1681         {
1682                 chance += (p_ptr->virtues[vir - 1]/10);
1683         }
1684
1685         zantetsu_mukou = ((o_ptr->name1 == ART_ZANTETSU) && (r_ptr->d_char == 'j'));
1686         e_j_mukou = ((o_ptr->name1 == ART_EXCALIBUR_J) && (r_ptr->d_char == 'S'));
1687
1688         if ((mode == HISSATSU_KYUSHO) || (mode == HISSATSU_MINEUCHI) || (mode == HISSATSU_3DAN) || (mode == HISSATSU_IAI)) num_blow = 1;
1689         else if (mode == HISSATSU_COLD) num_blow = p_ptr->num_blow[hand]+2;
1690         else num_blow = p_ptr->num_blow[hand];
1691
1692         /* Hack -- DOKUBARI always hit once */
1693         if ((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) num_blow = 1;
1694
1695         /* Attack once for each legal blow */
1696         while ((num++ < num_blow) && !p_ptr->is_dead)
1697         {
1698                 if (((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) || (mode == HISSATSU_KYUSHO))
1699                 {
1700                         int n = 1;
1701
1702                         if (p_ptr->migite && p_ptr->hidarite)
1703                         {
1704                                 n *= 2;
1705                         }
1706                         if (mode == HISSATSU_3DAN)
1707                         {
1708                                 n *= 2;
1709                         }
1710
1711                         success_hit = one_in_(n);
1712                 }
1713                 else if ((p_ptr->pclass == CLASS_NINJA) && ((backstab || fuiuchi) && !(r_ptr->flagsr & RFR_RES_ALL))) success_hit = TRUE;
1714                 else success_hit = test_hit_norm(chance, r_ptr->ac, m_ptr->ml);
1715
1716                 if (mode == HISSATSU_MAJIN)
1717                 {
1718                         if (one_in_(2))
1719                                 success_hit = FALSE;
1720                 }
1721
1722                 /* Test for hit */
1723                 if (success_hit)
1724                 {
1725                         int vorpal_chance = ((o_ptr->name1 == ART_VORPAL_BLADE) || (o_ptr->name1 == ART_CHAINSWORD)) ? 2 : 4;
1726
1727                         /* Sound */
1728                         sound(SOUND_HIT);
1729
1730                         /* Message */
1731 #ifdef JP
1732                         if (backstab) msg_format("あなたは冷酷にも眠っている無力な%sを突き刺した!", m_name);
1733                         else if (fuiuchi) msg_format("不意を突いて%sに強烈な一撃を喰らわせた!", m_name);
1734                         else if (stab_fleeing) msg_format("逃げる%sを背中から突き刺した!", m_name);
1735                         else if (!monk_attack) msg_format("%sを攻撃した。", m_name);
1736 #else
1737                         if (backstab) msg_format("You cruelly stab the helpless, sleeping %s!", m_name);
1738                         else if (fuiuchi) msg_format("You make surprise attack, and hit %s with a powerful blow!", m_name);
1739                         else if (stab_fleeing) msg_format("You backstab the fleeing %s!",  m_name);
1740                         else if (!monk_attack) msg_format("You hit %s.", m_name);
1741 #endif
1742
1743                         /* Hack -- bare hands do one damage */
1744                         k = 1;
1745
1746                         object_flags(o_ptr, flgs);
1747
1748                         /* Select a chaotic effect (50% chance) */
1749                         if ((have_flag(flgs, TR_CHAOTIC)) && one_in_(2))
1750                         {
1751                                 if (one_in_(10))
1752                                 chg_virtue(V_CHANCE, 1);
1753
1754                                 if (randint1(5) < 3)
1755                                 {
1756                                         /* Vampiric (20%) */
1757                                         chaos_effect = 1;
1758                                 }
1759                                 else if (one_in_(250))
1760                                 {
1761                                         /* Quake (0.12%) */
1762                                         chaos_effect = 2;
1763                                 }
1764                                 else if (!one_in_(10))
1765                                 {
1766                                         /* Confusion (26.892%) */
1767                                         chaos_effect = 3;
1768                                 }
1769                                 else if (one_in_(2))
1770                                 {
1771                                         /* Teleport away (1.494%) */
1772                                         chaos_effect = 4;
1773                                 }
1774                                 else
1775                                 {
1776                                         /* Polymorph (1.494%) */
1777                                         chaos_effect = 5;
1778                                 }
1779                         }
1780
1781                         /* Vampiric drain */
1782                         if ((have_flag(flgs, TR_VAMPIRIC)) || (chaos_effect == 1) || (mode == HISSATSU_DRAIN) || hex_spelling(HEX_VAMP_BLADE))
1783                         {
1784                                 /* Only drain "living" monsters */
1785                                 if (monster_living(r_ptr))
1786                                         can_drain = TRUE;
1787                                 else
1788                                         can_drain = FALSE;
1789                         }
1790
1791                         if ((have_flag(flgs, TR_VORPAL) || hex_spelling(HEX_RUNESWORD)) && (randint1(vorpal_chance*3/2) == 1) && !zantetsu_mukou)
1792                                 vorpal_cut = TRUE;
1793                         else vorpal_cut = FALSE;
1794
1795                         if (monk_attack)
1796                         {
1797                                 int special_effect = 0, stun_effect = 0, times = 0, max_times;
1798                                 int min_level = 1;
1799                                 const martial_arts *ma_ptr = &ma_blows[0], *old_ptr = &ma_blows[0];
1800                                 int resist_stun = 0;
1801                                 int weight = 8;
1802
1803                                 if (r_ptr->flags1 & RF1_UNIQUE) resist_stun += 88;
1804                                 if (r_ptr->flags3 & RF3_NO_STUN) resist_stun += 66;
1805                                 if (r_ptr->flags3 & RF3_NO_CONF) resist_stun += 33;
1806                                 if (r_ptr->flags3 & RF3_NO_SLEEP) resist_stun += 33;
1807                                 if ((r_ptr->flags3 & RF3_UNDEAD) || (r_ptr->flags3 & RF3_NONLIVING))
1808                                         resist_stun += 66;
1809
1810                                 if (p_ptr->special_defense & KAMAE_BYAKKO)
1811                                         max_times = (p_ptr->lev < 3 ? 1 : p_ptr->lev / 3);
1812                                 else if (p_ptr->special_defense & KAMAE_SUZAKU)
1813                                         max_times = 1;
1814                                 else if (p_ptr->special_defense & KAMAE_GENBU)
1815                                         max_times = 1;
1816                                 else
1817                                         max_times = (p_ptr->lev < 7 ? 1 : p_ptr->lev / 7);
1818                                 /* Attempt 'times' */
1819                                 for (times = 0; times < max_times; times++)
1820                                 {
1821                                         do
1822                                         {
1823                                                 ma_ptr = &ma_blows[randint0(MAX_MA)];
1824                                                 if ((p_ptr->pclass == CLASS_FORCETRAINER) && (ma_ptr->min_level > 1)) min_level = ma_ptr->min_level + 3;
1825                                                 else min_level = ma_ptr->min_level;
1826                                         }
1827                                         while ((min_level > p_ptr->lev) ||
1828                                                (randint1(p_ptr->lev) < ma_ptr->chance));
1829
1830                                         /* keep the highest level attack available we found */
1831                                         if ((ma_ptr->min_level > old_ptr->min_level) &&
1832                                             !p_ptr->stun && !p_ptr->confused)
1833                                         {
1834                                                 old_ptr = ma_ptr;
1835
1836                                                 if (p_ptr->wizard && cheat_xtra)
1837                                                 {
1838                                                         msg_print(_("攻撃を再選択しました。", "Attack re-selected."));
1839                                                 }
1840                                         }
1841                                         else
1842                                         {
1843                                                 ma_ptr = old_ptr;
1844                                         }
1845                                 }
1846
1847                                 if (p_ptr->pclass == CLASS_FORCETRAINER) min_level = MAX(1, ma_ptr->min_level - 3);
1848                                 else min_level = ma_ptr->min_level;
1849                                 k = damroll(ma_ptr->dd + p_ptr->to_dd[hand], ma_ptr->ds + p_ptr->to_ds[hand]);
1850                                 if (p_ptr->special_attack & ATTACK_SUIKEN) k *= 2;
1851
1852                                 if (ma_ptr->effect == MA_KNEE)
1853                                 {
1854                                         if (r_ptr->flags1 & RF1_MALE)
1855                                         {
1856                                                 msg_format(_("%sに金的膝蹴りをくらわした!", "You hit %s in the groin with your knee!"), m_name);
1857                                                 sound(SOUND_PAIN);
1858                                                 special_effect = MA_KNEE;
1859                                         }
1860                                         else
1861                                                 msg_format(ma_ptr->desc, m_name);
1862                                 }
1863
1864                                 else if (ma_ptr->effect == MA_SLOW)
1865                                 {
1866                                         if (!((r_ptr->flags1 & RF1_NEVER_MOVE) ||
1867                                             my_strchr("~#{}.UjmeEv$,DdsbBFIJQSXclnw!=?", r_ptr->d_char)))
1868                                         {
1869                                                 msg_format(_("%sの足首に関節蹴りをくらわした!", "You kick %s in the ankle."), m_name);
1870                                                 special_effect = MA_SLOW;
1871                                         }
1872                                         else msg_format(ma_ptr->desc, m_name);
1873                                 }
1874                                 else
1875                                 {
1876                                         if (ma_ptr->effect)
1877                                         {
1878                                                 stun_effect = (ma_ptr->effect / 2) + randint1(ma_ptr->effect / 2);
1879                                         }
1880
1881                                         msg_format(ma_ptr->desc, m_name);
1882                                 }
1883
1884                                 if (p_ptr->special_defense & KAMAE_SUZAKU) weight = 4;
1885                                 if ((p_ptr->pclass == CLASS_FORCETRAINER) && (p_ptr->magic_num1[0]))
1886                                 {
1887                                         weight += (p_ptr->magic_num1[0]/30);
1888                                         if (weight > 20) weight = 20;
1889                                 }
1890
1891                                 k = critical_norm(p_ptr->lev * weight, min_level, k, p_ptr->to_h[0], 0);
1892
1893                                 if ((special_effect == MA_KNEE) && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
1894                                 {
1895                                         msg_format(_("%^sは苦痛にうめいている!", "%^s moans in agony!"), m_name);
1896                                         stun_effect = 7 + randint1(13);
1897                                         resist_stun /= 3;
1898                                 }
1899
1900                                 else if ((special_effect == MA_SLOW) && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
1901                                 {
1902                                         if (!(r_ptr->flags1 & RF1_UNIQUE) &&
1903                                             (randint1(p_ptr->lev) > r_ptr->level) &&
1904                                             m_ptr->mspeed > 60)
1905                                         {
1906                                                 msg_format(_("%^sは足をひきずり始めた。", "%^s starts limping slower."), m_name);
1907                                                 m_ptr->mspeed -= 10;
1908                                         }
1909                                 }
1910
1911                                 if (stun_effect && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
1912                                 {
1913                                         if (p_ptr->lev > randint1(r_ptr->level + resist_stun + 10))
1914                                         {
1915                                                 if (set_monster_stunned(c_ptr->m_idx, stun_effect + MON_STUNNED(m_ptr)))
1916                                                 {
1917                                                         msg_format(_("%^sはフラフラになった。", "%^s is stunned."), m_name);
1918                                                 }
1919                                                 else
1920                                                 {
1921                                                         msg_format(_("%^sはさらにフラフラになった。", "%^s is more stunned."), m_name);
1922                                                 }
1923                                         }
1924                                 }
1925                         }
1926
1927                         /* Handle normal weapon */
1928                         else if (o_ptr->k_idx)
1929                         {
1930                                 k = damroll(o_ptr->dd + p_ptr->to_dd[hand], o_ptr->ds + p_ptr->to_ds[hand]);
1931                                 k = tot_dam_aux(o_ptr, k, m_ptr, mode, FALSE);
1932
1933                                 if (backstab)
1934                                 {
1935                                         k *= (3 + (p_ptr->lev / 20));
1936                                 }
1937                                 else if (fuiuchi)
1938                                 {
1939                                         k = k*(5+(p_ptr->lev*2/25))/2;
1940                                 }
1941                                 else if (stab_fleeing)
1942                                 {
1943                                         k = (3 * k) / 2;
1944                                 }
1945
1946                                 if ((p_ptr->impact[hand] && ((k > 50) || one_in_(7))) ||
1947                                          (chaos_effect == 2) || (mode == HISSATSU_QUAKE))
1948                                 {
1949                                         do_quake = TRUE;
1950                                 }
1951
1952                                 if ((!(o_ptr->tval == TV_SWORD) || !(o_ptr->sval == SV_DOKUBARI)) && !(mode == HISSATSU_KYUSHO))
1953                                         k = critical_norm(o_ptr->weight, o_ptr->to_h, k, p_ptr->to_h[hand], mode);
1954
1955                                 drain_result = k;
1956
1957                                 if (vorpal_cut)
1958                                 {
1959                                         int mult = 2;
1960
1961                                         if ((o_ptr->name1 == ART_CHAINSWORD) && !one_in_(2))
1962                                         {
1963                                                 char chainsword_noise[1024];
1964                                                 if (!get_rnd_line(_("chainswd_j.txt", "chainswd.txt"), 0, chainsword_noise))
1965                                                 {
1966                                                         msg_print(chainsword_noise);
1967                                                 }
1968                                         }
1969
1970                                         if (o_ptr->name1 == ART_VORPAL_BLADE)
1971                                         {
1972                                                 msg_print(_("目にも止まらぬヴォーパルブレード、手錬の早業!", "Your Vorpal Blade goes snicker-snack!"));
1973                                         }
1974                                         else
1975                                         {
1976                                                 msg_format(_("%sをグッサリ切り裂いた!", "Your weapon cuts deep into %s!"), m_name);
1977                                         }
1978
1979                                         /* Try to increase the damage */
1980                                         while (one_in_(vorpal_chance))
1981                                         {
1982                                                 mult++;
1983                                         }
1984
1985                                         k *= mult;
1986
1987                                         /* Ouch! */
1988                                         if (((r_ptr->flagsr & RFR_RES_ALL) ? k/100 : k) > m_ptr->hp)
1989                                         {
1990                                                 msg_format(_("%sを真っ二つにした!", "You cut %s in half!"), m_name);
1991                                         }
1992                                         else
1993                                         {
1994                                                 switch (mult)
1995                                                 {
1996                                                 case 2: msg_format(_("%sを斬った!", "You gouge %s!"), m_name); break;
1997                                                 case 3: msg_format(_("%sをぶった斬った!", "You maim %s!"), m_name); break;
1998                                                 case 4: msg_format(_("%sをメッタ斬りにした!", "You carve %s!"), m_name); break;
1999                                                 case 5: msg_format(_("%sをメッタメタに斬った!", "You cleave %s!"), m_name); break;
2000                                                 case 6: msg_format(_("%sを刺身にした!", "You smite %s!"), m_name); break;
2001                                                 case 7: msg_format(_("%sを斬って斬って斬りまくった!", "You eviscerate %s!"), m_name); break;
2002                                                 default: msg_format(_("%sを細切れにした!", "You shred %s!"), m_name); break;
2003                                                 }
2004                                         }
2005                                         drain_result = drain_result * 3 / 2;
2006                                 }
2007
2008                                 k += o_ptr->to_d;
2009                                 drain_result += o_ptr->to_d;
2010                         }
2011
2012                         /* Apply the player damage bonuses */
2013                         k += p_ptr->to_d[hand];
2014                         drain_result += p_ptr->to_d[hand];
2015
2016                         if ((mode == HISSATSU_SUTEMI) || (mode == HISSATSU_3DAN)) k *= 2;
2017                         if ((mode == HISSATSU_SEKIRYUKA) && !monster_living(r_ptr)) k = 0;
2018                         if ((mode == HISSATSU_SEKIRYUKA) && !p_ptr->cut) k /= 2;
2019
2020                         /* No negative damage */
2021                         if (k < 0) k = 0;
2022
2023                         if ((mode == HISSATSU_ZANMA) && !(!monster_living(r_ptr) && (r_ptr->flags3 & RF3_EVIL)))
2024                         {
2025                                 k = 0;
2026                         }
2027
2028                         if (zantetsu_mukou)
2029                         {
2030                                 msg_print(_("こんな軟らかいものは切れん!", "You cannot cut such a elastic thing!"));
2031                                 k = 0;
2032                         }
2033
2034                         if (e_j_mukou)
2035                         {
2036                                 msg_print(_("蜘蛛は苦手だ!", "Spiders are difficult for you to deal with!"));
2037                                 k /= 2;
2038                         }
2039
2040                         if (mode == HISSATSU_MINEUCHI)
2041                         {
2042                                 int tmp = (10 + randint1(15) + p_ptr->lev / 5);
2043
2044                                 k = 0;
2045                                 anger_monster(m_ptr);
2046
2047                                 if (!(r_ptr->flags3 & (RF3_NO_STUN)))
2048                                 {
2049                                         /* Get stunned */
2050                                         if (MON_STUNNED(m_ptr))
2051                                         {
2052                                                 msg_format(_("%sはひどくもうろうとした。", "%s is more dazed."), m_name);
2053                                                 tmp /= 2;
2054                                         }
2055                                         else
2056                                         {
2057                                                 msg_format(_("%s はもうろうとした。", "%s is dazed."), m_name);
2058                                         }
2059
2060                                         /* Apply stun */
2061                                         (void)set_monster_stunned(c_ptr->m_idx, MON_STUNNED(m_ptr) + tmp);
2062                                 }
2063                                 else
2064                                 {
2065                                         msg_format(_("%s には効果がなかった。", "%s is not effected."), m_name);
2066                                 }
2067                         }
2068
2069                         /* Modify the damage */
2070                         k = mon_damage_mod(m_ptr, k, (bool)(((o_ptr->tval == TV_POLEARM) && (o_ptr->sval == SV_DEATH_SCYTHE)) || ((p_ptr->pclass == CLASS_BERSERKER) && one_in_(2))));
2071                         if (((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) || (mode == HISSATSU_KYUSHO))
2072                         {
2073                                 if ((randint1(randint1(r_ptr->level/7)+5) == 1) && !(r_ptr->flags1 & RF1_UNIQUE) && !(r_ptr->flags7 & RF7_UNIQUE2))
2074                                 {
2075                                         k = m_ptr->hp + 1;
2076                                         msg_format(_("%sの急所を突き刺した!", "You hit %s on a fatal spot!"), m_name);
2077                                 }
2078                                 else k = 1;
2079                         }
2080                         else if ((p_ptr->pclass == CLASS_NINJA) && buki_motteruka(INVEN_RARM + hand) && !p_ptr->icky_wield[hand] && ((p_ptr->cur_lite <= 0) || one_in_(7)))
2081                         {
2082                                 int maxhp = maxroll(r_ptr->hdice, r_ptr->hside);
2083                                 if (one_in_(backstab ? 13 : (stab_fleeing || fuiuchi) ? 15 : 27))
2084                                 {
2085                                         k *= 5;
2086                                         drain_result *= 2;
2087                                         msg_format(_("刃が%sに深々と突き刺さった!", "You critically injured %s!"), m_name);
2088                                 }
2089                                 else if (((m_ptr->hp < maxhp/2) && one_in_((p_ptr->num_blow[0]+p_ptr->num_blow[1]+1)*10)) || ((one_in_(666) || ((backstab || fuiuchi) && one_in_(11))) && !(r_ptr->flags1 & RF1_UNIQUE) && !(r_ptr->flags7 & RF7_UNIQUE2)))
2090                                 {
2091                                         if ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_UNIQUE2) || (m_ptr->hp >= maxhp/2))
2092                                         {
2093                                                 k = MAX(k*5, m_ptr->hp/2);
2094                                                 drain_result *= 2;
2095                                                 msg_format(_("%sに致命傷を負わせた!", "You fatally injured %s!"), m_name);
2096                                         }
2097                                         else
2098                                         {
2099                                                 k = m_ptr->hp + 1;
2100                                                 msg_format(_("刃が%sの急所を貫いた!", "You hit %s on a fatal spot!"), m_name);
2101                                         }
2102                                 }
2103                         }
2104
2105                         msg_format_wizard(CHEAT_MONSTER,
2106                                 _("%dのダメージを与えた。(残りHP %d/%d(%d))", "You do %d damage. (left HP %d/%d(%d))"), k,
2107                                 m_ptr->hp - k, m_ptr->maxhp, m_ptr->max_maxhp);
2108
2109                         if (k <= 0) can_drain = FALSE;
2110
2111                         if (drain_result > m_ptr->hp)
2112                                 drain_result = m_ptr->hp;
2113
2114                         /* Damage, check for fear and death */
2115                         if (mon_take_hit(c_ptr->m_idx, k, fear, NULL))
2116                         {
2117                                 *mdeath = TRUE;
2118                                 if ((p_ptr->pclass == CLASS_BERSERKER) && p_ptr->energy_use)
2119                                 {
2120                                         if (p_ptr->migite && p_ptr->hidarite)
2121                                         {
2122                                                 if (hand) p_ptr->energy_use = p_ptr->energy_use*3/5+p_ptr->energy_use*num*2/(p_ptr->num_blow[hand]*5);
2123                                                 else p_ptr->energy_use = p_ptr->energy_use*num*3/(p_ptr->num_blow[hand]*5);
2124                                         }
2125                                         else
2126                                         {
2127                                                 p_ptr->energy_use = p_ptr->energy_use*num/p_ptr->num_blow[hand];
2128                                         }
2129                                 }
2130                                 if ((o_ptr->name1 == ART_ZANTETSU) && is_lowlevel)
2131                                         msg_print(_("またつまらぬものを斬ってしまった...", "Sigh... Another trifling thing I've cut...."));
2132                                 break;
2133                         }
2134
2135                         /* Anger the monster */
2136                         if (k > 0) anger_monster(m_ptr);
2137
2138                         touch_zap_player(m_ptr);
2139
2140                         /* Are we draining it?  A little note: If the monster is
2141                         dead, the drain does not work... */
2142
2143                         if (can_drain && (drain_result > 0))
2144                         {
2145                                 if (o_ptr->name1 == ART_MURAMASA)
2146                                 {
2147                                         if (is_human)
2148                                         {
2149                                                 int to_h = o_ptr->to_h;
2150                                                 int to_d = o_ptr->to_d;
2151                                                 int i, flag;
2152
2153                                                 flag = 1;
2154                                                 for (i = 0; i < to_h + 3; i++) if (one_in_(4)) flag = 0;
2155                                                 if (flag) to_h++;
2156
2157                                                 flag = 1;
2158                                                 for (i = 0; i < to_d + 3; i++) if (one_in_(4)) flag = 0;
2159                                                 if (flag) to_d++;
2160
2161                                                 if (o_ptr->to_h != to_h || o_ptr->to_d != to_d)
2162                                                 {
2163                                                         msg_print(_("妖刀は血を吸って強くなった!", "Muramasa sucked blood, and became more powerful!"));
2164                                                         o_ptr->to_h = to_h;
2165                                                         o_ptr->to_d = to_d;
2166                                                 }
2167                                         }
2168                                 }
2169                                 else
2170                                 {
2171                                         if (drain_result > 5) /* Did we really hurt it? */
2172                                         {
2173                                                 drain_heal = damroll(2, drain_result / 6);
2174
2175                                                 /* Hex */
2176                                                 if (hex_spelling(HEX_VAMP_BLADE)) drain_heal *= 2;
2177
2178                                                 if (cheat_xtra)
2179                                                 {
2180                                                         msg_format(_("Draining left: %d", "Draining left: %d"), drain_left);
2181                                                 }
2182
2183                                                 if (drain_left)
2184                                                 {
2185                                                         if (drain_heal < drain_left)
2186                                                         {
2187                                                                 drain_left -= drain_heal;
2188                                                         }
2189                                                         else
2190                                                         {
2191                                                                 drain_heal = drain_left;
2192                                                                 drain_left = 0;
2193                                                         }
2194
2195                                                         if (drain_msg)
2196                                                         {
2197                                                                 msg_format(_("刃が%sから生命力を吸い取った!", "Your weapon drains life from %s!"), m_name);
2198                                                                 drain_msg = FALSE;
2199                                                         }
2200
2201                                                         drain_heal = (drain_heal * mutant_regenerate_mod) / 100;
2202
2203                                                         hp_player(drain_heal);
2204                                                         /* We get to keep some of it! */
2205                                                 }
2206                                         }
2207                                 }
2208                                 m_ptr->maxhp -= (k+7)/8;
2209                                 if (m_ptr->hp > m_ptr->maxhp) m_ptr->hp = m_ptr->maxhp;
2210                                 if (m_ptr->maxhp < 1) m_ptr->maxhp = 1;
2211                                 weak = TRUE;
2212                         }
2213                         can_drain = FALSE;
2214                         drain_result = 0;
2215
2216                         /* Confusion attack */
2217                         if ((p_ptr->special_attack & ATTACK_CONFUSE) || (chaos_effect == 3) || (mode == HISSATSU_CONF) || hex_spelling(HEX_CONFUSION))
2218                         {
2219                                 /* Cancel glowing hands */
2220                                 if (p_ptr->special_attack & ATTACK_CONFUSE)
2221                                 {
2222                                         p_ptr->special_attack &= ~(ATTACK_CONFUSE);
2223                                         msg_print(_("手の輝きがなくなった。", "Your hands stop glowing."));
2224                                         p_ptr->redraw |= (PR_STATUS);
2225
2226                                 }
2227
2228                                 /* Confuse the monster */
2229                                 if (r_ptr->flags3 & RF3_NO_CONF)
2230                                 {
2231                                         if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags3 |= RF3_NO_CONF;
2232                                         msg_format(_("%^sには効果がなかった。", "%^s is unaffected."), m_name);
2233
2234                                 }
2235                                 else if (randint0(100) < r_ptr->level)
2236                                 {
2237                                         msg_format(_("%^sには効果がなかった。", "%^s is unaffected."), m_name);
2238                                 }
2239                                 else
2240                                 {
2241                                         msg_format(_("%^sは混乱したようだ。", "%^s appears confused."), m_name);
2242                                         (void)set_monster_confused(c_ptr->m_idx, MON_CONFUSED(m_ptr) + 10 + randint0(p_ptr->lev) / 5);
2243                                 }
2244                         }
2245
2246                         else if (chaos_effect == 4)
2247                         {
2248                                 bool resists_tele = FALSE;
2249
2250                                 if (r_ptr->flagsr & RFR_RES_TELE)
2251                                 {
2252                                         if (r_ptr->flags1 & RF1_UNIQUE)
2253                                         {
2254                                                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flagsr |= RFR_RES_TELE;
2255                                                 msg_format(_("%^sには効果がなかった。", "%^s is unaffected!"), m_name);
2256                                                 resists_tele = TRUE;
2257                                         }
2258                                         else if (r_ptr->level > randint1(100))
2259                                         {
2260                                                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flagsr |= RFR_RES_TELE;
2261                                                 msg_format(_("%^sは抵抗力を持っている!", "%^s resists!"), m_name);
2262                                                 resists_tele = TRUE;
2263                                         }
2264                                 }
2265
2266                                 if (!resists_tele)
2267                                 {
2268                                         msg_format(_("%^sは消えた!", "%^s disappears!"), m_name);
2269                                         teleport_away(c_ptr->m_idx, 50, TELEPORT_PASSIVE);
2270                                         num = num_blow + 1; /* Can't hit it anymore! */
2271                                         *mdeath = TRUE;
2272                                 }
2273                         }
2274
2275                         else if ((chaos_effect == 5) && (randint1(90) > r_ptr->level))
2276                         {
2277                                 if (!(r_ptr->flags1 & (RF1_UNIQUE | RF1_QUESTOR)) &&
2278                                     !(r_ptr->flagsr & RFR_EFF_RES_CHAO_MASK))
2279                                 {
2280                                         if (polymorph_monster(y, x))
2281                                         {
2282                                                 msg_format(_("%^sは変化した!", "%^s changes!"), m_name);
2283                                                 *fear = FALSE;
2284                                                 weak = FALSE;
2285                                         }
2286                                         else
2287                                         {
2288                                                 msg_format(_("%^sには効果がなかった。", "%^s is unaffected."), m_name);
2289                                         }
2290
2291                                         /* Hack -- Get new monster */
2292                                         m_ptr = &m_list[c_ptr->m_idx];
2293
2294                                         /* Oops, we need a different name... */
2295                                         monster_desc(m_name, m_ptr, 0);
2296
2297                                         /* Hack -- Get new race */
2298                                         r_ptr = &r_info[m_ptr->r_idx];
2299                                 }
2300                         }
2301                         else if (o_ptr->name1 == ART_G_HAMMER)
2302                         {
2303                                 monster_type *target_ptr = &m_list[c_ptr->m_idx];
2304
2305                                 if (target_ptr->hold_o_idx)
2306                                 {
2307                                         object_type *q_ptr = &o_list[target_ptr->hold_o_idx];
2308                                         char o_name[MAX_NLEN];
2309
2310                                         object_desc(o_name, q_ptr, OD_NAME_ONLY);
2311                                         q_ptr->held_m_idx = 0;
2312                                         q_ptr->marked = OM_TOUCHED;
2313                                         target_ptr->hold_o_idx = q_ptr->next_o_idx;
2314                                         q_ptr->next_o_idx = 0;
2315                                         msg_format(_("%sを奪った。", "You snatched %s."), o_name);
2316                                         inven_carry(q_ptr);
2317                                 }
2318                         }
2319                 }
2320
2321                 /* Player misses */
2322                 else
2323                 {
2324                         backstab = FALSE; /* Clumsy! */
2325                         fuiuchi = FALSE; /* Clumsy! */
2326
2327                         if ((o_ptr->tval == TV_POLEARM) && (o_ptr->sval == SV_DEATH_SCYTHE) && one_in_(3))
2328                         {
2329                                 u32b flgs_aux[TR_FLAG_SIZE];
2330
2331                                 /* Sound */
2332                                 sound(SOUND_HIT);
2333
2334                                 /* Message */
2335                                 msg_format(_("ミス! %sにかわされた。", "You miss %s."), m_name);
2336                                 /* Message */
2337                                 msg_print(_("振り回した大鎌が自分自身に返ってきた!", "Your scythe returns to you!"));
2338
2339                                 /* Extract the flags */
2340                                 object_flags(o_ptr, flgs_aux);
2341
2342                                 k = damroll(o_ptr->dd + p_ptr->to_dd[hand], o_ptr->ds + p_ptr->to_ds[hand]);
2343                                 {
2344                                         int mult;
2345                                         switch (p_ptr->mimic_form)
2346                                         {
2347                                         case MIMIC_NONE:
2348                                                 switch (p_ptr->prace)
2349                                                 {
2350                                                         case RACE_YEEK:
2351                                                         case RACE_KLACKON:
2352                                                         case RACE_HUMAN:
2353                                                         case RACE_AMBERITE:
2354                                                         case RACE_DUNADAN:
2355                                                         case RACE_BARBARIAN:
2356                                                         case RACE_BEASTMAN:
2357                                                                 mult = 25;break;
2358                                                         case RACE_HALF_ORC:
2359                                                         case RACE_HALF_TROLL:
2360                                                         case RACE_HALF_OGRE:
2361                                                         case RACE_HALF_GIANT:
2362                                                         case RACE_HALF_TITAN:
2363                                                         case RACE_CYCLOPS:
2364                                                         case RACE_IMP:
2365                                                         case RACE_SKELETON:
2366                                                         case RACE_ZOMBIE:
2367                                                         case RACE_VAMPIRE:
2368                                                         case RACE_SPECTRE:
2369                                                         case RACE_DEMON:
2370                                                         case RACE_DRACONIAN:
2371                                                                 mult = 30;break;
2372                                                         default:
2373                                                                 mult = 10;break;
2374                                                 }
2375                                                 break;
2376                                         case MIMIC_DEMON:
2377                                         case MIMIC_DEMON_LORD:
2378                                         case MIMIC_VAMPIRE:
2379                                                 mult = 30;break;
2380                                         default:
2381                                                 mult = 10;break;
2382                                         }
2383
2384                                         if (p_ptr->align < 0 && mult < 20)
2385                                                 mult = 20;
2386                                         if (!(p_ptr->resist_acid || IS_OPPOSE_ACID() || p_ptr->immune_acid) && (mult < 25))
2387                                                 mult = 25;
2388                                         if (!(p_ptr->resist_elec || IS_OPPOSE_ELEC() || p_ptr->immune_elec) && (mult < 25))
2389                                                 mult = 25;
2390                                         if (!(p_ptr->resist_fire || IS_OPPOSE_FIRE() || p_ptr->immune_fire) && (mult < 25))
2391                                                 mult = 25;
2392                                         if (!(p_ptr->resist_cold || IS_OPPOSE_COLD() || p_ptr->immune_cold) && (mult < 25))
2393                                                 mult = 25;
2394                                         if (!(p_ptr->resist_pois || IS_OPPOSE_POIS()) && (mult < 25))
2395                                                 mult = 25;
2396
2397                                         if ((p_ptr->pclass != CLASS_SAMURAI) && (have_flag(flgs_aux, TR_FORCE_WEAPON)) && (p_ptr->csp > (p_ptr->msp / 30)))
2398                                         {
2399                                                 p_ptr->csp -= (1+(p_ptr->msp / 30));
2400                                                 p_ptr->redraw |= (PR_MANA);
2401                                                 mult = mult * 3 / 2 + 20;
2402                                         }
2403                                         k *= mult;
2404                                         k /= 10;
2405                                 }
2406
2407                                 k = critical_norm(o_ptr->weight, o_ptr->to_h, k, p_ptr->to_h[hand], mode);
2408                                 if (one_in_(6))
2409                                 {
2410                                         int mult = 2;
2411                                         msg_format(_("グッサリ切り裂かれた!", "Your weapon cuts deep into yourself!"));
2412                                         /* Try to increase the damage */
2413                                         while (one_in_(4))
2414                                         {
2415                                                 mult++;
2416                                         }
2417
2418                                         k *= mult;
2419                                 }
2420                                 k += (p_ptr->to_d[hand] + o_ptr->to_d);
2421                                 if (k < 0) k = 0;
2422
2423                                 take_hit(DAMAGE_FORCE, k, _("死の大鎌", "Death scythe"), -1);
2424                                 redraw_stuff();
2425                         }
2426                         else
2427                         {
2428                                 /* Sound */
2429                                 sound(SOUND_MISS);
2430
2431                                 /* Message */
2432                                 msg_format(_("ミス! %sにかわされた。", "You miss %s."), m_name);
2433                         }
2434                 }
2435                 backstab = FALSE;
2436                 fuiuchi = FALSE;
2437         }
2438
2439
2440         if (weak && !(*mdeath))
2441         {
2442                 msg_format(_("%sは弱くなったようだ。", "%^s seems weakened."), m_name);
2443         }
2444         if (drain_left != MAX_VAMPIRIC_DRAIN)
2445         {
2446                 if (one_in_(4))
2447                 {
2448                         chg_virtue(V_UNLIFE, 1);
2449                 }
2450         }
2451         /* Mega-Hack -- apply earthquake brand */
2452         if (do_quake)
2453         {
2454                 earthquake(p_ptr->y, p_ptr->x, 10);
2455                 if (!cave[y][x].m_idx) *mdeath = TRUE;
2456         }
2457 }
2458
2459 /*!
2460  * @brief プレイヤーの打撃処理メインルーチン
2461  * @param y 攻撃目標のY座標
2462  * @param x 攻撃目標のX座標
2463  * @param mode 発動中の剣術ID
2464  * @return 実際に攻撃処理が行われた場合TRUEを返す。
2465  * @details
2466  * If no "weapon" is available, then "punch" the monster one time.
2467  */
2468 bool py_attack(int y, int x, int mode)
2469 {
2470         bool            fear = FALSE;
2471         bool            mdeath = FALSE;
2472         bool            stormbringer = FALSE;
2473
2474         cave_type       *c_ptr = &cave[y][x];
2475         monster_type    *m_ptr = &m_list[c_ptr->m_idx];
2476         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
2477         char            m_name[80];
2478
2479         /* Disturb the player */
2480         disturb(0, 1);
2481
2482         p_ptr->energy_use = 100;
2483
2484         if (!p_ptr->migite && !p_ptr->hidarite &&
2485             !(p_ptr->muta2 & (MUT2_HORNS | MUT2_BEAK | MUT2_SCOR_TAIL | MUT2_TRUNK | MUT2_TENTACLES)))
2486         {
2487                 msg_format(_("%s攻撃できない。", "You cannot do attacking."), 
2488                                         (empty_hands(FALSE) == EMPTY_HAND_NONE) ? _("両手がふさがって", "") : "");
2489                 return FALSE;
2490         }
2491
2492         /* Extract monster name (or "it") */
2493         monster_desc(m_name, m_ptr, 0);
2494
2495         if (m_ptr->ml)
2496         {
2497                 /* Auto-Recall if possible and visible */
2498                 if (!p_ptr->image) monster_race_track(m_ptr->ap_r_idx);
2499
2500                 /* Track a new monster */
2501                 health_track(c_ptr->m_idx);
2502         }
2503
2504         if ((r_ptr->flags1 & RF1_FEMALE) &&
2505             !(p_ptr->stun || p_ptr->confused || p_ptr->image || !m_ptr->ml))
2506         {
2507                 if ((inventory[INVEN_RARM].name1 == ART_ZANTETSU) || (inventory[INVEN_LARM].name1 == ART_ZANTETSU))
2508                 {
2509                         msg_print(_("拙者、おなごは斬れぬ!", "I can not attack women!"));
2510                         return FALSE;
2511                 }
2512         }
2513
2514         if (d_info[dungeon_type].flags1 & DF1_NO_MELEE)
2515         {
2516                 msg_print(_("なぜか攻撃することができない。", "Something prevent you from attacking."));
2517                 return FALSE;
2518         }
2519
2520         /* Stop if friendly */
2521         if (!is_hostile(m_ptr) &&
2522             !(p_ptr->stun || p_ptr->confused || p_ptr->image ||
2523             p_ptr->shero || !m_ptr->ml))
2524         {
2525                 if (inventory[INVEN_RARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
2526                 if (inventory[INVEN_LARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
2527                 if (stormbringer)
2528                 {
2529                         msg_format(_("黒い刃は強欲に%sを攻撃した!", "Your black blade greedily attacks %s!"), m_name);
2530                         chg_virtue(V_INDIVIDUALISM, 1);
2531                         chg_virtue(V_HONOUR, -1);
2532                         chg_virtue(V_JUSTICE, -1);
2533                         chg_virtue(V_COMPASSION, -1);
2534                 }
2535                 else if (p_ptr->pclass != CLASS_BERSERKER)
2536                 {
2537                         if (get_check(_("本当に攻撃しますか?", "Really hit it? ")))
2538                         {
2539                                 chg_virtue(V_INDIVIDUALISM, 1);
2540                                 chg_virtue(V_HONOUR, -1);
2541                                 chg_virtue(V_JUSTICE, -1);
2542                                 chg_virtue(V_COMPASSION, -1);
2543                         }
2544                         else
2545                         {
2546                                 msg_format(_("%sを攻撃するのを止めた。", "You stop to avoid hitting %s."), m_name);
2547                                 return FALSE;
2548                         }
2549                 }
2550         }
2551
2552
2553         /* Handle player fear */
2554         if (p_ptr->afraid)
2555         {
2556                 /* Message */
2557                 if (m_ptr->ml)
2558                         msg_format(_("恐くて%sを攻撃できない!", "You are too afraid to attack %s!"), m_name);
2559                 else
2560                         msg_format (_("そっちには何か恐いものがいる!", "There is something scary in your way!"));
2561
2562                 /* Disturb the monster */
2563                 (void)set_monster_csleep(c_ptr->m_idx, 0);
2564
2565                 /* Done */
2566                 return FALSE;
2567         }
2568
2569         if (MON_CSLEEP(m_ptr)) /* It is not honorable etc to attack helpless victims */
2570         {
2571                 if (!(r_ptr->flags3 & RF3_EVIL) || one_in_(5)) chg_virtue(V_COMPASSION, -1);
2572                 if (!(r_ptr->flags3 & RF3_EVIL) || one_in_(5)) chg_virtue(V_HONOUR, -1);
2573         }
2574
2575         if (p_ptr->migite && p_ptr->hidarite)
2576         {
2577                 if ((p_ptr->skill_exp[GINOU_NITOURYU] < s_info[p_ptr->pclass].s_max[GINOU_NITOURYU]) && ((p_ptr->skill_exp[GINOU_NITOURYU] - 1000) / 200 < r_ptr->level))
2578                 {
2579                         if (p_ptr->skill_exp[GINOU_NITOURYU] < WEAPON_EXP_BEGINNER)
2580                                 p_ptr->skill_exp[GINOU_NITOURYU] += 80;
2581                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < WEAPON_EXP_SKILLED)
2582                                 p_ptr->skill_exp[GINOU_NITOURYU] += 4;
2583                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < WEAPON_EXP_EXPERT)
2584                                 p_ptr->skill_exp[GINOU_NITOURYU] += 1;
2585                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < WEAPON_EXP_MASTER)
2586                                 if (one_in_(3)) p_ptr->skill_exp[GINOU_NITOURYU] += 1;
2587                         p_ptr->update |= (PU_BONUS);
2588                 }
2589         }
2590
2591         /* Gain riding experience */
2592         if (p_ptr->riding)
2593         {
2594                 int cur = p_ptr->skill_exp[GINOU_RIDING];
2595                 int max = s_info[p_ptr->pclass].s_max[GINOU_RIDING];
2596
2597                 if (cur < max)
2598                 {
2599                         int ridinglevel = r_info[m_list[p_ptr->riding].r_idx].level;
2600                         int targetlevel = r_ptr->level;
2601                         int inc = 0;
2602
2603                         if ((cur / 200 - 5) < targetlevel)
2604                                 inc += 1;
2605
2606                         /* Extra experience */
2607                         if ((cur / 100) < ridinglevel)
2608                         {
2609                                 if ((cur / 100 + 15) < ridinglevel)
2610                                         inc += 1 + (ridinglevel - (cur / 100 + 15));
2611                                 else
2612                                         inc += 1;
2613                         }
2614
2615                         p_ptr->skill_exp[GINOU_RIDING] = MIN(max, cur + inc);
2616
2617                         p_ptr->update |= (PU_BONUS);
2618                 }
2619         }
2620
2621         riding_t_m_idx = c_ptr->m_idx;
2622         if (p_ptr->migite) py_attack_aux(y, x, &fear, &mdeath, 0, mode);
2623         if (p_ptr->hidarite && !mdeath) py_attack_aux(y, x, &fear, &mdeath, 1, mode);
2624
2625         /* Mutations which yield extra 'natural' attacks */
2626         if (!mdeath)
2627         {
2628                 if ((p_ptr->muta2 & MUT2_HORNS) && !mdeath)
2629                         natural_attack(c_ptr->m_idx, MUT2_HORNS, &fear, &mdeath);
2630                 if ((p_ptr->muta2 & MUT2_BEAK) && !mdeath)
2631                         natural_attack(c_ptr->m_idx, MUT2_BEAK, &fear, &mdeath);
2632                 if ((p_ptr->muta2 & MUT2_SCOR_TAIL) && !mdeath)
2633                         natural_attack(c_ptr->m_idx, MUT2_SCOR_TAIL, &fear, &mdeath);
2634                 if ((p_ptr->muta2 & MUT2_TRUNK) && !mdeath)
2635                         natural_attack(c_ptr->m_idx, MUT2_TRUNK, &fear, &mdeath);
2636                 if ((p_ptr->muta2 & MUT2_TENTACLES) && !mdeath)
2637                         natural_attack(c_ptr->m_idx, MUT2_TENTACLES, &fear, &mdeath);
2638         }
2639
2640         /* Hack -- delay fear messages */
2641         if (fear && m_ptr->ml && !mdeath)
2642         {
2643                 /* Sound */
2644                 sound(SOUND_FLEE);
2645
2646                 /* Message */
2647                 msg_format(_("%^sは恐怖して逃げ出した!", "%^s flees in terror!"), m_name);
2648         }
2649
2650         if ((p_ptr->special_defense & KATA_IAI) && ((mode != HISSATSU_IAI) || mdeath))
2651         {
2652                 set_action(ACTION_NONE);
2653         }
2654
2655         return mdeath;
2656 }
2657
2658
2659 /*!
2660  * @brief パターンによる移動制限処理
2661  * @param c_y プレイヤーの移動元Y座標
2662  * @param c_x プレイヤーの移動元X座標
2663  * @param n_y プレイヤーの移動先Y座標
2664  * @param n_x プレイヤーの移動先X座標
2665  * @return 移動処理が可能である場合(可能な場合に選択した場合)TRUEを返す。
2666  */
2667 bool pattern_seq(int c_y, int c_x, int n_y, int n_x)
2668 {
2669         feature_type *cur_f_ptr = &f_info[cave[c_y][c_x].feat];
2670         feature_type *new_f_ptr = &f_info[cave[n_y][n_x].feat];
2671         bool is_pattern_tile_cur = have_flag(cur_f_ptr->flags, FF_PATTERN);
2672         bool is_pattern_tile_new = have_flag(new_f_ptr->flags, FF_PATTERN);
2673         int pattern_type_cur, pattern_type_new;
2674
2675         if (!is_pattern_tile_cur && !is_pattern_tile_new) return TRUE;
2676
2677         pattern_type_cur = is_pattern_tile_cur ? cur_f_ptr->subtype : NOT_PATTERN_TILE;
2678         pattern_type_new = is_pattern_tile_new ? new_f_ptr->subtype : NOT_PATTERN_TILE;
2679
2680         if (pattern_type_new == PATTERN_TILE_START)
2681         {
2682                 if (!is_pattern_tile_cur && !p_ptr->confused && !p_ptr->stun && !p_ptr->image)
2683                 {
2684                         if (get_check(_("パターンの上を歩き始めると、全てを歩かなければなりません。いいですか?", 
2685                                                         "If you start walking the Pattern, you must walk the whole way. Ok? ")))
2686                                 return TRUE;
2687                         else
2688                                 return FALSE;
2689                 }
2690                 else
2691                         return TRUE;
2692         }
2693         else if ((pattern_type_new == PATTERN_TILE_OLD) ||
2694                  (pattern_type_new == PATTERN_TILE_END) ||
2695                  (pattern_type_new == PATTERN_TILE_WRECKED))
2696         {
2697                 if (is_pattern_tile_cur)
2698                 {
2699                         return TRUE;
2700                 }
2701                 else
2702                 {
2703                         msg_print(_("パターンの上を歩くにはスタート地点から歩き始めなくてはなりません。",
2704                                                 "You must start walking the Pattern from the startpoint."));
2705
2706                         return FALSE;
2707                 }
2708         }
2709         else if ((pattern_type_new == PATTERN_TILE_TELEPORT) ||
2710                  (pattern_type_cur == PATTERN_TILE_TELEPORT))
2711         {
2712                 return TRUE;
2713         }
2714         else if (pattern_type_cur == PATTERN_TILE_START)
2715         {
2716                 if (is_pattern_tile_new)
2717                         return TRUE;
2718                 else
2719                 {
2720                         msg_print(_("パターンの上は正しい順序で歩かねばなりません。", "You must walk the Pattern in correct order."));
2721                         return FALSE;
2722                 }
2723         }
2724         else if ((pattern_type_cur == PATTERN_TILE_OLD) ||
2725                  (pattern_type_cur == PATTERN_TILE_END) ||
2726                  (pattern_type_cur == PATTERN_TILE_WRECKED))
2727         {
2728                 if (!is_pattern_tile_new)
2729                 {
2730                         msg_print(_("パターンを踏み外してはいけません。", "You may not step off from the Pattern."));
2731                         return FALSE;
2732                 }
2733                 else
2734                 {
2735                         return TRUE;
2736                 }
2737         }
2738         else
2739         {
2740                 if (!is_pattern_tile_cur)
2741                 {
2742                         msg_print(_("パターンの上を歩くにはスタート地点から歩き始めなくてはなりません。",
2743                                                 "You must start walking the Pattern from the startpoint."));
2744
2745                         return FALSE;
2746                 }
2747                 else
2748                 {
2749                         byte ok_move = PATTERN_TILE_START;
2750                         switch (pattern_type_cur)
2751                         {
2752                                 case PATTERN_TILE_1:
2753                                         ok_move = PATTERN_TILE_2;
2754                                         break;
2755                                 case PATTERN_TILE_2:
2756                                         ok_move = PATTERN_TILE_3;
2757                                         break;
2758                                 case PATTERN_TILE_3:
2759                                         ok_move = PATTERN_TILE_4;
2760                                         break;
2761                                 case PATTERN_TILE_4:
2762                                         ok_move = PATTERN_TILE_1;
2763                                         break;
2764                                 default:
2765                                         if (p_ptr->wizard)
2766                                                 msg_format(_("おかしなパターン歩行、%d。", "Funny Pattern walking, %d."), pattern_type_cur);
2767
2768                                         return TRUE; /* Goof-up */
2769                         }
2770
2771                         if ((pattern_type_new == ok_move) ||
2772                             (pattern_type_new == pattern_type_cur))
2773                                 return TRUE;
2774                         else
2775                         {
2776                                 if (!is_pattern_tile_new)
2777                                         msg_print(_("パターンを踏み外してはいけません。", "You may not step off from the Pattern."));
2778                                 else
2779                                         msg_print(_("パターンの上は正しい順序で歩かねばなりません。", "You must walk the Pattern in correct order."));
2780
2781                                 return FALSE;
2782                         }
2783                 }
2784         }
2785 }
2786
2787
2788 /*!
2789  * @brief プレイヤーが地形踏破可能かを返す
2790  * @param feature 判定したい地形ID
2791  * @param mode 移動に関するオプションフラグ
2792  * @return 移動可能ならばTRUEを返す
2793  */
2794 bool player_can_enter(s16b feature, u16b mode)
2795 {
2796         feature_type *f_ptr = &f_info[feature];
2797
2798         if (p_ptr->riding) return monster_can_cross_terrain(feature, &r_info[m_list[p_ptr->riding].r_idx], mode | CEM_RIDING);
2799
2800         /* Pattern */
2801         if (have_flag(f_ptr->flags, FF_PATTERN))
2802         {
2803                 if (!(mode & CEM_P_CAN_ENTER_PATTERN)) return FALSE;
2804         }
2805
2806         /* "CAN" flags */
2807         if (have_flag(f_ptr->flags, FF_CAN_FLY) && p_ptr->levitation) return TRUE;
2808         if (have_flag(f_ptr->flags, FF_CAN_SWIM) && p_ptr->can_swim) return TRUE;
2809         if (have_flag(f_ptr->flags, FF_CAN_PASS) && p_ptr->pass_wall) return TRUE;
2810
2811         if (!have_flag(f_ptr->flags, FF_MOVE)) return FALSE;
2812
2813         return TRUE;
2814 }
2815
2816
2817 /*!
2818  * @brief 移動に伴うプレイヤーのステータス変化処理
2819  * @param ny 移動先Y座標
2820  * @param nx 移動先X座標
2821  * @param mpe_mode 移動オプションフラグ
2822  * @return プレイヤーが死亡やフロア離脱を行わず、実際に移動が可能ならばTRUEを返す。
2823  */
2824 bool move_player_effect(int ny, int nx, u32b mpe_mode)
2825 {
2826         cave_type *c_ptr = &cave[ny][nx];
2827         feature_type *f_ptr = &f_info[c_ptr->feat];
2828
2829         if (!(mpe_mode & MPE_STAYING))
2830         {
2831                 int oy = p_ptr->y;
2832                 int ox = p_ptr->x;
2833                 cave_type *oc_ptr = &cave[oy][ox];
2834                 int om_idx = oc_ptr->m_idx;
2835                 int nm_idx = c_ptr->m_idx;
2836
2837                 /* Move the player */
2838                 p_ptr->y = ny;
2839                 p_ptr->x = nx;
2840
2841                 /* Hack -- For moving monster or riding player's moving */
2842                 if (!(mpe_mode & MPE_DONT_SWAP_MON))
2843                 {
2844                         /* Swap two monsters */
2845                         c_ptr->m_idx = om_idx;
2846                         oc_ptr->m_idx = nm_idx;
2847
2848                         if (om_idx > 0) /* Monster on old spot (or p_ptr->riding) */
2849                         {
2850                                 monster_type *om_ptr = &m_list[om_idx];
2851                                 om_ptr->fy = ny;
2852                                 om_ptr->fx = nx;
2853                                 update_mon(om_idx, TRUE);
2854                         }
2855
2856                         if (nm_idx > 0) /* Monster on new spot */
2857                         {
2858                                 monster_type *nm_ptr = &m_list[nm_idx];
2859                                 nm_ptr->fy = oy;
2860                                 nm_ptr->fx = ox;
2861                                 update_mon(nm_idx, TRUE);
2862                         }
2863                 }
2864
2865                 /* Redraw old spot */
2866                 lite_spot(oy, ox);
2867
2868                 /* Redraw new spot */
2869                 lite_spot(ny, nx);
2870
2871                 /* Check for new panel (redraw map) */
2872                 verify_panel();
2873
2874                 if (mpe_mode & MPE_FORGET_FLOW)
2875                 {
2876                         forget_flow();
2877
2878                         /* Mega-Hack -- Forget the view */
2879                         p_ptr->update |= (PU_UN_VIEW);
2880
2881                         /* Redraw map */
2882                         p_ptr->redraw |= (PR_MAP);
2883                 }
2884
2885                 /* Update stuff */
2886                 p_ptr->update |= (PU_VIEW | PU_LITE | PU_FLOW | PU_MON_LITE | PU_DISTANCE);
2887
2888                 /* Window stuff */
2889                 p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
2890
2891                 /* Remove "unsafe" flag */
2892                 if ((!p_ptr->blind && !no_lite()) || !is_trap(c_ptr->feat)) c_ptr->info &= ~(CAVE_UNSAFE);
2893
2894                 /* For get everything when requested hehe I'm *NASTY* */
2895                 if (dun_level && (d_info[dungeon_type].flags1 & DF1_FORGET)) wiz_dark();
2896
2897                 /* Handle stuff */
2898                 if (mpe_mode & MPE_HANDLE_STUFF) handle_stuff();
2899
2900                 if (p_ptr->pclass == CLASS_NINJA)
2901                 {
2902                         if (c_ptr->info & (CAVE_GLOW)) set_superstealth(FALSE);
2903                         else if (p_ptr->cur_lite <= 0) set_superstealth(TRUE);
2904                 }
2905
2906                 if ((p_ptr->action == ACTION_HAYAGAKE) &&
2907                     (!have_flag(f_ptr->flags, FF_PROJECT) ||
2908                      (!p_ptr->levitation && have_flag(f_ptr->flags, FF_DEEP))))
2909                 {
2910                         msg_print(_("ここでは素早く動けない。", "You cannot run in here."));
2911                         set_action(ACTION_NONE);
2912                 }
2913         }
2914
2915         if (mpe_mode & MPE_ENERGY_USE)
2916         {
2917                 if (music_singing(MUSIC_WALL))
2918                 {
2919                         (void)project(0, 0, p_ptr->y, p_ptr->x, (60 + p_ptr->lev), GF_DISINTEGRATE,
2920                                 PROJECT_KILL | PROJECT_ITEM, -1);
2921
2922                         if (!player_bold(ny, nx) || p_ptr->is_dead || p_ptr->leaving) return FALSE;
2923                 }
2924
2925                 /* Spontaneous Searching */
2926                 if ((p_ptr->skill_fos >= 50) || (0 == randint0(50 - p_ptr->skill_fos)))
2927                 {
2928                         search();
2929                 }
2930
2931                 /* Continuous Searching */
2932                 if (p_ptr->action == ACTION_SEARCH)
2933                 {
2934                         search();
2935                 }
2936         }
2937
2938         /* Handle "objects" */
2939         if (!(mpe_mode & MPE_DONT_PICKUP))
2940         {
2941                 carry((mpe_mode & MPE_DO_PICKUP) ? TRUE : FALSE);
2942         }
2943
2944         /* Handle "store doors" */
2945         if (have_flag(f_ptr->flags, FF_STORE))
2946         {
2947                 /* Disturb */
2948                 disturb(0, 1);
2949
2950                 p_ptr->energy_use = 0;
2951                 /* Hack -- Enter store */
2952                 command_new = SPECIAL_KEY_STORE;
2953         }
2954
2955         /* Handle "building doors" -KMW- */
2956         else if (have_flag(f_ptr->flags, FF_BLDG))
2957         {
2958                 /* Disturb */
2959                 disturb(0, 1);
2960
2961                 p_ptr->energy_use = 0;
2962                 /* Hack -- Enter building */
2963                 command_new = SPECIAL_KEY_BUILDING;
2964         }
2965
2966         /* Handle quest areas -KMW- */
2967         else if (have_flag(f_ptr->flags, FF_QUEST_ENTER))
2968         {
2969                 /* Disturb */
2970                 disturb(0, 1);
2971
2972                 p_ptr->energy_use = 0;
2973                 /* Hack -- Enter quest level */
2974                 command_new = SPECIAL_KEY_QUEST;
2975         }
2976
2977         else if (have_flag(f_ptr->flags, FF_QUEST_EXIT))
2978         {
2979                 if (quest[p_ptr->inside_quest].type == QUEST_TYPE_FIND_EXIT)
2980                 {
2981                         complete_quest(p_ptr->inside_quest);
2982                 }
2983
2984                 leave_quest_check();
2985
2986                 p_ptr->inside_quest = c_ptr->special;
2987                 dun_level = 0;
2988                 p_ptr->oldpx = 0;
2989                 p_ptr->oldpy = 0;
2990
2991                 p_ptr->leaving = TRUE;
2992         }
2993
2994         /* Set off a trap */
2995         else if (have_flag(f_ptr->flags, FF_HIT_TRAP) && !(mpe_mode & MPE_STAYING))
2996         {
2997                 /* Disturb */
2998                 disturb(0, 1);
2999
3000                 /* Hidden trap */
3001                 if (c_ptr->mimic || have_flag(f_ptr->flags, FF_SECRET))
3002                 {
3003                         /* Message */
3004                         msg_print(_("トラップだ!", "You found a trap!"));
3005
3006                         /* Pick a trap */
3007                         disclose_grid(p_ptr->y, p_ptr->x);
3008                 }
3009
3010                 /* Hit the trap */
3011                 hit_trap((mpe_mode & MPE_BREAK_TRAP) ? TRUE : FALSE);
3012
3013                 if (!player_bold(ny, nx) || p_ptr->is_dead || p_ptr->leaving) return FALSE;
3014         }
3015
3016         /* Warn when leaving trap detected region */
3017         if (!(mpe_mode & MPE_STAYING) && (disturb_trap_detect || alert_trap_detect)
3018             && p_ptr->dtrap && !(c_ptr->info & CAVE_IN_DETECT))
3019         {
3020                 /* No duplicate warning */
3021                 p_ptr->dtrap = FALSE;
3022
3023                 /* You are just on the edge */
3024                 if (!(c_ptr->info & CAVE_UNSAFE))
3025                 {
3026                         if (alert_trap_detect)
3027                         {
3028                                 msg_print(_("* 注意:この先はトラップの感知範囲外です! *", "*Leaving trap detect region!*"));
3029                         }
3030
3031                         if (disturb_trap_detect) disturb(0, 1);
3032                 }
3033         }
3034
3035         return player_bold(ny, nx) && !p_ptr->is_dead && !p_ptr->leaving;
3036 }
3037
3038 /*!
3039  * @brief 該当地形のトラップがプレイヤーにとって無効かどうかを判定して返す
3040  * @param feat 地形ID
3041  * @return トラップが自動的に無効ならばTRUEを返す
3042  */
3043 bool trap_can_be_ignored(int feat)
3044 {
3045         feature_type *f_ptr = &f_info[feat];
3046
3047         if (!have_flag(f_ptr->flags, FF_TRAP)) return TRUE;
3048
3049         switch (f_ptr->subtype)
3050         {
3051         case TRAP_TRAPDOOR:
3052         case TRAP_PIT:
3053         case TRAP_SPIKED_PIT:
3054         case TRAP_POISON_PIT:
3055                 if (p_ptr->levitation) return TRUE;
3056                 break;
3057         case TRAP_TELEPORT:
3058                 if (p_ptr->anti_tele) return TRUE;
3059                 break;
3060         case TRAP_FIRE:
3061                 if (p_ptr->immune_fire) return TRUE;
3062                 break;
3063         case TRAP_ACID:
3064                 if (p_ptr->immune_acid) return TRUE;
3065                 break;
3066         case TRAP_BLIND:
3067                 if (p_ptr->resist_blind) return TRUE;
3068                 break;
3069         case TRAP_CONFUSE:
3070                 if (p_ptr->resist_conf) return TRUE;
3071                 break;
3072         case TRAP_POISON:
3073                 if (p_ptr->resist_pois) return TRUE;
3074                 break;
3075         case TRAP_SLEEP:
3076                 if (p_ptr->free_act) return TRUE;
3077                 break;
3078         }
3079
3080         return FALSE;
3081 }
3082
3083
3084 /*
3085  * Determine if a "boundary" grid is "floor mimic"
3086  */
3087 #define boundary_floor(C, F, MF) \
3088         ((C)->mimic && permanent_wall(F) && \
3089          (have_flag((MF)->flags, FF_MOVE) || have_flag((MF)->flags, FF_CAN_FLY)) && \
3090          have_flag((MF)->flags, FF_PROJECT) && \
3091          !have_flag((MF)->flags, FF_OPEN))
3092
3093
3094 /*!
3095  * @brief 該当地形のトラップがプレイヤーにとって無効かどうかを判定して返す /
3096  * Move player in the given direction, with the given "pickup" flag.
3097  * @param dir 移動方向ID
3098  * @param do_pickup 罠解除を試みながらの移動ならばTRUE
3099  * @param break_trap トラップ粉砕処理を行うならばTRUE
3100  * @return 実際に移動が行われたならばTRUEを返す。
3101  * @note
3102  * This routine should (probably) always induce energy expenditure.\n
3103  * @details
3104  * Note that moving will *always* take a turn, and will *always* hit\n
3105  * any monster which might be in the destination grid.  Previously,\n
3106  * moving into walls was "free" and did NOT hit invisible monsters.\n
3107  */
3108 void move_player(int dir, bool do_pickup, bool break_trap)
3109 {
3110         /* Find the result of moving */
3111         int y = p_ptr->y + ddy[dir];
3112         int x = p_ptr->x + ddx[dir];
3113
3114         /* Examine the destination */
3115         cave_type *c_ptr = &cave[y][x];
3116
3117         feature_type *f_ptr = &f_info[c_ptr->feat];
3118
3119         monster_type *m_ptr;
3120
3121         monster_type *riding_m_ptr = &m_list[p_ptr->riding];
3122         monster_race *riding_r_ptr = &r_info[p_ptr->riding ? riding_m_ptr->r_idx : 0]; /* Paranoia */
3123
3124         char m_name[80];
3125
3126         bool p_can_enter = player_can_enter(c_ptr->feat, CEM_P_CAN_ENTER_PATTERN);
3127         bool p_can_kill_walls = FALSE;
3128         bool stormbringer = FALSE;
3129
3130         bool oktomove = TRUE;
3131         bool do_past = FALSE;
3132
3133         /* Exit the area */
3134         if (!dun_level && !p_ptr->wild_mode &&
3135                 ((x == 0) || (x == MAX_WID - 1) ||
3136                  (y == 0) || (y == MAX_HGT - 1)))
3137         {
3138                 /* Can the player enter the grid? */
3139                 if (c_ptr->mimic && player_can_enter(c_ptr->mimic, 0))
3140                 {
3141                         /* Hack: move to new area */
3142                         if ((y == 0) && (x == 0))
3143                         {
3144                                 p_ptr->wilderness_y--;
3145                                 p_ptr->wilderness_x--;
3146                                 p_ptr->oldpy = cur_hgt - 2;
3147                                 p_ptr->oldpx = cur_wid - 2;
3148                                 ambush_flag = FALSE;
3149                         }
3150
3151                         else if ((y == 0) && (x == MAX_WID - 1))
3152                         {
3153                                 p_ptr->wilderness_y--;
3154                                 p_ptr->wilderness_x++;
3155                                 p_ptr->oldpy = cur_hgt - 2;
3156                                 p_ptr->oldpx = 1;
3157                                 ambush_flag = FALSE;
3158                         }
3159
3160                         else if ((y == MAX_HGT - 1) && (x == 0))
3161                         {
3162                                 p_ptr->wilderness_y++;
3163                                 p_ptr->wilderness_x--;
3164                                 p_ptr->oldpy = 1;
3165                                 p_ptr->oldpx = cur_wid - 2;
3166                                 ambush_flag = FALSE;
3167                         }
3168
3169                         else if ((y == MAX_HGT - 1) && (x == MAX_WID - 1))
3170                         {
3171                                 p_ptr->wilderness_y++;
3172                                 p_ptr->wilderness_x++;
3173                                 p_ptr->oldpy = 1;
3174                                 p_ptr->oldpx = 1;
3175                                 ambush_flag = FALSE;
3176                         }
3177
3178                         else if (y == 0)
3179                         {
3180                                 p_ptr->wilderness_y--;
3181                                 p_ptr->oldpy = cur_hgt - 2;
3182                                 p_ptr->oldpx = x;
3183                                 ambush_flag = FALSE;
3184                         }
3185
3186                         else if (y == MAX_HGT - 1)
3187                         {
3188                                 p_ptr->wilderness_y++;
3189                                 p_ptr->oldpy = 1;
3190                                 p_ptr->oldpx = x;
3191                                 ambush_flag = FALSE;
3192                         }
3193
3194                         else if (x == 0)
3195                         {
3196                                 p_ptr->wilderness_x--;
3197                                 p_ptr->oldpx = cur_wid - 2;
3198                                 p_ptr->oldpy = y;
3199                                 ambush_flag = FALSE;
3200                         }
3201
3202                         else if (x == MAX_WID - 1)
3203                         {
3204                                 p_ptr->wilderness_x++;
3205                                 p_ptr->oldpx = 1;
3206                                 p_ptr->oldpy = y;
3207                                 ambush_flag = FALSE;
3208                         }
3209
3210                         p_ptr->leaving = TRUE;
3211                         p_ptr->energy_use = 100;
3212
3213                         return;
3214                 }
3215
3216                 /* "Blocked" message appears later */
3217                 /* oktomove = FALSE; */
3218                 p_can_enter = FALSE;
3219         }
3220
3221         /* Get the monster */
3222         m_ptr = &m_list[c_ptr->m_idx];
3223
3224
3225         if (inventory[INVEN_RARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
3226         if (inventory[INVEN_LARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
3227
3228         /* Player can not walk through "walls"... */
3229         /* unless in Shadow Form */
3230         p_can_kill_walls = p_ptr->kill_wall && have_flag(f_ptr->flags, FF_HURT_DISI) &&
3231                 (!p_can_enter || !have_flag(f_ptr->flags, FF_LOS)) &&
3232                 !have_flag(f_ptr->flags, FF_PERMANENT);
3233
3234         /* Hack -- attack monsters */
3235         if (c_ptr->m_idx && (m_ptr->ml || p_can_enter || p_can_kill_walls))
3236         {
3237                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
3238
3239                 /* Attack -- only if we can see it OR it is not in a wall */
3240                 if (!is_hostile(m_ptr) &&
3241                     !(p_ptr->confused || p_ptr->image || !m_ptr->ml || p_ptr->stun ||
3242                     ((p_ptr->muta2 & MUT2_BERS_RAGE) && p_ptr->shero)) &&
3243                     pattern_seq(p_ptr->y, p_ptr->x, y, x) && (p_can_enter || p_can_kill_walls))
3244                 {
3245                         /* Disturb the monster */
3246                         (void)set_monster_csleep(c_ptr->m_idx, 0);
3247
3248                         /* Extract monster name (or "it") */
3249                         monster_desc(m_name, m_ptr, 0);
3250
3251                         if (m_ptr->ml)
3252                         {
3253                                 /* Auto-Recall if possible and visible */
3254                                 if (!p_ptr->image) monster_race_track(m_ptr->ap_r_idx);
3255
3256                                 /* Track a new monster */
3257                                 health_track(c_ptr->m_idx);
3258                         }
3259
3260                         /* displace? */
3261                         if ((stormbringer && (randint1(1000) > 666)) || (p_ptr->pclass == CLASS_BERSERKER))
3262                         {
3263                                 py_attack(y, x, 0);
3264                                 oktomove = FALSE;
3265                         }
3266                         else if (monster_can_cross_terrain(cave[p_ptr->y][p_ptr->x].feat, r_ptr, 0))
3267                         {
3268                                 do_past = TRUE;
3269                         }
3270                         else
3271                         {
3272                                 msg_format(_("%^sが邪魔だ!", "%^s is in your way!"), m_name);
3273                                 p_ptr->energy_use = 0;
3274                                 oktomove = FALSE;
3275                         }
3276
3277                         /* now continue on to 'movement' */
3278                 }
3279                 else
3280                 {
3281                         py_attack(y, x, 0);
3282                         oktomove = FALSE;
3283                 }
3284         }
3285
3286         if (oktomove && p_ptr->riding)
3287         {
3288                 if (riding_r_ptr->flags1 & RF1_NEVER_MOVE)
3289                 {
3290                         msg_print(_("動けない!", "Can't move!"));
3291                         p_ptr->energy_use = 0;
3292                         oktomove = FALSE;
3293                         disturb(0, 1);
3294                 }
3295                 else if (MON_MONFEAR(riding_m_ptr))
3296                 {
3297                         char steed_name[80];
3298
3299                         /* Acquire the monster name */
3300                         monster_desc(steed_name, riding_m_ptr, 0);
3301
3302                         /* Dump a message */
3303                         msg_format(_("%sが恐怖していて制御できない。", "%^s is too scared to control."), steed_name);
3304                         oktomove = FALSE;
3305                         disturb(0, 1);
3306                 }
3307                 else if (p_ptr->riding_ryoute)
3308                 {
3309                         oktomove = FALSE;
3310                         disturb(0, 1);
3311                 }
3312                 else if (have_flag(f_ptr->flags, FF_CAN_FLY) && (riding_r_ptr->flags7 & RF7_CAN_FLY))
3313                 {
3314                         /* Allow moving */
3315                 }
3316                 else if (have_flag(f_ptr->flags, FF_CAN_SWIM) && (riding_r_ptr->flags7 & RF7_CAN_SWIM))
3317                 {
3318                         /* Allow moving */
3319                 }
3320                 else if (have_flag(f_ptr->flags, FF_WATER) &&
3321                         !(riding_r_ptr->flags7 & RF7_AQUATIC) &&
3322                         (have_flag(f_ptr->flags, FF_DEEP) || (riding_r_ptr->flags2 & RF2_AURA_FIRE)))
3323                 {
3324                         msg_format(_("%sの上に行けない。", "Can't swim."), f_name + f_info[get_feat_mimic(c_ptr)].name);
3325                         p_ptr->energy_use = 0;
3326                         oktomove = FALSE;
3327                         disturb(0, 1);
3328                 }
3329                 else if (!have_flag(f_ptr->flags, FF_WATER) && (riding_r_ptr->flags7 & RF7_AQUATIC))
3330                 {
3331                         msg_format(_("%sから上がれない。", "Can't land."), f_name + f_info[get_feat_mimic(&cave[p_ptr->y][p_ptr->x])].name);
3332                         p_ptr->energy_use = 0;
3333                         oktomove = FALSE;
3334                         disturb(0, 1);
3335                 }
3336                 else if (have_flag(f_ptr->flags, FF_LAVA) && !(riding_r_ptr->flagsr & RFR_EFF_IM_FIRE_MASK))
3337                 {
3338                         msg_format(_("%sの上に行けない。", "Too hot to go through."), f_name + f_info[get_feat_mimic(c_ptr)].name);
3339                         p_ptr->energy_use = 0;
3340                         oktomove = FALSE;
3341                         disturb(0, 1);
3342                 }
3343
3344                 if (oktomove && MON_STUNNED(riding_m_ptr) && one_in_(2))
3345                 {
3346                         char steed_name[80];
3347                         monster_desc(steed_name, riding_m_ptr, 0);
3348                         msg_format(_("%sが朦朧としていてうまく動けない!", "You cannot control stunned %s!"), steed_name);
3349                         oktomove = FALSE;
3350                         disturb(0, 1);
3351                 }
3352         }
3353
3354         if (!oktomove)
3355         {
3356         }
3357
3358         else if (!have_flag(f_ptr->flags, FF_MOVE) && have_flag(f_ptr->flags, FF_CAN_FLY) && !p_ptr->levitation)
3359         {
3360                 msg_format(_("空を飛ばないと%sの上には行けない。", "You need to fly to go through the %s."), f_name + f_info[get_feat_mimic(c_ptr)].name);
3361                 p_ptr->energy_use = 0;
3362                 running = 0;
3363                 oktomove = FALSE;
3364         }
3365
3366         /*
3367          * Player can move through trees and
3368          * has effective -10 speed
3369          * Rangers can move without penality
3370          */
3371         else if (have_flag(f_ptr->flags, FF_TREE) && !p_can_kill_walls)
3372         {
3373                 if ((p_ptr->pclass != CLASS_RANGER) && !p_ptr->levitation && (!p_ptr->riding || !(riding_r_ptr->flags8 & RF8_WILD_WOOD))) p_ptr->energy_use *= 2;
3374         }
3375
3376 #ifdef ALLOW_EASY_DISARM /* TNB */
3377
3378         /* Disarm a visible trap */
3379         else if ((do_pickup != easy_disarm) && have_flag(f_ptr->flags, FF_DISARM) && !c_ptr->mimic)
3380         {
3381                 if (!trap_can_be_ignored(c_ptr->feat))
3382                 {
3383                         (void)do_cmd_disarm_aux(y, x, dir);
3384                         return;
3385                 }
3386         }
3387
3388 #endif /* ALLOW_EASY_DISARM -- TNB */
3389
3390         /* Player can not walk through "walls" unless in wraith form...*/
3391         else if (!p_can_enter && !p_can_kill_walls)
3392         {
3393                 /* Feature code (applying "mimic" field) */
3394                 s16b feat = get_feat_mimic(c_ptr);
3395                 feature_type *mimic_f_ptr = &f_info[feat];
3396                 cptr name = f_name + mimic_f_ptr->name;
3397
3398                 oktomove = FALSE;
3399
3400                 /* Notice things in the dark */
3401                 if (!(c_ptr->info & CAVE_MARK) && !player_can_see_bold(y, x))
3402                 {
3403                         /* Boundary floor mimic */
3404                         if (boundary_floor(c_ptr, f_ptr, mimic_f_ptr))
3405                         {
3406                                 msg_print(_("それ以上先には進めないようだ。", "You feel you cannot go any more."));
3407                         }
3408
3409                         /* Wall (or secret door) */
3410                         else
3411                         {
3412 #ifdef JP
3413                                 msg_format("%sが行く手をはばんでいるようだ。", name);
3414 #else
3415                                 msg_format("You feel %s %s blocking your way.",
3416                                         is_a_vowel(name[0]) ? "an" : "a", name);
3417 #endif
3418
3419                                 c_ptr->info |= (CAVE_MARK);
3420                                 lite_spot(y, x);
3421                         }
3422                 }
3423
3424                 /* Notice things */
3425                 else
3426                 {
3427                         /* Boundary floor mimic */
3428                         if (boundary_floor(c_ptr, f_ptr, mimic_f_ptr))
3429                         {
3430                                 msg_print(_("それ以上先には進めない。", "You cannot go any more."));
3431                                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3432                                         p_ptr->energy_use = 0;
3433                         }
3434
3435                         /* Wall (or secret door) */
3436                         else
3437                         {
3438 #ifdef ALLOW_EASY_OPEN
3439                                 /* Closed doors */
3440                                 if (easy_open && is_closed_door(feat) && easy_open_door(y, x)) return;
3441 #endif /* ALLOW_EASY_OPEN */
3442
3443 #ifdef JP
3444                                 msg_format("%sが行く手をはばんでいる。", name);
3445 #else
3446                                 msg_format("There is %s %s blocking your way.",
3447                                         is_a_vowel(name[0]) ? "an" : "a", name);
3448 #endif
3449
3450                                 /*
3451                                  * Well, it makes sense that you lose time bumping into
3452                                  * a wall _if_ you are confused, stunned or blind; but
3453                                  * typing mistakes should not cost you a turn...
3454                                  */
3455                                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3456                                         p_ptr->energy_use = 0;
3457                         }
3458                 }
3459
3460                 /* Disturb the player */
3461                 disturb(0, 1);
3462
3463                 /* Sound */
3464                 if (!boundary_floor(c_ptr, f_ptr, mimic_f_ptr)) sound(SOUND_HITWALL);
3465         }
3466
3467         /* Normal movement */
3468         if (oktomove && !pattern_seq(p_ptr->y, p_ptr->x, y, x))
3469         {
3470                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3471                 {
3472                         p_ptr->energy_use = 0;
3473                 }
3474
3475                 /* To avoid a loop with running */
3476                 disturb(0, 1);
3477
3478                 oktomove = FALSE;
3479         }
3480
3481         /* Normal movement */
3482         if (oktomove)
3483         {
3484                 u32b mpe_mode = MPE_ENERGY_USE;
3485
3486                 if (p_ptr->warning)
3487                 {
3488                         if (!process_warning(x, y))
3489                         {
3490                                 p_ptr->energy_use = 25;
3491                                 return;
3492                         }
3493                 }
3494
3495                 if (do_past)
3496                 {
3497                         msg_format(_("%sを押し退けた。", "You push past %s."), m_name);
3498                 }
3499
3500                 /* Change oldpx and oldpy to place the player well when going back to big mode */
3501                 if (p_ptr->wild_mode)
3502                 {
3503                         if (ddy[dir] > 0)  p_ptr->oldpy = 1;
3504                         if (ddy[dir] < 0)  p_ptr->oldpy = MAX_HGT - 2;
3505                         if (ddy[dir] == 0) p_ptr->oldpy = MAX_HGT / 2;
3506                         if (ddx[dir] > 0)  p_ptr->oldpx = 1;
3507                         if (ddx[dir] < 0)  p_ptr->oldpx = MAX_WID - 2;
3508                         if (ddx[dir] == 0) p_ptr->oldpx = MAX_WID / 2;
3509                 }
3510
3511                 if (p_can_kill_walls)
3512                 {
3513                         cave_alter_feat(y, x, FF_HURT_DISI);
3514
3515                         /* Update some things -- similar to GF_KILL_WALL */
3516                         p_ptr->update |= (PU_FLOW);
3517                 }
3518
3519                 /* Sound */
3520                 /* sound(SOUND_WALK); */
3521
3522 #ifdef ALLOW_EASY_DISARM /* TNB */
3523
3524                 if (do_pickup != always_pickup) mpe_mode |= MPE_DO_PICKUP;
3525
3526 #else /* ALLOW_EASY_DISARM -- TNB */
3527
3528                 if (do_pickup) mpe_mode |= MPE_DO_PICKUP;
3529
3530 #endif /* ALLOW_EASY_DISARM -- TNB */
3531
3532                 if (break_trap) mpe_mode |= MPE_BREAK_TRAP;
3533
3534                 /* Move the player */
3535                 (void)move_player_effect(y, x, mpe_mode);
3536         }
3537 }
3538
3539
3540 static bool ignore_avoid_run;
3541
3542 /*!
3543  * @brief ダッシュ移動処理中、移動先のマスが既知の壁かどうかを判定する /
3544  * Hack -- Check for a "known wall" (see below)
3545  * @param dir 想定する移動方向ID
3546  * @param y 移動元のY座標
3547  * @param x 移動元のX座標
3548  * @return 移動先が既知の壁ならばTRUE
3549  */
3550 static int see_wall(int dir, int y, int x)
3551 {
3552         cave_type   *c_ptr;
3553
3554         /* Get the new location */
3555         y += ddy[dir];
3556         x += ddx[dir];
3557
3558         /* Illegal grids are not known walls */
3559         if (!in_bounds2(y, x)) return (FALSE);
3560
3561         /* Access grid */
3562         c_ptr = &cave[y][x];
3563
3564         /* Must be known to the player */
3565         if (c_ptr->info & (CAVE_MARK))
3566         {
3567                 /* Feature code (applying "mimic" field) */
3568                 s16b         feat = get_feat_mimic(c_ptr);
3569                 feature_type *f_ptr = &f_info[feat];
3570
3571                 /* Wall grids are known walls */
3572                 if (!player_can_enter(feat, 0)) return !have_flag(f_ptr->flags, FF_DOOR);
3573
3574                 /* Don't run on a tree unless explicitly requested */
3575                 if (have_flag(f_ptr->flags, FF_AVOID_RUN) && !ignore_avoid_run)
3576                         return TRUE;
3577
3578                 /* Don't run in a wall */
3579                 if (!have_flag(f_ptr->flags, FF_MOVE) && !have_flag(f_ptr->flags, FF_CAN_FLY))
3580                         return !have_flag(f_ptr->flags, FF_DOOR);
3581         }
3582
3583         return FALSE;
3584 }
3585
3586
3587 /*!
3588  * @brief ダッシュ移動処理中、移動先のマスか未知の地形かどうかを判定する /
3589  * Hack -- Check for an "unknown corner" (see below)
3590  * @param dir 想定する移動方向ID
3591  * @param y 移動元のY座標
3592  * @param x 移動元のX座標
3593  * @return 移動先が未知の地形ならばTRUE
3594  */
3595 static int see_nothing(int dir, int y, int x)
3596 {
3597         /* Get the new location */
3598         y += ddy[dir];
3599         x += ddx[dir];
3600
3601         /* Illegal grids are unknown */
3602         if (!in_bounds2(y, x)) return (TRUE);
3603
3604         /* Memorized grids are always known */
3605         if (cave[y][x].info & (CAVE_MARK)) return (FALSE);
3606
3607         /* Viewable door/wall grids are known */
3608         if (player_can_see_bold(y, x)) return (FALSE);
3609
3610         /* Default */
3611         return (TRUE);
3612 }
3613
3614
3615
3616
3617
3618
3619 /*
3620  * Hack -- allow quick "cycling" through the legal directions
3621  */
3622 static byte cycle[] =
3623 { 1, 2, 3, 6, 9, 8, 7, 4, 1, 2, 3, 6, 9, 8, 7, 4, 1 };
3624
3625 /*
3626  * Hack -- map each direction into the "middle" of the "cycle[]" array
3627  */
3628 static byte chome[] =
3629 { 0, 8, 9, 10, 7, 0, 11, 6, 5, 4 };
3630
3631 /*
3632  * The direction we are running
3633  */
3634 static byte find_current;
3635
3636 /*
3637  * The direction we came from
3638  */
3639 static byte find_prevdir;
3640
3641 /*
3642  * We are looking for open area
3643  */
3644 static bool find_openarea;
3645
3646 /*
3647  * We are looking for a break
3648  */
3649 static bool find_breakright;
3650 static bool find_breakleft;
3651
3652
3653
3654 /*!
3655  * @brief ダッシュ処理の導入 /
3656  * Initialize the running algorithm for a new direction.
3657  * @param dir 導入の移動先
3658  * @details
3659  * Diagonal Corridor -- allow diaginal entry into corridors.\n
3660  *\n
3661  * Blunt Corridor -- If there is a wall two spaces ahead and\n
3662  * we seem to be in a corridor, then force a turn into the side\n
3663  * corridor, must be moving straight into a corridor here. ???\n
3664  *\n
3665  * Diagonal Corridor    Blunt Corridor (?)\n
3666  *       \# \#                  \#\n
3667  *       \#x\#                  \@x\#\n
3668  *       \@\@p.                  p\n
3669  */
3670 static void run_init(int dir)
3671 {
3672         int             row, col, deepleft, deepright;
3673         int             i, shortleft, shortright;
3674
3675
3676         /* Save the direction */
3677         find_current = dir;
3678
3679         /* Assume running straight */
3680         find_prevdir = dir;
3681
3682         /* Assume looking for open area */
3683         find_openarea = TRUE;
3684
3685         /* Assume not looking for breaks */
3686         find_breakright = find_breakleft = FALSE;
3687
3688         /* Assume no nearby walls */
3689         deepleft = deepright = FALSE;
3690         shortright = shortleft = FALSE;
3691
3692         p_ptr->run_py = p_ptr->y;
3693         p_ptr->run_px = p_ptr->x;
3694
3695         /* Find the destination grid */
3696         row = p_ptr->y + ddy[dir];
3697         col = p_ptr->x + ddx[dir];
3698
3699         ignore_avoid_run = cave_have_flag_bold(row, col, FF_AVOID_RUN);
3700
3701         /* Extract cycle index */
3702         i = chome[dir];
3703
3704         /* Check for walls */
3705         if (see_wall(cycle[i+1], p_ptr->y, p_ptr->x))
3706         {
3707                 find_breakleft = TRUE;
3708                 shortleft = TRUE;
3709         }
3710         else if (see_wall(cycle[i+1], row, col))
3711         {
3712                 find_breakleft = TRUE;
3713                 deepleft = TRUE;
3714         }
3715
3716         /* Check for walls */
3717         if (see_wall(cycle[i-1], p_ptr->y, p_ptr->x))
3718         {
3719                 find_breakright = TRUE;
3720                 shortright = TRUE;
3721         }
3722         else if (see_wall(cycle[i-1], row, col))
3723         {
3724                 find_breakright = TRUE;
3725                 deepright = TRUE;
3726         }
3727
3728         /* Looking for a break */
3729         if (find_breakleft && find_breakright)
3730         {
3731                 /* Not looking for open area */
3732                 find_openarea = FALSE;
3733
3734                 /* Hack -- allow angled corridor entry */
3735                 if (dir & 0x01)
3736                 {
3737                         if (deepleft && !deepright)
3738                         {
3739                                 find_prevdir = cycle[i - 1];
3740                         }
3741                         else if (deepright && !deepleft)
3742                         {
3743                                 find_prevdir = cycle[i + 1];
3744                         }
3745                 }
3746
3747                 /* Hack -- allow blunt corridor entry */
3748                 else if (see_wall(cycle[i], row, col))
3749                 {
3750                         if (shortleft && !shortright)
3751                         {
3752                                 find_prevdir = cycle[i - 2];
3753                         }
3754                         else if (shortright && !shortleft)
3755                         {
3756                                 find_prevdir = cycle[i + 2];
3757                         }
3758                 }
3759         }
3760 }
3761
3762
3763 /*!
3764  * @brief ダッシュ移動が継続できるかどうかの判定 /
3765  * Update the current "run" path
3766  * @return
3767  * ダッシュ移動が継続できるならばTRUEを返す。
3768  * Return TRUE if the running should be stopped
3769  */
3770 static bool run_test(void)
3771 {
3772         int         prev_dir, new_dir, check_dir = 0;
3773         int         row, col;
3774         int         i, max, inv;
3775         int         option = 0, option2 = 0;
3776         cave_type   *c_ptr;
3777         s16b        feat;
3778         feature_type *f_ptr;
3779
3780         /* Where we came from */
3781         prev_dir = find_prevdir;
3782
3783
3784         /* Range of newly adjacent grids */
3785         max = (prev_dir & 0x01) + 1;
3786
3787         /* break run when leaving trap detected region */
3788         if ((disturb_trap_detect || alert_trap_detect)
3789             && p_ptr->dtrap && !(cave[p_ptr->y][p_ptr->x].info & CAVE_IN_DETECT))
3790         {
3791                 /* No duplicate warning */
3792                 p_ptr->dtrap = FALSE;
3793
3794                 /* You are just on the edge */
3795                 if (!(cave[p_ptr->y][p_ptr->x].info & CAVE_UNSAFE))
3796                 {
3797                         if (alert_trap_detect)
3798                         {
3799                                 msg_print(_("* 注意:この先はトラップの感知範囲外です! *", "*Leaving trap detect region!*"));
3800                         }
3801
3802                         if (disturb_trap_detect)
3803                         {
3804                                 /* Break Run */
3805                                 return(TRUE);
3806                         }
3807                 }
3808         }
3809
3810         /* Look at every newly adjacent square. */
3811         for (i = -max; i <= max; i++)
3812         {
3813                 s16b this_o_idx, next_o_idx = 0;
3814
3815                 /* New direction */
3816                 new_dir = cycle[chome[prev_dir] + i];
3817
3818                 /* New location */
3819                 row = p_ptr->y + ddy[new_dir];
3820                 col = p_ptr->x + ddx[new_dir];
3821
3822                 /* Access grid */
3823                 c_ptr = &cave[row][col];
3824
3825                 /* Feature code (applying "mimic" field) */
3826                 feat = get_feat_mimic(c_ptr);
3827                 f_ptr = &f_info[feat];
3828
3829                 /* Visible monsters abort running */
3830                 if (c_ptr->m_idx)
3831                 {
3832                         monster_type *m_ptr = &m_list[c_ptr->m_idx];
3833
3834                         /* Visible monster */
3835                         if (m_ptr->ml) return (TRUE);
3836                 }
3837
3838                 /* Visible objects abort running */
3839                 for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
3840                 {
3841                         object_type *o_ptr;
3842
3843                         /* Acquire object */
3844                         o_ptr = &o_list[this_o_idx];
3845
3846                         /* Acquire next object */
3847                         next_o_idx = o_ptr->next_o_idx;
3848
3849                         /* Visible object */
3850                         if (o_ptr->marked & OM_FOUND) return (TRUE);
3851                 }
3852
3853                 /* Assume unknown */
3854                 inv = TRUE;
3855
3856                 /* Check memorized grids */
3857                 if (c_ptr->info & (CAVE_MARK))
3858                 {
3859                         bool notice = have_flag(f_ptr->flags, FF_NOTICE);
3860
3861                         if (notice && have_flag(f_ptr->flags, FF_MOVE))
3862                         {
3863                                 /* Open doors */
3864                                 if (find_ignore_doors && have_flag(f_ptr->flags, FF_DOOR) && have_flag(f_ptr->flags, FF_CLOSE))
3865                                 {
3866                                         /* Option -- ignore */
3867                                         notice = FALSE;
3868                                 }
3869
3870                                 /* Stairs */
3871                                 else if (find_ignore_stairs && have_flag(f_ptr->flags, FF_STAIRS))
3872                                 {
3873                                         /* Option -- ignore */
3874                                         notice = FALSE;
3875                                 }
3876
3877                                 /* Lava */
3878                                 else if (have_flag(f_ptr->flags, FF_LAVA) && (p_ptr->immune_fire || IS_INVULN()))
3879                                 {
3880                                         /* Ignore */
3881                                         notice = FALSE;
3882                                 }
3883
3884                                 /* Deep water */
3885                                 else if (have_flag(f_ptr->flags, FF_WATER) && have_flag(f_ptr->flags, FF_DEEP) &&
3886                                          (p_ptr->levitation || p_ptr->can_swim || (p_ptr->total_weight <= weight_limit())))
3887                                 {
3888                                         /* Ignore */
3889                                         notice = FALSE;
3890                                 }
3891                         }
3892
3893                         /* Interesting feature */
3894                         if (notice) return (TRUE);
3895
3896                         /* The grid is "visible" */
3897                         inv = FALSE;
3898                 }
3899
3900                 /* Analyze unknown grids and floors considering mimic */
3901                 if (inv || !see_wall(0, row, col))
3902                 {
3903                         /* Looking for open area */
3904                         if (find_openarea)
3905                         {
3906                                 /* Nothing */
3907                         }
3908
3909                         /* The first new direction. */
3910                         else if (!option)
3911                         {
3912                                 option = new_dir;
3913                         }
3914
3915                         /* Three new directions. Stop running. */
3916                         else if (option2)
3917                         {
3918                                 return (TRUE);
3919                         }
3920
3921                         /* Two non-adjacent new directions.  Stop running. */
3922                         else if (option != cycle[chome[prev_dir] + i - 1])
3923                         {
3924                                 return (TRUE);
3925                         }
3926
3927                         /* Two new (adjacent) directions (case 1) */
3928                         else if (new_dir & 0x01)
3929                         {
3930                                 check_dir = cycle[chome[prev_dir] + i - 2];
3931                                 option2 = new_dir;
3932                         }
3933
3934                         /* Two new (adjacent) directions (case 2) */
3935                         else
3936                         {
3937                                 check_dir = cycle[chome[prev_dir] + i + 1];
3938                                 option2 = option;
3939                                 option = new_dir;
3940                         }
3941                 }
3942
3943                 /* Obstacle, while looking for open area */
3944                 else
3945                 {
3946                         if (find_openarea)
3947                         {
3948                                 if (i < 0)
3949                                 {
3950                                         /* Break to the right */
3951                                         find_breakright = TRUE;
3952                                 }
3953
3954                                 else if (i > 0)
3955                                 {
3956                                         /* Break to the left */
3957                                         find_breakleft = TRUE;
3958                                 }
3959                         }
3960                 }
3961         }
3962
3963         /* Looking for open area */
3964         if (find_openarea)
3965         {
3966                 /* Hack -- look again */
3967                 for (i = -max; i < 0; i++)
3968                 {
3969                         /* Unknown grid or non-wall */
3970                         if (!see_wall(cycle[chome[prev_dir] + i], p_ptr->y, p_ptr->x))
3971                         {
3972                                 /* Looking to break right */
3973                                 if (find_breakright)
3974                                 {
3975                                         return (TRUE);
3976                                 }
3977                         }
3978
3979                         /* Obstacle */
3980                         else
3981                         {
3982                                 /* Looking to break left */
3983                                 if (find_breakleft)
3984                                 {
3985                                         return (TRUE);
3986                                 }
3987                         }
3988                 }
3989
3990                 /* Hack -- look again */
3991                 for (i = max; i > 0; i--)
3992                 {
3993                         /* Unknown grid or non-wall */
3994                         if (!see_wall(cycle[chome[prev_dir] + i], p_ptr->y, p_ptr->x))
3995                         {
3996                                 /* Looking to break left */
3997                                 if (find_breakleft)
3998                                 {
3999                                         return (TRUE);
4000                                 }
4001                         }
4002
4003                         /* Obstacle */
4004                         else
4005                         {
4006                                 /* Looking to break right */
4007                                 if (find_breakright)
4008                                 {
4009                                         return (TRUE);
4010                                 }
4011                         }
4012                 }
4013         }
4014
4015         /* Not looking for open area */
4016         else
4017         {
4018                 /* No options */
4019                 if (!option)
4020                 {
4021                         return (TRUE);
4022                 }
4023
4024                 /* One option */
4025                 else if (!option2)
4026                 {
4027                         /* Primary option */
4028                         find_current = option;
4029
4030                         /* No other options */
4031                         find_prevdir = option;
4032                 }
4033
4034                 /* Two options, examining corners */
4035                 else if (!find_cut)
4036                 {
4037                         /* Primary option */
4038                         find_current = option;
4039
4040                         /* Hack -- allow curving */
4041                         find_prevdir = option2;
4042                 }
4043
4044                 /* Two options, pick one */
4045                 else
4046                 {
4047                         /* Get next location */
4048                         row = p_ptr->y + ddy[option];
4049                         col = p_ptr->x + ddx[option];
4050
4051                         /* Don't see that it is closed off. */
4052                         /* This could be a potential corner or an intersection. */
4053                         if (!see_wall(option, row, col) ||
4054                             !see_wall(check_dir, row, col))
4055                         {
4056                                 /* Can not see anything ahead and in the direction we */
4057                                 /* are turning, assume that it is a potential corner. */
4058                                 if (see_nothing(option, row, col) &&
4059                                     see_nothing(option2, row, col))
4060                                 {
4061                                         find_current = option;
4062                                         find_prevdir = option2;
4063                                 }
4064
4065                                 /* STOP: we are next to an intersection or a room */
4066                                 else
4067                                 {
4068                                         return (TRUE);
4069                                 }
4070                         }
4071
4072                         /* This corner is seen to be enclosed; we cut the corner. */
4073                         else if (find_cut)
4074                         {
4075                                 find_current = option2;
4076                                 find_prevdir = option2;
4077                         }
4078
4079                         /* This corner is seen to be enclosed, and we */
4080                         /* deliberately go the long way. */
4081                         else
4082                         {
4083                                 find_current = option;
4084                                 find_prevdir = option2;
4085                         }
4086                 }
4087         }
4088
4089         /* About to hit a known wall, stop */
4090         if (see_wall(find_current, p_ptr->y, p_ptr->x))
4091         {
4092                 return (TRUE);
4093         }
4094
4095         /* Failure */
4096         return (FALSE);
4097 }
4098
4099
4100
4101 /*!
4102  * @brief 継続的なダッシュ処理 /
4103  * Take one step along the current "run" path
4104  * @param dir 移動を試みる方向ID
4105  * @return なし
4106  */
4107 void run_step(int dir)
4108 {
4109         /* Start running */
4110         if (dir)
4111         {
4112                 /* Ignore AVOID_RUN on a first step */
4113                 ignore_avoid_run = TRUE;
4114
4115                 /* Hack -- do not start silly run */
4116                 if (see_wall(dir, p_ptr->y, p_ptr->x))
4117                 {
4118                         /* Message */
4119                         msg_print(_("その方向には走れません。", "You cannot run in that direction."));
4120
4121                         /* Disturb */
4122                         disturb(0, 0);
4123
4124                         /* Done */
4125                         return;
4126                 }
4127
4128                 /* Initialize */
4129                 run_init(dir);
4130         }
4131
4132         /* Keep running */
4133         else
4134         {
4135                 /* Update run */
4136                 if (run_test())
4137                 {
4138                         /* Disturb */
4139                         disturb(0, 0);
4140
4141                         /* Done */
4142                         return;
4143                 }
4144         }
4145
4146         /* Decrease the run counter */
4147         if (--running <= 0) return;
4148
4149         /* Take time */
4150         p_ptr->energy_use = 100;
4151
4152         /* Move the player, using the "pickup" flag */
4153 #ifdef ALLOW_EASY_DISARM /* TNB */
4154
4155         move_player(find_current, FALSE, FALSE);
4156
4157 #else /* ALLOW_EASY_DISARM -- TNB */
4158
4159         move_player(find_current, always_pickup, FALSE);
4160
4161 #endif /* ALLOW_EASY_DISARM -- TNB */
4162
4163         if (player_bold(p_ptr->run_py, p_ptr->run_px))
4164         {
4165                 p_ptr->run_py = 0;
4166                 p_ptr->run_px = 0;
4167                 disturb(0, 0);
4168         }
4169 }
4170
4171
4172 #ifdef TRAVEL
4173
4174 /*!
4175  * @brief トラベル機能の判定処理 /
4176  * Test for traveling
4177  * @param prev_dir 前回移動を行った元の方角ID
4178  * @return なし
4179  */
4180 static int travel_test(int prev_dir)
4181 {
4182         int new_dir = 0;
4183         int i, max;
4184         const cave_type *c_ptr;
4185         int cost;
4186
4187         /* Cannot travel when blind */
4188         if (p_ptr->blind || no_lite())
4189         {
4190                 msg_print(_("目が見えない!", "You cannot see!"));
4191                 return (0);
4192         }
4193
4194         /* break run when leaving trap detected region */
4195         if ((disturb_trap_detect || alert_trap_detect)
4196             && p_ptr->dtrap && !(cave[p_ptr->y][p_ptr->x].info & CAVE_IN_DETECT))
4197         {
4198                 /* No duplicate warning */
4199                 p_ptr->dtrap = FALSE;
4200
4201                 /* You are just on the edge */
4202                 if (!(cave[p_ptr->y][p_ptr->x].info & CAVE_UNSAFE))
4203                 {
4204                         if (alert_trap_detect)
4205                         {
4206                                 msg_print(_("* 注意:この先はトラップの感知範囲外です! *", "*Leaving trap detect region!*"));
4207                         }
4208
4209                         if (disturb_trap_detect)
4210                         {
4211                                 /* Break Run */
4212                                 return (0);
4213                         }
4214                 }
4215         }
4216
4217         /* Range of newly adjacent grids */
4218         max = (prev_dir & 0x01) + 1;
4219
4220         /* Look at every newly adjacent square. */
4221         for (i = -max; i <= max; i++)
4222         {
4223                 /* New direction */
4224                 int dir = cycle[chome[prev_dir] + i];
4225
4226                 /* New location */
4227                 int row = p_ptr->y + ddy[dir];
4228                 int col = p_ptr->x + ddx[dir];
4229
4230                 /* Access grid */
4231                 c_ptr = &cave[row][col];
4232
4233                 /* Visible monsters abort running */
4234                 if (c_ptr->m_idx)
4235                 {
4236                         monster_type *m_ptr = &m_list[c_ptr->m_idx];
4237
4238                         /* Visible monster */
4239                         if (m_ptr->ml) return (0);
4240                 }
4241
4242         }
4243
4244         /* Travel cost of current grid */
4245         cost = travel.cost[p_ptr->y][p_ptr->x];
4246
4247         /* Determine travel direction */
4248         for (i = 0; i < 8; ++ i) {
4249                 int dir_cost = travel.cost[p_ptr->y+ddy_ddd[i]][p_ptr->x+ddx_ddd[i]];
4250
4251                 if (dir_cost < cost)
4252                 {
4253                         new_dir = ddd[i];
4254                         cost = dir_cost;
4255                 }
4256         }
4257
4258         if (!new_dir) return (0);
4259
4260         /* Access newly move grid */
4261         c_ptr = &cave[p_ptr->y+ddy[new_dir]][p_ptr->x+ddx[new_dir]];
4262
4263         /* Close door abort traveling */
4264         if (!easy_open && is_closed_door(c_ptr->feat)) return (0);
4265
4266         /* Visible and unignorable trap abort tarveling */
4267         if (!c_ptr->mimic && !trap_can_be_ignored(c_ptr->feat)) return (0);
4268
4269         /* Move new grid */
4270         return (new_dir);
4271 }
4272
4273
4274 /*!
4275  * @brief トラベル機能の実装 /
4276  * Travel command
4277  * @return なし
4278  */
4279 void travel_step(void)
4280 {
4281         /* Get travel direction */
4282         travel.dir = travel_test(travel.dir);
4283
4284         /* disturb */
4285         if (!travel.dir)
4286         {
4287                 if (travel.run == 255)
4288                 {
4289                         msg_print(_("道筋が見つかりません!", "No route is found!"));
4290                         travel.y = travel.x = 0;
4291                 }
4292                 disturb(0, 1);
4293                 return;
4294         }
4295
4296         p_ptr->energy_use = 100;
4297
4298         move_player(travel.dir, always_pickup, FALSE);
4299
4300         if ((p_ptr->y == travel.y) && (p_ptr->x == travel.x))
4301         {
4302                 travel.run = 0;
4303                 travel.y = travel.x = 0;
4304         }
4305         else if (travel.run > 0)
4306                 travel.run--;
4307
4308         /* Travel Delay */
4309         Term_xtra(TERM_XTRA_DELAY, delay_factor);
4310 }
4311 #endif