OSDN Git Service

#37287 (2.2.0.33) 突然変異で生えた部位による、ダメージダイスの数と面が逆に入力されていた不具合を修正 / Fix error of damage...
[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 turn), int turn)
1069 {
1070         msg_print(trap_message);
1071
1072         if (!resist)
1073         {
1074                 set_status(turn);
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                 if (p_ptr->wizard)
1505                 {
1506                         msg_format(_("%d/%d のダメージを与えた。", "You do %d (out of %d) damage."), k, m_ptr->hp);
1507                 }
1508
1509                 /* Anger the monster */
1510                 if (k > 0) anger_monster(m_ptr);
1511
1512                 /* Damage, check for fear and mdeath */
1513                 switch (attack)
1514                 {
1515                         case MUT2_SCOR_TAIL:
1516                                 project(0, 0, m_ptr->fy, m_ptr->fx, k, GF_POIS, PROJECT_KILL, -1);
1517                                 *mdeath = (m_ptr->r_idx == 0);
1518                                 break;
1519                         case MUT2_HORNS:
1520                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1521                                 break;
1522                         case MUT2_BEAK:
1523                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1524                                 break;
1525                         case MUT2_TRUNK:
1526                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1527                                 break;
1528                         case MUT2_TENTACLES:
1529                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1530                                 break;
1531                         default:
1532                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1533                 }
1534
1535                 touch_zap_player(m_ptr);
1536         }
1537         /* Player misses */
1538         else
1539         {
1540                 /* Sound */
1541                 sound(SOUND_MISS);
1542
1543                 /* Message */
1544                 msg_format(_("ミス! %sにかわされた。", "You miss %s."), m_name);
1545         }
1546 }
1547
1548
1549 /*!
1550  * @brief プレイヤーの打撃処理サブルーチン /
1551  * Player attacks a (poor, defenseless) creature        -RAK-
1552  * @param y 攻撃目標のY座標
1553  * @param x 攻撃目標のX座標
1554  * @param fear 攻撃を受けたモンスターが恐慌状態に陥ったかを返す参照ポインタ
1555  * @param mdeath 攻撃を受けたモンスターが死亡したかを返す参照ポインタ
1556  * @param hand 攻撃を行うための武器を持つ手
1557  * @param mode 発動中の剣術ID
1558  * @return なし
1559  * @details
1560  * If no "weapon" is available, then "punch" the monster one time.
1561  */
1562 static void py_attack_aux(int y, int x, bool *fear, bool *mdeath, s16b hand, int mode)
1563 {
1564         int             num = 0, k, bonus, chance, vir;
1565
1566         cave_type       *c_ptr = &cave[y][x];
1567
1568         monster_type    *m_ptr = &m_list[c_ptr->m_idx];
1569         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
1570
1571         /* Access the weapon */
1572         object_type     *o_ptr = &inventory[INVEN_RARM + hand];
1573
1574         char            m_name[80];
1575
1576         bool            success_hit = FALSE;
1577         bool            backstab = FALSE;
1578         bool            vorpal_cut = FALSE;
1579         int             chaos_effect = 0;
1580         bool            stab_fleeing = FALSE;
1581         bool            fuiuchi = FALSE;
1582         bool            monk_attack = FALSE;
1583         bool            do_quake = FALSE;
1584         bool            weak = FALSE;
1585         bool            drain_msg = TRUE;
1586         int             drain_result = 0, drain_heal = 0;
1587         bool            can_drain = FALSE;
1588         int             num_blow;
1589         int             drain_left = MAX_VAMPIRIC_DRAIN;
1590         u32b flgs[TR_FLAG_SIZE]; /* A massive hack -- life-draining weapons */
1591         bool            is_human = (r_ptr->d_char == 'p');
1592         bool            is_lowlevel = (r_ptr->level < (p_ptr->lev - 15));
1593         bool            zantetsu_mukou, e_j_mukou;
1594
1595         switch (p_ptr->pclass)
1596         {
1597         case CLASS_ROGUE:
1598         case CLASS_NINJA:
1599                 if (buki_motteruka(INVEN_RARM + hand) && !p_ptr->icky_wield[hand])
1600                 {
1601                         int tmp = p_ptr->lev * 6 + (p_ptr->skill_stl + 10) * 4;
1602                         if (p_ptr->monlite && (mode != HISSATSU_NYUSIN)) tmp /= 3;
1603                         if (p_ptr->cursed & TRC_AGGRAVATE) tmp /= 2;
1604                         if (r_ptr->level > (p_ptr->lev * p_ptr->lev / 20 + 10)) tmp /= 3;
1605                         if (MON_CSLEEP(m_ptr) && m_ptr->ml)
1606                         {
1607                                 /* Can't backstab creatures that we can't see, right? */
1608                                 backstab = TRUE;
1609                         }
1610                         else if ((p_ptr->special_defense & NINJA_S_STEALTH) && (randint0(tmp) > (r_ptr->level+20)) && m_ptr->ml && !(r_ptr->flagsr & RFR_RES_ALL))
1611                         {
1612                                 fuiuchi = TRUE;
1613                         }
1614                         else if (MON_MONFEAR(m_ptr) && m_ptr->ml)
1615                         {
1616                                 stab_fleeing = TRUE;
1617                         }
1618                 }
1619                 break;
1620
1621         case CLASS_MONK:
1622         case CLASS_FORCETRAINER:
1623         case CLASS_BERSERKER:
1624                 if ((empty_hands(TRUE) & EMPTY_HAND_RARM) && !p_ptr->riding) monk_attack = TRUE;
1625                 break;
1626         }
1627
1628         if (!o_ptr->k_idx) /* Empty hand */
1629         {
1630                 if ((r_ptr->level + 10) > p_ptr->lev)
1631                 {
1632                         if (p_ptr->skill_exp[GINOU_SUDE] < s_info[p_ptr->pclass].s_max[GINOU_SUDE])
1633                         {
1634                                 if (p_ptr->skill_exp[GINOU_SUDE] < WEAPON_EXP_BEGINNER)
1635                                         p_ptr->skill_exp[GINOU_SUDE] += 40;
1636                                 else if ((p_ptr->skill_exp[GINOU_SUDE] < WEAPON_EXP_SKILLED))
1637                                         p_ptr->skill_exp[GINOU_SUDE] += 5;
1638                                 else if ((p_ptr->skill_exp[GINOU_SUDE] < WEAPON_EXP_EXPERT) && (p_ptr->lev > 19))
1639                                         p_ptr->skill_exp[GINOU_SUDE] += 1;
1640                                 else if ((p_ptr->lev > 34))
1641                                         if (one_in_(3)) p_ptr->skill_exp[GINOU_SUDE] += 1;
1642                                 p_ptr->update |= (PU_BONUS);
1643                         }
1644                 }
1645         }
1646         else if (object_is_melee_weapon(o_ptr))
1647         {
1648                 if ((r_ptr->level + 10) > p_ptr->lev)
1649                 {
1650                         int tval = inventory[INVEN_RARM+hand].tval - TV_WEAPON_BEGIN;
1651                         int sval = inventory[INVEN_RARM+hand].sval;
1652                         int now_exp = p_ptr->weapon_exp[tval][sval];
1653                         if (now_exp < s_info[p_ptr->pclass].w_max[tval][sval])
1654                         {
1655                                 int amount = 0;
1656                                 if (now_exp < WEAPON_EXP_BEGINNER) amount = 80;
1657                                 else if (now_exp < WEAPON_EXP_SKILLED) amount = 10;
1658                                 else if ((now_exp < WEAPON_EXP_EXPERT) && (p_ptr->lev > 19)) amount = 1;
1659                                 else if ((p_ptr->lev > 34) && one_in_(2)) amount = 1;
1660                                 p_ptr->weapon_exp[tval][sval] += amount;
1661                                 p_ptr->update |= (PU_BONUS);
1662                         }
1663                 }
1664         }
1665
1666         /* Disturb the monster */
1667         (void)set_monster_csleep(c_ptr->m_idx, 0);
1668
1669         /* Extract monster name (or "it") */
1670         monster_desc(m_name, m_ptr, 0);
1671
1672         /* Calculate the "attack quality" */
1673         bonus = p_ptr->to_h[hand] + o_ptr->to_h;
1674         chance = (p_ptr->skill_thn + (bonus * BTH_PLUS_ADJ));
1675         if (mode == HISSATSU_IAI) chance += 60;
1676         if (p_ptr->special_defense & KATA_KOUKIJIN) chance += 150;
1677
1678         if (p_ptr->sutemi) chance = MAX(chance * 3 / 2, chance + 60);
1679
1680         vir = virtue_number(V_VALOUR);
1681         if (vir)
1682         {
1683                 chance += (p_ptr->virtues[vir - 1]/10);
1684         }
1685
1686         zantetsu_mukou = ((o_ptr->name1 == ART_ZANTETSU) && (r_ptr->d_char == 'j'));
1687         e_j_mukou = ((o_ptr->name1 == ART_EXCALIBUR_J) && (r_ptr->d_char == 'S'));
1688
1689         if ((mode == HISSATSU_KYUSHO) || (mode == HISSATSU_MINEUCHI) || (mode == HISSATSU_3DAN) || (mode == HISSATSU_IAI)) num_blow = 1;
1690         else if (mode == HISSATSU_COLD) num_blow = p_ptr->num_blow[hand]+2;
1691         else num_blow = p_ptr->num_blow[hand];
1692
1693         /* Hack -- DOKUBARI always hit once */
1694         if ((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) num_blow = 1;
1695
1696         /* Attack once for each legal blow */
1697         while ((num++ < num_blow) && !p_ptr->is_dead)
1698         {
1699                 if (((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) || (mode == HISSATSU_KYUSHO))
1700                 {
1701                         int n = 1;
1702
1703                         if (p_ptr->migite && p_ptr->hidarite)
1704                         {
1705                                 n *= 2;
1706                         }
1707                         if (mode == HISSATSU_3DAN)
1708                         {
1709                                 n *= 2;
1710                         }
1711
1712                         success_hit = one_in_(n);
1713                 }
1714                 else if ((p_ptr->pclass == CLASS_NINJA) && ((backstab || fuiuchi) && !(r_ptr->flagsr & RFR_RES_ALL))) success_hit = TRUE;
1715                 else success_hit = test_hit_norm(chance, r_ptr->ac, m_ptr->ml);
1716
1717                 if (mode == HISSATSU_MAJIN)
1718                 {
1719                         if (one_in_(2))
1720                                 success_hit = FALSE;
1721                 }
1722
1723                 /* Test for hit */
1724                 if (success_hit)
1725                 {
1726                         int vorpal_chance = ((o_ptr->name1 == ART_VORPAL_BLADE) || (o_ptr->name1 == ART_CHAINSWORD)) ? 2 : 4;
1727
1728                         /* Sound */
1729                         sound(SOUND_HIT);
1730
1731                         /* Message */
1732 #ifdef JP
1733                         if (backstab) msg_format("あなたは冷酷にも眠っている無力な%sを突き刺した!", m_name);
1734                         else if (fuiuchi) msg_format("不意を突いて%sに強烈な一撃を喰らわせた!", m_name);
1735                         else if (stab_fleeing) msg_format("逃げる%sを背中から突き刺した!", m_name);
1736                         else if (!monk_attack) msg_format("%sを攻撃した。", m_name);
1737 #else
1738                         if (backstab) msg_format("You cruelly stab the helpless, sleeping %s!", m_name);
1739                         else if (fuiuchi) msg_format("You make surprise attack, and hit %s with a powerful blow!", m_name);
1740                         else if (stab_fleeing) msg_format("You backstab the fleeing %s!",  m_name);
1741                         else if (!monk_attack) msg_format("You hit %s.", m_name);
1742 #endif
1743
1744                         /* Hack -- bare hands do one damage */
1745                         k = 1;
1746
1747                         object_flags(o_ptr, flgs);
1748
1749                         /* Select a chaotic effect (50% chance) */
1750                         if ((have_flag(flgs, TR_CHAOTIC)) && one_in_(2))
1751                         {
1752                                 if (one_in_(10))
1753                                 chg_virtue(V_CHANCE, 1);
1754
1755                                 if (randint1(5) < 3)
1756                                 {
1757                                         /* Vampiric (20%) */
1758                                         chaos_effect = 1;
1759                                 }
1760                                 else if (one_in_(250))
1761                                 {
1762                                         /* Quake (0.12%) */
1763                                         chaos_effect = 2;
1764                                 }
1765                                 else if (!one_in_(10))
1766                                 {
1767                                         /* Confusion (26.892%) */
1768                                         chaos_effect = 3;
1769                                 }
1770                                 else if (one_in_(2))
1771                                 {
1772                                         /* Teleport away (1.494%) */
1773                                         chaos_effect = 4;
1774                                 }
1775                                 else
1776                                 {
1777                                         /* Polymorph (1.494%) */
1778                                         chaos_effect = 5;
1779                                 }
1780                         }
1781
1782                         /* Vampiric drain */
1783                         if ((have_flag(flgs, TR_VAMPIRIC)) || (chaos_effect == 1) || (mode == HISSATSU_DRAIN) || hex_spelling(HEX_VAMP_BLADE))
1784                         {
1785                                 /* Only drain "living" monsters */
1786                                 if (monster_living(r_ptr))
1787                                         can_drain = TRUE;
1788                                 else
1789                                         can_drain = FALSE;
1790                         }
1791
1792                         if ((have_flag(flgs, TR_VORPAL) || hex_spelling(HEX_RUNESWORD)) && (randint1(vorpal_chance*3/2) == 1) && !zantetsu_mukou)
1793                                 vorpal_cut = TRUE;
1794                         else vorpal_cut = FALSE;
1795
1796                         if (monk_attack)
1797                         {
1798                                 int special_effect = 0, stun_effect = 0, times = 0, max_times;
1799                                 int min_level = 1;
1800                                 const martial_arts *ma_ptr = &ma_blows[0], *old_ptr = &ma_blows[0];
1801                                 int resist_stun = 0;
1802                                 int weight = 8;
1803
1804                                 if (r_ptr->flags1 & RF1_UNIQUE) resist_stun += 88;
1805                                 if (r_ptr->flags3 & RF3_NO_STUN) resist_stun += 66;
1806                                 if (r_ptr->flags3 & RF3_NO_CONF) resist_stun += 33;
1807                                 if (r_ptr->flags3 & RF3_NO_SLEEP) resist_stun += 33;
1808                                 if ((r_ptr->flags3 & RF3_UNDEAD) || (r_ptr->flags3 & RF3_NONLIVING))
1809                                         resist_stun += 66;
1810
1811                                 if (p_ptr->special_defense & KAMAE_BYAKKO)
1812                                         max_times = (p_ptr->lev < 3 ? 1 : p_ptr->lev / 3);
1813                                 else if (p_ptr->special_defense & KAMAE_SUZAKU)
1814                                         max_times = 1;
1815                                 else if (p_ptr->special_defense & KAMAE_GENBU)
1816                                         max_times = 1;
1817                                 else
1818                                         max_times = (p_ptr->lev < 7 ? 1 : p_ptr->lev / 7);
1819                                 /* Attempt 'times' */
1820                                 for (times = 0; times < max_times; times++)
1821                                 {
1822                                         do
1823                                         {
1824                                                 ma_ptr = &ma_blows[randint0(MAX_MA)];
1825                                                 if ((p_ptr->pclass == CLASS_FORCETRAINER) && (ma_ptr->min_level > 1)) min_level = ma_ptr->min_level + 3;
1826                                                 else min_level = ma_ptr->min_level;
1827                                         }
1828                                         while ((min_level > p_ptr->lev) ||
1829                                                (randint1(p_ptr->lev) < ma_ptr->chance));
1830
1831                                         /* keep the highest level attack available we found */
1832                                         if ((ma_ptr->min_level > old_ptr->min_level) &&
1833                                             !p_ptr->stun && !p_ptr->confused)
1834                                         {
1835                                                 old_ptr = ma_ptr;
1836
1837                                                 if (p_ptr->wizard && cheat_xtra)
1838                                                 {
1839                                                         msg_print(_("攻撃を再選択しました。", "Attack re-selected."));
1840                                                 }
1841                                         }
1842                                         else
1843                                         {
1844                                                 ma_ptr = old_ptr;
1845                                         }
1846                                 }
1847
1848                                 if (p_ptr->pclass == CLASS_FORCETRAINER) min_level = MAX(1, ma_ptr->min_level - 3);
1849                                 else min_level = ma_ptr->min_level;
1850                                 k = damroll(ma_ptr->dd + p_ptr->to_dd[hand], ma_ptr->ds + p_ptr->to_ds[hand]);
1851                                 if (p_ptr->special_attack & ATTACK_SUIKEN) k *= 2;
1852
1853                                 if (ma_ptr->effect == MA_KNEE)
1854                                 {
1855                                         if (r_ptr->flags1 & RF1_MALE)
1856                                         {
1857                                                 msg_format(_("%sに金的膝蹴りをくらわした!", "You hit %s in the groin with your knee!"), m_name);
1858                                                 sound(SOUND_PAIN);
1859                                                 special_effect = MA_KNEE;
1860                                         }
1861                                         else
1862                                                 msg_format(ma_ptr->desc, m_name);
1863                                 }
1864
1865                                 else if (ma_ptr->effect == MA_SLOW)
1866                                 {
1867                                         if (!((r_ptr->flags1 & RF1_NEVER_MOVE) ||
1868                                             my_strchr("~#{}.UjmeEv$,DdsbBFIJQSXclnw!=?", r_ptr->d_char)))
1869                                         {
1870                                                 msg_format(_("%sの足首に関節蹴りをくらわした!", "You kick %s in the ankle."), m_name);
1871                                                 special_effect = MA_SLOW;
1872                                         }
1873                                         else msg_format(ma_ptr->desc, m_name);
1874                                 }
1875                                 else
1876                                 {
1877                                         if (ma_ptr->effect)
1878                                         {
1879                                                 stun_effect = (ma_ptr->effect / 2) + randint1(ma_ptr->effect / 2);
1880                                         }
1881
1882                                         msg_format(ma_ptr->desc, m_name);
1883                                 }
1884
1885                                 if (p_ptr->special_defense & KAMAE_SUZAKU) weight = 4;
1886                                 if ((p_ptr->pclass == CLASS_FORCETRAINER) && (p_ptr->magic_num1[0]))
1887                                 {
1888                                         weight += (p_ptr->magic_num1[0]/30);
1889                                         if (weight > 20) weight = 20;
1890                                 }
1891
1892                                 k = critical_norm(p_ptr->lev * weight, min_level, k, p_ptr->to_h[0], 0);
1893
1894                                 if ((special_effect == MA_KNEE) && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
1895                                 {
1896                                         msg_format(_("%^sは苦痛にうめいている!", "%^s moans in agony!"), m_name);
1897                                         stun_effect = 7 + randint1(13);
1898                                         resist_stun /= 3;
1899                                 }
1900
1901                                 else if ((special_effect == MA_SLOW) && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
1902                                 {
1903                                         if (!(r_ptr->flags1 & RF1_UNIQUE) &&
1904                                             (randint1(p_ptr->lev) > r_ptr->level) &&
1905                                             m_ptr->mspeed > 60)
1906                                         {
1907                                                 msg_format(_("%^sは足をひきずり始めた。", "%^s starts limping slower."), m_name);
1908                                                 m_ptr->mspeed -= 10;
1909                                         }
1910                                 }
1911
1912                                 if (stun_effect && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
1913                                 {
1914                                         if (p_ptr->lev > randint1(r_ptr->level + resist_stun + 10))
1915                                         {
1916                                                 if (set_monster_stunned(c_ptr->m_idx, stun_effect + MON_STUNNED(m_ptr)))
1917                                                 {
1918                                                         msg_format(_("%^sはフラフラになった。", "%^s is stunned."), m_name);
1919                                                 }
1920                                                 else
1921                                                 {
1922                                                         msg_format(_("%^sはさらにフラフラになった。", "%^s is more stunned."), m_name);
1923                                                 }
1924                                         }
1925                                 }
1926                         }
1927
1928                         /* Handle normal weapon */
1929                         else if (o_ptr->k_idx)
1930                         {
1931                                 k = damroll(o_ptr->dd + p_ptr->to_dd[hand], o_ptr->ds + p_ptr->to_ds[hand]);
1932                                 k = tot_dam_aux(o_ptr, k, m_ptr, mode, FALSE);
1933
1934                                 if (backstab)
1935                                 {
1936                                         k *= (3 + (p_ptr->lev / 20));
1937                                 }
1938                                 else if (fuiuchi)
1939                                 {
1940                                         k = k*(5+(p_ptr->lev*2/25))/2;
1941                                 }
1942                                 else if (stab_fleeing)
1943                                 {
1944                                         k = (3 * k) / 2;
1945                                 }
1946
1947                                 if ((p_ptr->impact[hand] && ((k > 50) || one_in_(7))) ||
1948                                          (chaos_effect == 2) || (mode == HISSATSU_QUAKE))
1949                                 {
1950                                         do_quake = TRUE;
1951                                 }
1952
1953                                 if ((!(o_ptr->tval == TV_SWORD) || !(o_ptr->sval == SV_DOKUBARI)) && !(mode == HISSATSU_KYUSHO))
1954                                         k = critical_norm(o_ptr->weight, o_ptr->to_h, k, p_ptr->to_h[hand], mode);
1955
1956                                 drain_result = k;
1957
1958                                 if (vorpal_cut)
1959                                 {
1960                                         int mult = 2;
1961
1962                                         if ((o_ptr->name1 == ART_CHAINSWORD) && !one_in_(2))
1963                                         {
1964                                                 char chainsword_noise[1024];
1965                                                 if (!get_rnd_line(_("chainswd_j.txt", "chainswd.txt"), 0, chainsword_noise))
1966                                                 {
1967                                                         msg_print(chainsword_noise);
1968                                                 }
1969                                         }
1970
1971                                         if (o_ptr->name1 == ART_VORPAL_BLADE)
1972                                         {
1973                                                 msg_print(_("目にも止まらぬヴォーパルブレード、手錬の早業!", "Your Vorpal Blade goes snicker-snack!"));
1974                                         }
1975                                         else
1976                                         {
1977                                                 msg_format(_("%sをグッサリ切り裂いた!", "Your weapon cuts deep into %s!"), m_name);
1978                                         }
1979
1980                                         /* Try to increase the damage */
1981                                         while (one_in_(vorpal_chance))
1982                                         {
1983                                                 mult++;
1984                                         }
1985
1986                                         k *= mult;
1987
1988                                         /* Ouch! */
1989                                         if (((r_ptr->flagsr & RFR_RES_ALL) ? k/100 : k) > m_ptr->hp)
1990                                         {
1991                                                 msg_format(_("%sを真っ二つにした!", "You cut %s in half!"), m_name);
1992                                         }
1993                                         else
1994                                         {
1995                                                 switch (mult)
1996                                                 {
1997                                                 case 2: msg_format(_("%sを斬った!", "You gouge %s!"), m_name); break;
1998                                                 case 3: msg_format(_("%sをぶった斬った!", "You maim %s!"), m_name); break;
1999                                                 case 4: msg_format(_("%sをメッタ斬りにした!", "You carve %s!"), m_name); break;
2000                                                 case 5: msg_format(_("%sをメッタメタに斬った!", "You cleave %s!"), m_name); break;
2001                                                 case 6: msg_format(_("%sを刺身にした!", "You smite %s!"), m_name); break;
2002                                                 case 7: msg_format(_("%sを斬って斬って斬りまくった!", "You eviscerate %s!"), m_name); break;
2003                                                 default: msg_format(_("%sを細切れにした!", "You shred %s!"), m_name); break;
2004                                                 }
2005                                         }
2006                                         drain_result = drain_result * 3 / 2;
2007                                 }
2008
2009                                 k += o_ptr->to_d;
2010                                 drain_result += o_ptr->to_d;
2011                         }
2012
2013                         /* Apply the player damage bonuses */
2014                         k += p_ptr->to_d[hand];
2015                         drain_result += p_ptr->to_d[hand];
2016
2017                         if ((mode == HISSATSU_SUTEMI) || (mode == HISSATSU_3DAN)) k *= 2;
2018                         if ((mode == HISSATSU_SEKIRYUKA) && !monster_living(r_ptr)) k = 0;
2019                         if ((mode == HISSATSU_SEKIRYUKA) && !p_ptr->cut) k /= 2;
2020
2021                         /* No negative damage */
2022                         if (k < 0) k = 0;
2023
2024                         if ((mode == HISSATSU_ZANMA) && !(!monster_living(r_ptr) && (r_ptr->flags3 & RF3_EVIL)))
2025                         {
2026                                 k = 0;
2027                         }
2028
2029                         if (zantetsu_mukou)
2030                         {
2031                                 msg_print(_("こんな軟らかいものは切れん!", "You cannot cut such a elastic thing!"));
2032                                 k = 0;
2033                         }
2034
2035                         if (e_j_mukou)
2036                         {
2037                                 msg_print(_("蜘蛛は苦手だ!", "Spiders are difficult for you to deal with!"));
2038                                 k /= 2;
2039                         }
2040
2041                         if (mode == HISSATSU_MINEUCHI)
2042                         {
2043                                 int tmp = (10 + randint1(15) + p_ptr->lev / 5);
2044
2045                                 k = 0;
2046                                 anger_monster(m_ptr);
2047
2048                                 if (!(r_ptr->flags3 & (RF3_NO_STUN)))
2049                                 {
2050                                         /* Get stunned */
2051                                         if (MON_STUNNED(m_ptr))
2052                                         {
2053                                                 msg_format(_("%sはひどくもうろうとした。", "%s is more dazed."), m_name);
2054                                                 tmp /= 2;
2055                                         }
2056                                         else
2057                                         {
2058                                                 msg_format(_("%s はもうろうとした。", "%s is dazed."), m_name);
2059                                         }
2060
2061                                         /* Apply stun */
2062                                         (void)set_monster_stunned(c_ptr->m_idx, MON_STUNNED(m_ptr) + tmp);
2063                                 }
2064                                 else
2065                                 {
2066                                         msg_format(_("%s には効果がなかった。", "%s is not effected."), m_name);
2067                                 }
2068                         }
2069
2070                         /* Modify the damage */
2071                         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))));
2072                         if (((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) || (mode == HISSATSU_KYUSHO))
2073                         {
2074                                 if ((randint1(randint1(r_ptr->level/7)+5) == 1) && !(r_ptr->flags1 & RF1_UNIQUE) && !(r_ptr->flags7 & RF7_UNIQUE2))
2075                                 {
2076                                         k = m_ptr->hp + 1;
2077                                         msg_format(_("%sの急所を突き刺した!", "You hit %s on a fatal spot!"), m_name);
2078                                 }
2079                                 else k = 1;
2080                         }
2081                         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)))
2082                         {
2083                                 int maxhp = maxroll(r_ptr->hdice, r_ptr->hside);
2084                                 if (one_in_(backstab ? 13 : (stab_fleeing || fuiuchi) ? 15 : 27))
2085                                 {
2086                                         k *= 5;
2087                                         drain_result *= 2;
2088                                         msg_format(_("刃が%sに深々と突き刺さった!", "You critically injured %s!"), m_name);
2089                                 }
2090                                 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)))
2091                                 {
2092                                         if ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_UNIQUE2) || (m_ptr->hp >= maxhp/2))
2093                                         {
2094                                                 k = MAX(k*5, m_ptr->hp/2);
2095                                                 drain_result *= 2;
2096                                                 msg_format(_("%sに致命傷を負わせた!", "You fatally injured %s!"), m_name);
2097                                         }
2098                                         else
2099                                         {
2100                                                 k = m_ptr->hp + 1;
2101                                                 msg_format(_("刃が%sの急所を貫いた!", "You hit %s on a fatal spot!"), m_name);
2102                                         }
2103                                 }
2104                         }
2105
2106                         /* Complex message */
2107                         if (p_ptr->wizard || cheat_xtra)
2108                         {
2109                                 msg_format(_("%d/%d のダメージを与えた。", "You do %d (out of %d) damage."), k, m_ptr->hp);
2110                         }
2111
2112                         if (k <= 0) can_drain = FALSE;
2113
2114                         if (drain_result > m_ptr->hp)
2115                                 drain_result = m_ptr->hp;
2116
2117                         /* Damage, check for fear and death */
2118                         if (mon_take_hit(c_ptr->m_idx, k, fear, NULL))
2119                         {
2120                                 *mdeath = TRUE;
2121                                 if ((p_ptr->pclass == CLASS_BERSERKER) && p_ptr->energy_use)
2122                                 {
2123                                         if (p_ptr->migite && p_ptr->hidarite)
2124                                         {
2125                                                 if (hand) p_ptr->energy_use = p_ptr->energy_use*3/5+p_ptr->energy_use*num*2/(p_ptr->num_blow[hand]*5);
2126                                                 else p_ptr->energy_use = p_ptr->energy_use*num*3/(p_ptr->num_blow[hand]*5);
2127                                         }
2128                                         else
2129                                         {
2130                                                 p_ptr->energy_use = p_ptr->energy_use*num/p_ptr->num_blow[hand];
2131                                         }
2132                                 }
2133                                 if ((o_ptr->name1 == ART_ZANTETSU) && is_lowlevel)
2134                                         msg_print(_("またつまらぬものを斬ってしまった...", "Sigh... Another trifling thing I've cut...."));
2135                                 break;
2136                         }
2137
2138                         /* Anger the monster */
2139                         if (k > 0) anger_monster(m_ptr);
2140
2141                         touch_zap_player(m_ptr);
2142
2143                         /* Are we draining it?  A little note: If the monster is
2144                         dead, the drain does not work... */
2145
2146                         if (can_drain && (drain_result > 0))
2147                         {
2148                                 if (o_ptr->name1 == ART_MURAMASA)
2149                                 {
2150                                         if (is_human)
2151                                         {
2152                                                 int to_h = o_ptr->to_h;
2153                                                 int to_d = o_ptr->to_d;
2154                                                 int i, flag;
2155
2156                                                 flag = 1;
2157                                                 for (i = 0; i < to_h + 3; i++) if (one_in_(4)) flag = 0;
2158                                                 if (flag) to_h++;
2159
2160                                                 flag = 1;
2161                                                 for (i = 0; i < to_d + 3; i++) if (one_in_(4)) flag = 0;
2162                                                 if (flag) to_d++;
2163
2164                                                 if (o_ptr->to_h != to_h || o_ptr->to_d != to_d)
2165                                                 {
2166                                                         msg_print(_("妖刀は血を吸って強くなった!", "Muramasa sucked blood, and became more powerful!"));
2167                                                         o_ptr->to_h = to_h;
2168                                                         o_ptr->to_d = to_d;
2169                                                 }
2170                                         }
2171                                 }
2172                                 else
2173                                 {
2174                                         if (drain_result > 5) /* Did we really hurt it? */
2175                                         {
2176                                                 drain_heal = damroll(2, drain_result / 6);
2177
2178                                                 /* Hex */
2179                                                 if (hex_spelling(HEX_VAMP_BLADE)) drain_heal *= 2;
2180
2181                                                 if (cheat_xtra)
2182                                                 {
2183                                                         msg_format(_("Draining left: %d", "Draining left: %d"), drain_left);
2184                                                 }
2185
2186                                                 if (drain_left)
2187                                                 {
2188                                                         if (drain_heal < drain_left)
2189                                                         {
2190                                                                 drain_left -= drain_heal;
2191                                                         }
2192                                                         else
2193                                                         {
2194                                                                 drain_heal = drain_left;
2195                                                                 drain_left = 0;
2196                                                         }
2197
2198                                                         if (drain_msg)
2199                                                         {
2200                                                                 msg_format(_("刃が%sから生命力を吸い取った!", "Your weapon drains life from %s!"), m_name);
2201                                                                 drain_msg = FALSE;
2202                                                         }
2203
2204                                                         drain_heal = (drain_heal * mutant_regenerate_mod) / 100;
2205
2206                                                         hp_player(drain_heal);
2207                                                         /* We get to keep some of it! */
2208                                                 }
2209                                         }
2210                                 }
2211                                 m_ptr->maxhp -= (k+7)/8;
2212                                 if (m_ptr->hp > m_ptr->maxhp) m_ptr->hp = m_ptr->maxhp;
2213                                 if (m_ptr->maxhp < 1) m_ptr->maxhp = 1;
2214                                 weak = TRUE;
2215                         }
2216                         can_drain = FALSE;
2217                         drain_result = 0;
2218
2219                         /* Confusion attack */
2220                         if ((p_ptr->special_attack & ATTACK_CONFUSE) || (chaos_effect == 3) || (mode == HISSATSU_CONF) || hex_spelling(HEX_CONFUSION))
2221                         {
2222                                 /* Cancel glowing hands */
2223                                 if (p_ptr->special_attack & ATTACK_CONFUSE)
2224                                 {
2225                                         p_ptr->special_attack &= ~(ATTACK_CONFUSE);
2226                                         msg_print(_("手の輝きがなくなった。", "Your hands stop glowing."));
2227                                         p_ptr->redraw |= (PR_STATUS);
2228
2229                                 }
2230
2231                                 /* Confuse the monster */
2232                                 if (r_ptr->flags3 & RF3_NO_CONF)
2233                                 {
2234                                         if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags3 |= RF3_NO_CONF;
2235                                         msg_format(_("%^sには効果がなかった。", "%^s is unaffected."), m_name);
2236
2237                                 }
2238                                 else if (randint0(100) < r_ptr->level)
2239                                 {
2240                                         msg_format(_("%^sには効果がなかった。", "%^s is unaffected."), m_name);
2241                                 }
2242                                 else
2243                                 {
2244                                         msg_format(_("%^sは混乱したようだ。", "%^s appears confused."), m_name);
2245                                         (void)set_monster_confused(c_ptr->m_idx, MON_CONFUSED(m_ptr) + 10 + randint0(p_ptr->lev) / 5);
2246                                 }
2247                         }
2248
2249                         else if (chaos_effect == 4)
2250                         {
2251                                 bool resists_tele = FALSE;
2252
2253                                 if (r_ptr->flagsr & RFR_RES_TELE)
2254                                 {
2255                                         if (r_ptr->flags1 & RF1_UNIQUE)
2256                                         {
2257                                                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flagsr |= RFR_RES_TELE;
2258                                                 msg_format(_("%^sには効果がなかった。", "%^s is unaffected!"), m_name);
2259                                                 resists_tele = TRUE;
2260                                         }
2261                                         else if (r_ptr->level > randint1(100))
2262                                         {
2263                                                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flagsr |= RFR_RES_TELE;
2264                                                 msg_format(_("%^sは抵抗力を持っている!", "%^s resists!"), m_name);
2265                                                 resists_tele = TRUE;
2266                                         }
2267                                 }
2268
2269                                 if (!resists_tele)
2270                                 {
2271                                         msg_format(_("%^sは消えた!", "%^s disappears!"), m_name);
2272                                         teleport_away(c_ptr->m_idx, 50, TELEPORT_PASSIVE);
2273                                         num = num_blow + 1; /* Can't hit it anymore! */
2274                                         *mdeath = TRUE;
2275                                 }
2276                         }
2277
2278                         else if ((chaos_effect == 5) && (randint1(90) > r_ptr->level))
2279                         {
2280                                 if (!(r_ptr->flags1 & (RF1_UNIQUE | RF1_QUESTOR)) &&
2281                                     !(r_ptr->flagsr & RFR_EFF_RES_CHAO_MASK))
2282                                 {
2283                                         if (polymorph_monster(y, x))
2284                                         {
2285                                                 msg_format(_("%^sは変化した!", "%^s changes!"), m_name);
2286                                                 *fear = FALSE;
2287                                                 weak = FALSE;
2288                                         }
2289                                         else
2290                                         {
2291                                                 msg_format(_("%^sには効果がなかった。", "%^s is unaffected."), m_name);
2292                                         }
2293
2294                                         /* Hack -- Get new monster */
2295                                         m_ptr = &m_list[c_ptr->m_idx];
2296
2297                                         /* Oops, we need a different name... */
2298                                         monster_desc(m_name, m_ptr, 0);
2299
2300                                         /* Hack -- Get new race */
2301                                         r_ptr = &r_info[m_ptr->r_idx];
2302                                 }
2303                         }
2304                         else if (o_ptr->name1 == ART_G_HAMMER)
2305                         {
2306                                 monster_type *m_ptr = &m_list[c_ptr->m_idx];
2307
2308                                 if (m_ptr->hold_o_idx)
2309                                 {
2310                                         object_type *q_ptr = &o_list[m_ptr->hold_o_idx];
2311                                         char o_name[MAX_NLEN];
2312
2313                                         object_desc(o_name, q_ptr, OD_NAME_ONLY);
2314                                         q_ptr->held_m_idx = 0;
2315                                         q_ptr->marked = OM_TOUCHED;
2316                                         m_ptr->hold_o_idx = q_ptr->next_o_idx;
2317                                         q_ptr->next_o_idx = 0;
2318                                         msg_format(_("%sを奪った。", "You snatched %s."), o_name);
2319                                         inven_carry(q_ptr);
2320                                 }
2321                         }
2322                 }
2323
2324                 /* Player misses */
2325                 else
2326                 {
2327                         backstab = FALSE; /* Clumsy! */
2328                         fuiuchi = FALSE; /* Clumsy! */
2329
2330                         if ((o_ptr->tval == TV_POLEARM) && (o_ptr->sval == SV_DEATH_SCYTHE) && one_in_(3))
2331                         {
2332                                 u32b flgs[TR_FLAG_SIZE];
2333
2334                                 /* Sound */
2335                                 sound(SOUND_HIT);
2336
2337                                 /* Message */
2338                                 msg_format(_("ミス! %sにかわされた。", "You miss %s."), m_name);
2339                                 /* Message */
2340                                 msg_print(_("振り回した大鎌が自分自身に返ってきた!", "Your scythe returns to you!"));
2341
2342                                 /* Extract the flags */
2343                                 object_flags(o_ptr, flgs);
2344
2345                                 k = damroll(o_ptr->dd + p_ptr->to_dd[hand], o_ptr->ds + p_ptr->to_ds[hand]);
2346                                 {
2347                                         int mult;
2348                                         switch (p_ptr->mimic_form)
2349                                         {
2350                                         case MIMIC_NONE:
2351                                                 switch (p_ptr->prace)
2352                                                 {
2353                                                         case RACE_YEEK:
2354                                                         case RACE_KLACKON:
2355                                                         case RACE_HUMAN:
2356                                                         case RACE_AMBERITE:
2357                                                         case RACE_DUNADAN:
2358                                                         case RACE_BARBARIAN:
2359                                                         case RACE_BEASTMAN:
2360                                                                 mult = 25;break;
2361                                                         case RACE_HALF_ORC:
2362                                                         case RACE_HALF_TROLL:
2363                                                         case RACE_HALF_OGRE:
2364                                                         case RACE_HALF_GIANT:
2365                                                         case RACE_HALF_TITAN:
2366                                                         case RACE_CYCLOPS:
2367                                                         case RACE_IMP:
2368                                                         case RACE_SKELETON:
2369                                                         case RACE_ZOMBIE:
2370                                                         case RACE_VAMPIRE:
2371                                                         case RACE_SPECTRE:
2372                                                         case RACE_DEMON:
2373                                                         case RACE_DRACONIAN:
2374                                                                 mult = 30;break;
2375                                                         default:
2376                                                                 mult = 10;break;
2377                                                 }
2378                                                 break;
2379                                         case MIMIC_DEMON:
2380                                         case MIMIC_DEMON_LORD:
2381                                         case MIMIC_VAMPIRE:
2382                                                 mult = 30;break;
2383                                         default:
2384                                                 mult = 10;break;
2385                                         }
2386
2387                                         if (p_ptr->align < 0 && mult < 20)
2388                                                 mult = 20;
2389                                         if (!(p_ptr->resist_acid || IS_OPPOSE_ACID() || p_ptr->immune_acid) && (mult < 25))
2390                                                 mult = 25;
2391                                         if (!(p_ptr->resist_elec || IS_OPPOSE_ELEC() || p_ptr->immune_elec) && (mult < 25))
2392                                                 mult = 25;
2393                                         if (!(p_ptr->resist_fire || IS_OPPOSE_FIRE() || p_ptr->immune_fire) && (mult < 25))
2394                                                 mult = 25;
2395                                         if (!(p_ptr->resist_cold || IS_OPPOSE_COLD() || p_ptr->immune_cold) && (mult < 25))
2396                                                 mult = 25;
2397                                         if (!(p_ptr->resist_pois || IS_OPPOSE_POIS()) && (mult < 25))
2398                                                 mult = 25;
2399
2400                                         if ((p_ptr->pclass != CLASS_SAMURAI) && (have_flag(flgs, TR_FORCE_WEAPON)) && (p_ptr->csp > (p_ptr->msp / 30)))
2401                                         {
2402                                                 p_ptr->csp -= (1+(p_ptr->msp / 30));
2403                                                 p_ptr->redraw |= (PR_MANA);
2404                                                 mult = mult * 3 / 2 + 20;
2405                                         }
2406                                         k *= mult;
2407                                         k /= 10;
2408                                 }
2409
2410                                 k = critical_norm(o_ptr->weight, o_ptr->to_h, k, p_ptr->to_h[hand], mode);
2411                                 if (one_in_(6))
2412                                 {
2413                                         int mult = 2;
2414                                         msg_format(_("グッサリ切り裂かれた!", "Your weapon cuts deep into yourself!"));
2415                                         /* Try to increase the damage */
2416                                         while (one_in_(4))
2417                                         {
2418                                                 mult++;
2419                                         }
2420
2421                                         k *= mult;
2422                                 }
2423                                 k += (p_ptr->to_d[hand] + o_ptr->to_d);
2424                                 if (k < 0) k = 0;
2425
2426                                 take_hit(DAMAGE_FORCE, k, _("死の大鎌", "Death scythe"), -1);
2427                                 redraw_stuff();
2428                         }
2429                         else
2430                         {
2431                                 /* Sound */
2432                                 sound(SOUND_MISS);
2433
2434                                 /* Message */
2435                                 msg_format(_("ミス! %sにかわされた。", "You miss %s."), m_name);
2436                         }
2437                 }
2438                 backstab = FALSE;
2439                 fuiuchi = FALSE;
2440         }
2441
2442
2443         if (weak && !(*mdeath))
2444         {
2445                 msg_format(_("%sは弱くなったようだ。", "%^s seems weakened."), m_name);
2446         }
2447         if (drain_left != MAX_VAMPIRIC_DRAIN)
2448         {
2449                 if (one_in_(4))
2450                 {
2451                         chg_virtue(V_UNLIFE, 1);
2452                 }
2453         }
2454         /* Mega-Hack -- apply earthquake brand */
2455         if (do_quake)
2456         {
2457                 earthquake(p_ptr->y, p_ptr->x, 10);
2458                 if (!cave[y][x].m_idx) *mdeath = TRUE;
2459         }
2460 }
2461
2462 /*!
2463  * @brief プレイヤーの打撃処理メインルーチン
2464  * @param y 攻撃目標のY座標
2465  * @param x 攻撃目標のX座標
2466  * @param mode 発動中の剣術ID
2467  * @return 実際に攻撃処理が行われた場合TRUEを返す。
2468  * @details
2469  * If no "weapon" is available, then "punch" the monster one time.
2470  */
2471 bool py_attack(int y, int x, int mode)
2472 {
2473         bool            fear = FALSE;
2474         bool            mdeath = FALSE;
2475         bool            stormbringer = FALSE;
2476
2477         cave_type       *c_ptr = &cave[y][x];
2478         monster_type    *m_ptr = &m_list[c_ptr->m_idx];
2479         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
2480         char            m_name[80];
2481
2482         /* Disturb the player */
2483         disturb(0, 1);
2484
2485         p_ptr->energy_use = 100;
2486
2487         if (!p_ptr->migite && !p_ptr->hidarite &&
2488             !(p_ptr->muta2 & (MUT2_HORNS | MUT2_BEAK | MUT2_SCOR_TAIL | MUT2_TRUNK | MUT2_TENTACLES)))
2489         {
2490                 msg_format(_("%s攻撃できない。", "You cannot do attacking."), 
2491                                         (empty_hands(FALSE) == EMPTY_HAND_NONE) ? _("両手がふさがって", "") : "");
2492                 return FALSE;
2493         }
2494
2495         /* Extract monster name (or "it") */
2496         monster_desc(m_name, m_ptr, 0);
2497
2498         if (m_ptr->ml)
2499         {
2500                 /* Auto-Recall if possible and visible */
2501                 if (!p_ptr->image) monster_race_track(m_ptr->ap_r_idx);
2502
2503                 /* Track a new monster */
2504                 health_track(c_ptr->m_idx);
2505         }
2506
2507         if ((r_ptr->flags1 & RF1_FEMALE) &&
2508             !(p_ptr->stun || p_ptr->confused || p_ptr->image || !m_ptr->ml))
2509         {
2510                 if ((inventory[INVEN_RARM].name1 == ART_ZANTETSU) || (inventory[INVEN_LARM].name1 == ART_ZANTETSU))
2511                 {
2512                         msg_print(_("拙者、おなごは斬れぬ!", "I can not attack women!"));
2513                         return FALSE;
2514                 }
2515         }
2516
2517         if (d_info[dungeon_type].flags1 & DF1_NO_MELEE)
2518         {
2519                 msg_print(_("なぜか攻撃することができない。", "Something prevent you from attacking."));
2520                 return FALSE;
2521         }
2522
2523         /* Stop if friendly */
2524         if (!is_hostile(m_ptr) &&
2525             !(p_ptr->stun || p_ptr->confused || p_ptr->image ||
2526             p_ptr->shero || !m_ptr->ml))
2527         {
2528                 if (inventory[INVEN_RARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
2529                 if (inventory[INVEN_LARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
2530                 if (stormbringer)
2531                 {
2532                         msg_format(_("黒い刃は強欲に%sを攻撃した!", "Your black blade greedily attacks %s!"), m_name);
2533                         chg_virtue(V_INDIVIDUALISM, 1);
2534                         chg_virtue(V_HONOUR, -1);
2535                         chg_virtue(V_JUSTICE, -1);
2536                         chg_virtue(V_COMPASSION, -1);
2537                 }
2538                 else if (p_ptr->pclass != CLASS_BERSERKER)
2539                 {
2540                         if (get_check(_("本当に攻撃しますか?", "Really hit it? ")))
2541                         {
2542                                 chg_virtue(V_INDIVIDUALISM, 1);
2543                                 chg_virtue(V_HONOUR, -1);
2544                                 chg_virtue(V_JUSTICE, -1);
2545                                 chg_virtue(V_COMPASSION, -1);
2546                         }
2547                         else
2548                         {
2549                                 msg_format(_("%sを攻撃するのを止めた。", "You stop to avoid hitting %s."), m_name);
2550                                 return FALSE;
2551                         }
2552                 }
2553         }
2554
2555
2556         /* Handle player fear */
2557         if (p_ptr->afraid)
2558         {
2559                 /* Message */
2560                 if (m_ptr->ml)
2561                         msg_format(_("恐くて%sを攻撃できない!", "You are too afraid to attack %s!"), m_name);
2562                 else
2563                         msg_format (_("そっちには何か恐いものがいる!", "There is something scary in your way!"));
2564
2565                 /* Disturb the monster */
2566                 (void)set_monster_csleep(c_ptr->m_idx, 0);
2567
2568                 /* Done */
2569                 return FALSE;
2570         }
2571
2572         if (MON_CSLEEP(m_ptr)) /* It is not honorable etc to attack helpless victims */
2573         {
2574                 if (!(r_ptr->flags3 & RF3_EVIL) || one_in_(5)) chg_virtue(V_COMPASSION, -1);
2575                 if (!(r_ptr->flags3 & RF3_EVIL) || one_in_(5)) chg_virtue(V_HONOUR, -1);
2576         }
2577
2578         if (p_ptr->migite && p_ptr->hidarite)
2579         {
2580                 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))
2581                 {
2582                         if (p_ptr->skill_exp[GINOU_NITOURYU] < WEAPON_EXP_BEGINNER)
2583                                 p_ptr->skill_exp[GINOU_NITOURYU] += 80;
2584                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < WEAPON_EXP_SKILLED)
2585                                 p_ptr->skill_exp[GINOU_NITOURYU] += 4;
2586                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < WEAPON_EXP_EXPERT)
2587                                 p_ptr->skill_exp[GINOU_NITOURYU] += 1;
2588                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < WEAPON_EXP_MASTER)
2589                                 if (one_in_(3)) p_ptr->skill_exp[GINOU_NITOURYU] += 1;
2590                         p_ptr->update |= (PU_BONUS);
2591                 }
2592         }
2593
2594         /* Gain riding experience */
2595         if (p_ptr->riding)
2596         {
2597                 int cur = p_ptr->skill_exp[GINOU_RIDING];
2598                 int max = s_info[p_ptr->pclass].s_max[GINOU_RIDING];
2599
2600                 if (cur < max)
2601                 {
2602                         int ridinglevel = r_info[m_list[p_ptr->riding].r_idx].level;
2603                         int targetlevel = r_ptr->level;
2604                         int inc = 0;
2605
2606                         if ((cur / 200 - 5) < targetlevel)
2607                                 inc += 1;
2608
2609                         /* Extra experience */
2610                         if ((cur / 100) < ridinglevel)
2611                         {
2612                                 if ((cur / 100 + 15) < ridinglevel)
2613                                         inc += 1 + (ridinglevel - (cur / 100 + 15));
2614                                 else
2615                                         inc += 1;
2616                         }
2617
2618                         p_ptr->skill_exp[GINOU_RIDING] = MIN(max, cur + inc);
2619
2620                         p_ptr->update |= (PU_BONUS);
2621                 }
2622         }
2623
2624         riding_t_m_idx = c_ptr->m_idx;
2625         if (p_ptr->migite) py_attack_aux(y, x, &fear, &mdeath, 0, mode);
2626         if (p_ptr->hidarite && !mdeath) py_attack_aux(y, x, &fear, &mdeath, 1, mode);
2627
2628         /* Mutations which yield extra 'natural' attacks */
2629         if (!mdeath)
2630         {
2631                 if ((p_ptr->muta2 & MUT2_HORNS) && !mdeath)
2632                         natural_attack(c_ptr->m_idx, MUT2_HORNS, &fear, &mdeath);
2633                 if ((p_ptr->muta2 & MUT2_BEAK) && !mdeath)
2634                         natural_attack(c_ptr->m_idx, MUT2_BEAK, &fear, &mdeath);
2635                 if ((p_ptr->muta2 & MUT2_SCOR_TAIL) && !mdeath)
2636                         natural_attack(c_ptr->m_idx, MUT2_SCOR_TAIL, &fear, &mdeath);
2637                 if ((p_ptr->muta2 & MUT2_TRUNK) && !mdeath)
2638                         natural_attack(c_ptr->m_idx, MUT2_TRUNK, &fear, &mdeath);
2639                 if ((p_ptr->muta2 & MUT2_TENTACLES) && !mdeath)
2640                         natural_attack(c_ptr->m_idx, MUT2_TENTACLES, &fear, &mdeath);
2641         }
2642
2643         /* Hack -- delay fear messages */
2644         if (fear && m_ptr->ml && !mdeath)
2645         {
2646                 /* Sound */
2647                 sound(SOUND_FLEE);
2648
2649                 /* Message */
2650                 msg_format(_("%^sは恐怖して逃げ出した!", "%^s flees in terror!"), m_name);
2651         }
2652
2653         if ((p_ptr->special_defense & KATA_IAI) && ((mode != HISSATSU_IAI) || mdeath))
2654         {
2655                 set_action(ACTION_NONE);
2656         }
2657
2658         return mdeath;
2659 }
2660
2661
2662 /*!
2663  * @brief パターンによる移動制限処理
2664  * @param c_y プレイヤーの移動元Y座標
2665  * @param c_x プレイヤーの移動元X座標
2666  * @param n_y プレイヤーの移動先Y座標
2667  * @param n_x プレイヤーの移動先X座標
2668  * @return 移動処理が可能である場合(可能な場合に選択した場合)TRUEを返す。
2669  */
2670 bool pattern_seq(int c_y, int c_x, int n_y, int n_x)
2671 {
2672         feature_type *cur_f_ptr = &f_info[cave[c_y][c_x].feat];
2673         feature_type *new_f_ptr = &f_info[cave[n_y][n_x].feat];
2674         bool is_pattern_tile_cur = have_flag(cur_f_ptr->flags, FF_PATTERN);
2675         bool is_pattern_tile_new = have_flag(new_f_ptr->flags, FF_PATTERN);
2676         int pattern_type_cur, pattern_type_new;
2677
2678         if (!is_pattern_tile_cur && !is_pattern_tile_new) return TRUE;
2679
2680         pattern_type_cur = is_pattern_tile_cur ? cur_f_ptr->subtype : NOT_PATTERN_TILE;
2681         pattern_type_new = is_pattern_tile_new ? new_f_ptr->subtype : NOT_PATTERN_TILE;
2682
2683         if (pattern_type_new == PATTERN_TILE_START)
2684         {
2685                 if (!is_pattern_tile_cur && !p_ptr->confused && !p_ptr->stun && !p_ptr->image)
2686                 {
2687                         if (get_check(_("パターンの上を歩き始めると、全てを歩かなければなりません。いいですか?", 
2688                                                         "If you start walking the Pattern, you must walk the whole way. Ok? ")))
2689                                 return TRUE;
2690                         else
2691                                 return FALSE;
2692                 }
2693                 else
2694                         return TRUE;
2695         }
2696         else if ((pattern_type_new == PATTERN_TILE_OLD) ||
2697                  (pattern_type_new == PATTERN_TILE_END) ||
2698                  (pattern_type_new == PATTERN_TILE_WRECKED))
2699         {
2700                 if (is_pattern_tile_cur)
2701                 {
2702                         return TRUE;
2703                 }
2704                 else
2705                 {
2706                         msg_print(_("パターンの上を歩くにはスタート地点から歩き始めなくてはなりません。",
2707                                                 "You must start walking the Pattern from the startpoint."));
2708
2709                         return FALSE;
2710                 }
2711         }
2712         else if ((pattern_type_new == PATTERN_TILE_TELEPORT) ||
2713                  (pattern_type_cur == PATTERN_TILE_TELEPORT))
2714         {
2715                 return TRUE;
2716         }
2717         else if (pattern_type_cur == PATTERN_TILE_START)
2718         {
2719                 if (is_pattern_tile_new)
2720                         return TRUE;
2721                 else
2722                 {
2723                         msg_print(_("パターンの上は正しい順序で歩かねばなりません。", "You must walk the Pattern in correct order."));
2724                         return FALSE;
2725                 }
2726         }
2727         else if ((pattern_type_cur == PATTERN_TILE_OLD) ||
2728                  (pattern_type_cur == PATTERN_TILE_END) ||
2729                  (pattern_type_cur == PATTERN_TILE_WRECKED))
2730         {
2731                 if (!is_pattern_tile_new)
2732                 {
2733                         msg_print(_("パターンを踏み外してはいけません。", "You may not step off from the Pattern."));
2734                         return FALSE;
2735                 }
2736                 else
2737                 {
2738                         return TRUE;
2739                 }
2740         }
2741         else
2742         {
2743                 if (!is_pattern_tile_cur)
2744                 {
2745                         msg_print(_("パターンの上を歩くにはスタート地点から歩き始めなくてはなりません。",
2746                                                 "You must start walking the Pattern from the startpoint."));
2747
2748                         return FALSE;
2749                 }
2750                 else
2751                 {
2752                         byte ok_move = PATTERN_TILE_START;
2753                         switch (pattern_type_cur)
2754                         {
2755                                 case PATTERN_TILE_1:
2756                                         ok_move = PATTERN_TILE_2;
2757                                         break;
2758                                 case PATTERN_TILE_2:
2759                                         ok_move = PATTERN_TILE_3;
2760                                         break;
2761                                 case PATTERN_TILE_3:
2762                                         ok_move = PATTERN_TILE_4;
2763                                         break;
2764                                 case PATTERN_TILE_4:
2765                                         ok_move = PATTERN_TILE_1;
2766                                         break;
2767                                 default:
2768                                         if (p_ptr->wizard)
2769                                                 msg_format(_("おかしなパターン歩行、%d。", "Funny Pattern walking, %d."), pattern_type_cur);
2770
2771                                         return TRUE; /* Goof-up */
2772                         }
2773
2774                         if ((pattern_type_new == ok_move) ||
2775                             (pattern_type_new == pattern_type_cur))
2776                                 return TRUE;
2777                         else
2778                         {
2779                                 if (!is_pattern_tile_new)
2780                                         msg_print(_("パターンを踏み外してはいけません。", "You may not step off from the Pattern."));
2781                                 else
2782                                         msg_print(_("パターンの上は正しい順序で歩かねばなりません。", "You must walk the Pattern in correct order."));
2783
2784                                 return FALSE;
2785                         }
2786                 }
2787         }
2788 }
2789
2790
2791 /*!
2792  * @brief プレイヤーが地形踏破可能かを返す
2793  * @param feature 判定したい地形ID
2794  * @param mode 移動に関するオプションフラグ
2795  * @return 移動可能ならばTRUEを返す
2796  */
2797 bool player_can_enter(s16b feature, u16b mode)
2798 {
2799         feature_type *f_ptr = &f_info[feature];
2800
2801         if (p_ptr->riding) return monster_can_cross_terrain(feature, &r_info[m_list[p_ptr->riding].r_idx], mode | CEM_RIDING);
2802
2803         /* Pattern */
2804         if (have_flag(f_ptr->flags, FF_PATTERN))
2805         {
2806                 if (!(mode & CEM_P_CAN_ENTER_PATTERN)) return FALSE;
2807         }
2808
2809         /* "CAN" flags */
2810         if (have_flag(f_ptr->flags, FF_CAN_FLY) && p_ptr->levitation) return TRUE;
2811         if (have_flag(f_ptr->flags, FF_CAN_SWIM) && p_ptr->can_swim) return TRUE;
2812         if (have_flag(f_ptr->flags, FF_CAN_PASS) && p_ptr->pass_wall) return TRUE;
2813
2814         if (!have_flag(f_ptr->flags, FF_MOVE)) return FALSE;
2815
2816         return TRUE;
2817 }
2818
2819
2820 /*!
2821  * @brief 移動に伴うプレイヤーのステータス変化処理
2822  * @param ny 移動先Y座標
2823  * @param nx 移動先X座標
2824  * @param mpe_mode 移動オプションフラグ
2825  * @return プレイヤーが死亡やフロア離脱を行わず、実際に移動が可能ならばTRUEを返す。
2826  */
2827 bool move_player_effect(int ny, int nx, u32b mpe_mode)
2828 {
2829         cave_type *c_ptr = &cave[ny][nx];
2830         feature_type *f_ptr = &f_info[c_ptr->feat];
2831
2832         if (!(mpe_mode & MPE_STAYING))
2833         {
2834                 int oy = p_ptr->y;
2835                 int ox = p_ptr->x;
2836                 cave_type *oc_ptr = &cave[oy][ox];
2837                 int om_idx = oc_ptr->m_idx;
2838                 int nm_idx = c_ptr->m_idx;
2839
2840                 /* Move the player */
2841                 p_ptr->y = ny;
2842                 p_ptr->x = nx;
2843
2844                 /* Hack -- For moving monster or riding player's moving */
2845                 if (!(mpe_mode & MPE_DONT_SWAP_MON))
2846                 {
2847                         /* Swap two monsters */
2848                         c_ptr->m_idx = om_idx;
2849                         oc_ptr->m_idx = nm_idx;
2850
2851                         if (om_idx > 0) /* Monster on old spot (or p_ptr->riding) */
2852                         {
2853                                 monster_type *om_ptr = &m_list[om_idx];
2854                                 om_ptr->fy = ny;
2855                                 om_ptr->fx = nx;
2856                                 update_mon(om_idx, TRUE);
2857                         }
2858
2859                         if (nm_idx > 0) /* Monster on new spot */
2860                         {
2861                                 monster_type *nm_ptr = &m_list[nm_idx];
2862                                 nm_ptr->fy = oy;
2863                                 nm_ptr->fx = ox;
2864                                 update_mon(nm_idx, TRUE);
2865                         }
2866                 }
2867
2868                 /* Redraw old spot */
2869                 lite_spot(oy, ox);
2870
2871                 /* Redraw new spot */
2872                 lite_spot(ny, nx);
2873
2874                 /* Check for new panel (redraw map) */
2875                 verify_panel();
2876
2877                 if (mpe_mode & MPE_FORGET_FLOW)
2878                 {
2879                         forget_flow();
2880
2881                         /* Mega-Hack -- Forget the view */
2882                         p_ptr->update |= (PU_UN_VIEW);
2883
2884                         /* Redraw map */
2885                         p_ptr->redraw |= (PR_MAP);
2886                 }
2887
2888                 /* Update stuff */
2889                 p_ptr->update |= (PU_VIEW | PU_LITE | PU_FLOW | PU_MON_LITE | PU_DISTANCE);
2890
2891                 /* Window stuff */
2892                 p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
2893
2894                 /* Remove "unsafe" flag */
2895                 if ((!p_ptr->blind && !no_lite()) || !is_trap(c_ptr->feat)) c_ptr->info &= ~(CAVE_UNSAFE);
2896
2897                 /* For get everything when requested hehe I'm *NASTY* */
2898                 if (dun_level && (d_info[dungeon_type].flags1 & DF1_FORGET)) wiz_dark();
2899
2900                 /* Handle stuff */
2901                 if (mpe_mode & MPE_HANDLE_STUFF) handle_stuff();
2902
2903                 if (p_ptr->pclass == CLASS_NINJA)
2904                 {
2905                         if (c_ptr->info & (CAVE_GLOW)) set_superstealth(FALSE);
2906                         else if (p_ptr->cur_lite <= 0) set_superstealth(TRUE);
2907                 }
2908
2909                 if ((p_ptr->action == ACTION_HAYAGAKE) &&
2910                     (!have_flag(f_ptr->flags, FF_PROJECT) ||
2911                      (!p_ptr->levitation && have_flag(f_ptr->flags, FF_DEEP))))
2912                 {
2913                         msg_print(_("ここでは素早く動けない。", "You cannot run in here."));
2914                         set_action(ACTION_NONE);
2915                 }
2916         }
2917
2918         if (mpe_mode & MPE_ENERGY_USE)
2919         {
2920                 if (music_singing(MUSIC_WALL))
2921                 {
2922                         (void)project(0, 0, p_ptr->y, p_ptr->x, (60 + p_ptr->lev), GF_DISINTEGRATE,
2923                                 PROJECT_KILL | PROJECT_ITEM, -1);
2924
2925                         if (!player_bold(ny, nx) || p_ptr->is_dead || p_ptr->leaving) return FALSE;
2926                 }
2927
2928                 /* Spontaneous Searching */
2929                 if ((p_ptr->skill_fos >= 50) || (0 == randint0(50 - p_ptr->skill_fos)))
2930                 {
2931                         search();
2932                 }
2933
2934                 /* Continuous Searching */
2935                 if (p_ptr->action == ACTION_SEARCH)
2936                 {
2937                         search();
2938                 }
2939         }
2940
2941         /* Handle "objects" */
2942         if (!(mpe_mode & MPE_DONT_PICKUP))
2943         {
2944                 carry((mpe_mode & MPE_DO_PICKUP) ? TRUE : FALSE);
2945         }
2946
2947         /* Handle "store doors" */
2948         if (have_flag(f_ptr->flags, FF_STORE))
2949         {
2950                 /* Disturb */
2951                 disturb(0, 1);
2952
2953                 p_ptr->energy_use = 0;
2954                 /* Hack -- Enter store */
2955                 command_new = SPECIAL_KEY_STORE;
2956         }
2957
2958         /* Handle "building doors" -KMW- */
2959         else if (have_flag(f_ptr->flags, FF_BLDG))
2960         {
2961                 /* Disturb */
2962                 disturb(0, 1);
2963
2964                 p_ptr->energy_use = 0;
2965                 /* Hack -- Enter building */
2966                 command_new = SPECIAL_KEY_BUILDING;
2967         }
2968
2969         /* Handle quest areas -KMW- */
2970         else if (have_flag(f_ptr->flags, FF_QUEST_ENTER))
2971         {
2972                 /* Disturb */
2973                 disturb(0, 1);
2974
2975                 p_ptr->energy_use = 0;
2976                 /* Hack -- Enter quest level */
2977                 command_new = SPECIAL_KEY_QUEST;
2978         }
2979
2980         else if (have_flag(f_ptr->flags, FF_QUEST_EXIT))
2981         {
2982                 if (quest[p_ptr->inside_quest].type == QUEST_TYPE_FIND_EXIT)
2983                 {
2984                         complete_quest(p_ptr->inside_quest);
2985                 }
2986
2987                 leave_quest_check();
2988
2989                 p_ptr->inside_quest = c_ptr->special;
2990                 dun_level = 0;
2991                 p_ptr->oldpx = 0;
2992                 p_ptr->oldpy = 0;
2993
2994                 p_ptr->leaving = TRUE;
2995         }
2996
2997         /* Set off a trap */
2998         else if (have_flag(f_ptr->flags, FF_HIT_TRAP) && !(mpe_mode & MPE_STAYING))
2999         {
3000                 /* Disturb */
3001                 disturb(0, 1);
3002
3003                 /* Hidden trap */
3004                 if (c_ptr->mimic || have_flag(f_ptr->flags, FF_SECRET))
3005                 {
3006                         /* Message */
3007                         msg_print(_("トラップだ!", "You found a trap!"));
3008
3009                         /* Pick a trap */
3010                         disclose_grid(p_ptr->y, p_ptr->x);
3011                 }
3012
3013                 /* Hit the trap */
3014                 hit_trap((mpe_mode & MPE_BREAK_TRAP) ? TRUE : FALSE);
3015
3016                 if (!player_bold(ny, nx) || p_ptr->is_dead || p_ptr->leaving) return FALSE;
3017         }
3018
3019         /* Warn when leaving trap detected region */
3020         if (!(mpe_mode & MPE_STAYING) && (disturb_trap_detect || alert_trap_detect)
3021             && p_ptr->dtrap && !(c_ptr->info & CAVE_IN_DETECT))
3022         {
3023                 /* No duplicate warning */
3024                 p_ptr->dtrap = FALSE;
3025
3026                 /* You are just on the edge */
3027                 if (!(c_ptr->info & CAVE_UNSAFE))
3028                 {
3029                         if (alert_trap_detect)
3030                         {
3031                                 msg_print(_("* 注意:この先はトラップの感知範囲外です! *", "*Leaving trap detect region!*"));
3032                         }
3033
3034                         if (disturb_trap_detect) disturb(0, 1);
3035                 }
3036         }
3037
3038         return player_bold(ny, nx) && !p_ptr->is_dead && !p_ptr->leaving;
3039 }
3040
3041 /*!
3042  * @brief 該当地形のトラップがプレイヤーにとって無効かどうかを判定して返す
3043  * @param feat 地形ID
3044  * @return トラップが自動的に無効ならばTRUEを返す
3045  */
3046 bool trap_can_be_ignored(int feat)
3047 {
3048         feature_type *f_ptr = &f_info[feat];
3049
3050         if (!have_flag(f_ptr->flags, FF_TRAP)) return TRUE;
3051
3052         switch (f_ptr->subtype)
3053         {
3054         case TRAP_TRAPDOOR:
3055         case TRAP_PIT:
3056         case TRAP_SPIKED_PIT:
3057         case TRAP_POISON_PIT:
3058                 if (p_ptr->levitation) return TRUE;
3059                 break;
3060         case TRAP_TELEPORT:
3061                 if (p_ptr->anti_tele) return TRUE;
3062                 break;
3063         case TRAP_FIRE:
3064                 if (p_ptr->immune_fire) return TRUE;
3065                 break;
3066         case TRAP_ACID:
3067                 if (p_ptr->immune_acid) return TRUE;
3068                 break;
3069         case TRAP_BLIND:
3070                 if (p_ptr->resist_blind) return TRUE;
3071                 break;
3072         case TRAP_CONFUSE:
3073                 if (p_ptr->resist_conf) return TRUE;
3074                 break;
3075         case TRAP_POISON:
3076                 if (p_ptr->resist_pois) return TRUE;
3077                 break;
3078         case TRAP_SLEEP:
3079                 if (p_ptr->free_act) return TRUE;
3080                 break;
3081         }
3082
3083         return FALSE;
3084 }
3085
3086
3087 /*
3088  * Determine if a "boundary" grid is "floor mimic"
3089  */
3090 #define boundary_floor(C, F, MF) \
3091         ((C)->mimic && permanent_wall(F) && \
3092          (have_flag((MF)->flags, FF_MOVE) || have_flag((MF)->flags, FF_CAN_FLY)) && \
3093          have_flag((MF)->flags, FF_PROJECT) && \
3094          !have_flag((MF)->flags, FF_OPEN))
3095
3096
3097 /*!
3098  * @brief 該当地形のトラップがプレイヤーにとって無効かどうかを判定して返す /
3099  * Move player in the given direction, with the given "pickup" flag.
3100  * @param dir 移動方向ID
3101  * @param do_pickup 罠解除を試みながらの移動ならばTRUE
3102  * @param break_trap トラップ粉砕処理を行うならばTRUE
3103  * @return 実際に移動が行われたならばTRUEを返す。
3104  * @note
3105  * This routine should (probably) always induce energy expenditure.\n
3106  * @details
3107  * Note that moving will *always* take a turn, and will *always* hit\n
3108  * any monster which might be in the destination grid.  Previously,\n
3109  * moving into walls was "free" and did NOT hit invisible monsters.\n
3110  */
3111 void move_player(int dir, bool do_pickup, bool break_trap)
3112 {
3113         /* Find the result of moving */
3114         int y = p_ptr->y + ddy[dir];
3115         int x = p_ptr->x + ddx[dir];
3116
3117         /* Examine the destination */
3118         cave_type *c_ptr = &cave[y][x];
3119
3120         feature_type *f_ptr = &f_info[c_ptr->feat];
3121
3122         monster_type *m_ptr;
3123
3124         monster_type *riding_m_ptr = &m_list[p_ptr->riding];
3125         monster_race *riding_r_ptr = &r_info[p_ptr->riding ? riding_m_ptr->r_idx : 0]; /* Paranoia */
3126
3127         char m_name[80];
3128
3129         bool p_can_enter = player_can_enter(c_ptr->feat, CEM_P_CAN_ENTER_PATTERN);
3130         bool p_can_kill_walls = FALSE;
3131         bool stormbringer = FALSE;
3132
3133         bool oktomove = TRUE;
3134         bool do_past = FALSE;
3135
3136         /* Exit the area */
3137         if (!dun_level && !p_ptr->wild_mode &&
3138                 ((x == 0) || (x == MAX_WID - 1) ||
3139                  (y == 0) || (y == MAX_HGT - 1)))
3140         {
3141                 /* Can the player enter the grid? */
3142                 if (c_ptr->mimic && player_can_enter(c_ptr->mimic, 0))
3143                 {
3144                         /* Hack: move to new area */
3145                         if ((y == 0) && (x == 0))
3146                         {
3147                                 p_ptr->wilderness_y--;
3148                                 p_ptr->wilderness_x--;
3149                                 p_ptr->oldpy = cur_hgt - 2;
3150                                 p_ptr->oldpx = cur_wid - 2;
3151                                 ambush_flag = FALSE;
3152                         }
3153
3154                         else if ((y == 0) && (x == MAX_WID - 1))
3155                         {
3156                                 p_ptr->wilderness_y--;
3157                                 p_ptr->wilderness_x++;
3158                                 p_ptr->oldpy = cur_hgt - 2;
3159                                 p_ptr->oldpx = 1;
3160                                 ambush_flag = FALSE;
3161                         }
3162
3163                         else if ((y == MAX_HGT - 1) && (x == 0))
3164                         {
3165                                 p_ptr->wilderness_y++;
3166                                 p_ptr->wilderness_x--;
3167                                 p_ptr->oldpy = 1;
3168                                 p_ptr->oldpx = cur_wid - 2;
3169                                 ambush_flag = FALSE;
3170                         }
3171
3172                         else if ((y == MAX_HGT - 1) && (x == MAX_WID - 1))
3173                         {
3174                                 p_ptr->wilderness_y++;
3175                                 p_ptr->wilderness_x++;
3176                                 p_ptr->oldpy = 1;
3177                                 p_ptr->oldpx = 1;
3178                                 ambush_flag = FALSE;
3179                         }
3180
3181                         else if (y == 0)
3182                         {
3183                                 p_ptr->wilderness_y--;
3184                                 p_ptr->oldpy = cur_hgt - 2;
3185                                 p_ptr->oldpx = x;
3186                                 ambush_flag = FALSE;
3187                         }
3188
3189                         else if (y == MAX_HGT - 1)
3190                         {
3191                                 p_ptr->wilderness_y++;
3192                                 p_ptr->oldpy = 1;
3193                                 p_ptr->oldpx = x;
3194                                 ambush_flag = FALSE;
3195                         }
3196
3197                         else if (x == 0)
3198                         {
3199                                 p_ptr->wilderness_x--;
3200                                 p_ptr->oldpx = cur_wid - 2;
3201                                 p_ptr->oldpy = y;
3202                                 ambush_flag = FALSE;
3203                         }
3204
3205                         else if (x == MAX_WID - 1)
3206                         {
3207                                 p_ptr->wilderness_x++;
3208                                 p_ptr->oldpx = 1;
3209                                 p_ptr->oldpy = y;
3210                                 ambush_flag = FALSE;
3211                         }
3212
3213                         p_ptr->leaving = TRUE;
3214                         p_ptr->energy_use = 100;
3215
3216                         return;
3217                 }
3218
3219                 /* "Blocked" message appears later */
3220                 /* oktomove = FALSE; */
3221                 p_can_enter = FALSE;
3222         }
3223
3224         /* Get the monster */
3225         m_ptr = &m_list[c_ptr->m_idx];
3226
3227
3228         if (inventory[INVEN_RARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
3229         if (inventory[INVEN_LARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
3230
3231         /* Player can not walk through "walls"... */
3232         /* unless in Shadow Form */
3233         p_can_kill_walls = p_ptr->kill_wall && have_flag(f_ptr->flags, FF_HURT_DISI) &&
3234                 (!p_can_enter || !have_flag(f_ptr->flags, FF_LOS)) &&
3235                 !have_flag(f_ptr->flags, FF_PERMANENT);
3236
3237         /* Hack -- attack monsters */
3238         if (c_ptr->m_idx && (m_ptr->ml || p_can_enter || p_can_kill_walls))
3239         {
3240                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
3241
3242                 /* Attack -- only if we can see it OR it is not in a wall */
3243                 if (!is_hostile(m_ptr) &&
3244                     !(p_ptr->confused || p_ptr->image || !m_ptr->ml || p_ptr->stun ||
3245                     ((p_ptr->muta2 & MUT2_BERS_RAGE) && p_ptr->shero)) &&
3246                     pattern_seq(p_ptr->y, p_ptr->x, y, x) && (p_can_enter || p_can_kill_walls))
3247                 {
3248                         /* Disturb the monster */
3249                         (void)set_monster_csleep(c_ptr->m_idx, 0);
3250
3251                         /* Extract monster name (or "it") */
3252                         monster_desc(m_name, m_ptr, 0);
3253
3254                         if (m_ptr->ml)
3255                         {
3256                                 /* Auto-Recall if possible and visible */
3257                                 if (!p_ptr->image) monster_race_track(m_ptr->ap_r_idx);
3258
3259                                 /* Track a new monster */
3260                                 health_track(c_ptr->m_idx);
3261                         }
3262
3263                         /* displace? */
3264                         if ((stormbringer && (randint1(1000) > 666)) || (p_ptr->pclass == CLASS_BERSERKER))
3265                         {
3266                                 py_attack(y, x, 0);
3267                                 oktomove = FALSE;
3268                         }
3269                         else if (monster_can_cross_terrain(cave[p_ptr->y][p_ptr->x].feat, r_ptr, 0))
3270                         {
3271                                 do_past = TRUE;
3272                         }
3273                         else
3274                         {
3275                                 msg_format(_("%^sが邪魔だ!", "%^s is in your way!"), m_name);
3276                                 p_ptr->energy_use = 0;
3277                                 oktomove = FALSE;
3278                         }
3279
3280                         /* now continue on to 'movement' */
3281                 }
3282                 else
3283                 {
3284                         py_attack(y, x, 0);
3285                         oktomove = FALSE;
3286                 }
3287         }
3288
3289         if (oktomove && p_ptr->riding)
3290         {
3291                 if (riding_r_ptr->flags1 & RF1_NEVER_MOVE)
3292                 {
3293                         msg_print(_("動けない!", "Can't move!"));
3294                         p_ptr->energy_use = 0;
3295                         oktomove = FALSE;
3296                         disturb(0, 1);
3297                 }
3298                 else if (MON_MONFEAR(riding_m_ptr))
3299                 {
3300                         char m_name[80];
3301
3302                         /* Acquire the monster name */
3303                         monster_desc(m_name, riding_m_ptr, 0);
3304
3305                         /* Dump a message */
3306                         msg_format(_("%sが恐怖していて制御できない。", "%^s is too scared to control."), m_name);
3307                         oktomove = FALSE;
3308                         disturb(0, 1);
3309                 }
3310                 else if (p_ptr->riding_ryoute)
3311                 {
3312                         oktomove = FALSE;
3313                         disturb(0, 1);
3314                 }
3315                 else if (have_flag(f_ptr->flags, FF_CAN_FLY) && (riding_r_ptr->flags7 & RF7_CAN_FLY))
3316                 {
3317                         /* Allow moving */
3318                 }
3319                 else if (have_flag(f_ptr->flags, FF_CAN_SWIM) && (riding_r_ptr->flags7 & RF7_CAN_SWIM))
3320                 {
3321                         /* Allow moving */
3322                 }
3323                 else if (have_flag(f_ptr->flags, FF_WATER) &&
3324                         !(riding_r_ptr->flags7 & RF7_AQUATIC) &&
3325                         (have_flag(f_ptr->flags, FF_DEEP) || (riding_r_ptr->flags2 & RF2_AURA_FIRE)))
3326                 {
3327                         msg_format(_("%sの上に行けない。", "Can't swim."), f_name + f_info[get_feat_mimic(c_ptr)].name);
3328                         p_ptr->energy_use = 0;
3329                         oktomove = FALSE;
3330                         disturb(0, 1);
3331                 }
3332                 else if (!have_flag(f_ptr->flags, FF_WATER) && (riding_r_ptr->flags7 & RF7_AQUATIC))
3333                 {
3334                         msg_format(_("%sから上がれない。", "Can't land."), f_name + f_info[get_feat_mimic(&cave[p_ptr->y][p_ptr->x])].name);
3335                         p_ptr->energy_use = 0;
3336                         oktomove = FALSE;
3337                         disturb(0, 1);
3338                 }
3339                 else if (have_flag(f_ptr->flags, FF_LAVA) && !(riding_r_ptr->flagsr & RFR_EFF_IM_FIRE_MASK))
3340                 {
3341                         msg_format(_("%sの上に行けない。", "Too hot to go through."), f_name + f_info[get_feat_mimic(c_ptr)].name);
3342                         p_ptr->energy_use = 0;
3343                         oktomove = FALSE;
3344                         disturb(0, 1);
3345                 }
3346
3347                 if (oktomove && MON_STUNNED(riding_m_ptr) && one_in_(2))
3348                 {
3349                         char m_name[80];
3350                         monster_desc(m_name, riding_m_ptr, 0);
3351                         msg_format(_("%sが朦朧としていてうまく動けない!", "You cannot control stunned %s!"),m_name);
3352                         oktomove = FALSE;
3353                         disturb(0, 1);
3354                 }
3355         }
3356
3357         if (!oktomove)
3358         {
3359         }
3360
3361         else if (!have_flag(f_ptr->flags, FF_MOVE) && have_flag(f_ptr->flags, FF_CAN_FLY) && !p_ptr->levitation)
3362         {
3363                 msg_format(_("空を飛ばないと%sの上には行けない。", "You need to fly to go through the %s."), f_name + f_info[get_feat_mimic(c_ptr)].name);
3364                 p_ptr->energy_use = 0;
3365                 running = 0;
3366                 oktomove = FALSE;
3367         }
3368
3369         /*
3370          * Player can move through trees and
3371          * has effective -10 speed
3372          * Rangers can move without penality
3373          */
3374         else if (have_flag(f_ptr->flags, FF_TREE) && !p_can_kill_walls)
3375         {
3376                 if ((p_ptr->pclass != CLASS_RANGER) && !p_ptr->levitation && (!p_ptr->riding || !(riding_r_ptr->flags8 & RF8_WILD_WOOD))) p_ptr->energy_use *= 2;
3377         }
3378
3379 #ifdef ALLOW_EASY_DISARM /* TNB */
3380
3381         /* Disarm a visible trap */
3382         else if ((do_pickup != easy_disarm) && have_flag(f_ptr->flags, FF_DISARM) && !c_ptr->mimic)
3383         {
3384                 if (!trap_can_be_ignored(c_ptr->feat))
3385                 {
3386                         (void)do_cmd_disarm_aux(y, x, dir);
3387                         return;
3388                 }
3389         }
3390
3391 #endif /* ALLOW_EASY_DISARM -- TNB */
3392
3393         /* Player can not walk through "walls" unless in wraith form...*/
3394         else if (!p_can_enter && !p_can_kill_walls)
3395         {
3396                 /* Feature code (applying "mimic" field) */
3397                 s16b feat = get_feat_mimic(c_ptr);
3398                 feature_type *mimic_f_ptr = &f_info[feat];
3399                 cptr name = f_name + mimic_f_ptr->name;
3400
3401                 oktomove = FALSE;
3402
3403                 /* Notice things in the dark */
3404                 if (!(c_ptr->info & CAVE_MARK) && !player_can_see_bold(y, x))
3405                 {
3406                         /* Boundary floor mimic */
3407                         if (boundary_floor(c_ptr, f_ptr, mimic_f_ptr))
3408                         {
3409                                 msg_print(_("それ以上先には進めないようだ。", "You feel you cannot go any more."));
3410                         }
3411
3412                         /* Wall (or secret door) */
3413                         else
3414                         {
3415 #ifdef JP
3416                                 msg_format("%sが行く手をはばんでいるようだ。", name);
3417 #else
3418                                 msg_format("You feel %s %s blocking your way.",
3419                                         is_a_vowel(name[0]) ? "an" : "a", name);
3420 #endif
3421
3422                                 c_ptr->info |= (CAVE_MARK);
3423                                 lite_spot(y, x);
3424                         }
3425                 }
3426
3427                 /* Notice things */
3428                 else
3429                 {
3430                         /* Boundary floor mimic */
3431                         if (boundary_floor(c_ptr, f_ptr, mimic_f_ptr))
3432                         {
3433                                 msg_print(_("それ以上先には進めない。", "You cannot go any more."));
3434                                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3435                                         p_ptr->energy_use = 0;
3436                         }
3437
3438                         /* Wall (or secret door) */
3439                         else
3440                         {
3441 #ifdef ALLOW_EASY_OPEN
3442                                 /* Closed doors */
3443                                 if (easy_open && is_closed_door(feat) && easy_open_door(y, x)) return;
3444 #endif /* ALLOW_EASY_OPEN */
3445
3446 #ifdef JP
3447                                 msg_format("%sが行く手をはばんでいる。", name);
3448 #else
3449                                 msg_format("There is %s %s blocking your way.",
3450                                         is_a_vowel(name[0]) ? "an" : "a", name);
3451 #endif
3452
3453                                 /*
3454                                  * Well, it makes sense that you lose time bumping into
3455                                  * a wall _if_ you are confused, stunned or blind; but
3456                                  * typing mistakes should not cost you a turn...
3457                                  */
3458                                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3459                                         p_ptr->energy_use = 0;
3460                         }
3461                 }
3462
3463                 /* Disturb the player */
3464                 disturb(0, 1);
3465
3466                 /* Sound */
3467                 if (!boundary_floor(c_ptr, f_ptr, mimic_f_ptr)) sound(SOUND_HITWALL);
3468         }
3469
3470         /* Normal movement */
3471         if (oktomove && !pattern_seq(p_ptr->y, p_ptr->x, y, x))
3472         {
3473                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3474                 {
3475                         p_ptr->energy_use = 0;
3476                 }
3477
3478                 /* To avoid a loop with running */
3479                 disturb(0, 1);
3480
3481                 oktomove = FALSE;
3482         }
3483
3484         /* Normal movement */
3485         if (oktomove)
3486         {
3487                 u32b mpe_mode = MPE_ENERGY_USE;
3488
3489                 if (p_ptr->warning)
3490                 {
3491                         if (!process_warning(x, y))
3492                         {
3493                                 p_ptr->energy_use = 25;
3494                                 return;
3495                         }
3496                 }
3497
3498                 if (do_past)
3499                 {
3500                         msg_format(_("%sを押し退けた。", "You push past %s."), m_name);
3501                 }
3502
3503                 /* Change oldpx and oldpy to place the player well when going back to big mode */
3504                 if (p_ptr->wild_mode)
3505                 {
3506                         if (ddy[dir] > 0)  p_ptr->oldpy = 1;
3507                         if (ddy[dir] < 0)  p_ptr->oldpy = MAX_HGT - 2;
3508                         if (ddy[dir] == 0) p_ptr->oldpy = MAX_HGT / 2;
3509                         if (ddx[dir] > 0)  p_ptr->oldpx = 1;
3510                         if (ddx[dir] < 0)  p_ptr->oldpx = MAX_WID - 2;
3511                         if (ddx[dir] == 0) p_ptr->oldpx = MAX_WID / 2;
3512                 }
3513
3514                 if (p_can_kill_walls)
3515                 {
3516                         cave_alter_feat(y, x, FF_HURT_DISI);
3517
3518                         /* Update some things -- similar to GF_KILL_WALL */
3519                         p_ptr->update |= (PU_FLOW);
3520                 }
3521
3522                 /* Sound */
3523                 /* sound(SOUND_WALK); */
3524
3525 #ifdef ALLOW_EASY_DISARM /* TNB */
3526
3527                 if (do_pickup != always_pickup) mpe_mode |= MPE_DO_PICKUP;
3528
3529 #else /* ALLOW_EASY_DISARM -- TNB */
3530
3531                 if (do_pickup) mpe_mode |= MPE_DO_PICKUP;
3532
3533 #endif /* ALLOW_EASY_DISARM -- TNB */
3534
3535                 if (break_trap) mpe_mode |= MPE_BREAK_TRAP;
3536
3537                 /* Move the player */
3538                 (void)move_player_effect(y, x, mpe_mode);
3539         }
3540 }
3541
3542
3543 static bool ignore_avoid_run;
3544
3545 /*!
3546  * @brief ダッシュ移動処理中、移動先のマスが既知の壁かどうかを判定する /
3547  * Hack -- Check for a "known wall" (see below)
3548  * @param dir 想定する移動方向ID
3549  * @param y 移動元のY座標
3550  * @param x 移動元のX座標
3551  * @return 移動先が既知の壁ならばTRUE
3552  */
3553 static int see_wall(int dir, int y, int x)
3554 {
3555         cave_type   *c_ptr;
3556
3557         /* Get the new location */
3558         y += ddy[dir];
3559         x += ddx[dir];
3560
3561         /* Illegal grids are not known walls */
3562         if (!in_bounds2(y, x)) return (FALSE);
3563
3564         /* Access grid */
3565         c_ptr = &cave[y][x];
3566
3567         /* Must be known to the player */
3568         if (c_ptr->info & (CAVE_MARK))
3569         {
3570                 /* Feature code (applying "mimic" field) */
3571                 s16b         feat = get_feat_mimic(c_ptr);
3572                 feature_type *f_ptr = &f_info[feat];
3573
3574                 /* Wall grids are known walls */
3575                 if (!player_can_enter(feat, 0)) return !have_flag(f_ptr->flags, FF_DOOR);
3576
3577                 /* Don't run on a tree unless explicitly requested */
3578                 if (have_flag(f_ptr->flags, FF_AVOID_RUN) && !ignore_avoid_run)
3579                         return TRUE;
3580
3581                 /* Don't run in a wall */
3582                 if (!have_flag(f_ptr->flags, FF_MOVE) && !have_flag(f_ptr->flags, FF_CAN_FLY))
3583                         return !have_flag(f_ptr->flags, FF_DOOR);
3584         }
3585
3586         return FALSE;
3587 }
3588
3589
3590 /*!
3591  * @brief ダッシュ移動処理中、移動先のマスか未知の地形かどうかを判定する /
3592  * Hack -- Check for an "unknown corner" (see below)
3593  * @param dir 想定する移動方向ID
3594  * @param y 移動元のY座標
3595  * @param x 移動元のX座標
3596  * @return 移動先が未知の地形ならばTRUE
3597  */
3598 static int see_nothing(int dir, int y, int x)
3599 {
3600         /* Get the new location */
3601         y += ddy[dir];
3602         x += ddx[dir];
3603
3604         /* Illegal grids are unknown */
3605         if (!in_bounds2(y, x)) return (TRUE);
3606
3607         /* Memorized grids are always known */
3608         if (cave[y][x].info & (CAVE_MARK)) return (FALSE);
3609
3610         /* Viewable door/wall grids are known */
3611         if (player_can_see_bold(y, x)) return (FALSE);
3612
3613         /* Default */
3614         return (TRUE);
3615 }
3616
3617
3618
3619
3620
3621
3622 /*
3623  * Hack -- allow quick "cycling" through the legal directions
3624  */
3625 static byte cycle[] =
3626 { 1, 2, 3, 6, 9, 8, 7, 4, 1, 2, 3, 6, 9, 8, 7, 4, 1 };
3627
3628 /*
3629  * Hack -- map each direction into the "middle" of the "cycle[]" array
3630  */
3631 static byte chome[] =
3632 { 0, 8, 9, 10, 7, 0, 11, 6, 5, 4 };
3633
3634 /*
3635  * The direction we are running
3636  */
3637 static byte find_current;
3638
3639 /*
3640  * The direction we came from
3641  */
3642 static byte find_prevdir;
3643
3644 /*
3645  * We are looking for open area
3646  */
3647 static bool find_openarea;
3648
3649 /*
3650  * We are looking for a break
3651  */
3652 static bool find_breakright;
3653 static bool find_breakleft;
3654
3655
3656
3657 /*!
3658  * @brief ダッシュ処理の導入 /
3659  * Initialize the running algorithm for a new direction.
3660  * @param dir 導入の移動先
3661  * @details
3662  * Diagonal Corridor -- allow diaginal entry into corridors.\n
3663  *\n
3664  * Blunt Corridor -- If there is a wall two spaces ahead and\n
3665  * we seem to be in a corridor, then force a turn into the side\n
3666  * corridor, must be moving straight into a corridor here. ???\n
3667  *\n
3668  * Diagonal Corridor    Blunt Corridor (?)\n
3669  *       \# \#                  \#\n
3670  *       \#x\#                  \@x\#\n
3671  *       \@\@p.                  p\n
3672  */
3673 static void run_init(int dir)
3674 {
3675         int             row, col, deepleft, deepright;
3676         int             i, shortleft, shortright;
3677
3678
3679         /* Save the direction */
3680         find_current = dir;
3681
3682         /* Assume running straight */
3683         find_prevdir = dir;
3684
3685         /* Assume looking for open area */
3686         find_openarea = TRUE;
3687
3688         /* Assume not looking for breaks */
3689         find_breakright = find_breakleft = FALSE;
3690
3691         /* Assume no nearby walls */
3692         deepleft = deepright = FALSE;
3693         shortright = shortleft = FALSE;
3694
3695         p_ptr->run_py = p_ptr->y;
3696         p_ptr->run_px = p_ptr->x;
3697
3698         /* Find the destination grid */
3699         row = p_ptr->y + ddy[dir];
3700         col = p_ptr->x + ddx[dir];
3701
3702         ignore_avoid_run = cave_have_flag_bold(row, col, FF_AVOID_RUN);
3703
3704         /* Extract cycle index */
3705         i = chome[dir];
3706
3707         /* Check for walls */
3708         if (see_wall(cycle[i+1], p_ptr->y, p_ptr->x))
3709         {
3710                 find_breakleft = TRUE;
3711                 shortleft = TRUE;
3712         }
3713         else if (see_wall(cycle[i+1], row, col))
3714         {
3715                 find_breakleft = TRUE;
3716                 deepleft = TRUE;
3717         }
3718
3719         /* Check for walls */
3720         if (see_wall(cycle[i-1], p_ptr->y, p_ptr->x))
3721         {
3722                 find_breakright = TRUE;
3723                 shortright = TRUE;
3724         }
3725         else if (see_wall(cycle[i-1], row, col))
3726         {
3727                 find_breakright = TRUE;
3728                 deepright = TRUE;
3729         }
3730
3731         /* Looking for a break */
3732         if (find_breakleft && find_breakright)
3733         {
3734                 /* Not looking for open area */
3735                 find_openarea = FALSE;
3736
3737                 /* Hack -- allow angled corridor entry */
3738                 if (dir & 0x01)
3739                 {
3740                         if (deepleft && !deepright)
3741                         {
3742                                 find_prevdir = cycle[i - 1];
3743                         }
3744                         else if (deepright && !deepleft)
3745                         {
3746                                 find_prevdir = cycle[i + 1];
3747                         }
3748                 }
3749
3750                 /* Hack -- allow blunt corridor entry */
3751                 else if (see_wall(cycle[i], row, col))
3752                 {
3753                         if (shortleft && !shortright)
3754                         {
3755                                 find_prevdir = cycle[i - 2];
3756                         }
3757                         else if (shortright && !shortleft)
3758                         {
3759                                 find_prevdir = cycle[i + 2];
3760                         }
3761                 }
3762         }
3763 }
3764
3765
3766 /*!
3767  * @brief ダッシュ移動が継続できるかどうかの判定 /
3768  * Update the current "run" path
3769  * @return
3770  * ダッシュ移動が継続できるならばTRUEを返す。
3771  * Return TRUE if the running should be stopped
3772  */
3773 static bool run_test(void)
3774 {
3775         int         prev_dir, new_dir, check_dir = 0;
3776         int         row, col;
3777         int         i, max, inv;
3778         int         option = 0, option2 = 0;
3779         cave_type   *c_ptr;
3780         s16b        feat;
3781         feature_type *f_ptr;
3782
3783         /* Where we came from */
3784         prev_dir = find_prevdir;
3785
3786
3787         /* Range of newly adjacent grids */
3788         max = (prev_dir & 0x01) + 1;
3789
3790         /* break run when leaving trap detected region */
3791         if ((disturb_trap_detect || alert_trap_detect)
3792             && p_ptr->dtrap && !(cave[p_ptr->y][p_ptr->x].info & CAVE_IN_DETECT))
3793         {
3794                 /* No duplicate warning */
3795                 p_ptr->dtrap = FALSE;
3796
3797                 /* You are just on the edge */
3798                 if (!(cave[p_ptr->y][p_ptr->x].info & CAVE_UNSAFE))
3799                 {
3800                         if (alert_trap_detect)
3801                         {
3802                                 msg_print(_("* 注意:この先はトラップの感知範囲外です! *", "*Leaving trap detect region!*"));
3803                         }
3804
3805                         if (disturb_trap_detect)
3806                         {
3807                                 /* Break Run */
3808                                 return(TRUE);
3809                         }
3810                 }
3811         }
3812
3813         /* Look at every newly adjacent square. */
3814         for (i = -max; i <= max; i++)
3815         {
3816                 s16b this_o_idx, next_o_idx = 0;
3817
3818                 /* New direction */
3819                 new_dir = cycle[chome[prev_dir] + i];
3820
3821                 /* New location */
3822                 row = p_ptr->y + ddy[new_dir];
3823                 col = p_ptr->x + ddx[new_dir];
3824
3825                 /* Access grid */
3826                 c_ptr = &cave[row][col];
3827
3828                 /* Feature code (applying "mimic" field) */
3829                 feat = get_feat_mimic(c_ptr);
3830                 f_ptr = &f_info[feat];
3831
3832                 /* Visible monsters abort running */
3833                 if (c_ptr->m_idx)
3834                 {
3835                         monster_type *m_ptr = &m_list[c_ptr->m_idx];
3836
3837                         /* Visible monster */
3838                         if (m_ptr->ml) return (TRUE);
3839                 }
3840
3841                 /* Visible objects abort running */
3842                 for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
3843                 {
3844                         object_type *o_ptr;
3845
3846                         /* Acquire object */
3847                         o_ptr = &o_list[this_o_idx];
3848
3849                         /* Acquire next object */
3850                         next_o_idx = o_ptr->next_o_idx;
3851
3852                         /* Visible object */
3853                         if (o_ptr->marked & OM_FOUND) return (TRUE);
3854                 }
3855
3856                 /* Assume unknown */
3857                 inv = TRUE;
3858
3859                 /* Check memorized grids */
3860                 if (c_ptr->info & (CAVE_MARK))
3861                 {
3862                         bool notice = have_flag(f_ptr->flags, FF_NOTICE);
3863
3864                         if (notice && have_flag(f_ptr->flags, FF_MOVE))
3865                         {
3866                                 /* Open doors */
3867                                 if (find_ignore_doors && have_flag(f_ptr->flags, FF_DOOR) && have_flag(f_ptr->flags, FF_CLOSE))
3868                                 {
3869                                         /* Option -- ignore */
3870                                         notice = FALSE;
3871                                 }
3872
3873                                 /* Stairs */
3874                                 else if (find_ignore_stairs && have_flag(f_ptr->flags, FF_STAIRS))
3875                                 {
3876                                         /* Option -- ignore */
3877                                         notice = FALSE;
3878                                 }
3879
3880                                 /* Lava */
3881                                 else if (have_flag(f_ptr->flags, FF_LAVA) && (p_ptr->immune_fire || IS_INVULN()))
3882                                 {
3883                                         /* Ignore */
3884                                         notice = FALSE;
3885                                 }
3886
3887                                 /* Deep water */
3888                                 else if (have_flag(f_ptr->flags, FF_WATER) && have_flag(f_ptr->flags, FF_DEEP) &&
3889                                          (p_ptr->levitation || p_ptr->can_swim || (p_ptr->total_weight <= weight_limit())))
3890                                 {
3891                                         /* Ignore */
3892                                         notice = FALSE;
3893                                 }
3894                         }
3895
3896                         /* Interesting feature */
3897                         if (notice) return (TRUE);
3898
3899                         /* The grid is "visible" */
3900                         inv = FALSE;
3901                 }
3902
3903                 /* Analyze unknown grids and floors considering mimic */
3904                 if (inv || !see_wall(0, row, col))
3905                 {
3906                         /* Looking for open area */
3907                         if (find_openarea)
3908                         {
3909                                 /* Nothing */
3910                         }
3911
3912                         /* The first new direction. */
3913                         else if (!option)
3914                         {
3915                                 option = new_dir;
3916                         }
3917
3918                         /* Three new directions. Stop running. */
3919                         else if (option2)
3920                         {
3921                                 return (TRUE);
3922                         }
3923
3924                         /* Two non-adjacent new directions.  Stop running. */
3925                         else if (option != cycle[chome[prev_dir] + i - 1])
3926                         {
3927                                 return (TRUE);
3928                         }
3929
3930                         /* Two new (adjacent) directions (case 1) */
3931                         else if (new_dir & 0x01)
3932                         {
3933                                 check_dir = cycle[chome[prev_dir] + i - 2];
3934                                 option2 = new_dir;
3935                         }
3936
3937                         /* Two new (adjacent) directions (case 2) */
3938                         else
3939                         {
3940                                 check_dir = cycle[chome[prev_dir] + i + 1];
3941                                 option2 = option;
3942                                 option = new_dir;
3943                         }
3944                 }
3945
3946                 /* Obstacle, while looking for open area */
3947                 else
3948                 {
3949                         if (find_openarea)
3950                         {
3951                                 if (i < 0)
3952                                 {
3953                                         /* Break to the right */
3954                                         find_breakright = TRUE;
3955                                 }
3956
3957                                 else if (i > 0)
3958                                 {
3959                                         /* Break to the left */
3960                                         find_breakleft = TRUE;
3961                                 }
3962                         }
3963                 }
3964         }
3965
3966         /* Looking for open area */
3967         if (find_openarea)
3968         {
3969                 /* Hack -- look again */
3970                 for (i = -max; i < 0; i++)
3971                 {
3972                         /* Unknown grid or non-wall */
3973                         if (!see_wall(cycle[chome[prev_dir] + i], p_ptr->y, p_ptr->x))
3974                         {
3975                                 /* Looking to break right */
3976                                 if (find_breakright)
3977                                 {
3978                                         return (TRUE);
3979                                 }
3980                         }
3981
3982                         /* Obstacle */
3983                         else
3984                         {
3985                                 /* Looking to break left */
3986                                 if (find_breakleft)
3987                                 {
3988                                         return (TRUE);
3989                                 }
3990                         }
3991                 }
3992
3993                 /* Hack -- look again */
3994                 for (i = max; i > 0; i--)
3995                 {
3996                         /* Unknown grid or non-wall */
3997                         if (!see_wall(cycle[chome[prev_dir] + i], p_ptr->y, p_ptr->x))
3998                         {
3999                                 /* Looking to break left */
4000                                 if (find_breakleft)
4001                                 {
4002                                         return (TRUE);
4003                                 }
4004                         }
4005
4006                         /* Obstacle */
4007                         else
4008                         {
4009                                 /* Looking to break right */
4010                                 if (find_breakright)
4011                                 {
4012                                         return (TRUE);
4013                                 }
4014                         }
4015                 }
4016         }
4017
4018         /* Not looking for open area */
4019         else
4020         {
4021                 /* No options */
4022                 if (!option)
4023                 {
4024                         return (TRUE);
4025                 }
4026
4027                 /* One option */
4028                 else if (!option2)
4029                 {
4030                         /* Primary option */
4031                         find_current = option;
4032
4033                         /* No other options */
4034                         find_prevdir = option;
4035                 }
4036
4037                 /* Two options, examining corners */
4038                 else if (!find_cut)
4039                 {
4040                         /* Primary option */
4041                         find_current = option;
4042
4043                         /* Hack -- allow curving */
4044                         find_prevdir = option2;
4045                 }
4046
4047                 /* Two options, pick one */
4048                 else
4049                 {
4050                         /* Get next location */
4051                         row = p_ptr->y + ddy[option];
4052                         col = p_ptr->x + ddx[option];
4053
4054                         /* Don't see that it is closed off. */
4055                         /* This could be a potential corner or an intersection. */
4056                         if (!see_wall(option, row, col) ||
4057                             !see_wall(check_dir, row, col))
4058                         {
4059                                 /* Can not see anything ahead and in the direction we */
4060                                 /* are turning, assume that it is a potential corner. */
4061                                 if (see_nothing(option, row, col) &&
4062                                     see_nothing(option2, row, col))
4063                                 {
4064                                         find_current = option;
4065                                         find_prevdir = option2;
4066                                 }
4067
4068                                 /* STOP: we are next to an intersection or a room */
4069                                 else
4070                                 {
4071                                         return (TRUE);
4072                                 }
4073                         }
4074
4075                         /* This corner is seen to be enclosed; we cut the corner. */
4076                         else if (find_cut)
4077                         {
4078                                 find_current = option2;
4079                                 find_prevdir = option2;
4080                         }
4081
4082                         /* This corner is seen to be enclosed, and we */
4083                         /* deliberately go the long way. */
4084                         else
4085                         {
4086                                 find_current = option;
4087                                 find_prevdir = option2;
4088                         }
4089                 }
4090         }
4091
4092         /* About to hit a known wall, stop */
4093         if (see_wall(find_current, p_ptr->y, p_ptr->x))
4094         {
4095                 return (TRUE);
4096         }
4097
4098         /* Failure */
4099         return (FALSE);
4100 }
4101
4102
4103
4104 /*!
4105  * @brief 継続的なダッシュ処理 /
4106  * Take one step along the current "run" path
4107  * @param dir 移動を試みる方向ID
4108  * @return なし
4109  */
4110 void run_step(int dir)
4111 {
4112         /* Start running */
4113         if (dir)
4114         {
4115                 /* Ignore AVOID_RUN on a first step */
4116                 ignore_avoid_run = TRUE;
4117
4118                 /* Hack -- do not start silly run */
4119                 if (see_wall(dir, p_ptr->y, p_ptr->x))
4120                 {
4121                         /* Message */
4122                         msg_print(_("その方向には走れません。", "You cannot run in that direction."));
4123
4124                         /* Disturb */
4125                         disturb(0, 0);
4126
4127                         /* Done */
4128                         return;
4129                 }
4130
4131                 /* Initialize */
4132                 run_init(dir);
4133         }
4134
4135         /* Keep running */
4136         else
4137         {
4138                 /* Update run */
4139                 if (run_test())
4140                 {
4141                         /* Disturb */
4142                         disturb(0, 0);
4143
4144                         /* Done */
4145                         return;
4146                 }
4147         }
4148
4149         /* Decrease the run counter */
4150         if (--running <= 0) return;
4151
4152         /* Take time */
4153         p_ptr->energy_use = 100;
4154
4155         /* Move the player, using the "pickup" flag */
4156 #ifdef ALLOW_EASY_DISARM /* TNB */
4157
4158         move_player(find_current, FALSE, FALSE);
4159
4160 #else /* ALLOW_EASY_DISARM -- TNB */
4161
4162         move_player(find_current, always_pickup, FALSE);
4163
4164 #endif /* ALLOW_EASY_DISARM -- TNB */
4165
4166         if (player_bold(p_ptr->run_py, p_ptr->run_px))
4167         {
4168                 p_ptr->run_py = 0;
4169                 p_ptr->run_px = 0;
4170                 disturb(0, 0);
4171         }
4172 }
4173
4174
4175 #ifdef TRAVEL
4176
4177 /*!
4178  * @brief トラベル機能の判定処理 /
4179  * Test for traveling
4180  * @param prev_dir 前回移動を行った元の方角ID
4181  * @return なし
4182  */
4183 static int travel_test(int prev_dir)
4184 {
4185         int new_dir = 0;
4186         int i, max;
4187         const cave_type *c_ptr;
4188         int cost;
4189
4190         /* Cannot travel when blind */
4191         if (p_ptr->blind || no_lite())
4192         {
4193                 msg_print(_("目が見えない!", "You cannot see!"));
4194                 return (0);
4195         }
4196
4197         /* break run when leaving trap detected region */
4198         if ((disturb_trap_detect || alert_trap_detect)
4199             && p_ptr->dtrap && !(cave[p_ptr->y][p_ptr->x].info & CAVE_IN_DETECT))
4200         {
4201                 /* No duplicate warning */
4202                 p_ptr->dtrap = FALSE;
4203
4204                 /* You are just on the edge */
4205                 if (!(cave[p_ptr->y][p_ptr->x].info & CAVE_UNSAFE))
4206                 {
4207                         if (alert_trap_detect)
4208                         {
4209                                 msg_print(_("* 注意:この先はトラップの感知範囲外です! *", "*Leaving trap detect region!*"));
4210                         }
4211
4212                         if (disturb_trap_detect)
4213                         {
4214                                 /* Break Run */
4215                                 return (0);
4216                         }
4217                 }
4218         }
4219
4220         /* Range of newly adjacent grids */
4221         max = (prev_dir & 0x01) + 1;
4222
4223         /* Look at every newly adjacent square. */
4224         for (i = -max; i <= max; i++)
4225         {
4226                 /* New direction */
4227                 int dir = cycle[chome[prev_dir] + i];
4228
4229                 /* New location */
4230                 int row = p_ptr->y + ddy[dir];
4231                 int col = p_ptr->x + ddx[dir];
4232
4233                 /* Access grid */
4234                 c_ptr = &cave[row][col];
4235
4236                 /* Visible monsters abort running */
4237                 if (c_ptr->m_idx)
4238                 {
4239                         monster_type *m_ptr = &m_list[c_ptr->m_idx];
4240
4241                         /* Visible monster */
4242                         if (m_ptr->ml) return (0);
4243                 }
4244
4245         }
4246
4247         /* Travel cost of current grid */
4248         cost = travel.cost[p_ptr->y][p_ptr->x];
4249
4250         /* Determine travel direction */
4251         for (i = 0; i < 8; ++ i) {
4252                 int dir_cost = travel.cost[p_ptr->y+ddy_ddd[i]][p_ptr->x+ddx_ddd[i]];
4253
4254                 if (dir_cost < cost)
4255                 {
4256                         new_dir = ddd[i];
4257                         cost = dir_cost;
4258                 }
4259         }
4260
4261         if (!new_dir) return (0);
4262
4263         /* Access newly move grid */
4264         c_ptr = &cave[p_ptr->y+ddy[new_dir]][p_ptr->x+ddx[new_dir]];
4265
4266         /* Close door abort traveling */
4267         if (!easy_open && is_closed_door(c_ptr->feat)) return (0);
4268
4269         /* Visible and unignorable trap abort tarveling */
4270         if (!c_ptr->mimic && !trap_can_be_ignored(c_ptr->feat)) return (0);
4271
4272         /* Move new grid */
4273         return (new_dir);
4274 }
4275
4276
4277 /*!
4278  * @brief トラベル機能の実装 /
4279  * Travel command
4280  * @return なし
4281  */
4282 void travel_step(void)
4283 {
4284         /* Get travel direction */
4285         travel.dir = travel_test(travel.dir);
4286
4287         /* disturb */
4288         if (!travel.dir)
4289         {
4290                 if (travel.run == 255)
4291                 {
4292                         msg_print(_("道筋が見つかりません!", "No route is found!"));
4293                         travel.y = travel.x = 0;
4294                 }
4295                 disturb(0, 1);
4296                 return;
4297         }
4298
4299         p_ptr->energy_use = 100;
4300
4301         move_player(travel.dir, always_pickup, FALSE);
4302
4303         if ((p_ptr->y == travel.y) && (p_ptr->x == travel.x))
4304         {
4305                 travel.run = 0;
4306                 travel.y = travel.x = 0;
4307         }
4308         else if (travel.run > 0)
4309                 travel.run--;
4310
4311         /* Travel Delay */
4312         Term_xtra(TERM_XTRA_DELAY, delay_factor);
4313 }
4314 #endif