OSDN Git Service

c_ptr->mimic のコードさらにバグ取り。地形を操作する各コマンド disarm,
[hengbandforosx/hengbandosx.git] / src / cmd1.c
1 /* File: cmd1.c */
2
3 /* Purpose: Movement commands (part 1) */
4
5 /*
6  * Copyright (c) 1989 James E. Wilson, Robert A. Koeneke
7  *
8  * This software may be copied and distributed for educational, research, and
9  * not for profit purposes provided that this copyright and statement are
10  * included in all such copies.
11  */
12
13 #include "angband.h"
14 #define MAX_VAMPIRIC_DRAIN 50
15
16
17 /*
18  * Determine if the player "hits" a monster (normal combat).
19  * Note -- Always miss 5%, always hit 5%, otherwise random.
20  */
21 bool test_hit_fire(int chance, int ac, int vis)
22 {
23         int k;
24
25         /* Percentile dice */
26         k = randint0(100);
27
28         /* Hack -- Instant miss or hit */
29         if (k < 10) return (k < 5);
30
31         if (p_ptr->pseikaku == SEIKAKU_NAMAKE)
32                 if (one_in_(20)) return (FALSE);
33
34         /* Never hit */
35         if (chance <= 0) return (FALSE);
36
37         /* Invisible monsters are harder to hit */
38         if (!vis) chance = (chance + 1) / 2;
39
40         /* Power competes against armor */
41         if (randint0(chance) < (ac * 3 / 4)) return (FALSE);
42
43         /* Assume hit */
44         return (TRUE);
45 }
46
47
48
49 /*
50  * Determine if the player "hits" a monster (normal combat).
51  *
52  * Note -- Always miss 5%, always hit 5%, otherwise random.
53  */
54 bool test_hit_norm(int chance, int ac, int vis)
55 {
56         int k;
57
58         /* Percentile dice */
59         k = randint0(100);
60
61         /* Hack -- Instant miss or hit */
62         if (k < 10) return (k < 5);
63
64         if (p_ptr->pseikaku == SEIKAKU_NAMAKE)
65                 if (one_in_(20)) return (FALSE);
66
67         /* Wimpy attack never hits */
68         if (chance <= 0) return (FALSE);
69
70         /* Penalize invisible targets */
71         if (!vis) chance = (chance + 1) / 2;
72
73         /* Power must defeat armor */
74         if (randint0(chance) < (ac * 3 / 4)) return (FALSE);
75
76         /* Assume hit */
77         return (TRUE);
78 }
79
80
81
82 /*
83  * Critical hits (from objects thrown by player)
84  * Factor in item weight, total plusses, and player level.
85  */
86 s16b critical_shot(int weight, int plus, int dam)
87 {
88         int i, k;
89
90         /* Extract "shot" power */
91         i = (weight + ((p_ptr->to_h_b + plus) * 4) + (p_ptr->lev * 2));
92
93         /* Critical hit */
94         if (randint1(5000) <= i)
95         {
96                 k = weight + randint1(500);
97
98                 if (k < 500)
99                 {
100 #ifdef JP
101                         msg_print("¼ê¤´¤¿¤¨¤¬¤¢¤Ã¤¿¡ª");
102 #else
103                         msg_print("It was a good hit!");
104 #endif
105
106                         dam = 2 * dam + 5;
107                 }
108                 else if (k < 1000)
109                 {
110 #ifdef JP
111                         msg_print("¤«¤Ê¤ê¤Î¼ê¤´¤¿¤¨¤¬¤¢¤Ã¤¿¡ª");
112 #else
113                         msg_print("It was a great hit!");
114 #endif
115
116                         dam = 2 * dam + 10;
117                 }
118                 else
119                 {
120 #ifdef JP
121                         msg_print("²ñ¿´¤Î°ì·â¤À¡ª");
122 #else
123                         msg_print("It was a superb hit!");
124 #endif
125
126                         dam = 3 * dam + 15;
127                 }
128         }
129
130         return (dam);
131 }
132
133
134
135 /*
136  * Critical hits (by player)
137  *
138  * Factor in weapon weight, total plusses, player level.
139  */
140 s16b critical_norm(int weight, int plus, int dam, s16b meichuu, int mode)
141 {
142         int i, k;
143
144         /* Extract "blow" power */
145         i = (weight + (meichuu * 3 + plus * 5) + (p_ptr->lev * 3));
146
147         /* Chance */
148         if ((randint1((p_ptr->pclass == CLASS_NINJA) ? 4444 : 5000) <= i) || (mode == HISSATSU_MAJIN) || (mode == HISSATSU_3DAN))
149         {
150                 k = weight + randint1(650);
151                 if ((mode == HISSATSU_MAJIN) || (mode == HISSATSU_3DAN)) k+= randint1(650);
152
153                 if (k < 400)
154                 {
155 #ifdef JP
156                         msg_print("¼ê¤´¤¿¤¨¤¬¤¢¤Ã¤¿¡ª");
157 #else
158                         msg_print("It was a good hit!");
159 #endif
160
161                         dam = 2 * dam + 5;
162                 }
163                 else if (k < 700)
164                 {
165 #ifdef JP
166                         msg_print("¤«¤Ê¤ê¤Î¼ê¤´¤¿¤¨¤¬¤¢¤Ã¤¿¡ª");
167 #else
168                         msg_print("It was a great hit!");
169 #endif
170
171                         dam = 2 * dam + 10;
172                 }
173                 else if (k < 900)
174                 {
175 #ifdef JP
176                         msg_print("²ñ¿´¤Î°ì·â¤À¡ª");
177 #else
178                         msg_print("It was a superb hit!");
179 #endif
180
181                         dam = 3 * dam + 15;
182                 }
183                 else if (k < 1300)
184                 {
185 #ifdef JP
186                         msg_print("ºÇ¹â¤Î²ñ¿´¤Î°ì·â¤À¡ª");
187 #else
188                         msg_print("It was a *GREAT* hit!");
189 #endif
190
191                         dam = 3 * dam + 20;
192                 }
193                 else
194                 {
195 #ifdef JP
196                         msg_print("ÈæÎà¤Ê¤­ºÇ¹â¤Î²ñ¿´¤Î°ì·â¤À¡ª");
197 #else
198                         msg_print("It was a *SUPERB* hit!");
199 #endif
200
201                         dam = ((7 * dam) / 2) + 25;
202                 }
203         }
204
205         return (dam);
206 }
207
208
209
210 /*
211  * Extract the "total damage" from a given object hitting a given monster.
212  *
213  * Note that "flasks of oil" do NOT do fire damage, although they
214  * certainly could be made to do so.  XXX XXX
215  *
216  * Note that most brands and slays are x3, except Slay Animal (x2),
217  * Slay Evil (x2), and Kill dragon (x5).
218  */
219 s16b tot_dam_aux(object_type *o_ptr, int tdam, monster_type *m_ptr, int mode)
220 {
221         int mult = 10;
222
223         monster_race *r_ptr = &r_info[m_ptr->r_idx];
224
225         u32b flgs[TR_FLAG_SIZE];
226
227         /* Extract the flags */
228         object_flags(o_ptr, flgs);
229
230         /* Some "weapons" and "ammo" do extra damage */
231         switch (o_ptr->tval)
232         {
233                 case TV_SHOT:
234                 case TV_ARROW:
235                 case TV_BOLT:
236                 case TV_HAFTED:
237                 case TV_POLEARM:
238                 case TV_SWORD:
239                 case TV_DIGGING:
240                 {
241                         /* Slay Animal */
242                         if ((have_flag(flgs, TR_SLAY_ANIMAL)) &&
243                             (r_ptr->flags3 & RF3_ANIMAL))
244                         {
245                                 if (m_ptr->ml)
246                                 {
247                                         r_ptr->r_flags3 |= RF3_ANIMAL;
248                                 }
249
250                                 if (mult < 25) mult = 25;
251                         }
252
253                         /* Execute Animal */
254                         if ((have_flag(flgs, TR_KILL_ANIMAL)) &&
255                             (r_ptr->flags3 & RF3_ANIMAL))
256                         {
257                                 if (m_ptr->ml)
258                                 {
259                                         r_ptr->r_flags3 |= RF3_ANIMAL;
260                                 }
261
262                                 if (mult < 40) mult = 40;
263                         }
264
265                         /* Slay Evil */
266                         if ((have_flag(flgs, TR_SLAY_EVIL)) &&
267                             (r_ptr->flags3 & RF3_EVIL))
268                         {
269                                 if (m_ptr->ml)
270                                 {
271                                         r_ptr->r_flags3 |= RF3_EVIL;
272                                 }
273
274                                 if (mult < 20) mult = 20;
275                         }
276
277                         /* Execute Evil */
278                         if ((have_flag(flgs, TR_KILL_EVIL)) &&
279                             (r_ptr->flags3 & RF3_EVIL))
280                         {
281                                 if (m_ptr->ml)
282                                 {
283                                         r_ptr->r_flags3 |= RF3_EVIL;
284                                 }
285
286                                 if (mult < 35) mult = 35;
287                         }
288
289                         /* Slay Human */
290                         if ((have_flag(flgs, TR_SLAY_HUMAN)) &&
291                             (r_ptr->flags2 & RF2_HUMAN))
292                         {
293                                 if (m_ptr->ml)
294                                 {
295                                         r_ptr->r_flags2 |= RF2_HUMAN;
296                                 }
297
298                                 if (mult < 25) mult = 25;
299                         }
300
301                         /* Execute Human */
302                         if ((have_flag(flgs, TR_KILL_HUMAN)) &&
303                             (r_ptr->flags2 & RF2_HUMAN))
304                         {
305                                 if (m_ptr->ml)
306                                 {
307                                         r_ptr->r_flags2 |= RF2_HUMAN;
308                                 }
309
310                                 if (mult < 40) mult = 40;
311                         }
312
313                         /* Slay Undead */
314                         if ((have_flag(flgs, TR_SLAY_UNDEAD)) &&
315                             (r_ptr->flags3 & RF3_UNDEAD))
316                         {
317                                 if (m_ptr->ml)
318                                 {
319                                         r_ptr->r_flags3 |= RF3_UNDEAD;
320                                 }
321
322                                 if (mult < 30) mult = 30;
323                         }
324
325                         /* Execute Undead */
326                         if ((have_flag(flgs, TR_KILL_UNDEAD)) &&
327                             (r_ptr->flags3 & RF3_UNDEAD))
328                         {
329                                 if (m_ptr->ml)
330                                 {
331                                         r_ptr->r_flags3 |= RF3_UNDEAD;
332                                 }
333
334                                 if (mult < 50) mult = 50;
335                         }
336
337                         /* Slay Demon */
338                         if ((have_flag(flgs, TR_SLAY_DEMON)) &&
339                             (r_ptr->flags3 & RF3_DEMON))
340                         {
341                                 if (m_ptr->ml)
342                                 {
343                                         r_ptr->r_flags3 |= RF3_DEMON;
344                                 }
345
346                                 if (mult < 30) mult = 30;
347                         }
348
349                         /* Execute Demon */
350                         if ((have_flag(flgs, TR_KILL_DEMON)) &&
351                             (r_ptr->flags3 & RF3_DEMON))
352                         {
353                                 if (m_ptr->ml)
354                                 {
355                                         r_ptr->r_flags3 |= RF3_DEMON;
356                                 }
357
358                                 if (mult < 50) mult = 50;
359                         }
360
361                         /* Slay Orc */
362                         if ((have_flag(flgs, TR_SLAY_ORC)) &&
363                             (r_ptr->flags3 & RF3_ORC))
364                         {
365                                 if (m_ptr->ml)
366                                 {
367                                         r_ptr->r_flags3 |= RF3_ORC;
368                                 }
369
370                                 if (mult < 30) mult = 30;
371                         }
372
373                         /* Execute Orc */
374                         if ((have_flag(flgs, TR_KILL_ORC)) &&
375                             (r_ptr->flags3 & RF3_ORC))
376                         {
377                                 if (m_ptr->ml)
378                                 {
379                                         r_ptr->r_flags3 |= RF3_ORC;
380                                 }
381
382                                 if (mult < 50) mult = 50;
383                         }
384
385                         /* Slay Troll */
386                         if ((have_flag(flgs, TR_SLAY_TROLL)) &&
387                             (r_ptr->flags3 & RF3_TROLL))
388                         {
389                                 if (m_ptr->ml)
390                                 {
391                                         r_ptr->r_flags3 |= RF3_TROLL;
392                                 }
393
394                                 if (mult < 30) mult = 30;
395                         }
396
397                         /* Execute Troll */
398                         if ((have_flag(flgs, TR_KILL_TROLL)) &&
399                             (r_ptr->flags3 & RF3_TROLL))
400                         {
401                                 if (m_ptr->ml)
402                                 {
403                                         r_ptr->r_flags3 |= RF3_TROLL;
404                                 }
405
406                                 if (mult < 50) mult = 50;
407                         }
408
409                         /* Slay Giant */
410                         if ((have_flag(flgs, TR_SLAY_GIANT)) &&
411                             (r_ptr->flags3 & RF3_GIANT))
412                         {
413                                 if (m_ptr->ml)
414                                 {
415                                         r_ptr->r_flags3 |= RF3_GIANT;
416                                 }
417
418                                 if (mult < 30) mult = 30;
419                                 if (o_ptr->name1 == ART_HRUNTING)
420                                         mult *= 3;
421                         }
422
423                         /* Execute Giant */
424                         if ((have_flag(flgs, TR_KILL_GIANT)) &&
425                             (r_ptr->flags3 & RF3_GIANT))
426                         {
427                                 if (m_ptr->ml)
428                                 {
429                                         r_ptr->r_flags3 |= RF3_GIANT;
430                                 }
431
432                                 if (mult < 50) mult = 50;
433                         }
434
435                         /* Slay Dragon  */
436                         if ((have_flag(flgs, TR_SLAY_DRAGON)) &&
437                             (r_ptr->flags3 & RF3_DRAGON))
438                         {
439                                 if (m_ptr->ml)
440                                 {
441                                         r_ptr->r_flags3 |= RF3_DRAGON;
442                                 }
443
444                                 if (mult < 30) mult = 30;
445                         }
446
447                         /* Execute Dragon */
448                         if ((have_flag(flgs, TR_KILL_DRAGON)) &&
449                             (r_ptr->flags3 & RF3_DRAGON))
450                         {
451                                 if (m_ptr->ml)
452                                 {
453                                         r_ptr->r_flags3 |= RF3_DRAGON;
454                                 }
455
456                                 if (mult < 50) mult = 50;
457
458                                 if ((o_ptr->name1 == ART_NOTHUNG) && (m_ptr->r_idx == MON_FAFNER))
459                                         mult *= 3;
460                         }
461
462                         /* Brand (Acid) */
463                         if ((have_flag(flgs, TR_BRAND_ACID)) || (p_ptr->special_attack & (ATTACK_ACID)))
464                         {
465                                 /* Notice immunity */
466                                 if (r_ptr->flags3 & RF3_IM_ACID)
467                                 {
468                                         if (m_ptr->ml)
469                                         {
470                                                 r_ptr->r_flags3 |= RF3_IM_ACID;
471                                         }
472                                 }
473
474                                 /* Otherwise, take the damage */
475                                 else
476                                 {
477                                         if (mult < 25) mult = 25;
478                                 }
479                         }
480
481                         /* Brand (Elec) */
482                         if ((have_flag(flgs, TR_BRAND_ELEC)) || (p_ptr->special_attack & (ATTACK_ELEC)) || (mode == HISSATSU_ELEC))
483                         {
484                                 /* Notice immunity */
485                                 if (r_ptr->flags3 & RF3_IM_ELEC)
486                                 {
487                                         if (m_ptr->ml)
488                                         {
489                                                 r_ptr->r_flags3 |= RF3_IM_ELEC;
490                                         }
491                                 }
492
493                                 /* Otherwise, take the damage */
494                                 else if (((have_flag(flgs, TR_BRAND_ELEC)) || (p_ptr->special_attack & (ATTACK_ELEC))) && (mode == HISSATSU_ELEC))
495                                 {
496                                         if (mult < 70) mult = 70;
497                                 }
498                                 else if (mode == HISSATSU_ELEC)
499                                 {
500                                         if (mult < 50) mult = 50;
501                                 }
502
503                                 else
504                                 {
505                                         if (mult < 25) mult = 25;
506                                 }
507                         }
508
509                         /* Brand (Fire) */
510                         if ((have_flag(flgs, TR_BRAND_FIRE)) || (p_ptr->special_attack & (ATTACK_FIRE)) || (mode == HISSATSU_FIRE))
511                         {
512                                 /* Notice immunity */
513                                 if (r_ptr->flags3 & RF3_IM_FIRE)
514                                 {
515                                         if (m_ptr->ml)
516                                         {
517                                                 r_ptr->r_flags3 |= RF3_IM_FIRE;
518                                         }
519                                 }
520
521                                 /* Otherwise, take the damage */
522                                 else if (((have_flag(flgs, TR_BRAND_FIRE)) || (p_ptr->special_attack & (ATTACK_FIRE))) && (mode == HISSATSU_FIRE))
523                                 {
524                                         if (r_ptr->flags3 & RF3_HURT_FIRE)
525                                         {
526                                                 if (mult < 70) mult = 70;
527                                                 if (m_ptr->ml)
528                                                 {
529                                                         r_ptr->r_flags3 |= RF3_HURT_FIRE;
530                                                 }
531                                         }
532                                         else if (mult < 35) mult = 35;
533                                 }
534                                 else
535                                 {
536                                         if (r_ptr->flags3 & RF3_HURT_FIRE)
537                                         {
538                                                 if (mult < 50) mult = 50;
539                                                 if (m_ptr->ml)
540                                                 {
541                                                         r_ptr->r_flags3 |= RF3_HURT_FIRE;
542                                                 }
543                                         }
544                                         else if (mult < 25) mult = 25;
545                                 }
546                         }
547
548                         /* Brand (Cold) */
549                         if ((have_flag(flgs, TR_BRAND_COLD)) || (p_ptr->special_attack & (ATTACK_COLD)) || (mode == HISSATSU_COLD))
550                         {
551                                 /* Notice immunity */
552                                 if (r_ptr->flags3 & RF3_IM_COLD)
553                                 {
554                                         if (m_ptr->ml)
555                                         {
556                                                 r_ptr->r_flags3 |= RF3_IM_COLD;
557                                         }
558                                 }
559                                 /* Otherwise, take the damage */
560                                 else if (((have_flag(flgs, TR_BRAND_COLD)) || (p_ptr->special_attack & (ATTACK_COLD))) && (mode == HISSATSU_COLD))
561                                 {
562                                         if (r_ptr->flags3 & RF3_HURT_COLD)
563                                         {
564                                                 if (mult < 70) mult = 70;
565                                                 if (m_ptr->ml)
566                                                 {
567                                                         r_ptr->r_flags3 |= RF3_HURT_COLD;
568                                                 }
569                                         }
570                                         else if (mult < 35) mult = 35;
571                                 }
572                                 else
573                                 {
574                                         if (r_ptr->flags3 & RF3_HURT_COLD)
575                                         {
576                                                 if (mult < 50) mult = 50;
577                                                 if (m_ptr->ml)
578                                                 {
579                                                         r_ptr->r_flags3 |= RF3_HURT_COLD;
580                                                 }
581                                         }
582                                         else if (mult < 25) mult = 25;
583                                 }
584                         }
585
586                         /* Brand (Poison) */
587                         if ((have_flag(flgs, TR_BRAND_POIS)) || (p_ptr->special_attack & (ATTACK_POIS)) || (mode == HISSATSU_POISON))
588                         {
589                                 /* Notice immunity */
590                                 if (r_ptr->flags3 & RF3_IM_POIS)
591                                 {
592                                         if (m_ptr->ml)
593                                         {
594                                                 r_ptr->r_flags3 |= RF3_IM_POIS;
595                                         }
596                                 }
597
598                                 /* Otherwise, take the damage */
599                                 else if (((have_flag(flgs, TR_BRAND_POIS)) || (p_ptr->special_attack & (ATTACK_POIS))) && (mode == HISSATSU_POISON))
600                                 {
601                                         if (mult < 35) mult = 35;
602                                 }
603                                 else
604                                 {
605                                         if (mult < 25) mult = 25;
606                                 }
607                         }
608                         if ((mode == HISSATSU_ZANMA) && (r_ptr->flags3 & (RF3_DEMON | RF3_UNDEAD | RF3_NONLIVING)) && (r_ptr->flags3 & RF3_EVIL))
609                         {
610                                 if (mult < 15) mult = 25;
611                                 else if (mult < 50) mult = MIN(50, mult+20);
612                         }
613                         if (mode == HISSATSU_UNDEAD)
614                         {
615                                 if (r_ptr->flags3 & RF3_UNDEAD)
616                                 {
617                                         if (m_ptr->ml)
618                                         {
619                                                 r_ptr->r_flags3 |= RF3_UNDEAD;
620                                         }
621                                         if (mult == 10) mult = 70;
622                                         else if (mult < 140) mult = MIN(140, mult+60);
623                                 }
624                                 if (mult == 10) mult = 40;
625                                 else if (mult < 60) mult = MIN(60, mult+30);
626                         }
627                         if ((mode == HISSATSU_SEKIRYUKA) && p_ptr->cut && !(r_ptr->flags3 & (RF3_DEMON | RF3_UNDEAD | RF3_NONLIVING)))
628                         {
629                                 int tmp = MIN(100, MAX(10, p_ptr->cut / 10));
630                                 if (mult < tmp) mult = tmp;
631                         }
632                         if ((mode == HISSATSU_HAGAN) && (r_ptr->flags3 & RF3_HURT_ROCK))
633                         {
634                                 if (m_ptr->ml)
635                                 {
636                                         r_ptr->r_flags3 |= RF3_HURT_ROCK;
637                                 }
638                                 if (mult == 10) mult = 40;
639                                 else if (mult < 60) mult = 60;
640                         }
641                         if ((p_ptr->pclass != CLASS_SAMURAI) && (have_flag(flgs, TR_FORCE_WEAPON)) && (p_ptr->csp > (o_ptr->dd * o_ptr->ds / 5)))
642                         {
643                                 p_ptr->csp -= (1+(o_ptr->dd * o_ptr->ds / 5));
644                                 p_ptr->redraw |= (PR_MANA);
645                                 mult = mult * 3 / 2 + 20;
646                         }
647                         break;
648                 }
649         }
650         if (mult > 150) mult = 150;
651
652         /* Return the total damage */
653         return (tdam * mult / 10);
654 }
655
656
657 /*
658  * Search for hidden things
659  */
660 void search(void)
661 {
662         int y, x, chance;
663
664         s16b this_o_idx, next_o_idx = 0;
665
666         cave_type *c_ptr;
667
668
669         /* Start with base search ability */
670         chance = p_ptr->skill_srh;
671
672         /* Penalize various conditions */
673         if (p_ptr->blind || no_lite()) chance = chance / 10;
674         if (p_ptr->confused || p_ptr->image) chance = chance / 10;
675
676         /* Search the nearby grids, which are always in bounds */
677         for (y = (py - 1); y <= (py + 1); y++)
678         {
679                 for (x = (px - 1); x <= (px + 1); x++)
680                 {
681                         /* Sometimes, notice things */
682                         if (randint0(100) < chance)
683                         {
684                                 /* Access the grid */
685                                 c_ptr = &cave[y][x];
686
687                                 /* Invisible trap */
688                                 if (c_ptr->mimic && is_trap(c_ptr->feat))
689                                 {
690                                         /* Pick a trap */
691                                         disclose_grid(y, x);
692
693                                         /* Message */
694 #ifdef JP
695                                         msg_print("¥È¥é¥Ã¥×¤òȯ¸«¤·¤¿¡£");
696 #else
697                                         msg_print("You have found a trap.");
698 #endif
699
700
701                                         /* Disturb */
702                                         disturb(0, 0);
703                                 }
704
705                                 /* Secret door */
706                                 if (is_hidden_door(c_ptr))
707                                 {
708                                         /* Message */
709 #ifdef JP
710                                         msg_print("±£¤·¥É¥¢¤òȯ¸«¤·¤¿¡£");
711 #else
712                                         msg_print("You have found a secret door.");
713 #endif
714
715                                         /* Disclose */
716                                         disclose_grid(y, x);
717
718                                         /* Disturb */
719                                         disturb(0, 0);
720                                 }
721
722                                 /* Scan all objects in the grid */
723                                 for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
724                                 {
725                                         object_type *o_ptr;
726
727                                         /* Acquire object */
728                                         o_ptr = &o_list[this_o_idx];
729
730                                         /* Acquire next object */
731                                         next_o_idx = o_ptr->next_o_idx;
732
733                                         /* Skip non-chests */
734                                         if (o_ptr->tval != TV_CHEST) continue;
735
736                                         /* Skip non-trapped chests */
737                                         if (!chest_traps[o_ptr->pval]) continue;
738
739                                         /* Identify once */
740                                         if (!object_known_p(o_ptr))
741                                         {
742                                                 /* Message */
743 #ifdef JP
744                                                 msg_print("È¢¤Ë»Å³Ý¤±¤é¤ì¤¿¥È¥é¥Ã¥×¤òȯ¸«¤·¤¿¡ª");
745 #else
746                                                 msg_print("You have discovered a trap on the chest!");
747 #endif
748
749
750                                                 /* Know the trap */
751                                                 object_known(o_ptr);
752
753                                                 /* Notice it */
754                                                 disturb(0, 0);
755                                         }
756                                 }
757                         }
758                 }
759         }
760 }
761
762
763 /*
764  * Helper routine for py_pickup() and py_pickup_floor().
765  *
766  * Add the given dungeon object to the character's inventory.
767  *
768  * Delete the object afterwards.
769  */
770 void py_pickup_aux(int o_idx)
771 {
772         int slot, i;
773
774 #ifdef JP
775 /*
776  * ¥¢¥¤¥Æ¥à¤ò½¦¤Ã¤¿ºÝ¤Ë¡Ö£²¤Ä¤Î¥±¡¼¥­¤ò»ý¤Ã¤Æ¤¤¤ë¡×
777  * "You have two cakes." ¤È¥¢¥¤¥Æ¥à¤ò½¦¤Ã¤¿¸å¤Î¹ç·×¤Î¤ß¤Îɽ¼¨¤¬¥ª¥ê¥¸¥Ê¥ë
778  * ¤À¤¬¡¢°ãÏ´¶¤¬
779  * ¤¢¤ë¤È¤¤¤¦»ØŦ¤ò¤¦¤±¤¿¤Î¤Ç¡¢¡Ö¡Á¤ò½¦¤Ã¤¿¡¢¡Á¤ò»ý¤Ã¤Æ¤¤¤ë¡×¤È¤¤¤¦É½¼¨
780  * ¤Ë¤«¤¨¤Æ¤¢¤ë¡£¤½¤Î¤¿¤á¤ÎÇÛÎó¡£
781  */
782         char o_name[MAX_NLEN];
783         char old_name[MAX_NLEN];
784         char kazu_str[80];
785         int hirottakazu;
786 #else
787         char o_name[MAX_NLEN];
788 #endif
789
790         object_type *o_ptr;
791
792         o_ptr = &o_list[o_idx];
793
794 #ifdef JP
795         /* Describe the object */
796         object_desc(old_name, o_ptr, TRUE, 0);
797         object_desc_kosuu(kazu_str, o_ptr);
798         hirottakazu = o_ptr->number;
799 #endif
800         /* Carry the object */
801         slot = inven_carry(o_ptr);
802
803         /* Get the object again */
804         o_ptr = &inventory[slot];
805
806         /* Delete the object */
807         delete_object_idx(o_idx);
808
809         if (p_ptr->pseikaku == SEIKAKU_MUNCHKIN) identify_item(o_ptr);
810
811         /* Describe the object */
812         object_desc(o_name, o_ptr, TRUE, 3);
813
814         /* Message */
815 #ifdef JP
816         if ((o_ptr->name1 == ART_CRIMSON) && (p_ptr->pseikaku == SEIKAKU_COMBAT))
817         {
818                 msg_format("¤³¤¦¤·¤Æ¡¢%s¤Ï¡Ø¥¯¥ê¥à¥¾¥ó¡Ù¤ò¼ê¤ËÆþ¤ì¤¿¡£", player_name);
819                 msg_print("¤·¤«¤·º£¡¢¡Øº®Æ٤Υµ¡¼¥Ú¥ó¥È¡Ù¤ÎÊü¤Ã¤¿¥â¥ó¥¹¥¿¡¼¤¬¡¢");
820                 msg_format("%s¤Ë½±¤¤¤«¤«¤ë¡¥¡¥¡¥", player_name);
821         }
822         else
823         {
824                 if (plain_pickup)
825                 {
826                         msg_format("%s(%c)¤ò»ý¤Ã¤Æ¤¤¤ë¡£",o_name, index_to_label(slot));
827                 }
828                 else
829                 {
830                         if (o_ptr->number > hirottakazu) {
831                             msg_format("%s½¦¤Ã¤Æ¡¢%s(%c)¤ò»ý¤Ã¤Æ¤¤¤ë¡£",
832                                kazu_str, o_name, index_to_label(slot));
833                         } else {
834                                 msg_format("%s(%c)¤ò½¦¤Ã¤¿¡£", o_name, index_to_label(slot));
835                         }
836                 }
837         }
838         strcpy(record_o_name, old_name);
839 #else
840         msg_format("You have %s (%c).", o_name, index_to_label(slot));
841         strcpy(record_o_name, o_name);
842 #endif
843         record_turn = turn;
844
845
846         /* Check if completed a quest */
847         for (i = 0; i < max_quests; i++)
848         {
849                 if ((quest[i].type == QUEST_TYPE_FIND_ARTIFACT) &&
850                     (quest[i].status == QUEST_STATUS_TAKEN) &&
851                            (quest[i].k_idx == o_ptr->name1))
852                 {
853                         if (record_fix_quest) do_cmd_write_nikki(NIKKI_FIX_QUEST_C, i, NULL);
854                         quest[i].status = QUEST_STATUS_COMPLETED;
855                         quest[i].complev = (byte)p_ptr->lev;
856 #ifdef JP
857                         msg_print("¥¯¥¨¥¹¥È¤òãÀ®¤·¤¿¡ª");
858 #else
859                         msg_print("You completed your quest!");
860 #endif
861
862                         msg_print(NULL);
863                 }
864         }
865 }
866
867
868 /*
869  * Player "wants" to pick up an object or gold.
870  * Note that we ONLY handle things that can be picked up.
871  * See "move_player()" for handling of other things.
872  */
873 void carry(int pickup)
874 {
875         cave_type *c_ptr = &cave[py][px];
876
877         s16b this_o_idx, next_o_idx = 0;
878
879         char    o_name[MAX_NLEN];
880
881         /* Recenter the map around the player */
882         verify_panel();
883
884         /* Update stuff */
885         p_ptr->update |= (PU_MONSTERS);
886
887         /* Redraw map */
888         p_ptr->redraw |= (PR_MAP);
889
890         /* Window stuff */
891         p_ptr->window |= (PW_OVERHEAD);
892
893         /* Handle stuff */
894         handle_stuff();
895
896         /* Automatically pickup/destroy/inscribe items */
897         auto_pickup_items(c_ptr);
898
899
900 #ifdef ALLOW_EASY_FLOOR
901
902         if (easy_floor)
903         {
904                 py_pickup_floor(pickup);
905                 return;
906         }
907
908 #endif /* ALLOW_EASY_FLOOR */
909
910         /* Scan the pile of objects */
911         for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
912         {
913                 object_type *o_ptr;
914
915                 /* Acquire object */
916                 o_ptr = &o_list[this_o_idx];
917
918 #ifdef ALLOW_EASY_SENSE /* TNB */
919
920                 /* Option: Make item sensing easy */
921                 if (easy_sense)
922                 {
923                         /* Sense the object */
924                         (void)sense_object(o_ptr);
925                 }
926
927 #endif /* ALLOW_EASY_SENSE -- TNB */
928
929                 /* Describe the object */
930                 object_desc(o_name, o_ptr, TRUE, 3);
931
932                 /* Acquire next object */
933                 next_o_idx = o_ptr->next_o_idx;
934
935                 /* Hack -- disturb */
936                 disturb(0, 0);
937
938                 /* Pick up gold */
939                 if (o_ptr->tval == TV_GOLD)
940                 {
941                         int value = (long)o_ptr->pval;
942
943                         /* Delete the gold */
944                         delete_object_idx(this_o_idx);
945
946                         /* Message */
947 #ifdef JP
948                 msg_format(" $%ld ¤Î²ÁÃͤ¬¤¢¤ë%s¤ò¸«¤Ä¤±¤¿¡£",
949                            (long)value, o_name);
950 #else
951                         msg_format("You collect %ld gold pieces worth of %s.",
952                                    (long)value, o_name);
953 #endif
954
955
956                         sound(SOUND_SELL);
957
958                         /* Collect the gold */
959                         p_ptr->au += value;
960
961                         /* Redraw gold */
962                         p_ptr->redraw |= (PR_GOLD);
963
964                         /* Window stuff */
965                         p_ptr->window |= (PW_PLAYER);
966                 }
967
968                 /* Pick up objects */
969                 else
970                 {
971                         /* Hack - some objects were handled in auto_pickup_items(). */
972                         if (o_ptr->marked & OM_NOMSG)
973                         {
974                                 /* Clear the flag. */
975                                 o_ptr->marked &= ~OM_NOMSG;
976                         }
977                         /* Describe the object */
978                         else if (!pickup)
979
980                         {
981 #ifdef JP
982                                 msg_format("%s¤¬¤¢¤ë¡£", o_name);
983 #else
984                                 msg_format("You see %s.", o_name);
985 #endif
986
987                         }
988
989                         /* Note that the pack is too full */
990                         else if (!inven_carry_okay(o_ptr))
991                         {
992 #ifdef JP
993                                 msg_format("¥¶¥Ã¥¯¤Ë¤Ï%s¤òÆþ¤ì¤ë·ä´Ö¤¬¤Ê¤¤¡£", o_name);
994 #else
995                                 msg_format("You have no room for %s.", o_name);
996 #endif
997
998                         }
999
1000                         /* Pick up the item (if requested and allowed) */
1001                         else
1002                         {
1003                                 int okay = TRUE;
1004
1005                                 /* Hack -- query every item */
1006                                 if (carry_query_flag)
1007                                 {
1008                                         char out_val[MAX_NLEN+20];
1009 #ifdef JP
1010                                         sprintf(out_val, "%s¤ò½¦¤¤¤Þ¤¹¤«? ", o_name);
1011 #else
1012                                         sprintf(out_val, "Pick up %s? ", o_name);
1013 #endif
1014
1015                                         okay = get_check(out_val);
1016                                 }
1017
1018                                 /* Attempt to pick up an object. */
1019                                 if (okay)
1020                                 {
1021                                         /* Pick up the object */
1022                                         py_pickup_aux(this_o_idx);
1023                                 }
1024                         }
1025                 }
1026         }
1027 }
1028
1029
1030 /*
1031  * Determine if a trap affects the player.
1032  * Always miss 5% of the time, Always hit 5% of the time.
1033  * Otherwise, match trap power against player armor.
1034  */
1035 static int check_hit(int power)
1036 {
1037         int k, ac;
1038
1039         /* Percentile dice */
1040         k = randint0(100);
1041
1042         /* Hack -- 5% hit, 5% miss */
1043         if (k < 10) return (k < 5);
1044
1045         if (p_ptr->pseikaku == SEIKAKU_NAMAKE)
1046                 if (one_in_(20)) return (TRUE);
1047
1048         /* Paranoia -- No power */
1049         if (power <= 0) return (FALSE);
1050
1051         /* Total armor */
1052         ac = p_ptr->ac + p_ptr->to_a;
1053
1054         /* Power competes against Armor */
1055         if (randint1(power) > ((ac * 3) / 4)) return (TRUE);
1056
1057         /* Assume miss */
1058         return (FALSE);
1059 }
1060
1061
1062
1063 /*
1064  * Handle player hitting a real trap
1065  */
1066 static void hit_trap(bool break_trap)
1067 {
1068         int i, num, dam;
1069         int x = px, y = py;
1070
1071         cave_type *c_ptr;
1072
1073 #ifdef JP
1074         cptr            name = "¥È¥é¥Ã¥×";
1075 #else
1076         cptr name = "a trap";
1077 #endif
1078
1079
1080
1081         /* Disturb the player */
1082         disturb(0, 0);
1083
1084         /* Get the cave grid */
1085         c_ptr = &cave[y][x];
1086
1087         /* Analyze XXX XXX XXX */
1088         switch (c_ptr->feat)
1089         {
1090                 case FEAT_TRAP_TRAPDOOR:
1091                 {
1092                         if (p_ptr->ffall)
1093                         {
1094 #ifdef JP
1095                                 msg_print("Í¸Í¤òÈô¤Ó±Û¤¨¤¿¡£");
1096 #else
1097                                 msg_print("You fly over a trap door.");
1098 #endif
1099
1100                         }
1101                         else
1102                         {
1103 #ifdef JP
1104                                 msg_print("Í¸Í¤ËÍî¤Á¤¿¡ª");
1105                                 if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
1106                                         msg_print("¤¯¤Ã¤½¡Á¡ª");
1107 #else
1108                                 msg_print("You have fallen through a trap door!");
1109 #endif
1110
1111                                 sound(SOUND_FALL);
1112                                 dam = damroll(2, 8);
1113 #ifdef JP
1114                                 name = "Í¸Í";
1115 #else
1116                                 name = "a trap door";
1117 #endif
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 #ifdef JP
1126                                 do_cmd_write_nikki(NIKKI_STAIR, 1, "Í¸Í¤ËÍî¤Á¤¿");
1127 #else
1128                                 do_cmd_write_nikki(NIKKI_STAIR, 1, "You have fallen through a trap door!");
1129 #endif
1130                                 dun_level++;
1131
1132                                 /* Leaving */
1133                                 p_ptr->leaving = TRUE;
1134                         }
1135                         break;
1136                 }
1137
1138                 case FEAT_TRAP_PIT:
1139                 {
1140                         if (p_ptr->ffall)
1141                         {
1142 #ifdef JP
1143                                 msg_print("Í·ê¤òÈô¤Ó±Û¤¨¤¿¡£");
1144 #else
1145                                 msg_print("You fly over a pit trap.");
1146 #endif
1147
1148                         }
1149                         else
1150                         {
1151 #ifdef JP
1152                                 msg_print("Í·ê¤ËÍî¤Á¤Æ¤·¤Þ¤Ã¤¿¡ª");
1153 #else
1154                                 msg_print("You have fallen into a pit!");
1155 #endif
1156
1157                                 dam = damroll(2, 6);
1158 #ifdef JP
1159                                 name = "Í·ê";
1160 #else
1161                                 name = "a pit trap";
1162 #endif
1163
1164                                 take_hit(DAMAGE_NOESCAPE, dam, name, -1);
1165                         }
1166                         break;
1167                 }
1168
1169                 case FEAT_TRAP_SPIKED_PIT:
1170                 {
1171                         if (p_ptr->ffall)
1172                         {
1173 #ifdef JP
1174                                 msg_print("¥È¥²¤Î¤¢¤ëÍ·ê¤òÈô¤Ó±Û¤¨¤¿¡£");
1175 #else
1176                                 msg_print("You fly over a spiked pit.");
1177 #endif
1178
1179                         }
1180                         else
1181                         {
1182 #ifdef JP
1183                         msg_print("¥¹¥Ñ¥¤¥¯¤¬Éߤ«¤ì¤¿Í·ê¤ËÍî¤Á¤Æ¤·¤Þ¤Ã¤¿¡ª");
1184 #else
1185                                 msg_print("You fall into a spiked pit!");
1186 #endif
1187
1188
1189                                 /* Base damage */
1190 #ifdef JP
1191                                 name = "Í·ê";
1192 #else
1193                                 name = "a pit trap";
1194 #endif
1195
1196                                 dam = damroll(2, 6);
1197
1198                                 /* Extra spike damage */
1199                                 if (randint0(100) < 50)
1200                                 {
1201 #ifdef JP
1202                                         msg_print("¥¹¥Ñ¥¤¥¯¤¬»É¤µ¤Ã¤¿¡ª");
1203 #else
1204                                         msg_print("You are impaled!");
1205 #endif
1206
1207
1208 #ifdef JP
1209                                         name = "¥È¥²¤Î¤¢¤ëÍ·ê";
1210 #else
1211                                         name = "a spiked pit";
1212 #endif
1213
1214                                         dam = dam * 2;
1215                                         (void)set_cut(p_ptr->cut + randint1(dam));
1216                                 }
1217
1218                                 /* Take the damage */
1219                                 take_hit(DAMAGE_NOESCAPE, dam, name, -1);
1220                         }
1221                         break;
1222                 }
1223
1224                 case FEAT_TRAP_POISON_PIT:
1225                 {
1226                         if (p_ptr->ffall)
1227                         {
1228 #ifdef JP
1229                                 msg_print("¥È¥²¤Î¤¢¤ëÍ·ê¤òÈô¤Ó±Û¤¨¤¿¡£");
1230 #else
1231                                 msg_print("You fly over a spiked pit.");
1232 #endif
1233
1234                         }
1235                         else
1236                         {
1237 #ifdef JP
1238                         msg_print("¥¹¥Ñ¥¤¥¯¤¬Éߤ«¤ì¤¿Í·ê¤ËÍî¤Á¤Æ¤·¤Þ¤Ã¤¿¡ª");
1239 #else
1240                                 msg_print("You fall into a spiked pit!");
1241 #endif
1242
1243
1244                                 /* Base damage */
1245                                 dam = damroll(2, 6);
1246
1247 #ifdef JP
1248                                 name = "Í·ê";
1249 #else
1250                                 name = "a pit trap";
1251 #endif
1252
1253
1254                                 /* Extra spike damage */
1255                                 if (randint0(100) < 50)
1256                                 {
1257 #ifdef JP
1258                                         msg_print("ÆǤòÅɤé¤ì¤¿¥¹¥Ñ¥¤¥¯¤¬»É¤µ¤Ã¤¿¡ª");
1259 #else
1260                                         msg_print("You are impaled on poisonous spikes!");
1261 #endif
1262
1263
1264 #ifdef JP
1265                                         name = "¥È¥²¤Î¤¢¤ëÍ·ê";
1266 #else
1267                                         name = "a spiked pit";
1268 #endif
1269
1270
1271                                         dam = dam * 2;
1272                                         (void)set_cut(p_ptr->cut + randint1(dam));
1273
1274                                         if (p_ptr->resist_pois || p_ptr->oppose_pois)
1275                                         {
1276 #ifdef JP
1277                                                 msg_print("¤·¤«¤·ÆǤαƶÁ¤Ï¤Ê¤«¤Ã¤¿¡ª");
1278 #else
1279                                                 msg_print("The poison does not affect you!");
1280 #endif
1281
1282                                         }
1283
1284                                         else
1285                                         {
1286                                                 dam = dam * 2;
1287                                                 (void)set_poisoned(p_ptr->poisoned + randint1(dam));
1288                                         }
1289                                 }
1290
1291                                 /* Take the damage */
1292                                 take_hit(DAMAGE_NOESCAPE, dam, name, -1);
1293                         }
1294
1295                         break;
1296                 }
1297
1298                 case FEAT_TRAP_TY_CURSE:
1299                 {
1300 #ifdef JP
1301                         msg_print("²¿¤«¤¬¥Ô¥«¥Ã¤È¸÷¤Ã¤¿¡ª");
1302 #else
1303                         msg_print("There is a flash of shimmering light!");
1304 #endif
1305
1306                         c_ptr->info &= ~(CAVE_MARK);
1307                         cave_set_feat(y, x, floor_type[randint0(100)]);
1308                         num = 2 + randint1(3);
1309                         for (i = 0; i < num; i++)
1310                         {
1311                                 (void)summon_specific(0, y, x, dun_level, 0, (PM_ALLOW_GROUP | PM_ALLOW_UNIQUE | PM_NO_PET));
1312                         }
1313
1314                         if (dun_level > randint1(100)) /* No nasty effect for low levels */
1315                         {
1316                                 bool stop_ty = FALSE;
1317                                 int count = 0;
1318
1319                                 do
1320                                 {
1321                                         stop_ty = activate_ty_curse(stop_ty, &count);
1322                                 }
1323                                 while (one_in_(6));
1324                         }
1325                         break;
1326                 }
1327
1328                 case FEAT_TRAP_TELEPORT:
1329                 {
1330 #ifdef JP
1331                         msg_print("¥Æ¥ì¥Ý¡¼¥È¡¦¥È¥é¥Ã¥×¤Ë¤Ò¤Ã¤«¤«¤Ã¤¿¡ª");
1332 #else
1333                         msg_print("You hit a teleport trap!");
1334 #endif
1335
1336                         teleport_player(100);
1337                         break;
1338                 }
1339
1340                 case FEAT_TRAP_FIRE:
1341                 {
1342 #ifdef JP
1343                         msg_print("±ê¤ËÊñ¤Þ¤ì¤¿¡ª");
1344 #else
1345                         msg_print("You are enveloped in flames!");
1346 #endif
1347
1348                         dam = damroll(4, 6);
1349 #ifdef JP
1350                         (void)fire_dam(dam, "±ê¤Î¥È¥é¥Ã¥×", -1);
1351 #else
1352                         (void)fire_dam(dam, "a fire trap", -1);
1353 #endif
1354
1355                         break;
1356                 }
1357
1358                 case FEAT_TRAP_ACID:
1359                 {
1360 #ifdef JP
1361                         msg_print("»À¤¬¿á¤­¤«¤±¤é¤ì¤¿¡ª");
1362 #else
1363                         msg_print("You are splashed with acid!");
1364 #endif
1365
1366                         dam = damroll(4, 6);
1367 #ifdef JP
1368                         (void)acid_dam(dam, "»À¤Î¥È¥é¥Ã¥×", -1);
1369 #else
1370                         (void)acid_dam(dam, "an acid trap", -1);
1371 #endif
1372
1373                         break;
1374                 }
1375
1376                 case FEAT_TRAP_SLOW:
1377                 {
1378                         if (check_hit(125))
1379                         {
1380 #ifdef JP
1381                                 msg_print("¾®¤µ¤Ê¥À¡¼¥Ä¤¬Èô¤ó¤Ç¤­¤Æ»É¤µ¤Ã¤¿¡ª");
1382 #else
1383                                 msg_print("A small dart hits you!");
1384 #endif
1385
1386                                 dam = damroll(1, 4);
1387                                 take_hit(DAMAGE_ATTACK, dam, name, -1);
1388                                 (void)set_slow(p_ptr->slow + randint0(20) + 20, FALSE);
1389                         }
1390                         else
1391                         {
1392 #ifdef JP
1393                                 msg_print("¾®¤µ¤Ê¥À¡¼¥Ä¤¬Èô¤ó¤Ç¤­¤¿¡ª¤¬¡¢±¿Îɤ¯Åö¤¿¤é¤Ê¤«¤Ã¤¿¡£");
1394 #else
1395                                 msg_print("A small dart barely misses you.");
1396 #endif
1397
1398                         }
1399                         break;
1400                 }
1401
1402                 case FEAT_TRAP_LOSE_STR:
1403                 {
1404                         if (check_hit(125))
1405                         {
1406 #ifdef JP
1407                                 msg_print("¾®¤µ¤Ê¥À¡¼¥Ä¤¬Èô¤ó¤Ç¤­¤Æ»É¤µ¤Ã¤¿¡ª");
1408 #else
1409                                 msg_print("A small dart hits you!");
1410 #endif
1411
1412                                 dam = damroll(1, 4);
1413 #ifdef JP
1414                                 take_hit(DAMAGE_ATTACK, dam, "¥À¡¼¥Ä¤Îæ«", -1);
1415 #else
1416                                 take_hit(DAMAGE_ATTACK, dam, "a dart trap", -1);
1417 #endif
1418
1419                                 (void)do_dec_stat(A_STR);
1420                         }
1421                         else
1422                         {
1423 #ifdef JP
1424                                 msg_print("¾®¤µ¤Ê¥À¡¼¥Ä¤¬Èô¤ó¤Ç¤­¤¿¡ª¤¬¡¢±¿Îɤ¯Åö¤¿¤é¤Ê¤«¤Ã¤¿¡£");
1425 #else
1426                                 msg_print("A small dart barely misses you.");
1427 #endif
1428
1429                         }
1430                         break;
1431                 }
1432
1433                 case FEAT_TRAP_LOSE_DEX:
1434                 {
1435                         if (check_hit(125))
1436                         {
1437 #ifdef JP
1438                                 msg_print("¾®¤µ¤Ê¥À¡¼¥Ä¤¬Èô¤ó¤Ç¤­¤Æ»É¤µ¤Ã¤¿¡ª");
1439 #else
1440                                 msg_print("A small dart hits you!");
1441 #endif
1442
1443                                 dam = damroll(1, 4);
1444 #ifdef JP
1445                                 take_hit(DAMAGE_ATTACK, dam, "¥À¡¼¥Ä¤Îæ«", -1);
1446 #else
1447                                 take_hit(DAMAGE_ATTACK, dam, "a dart trap", -1);
1448 #endif
1449
1450                                 (void)do_dec_stat(A_DEX);
1451                         }
1452                         else
1453                         {
1454 #ifdef JP
1455                                 msg_print("¾®¤µ¤Ê¥À¡¼¥Ä¤¬Èô¤ó¤Ç¤­¤¿¡ª¤¬¡¢±¿Îɤ¯Åö¤¿¤é¤Ê¤«¤Ã¤¿¡£");
1456 #else
1457                                 msg_print("A small dart barely misses you.");
1458 #endif
1459
1460                         }
1461                         break;
1462                 }
1463
1464                 case FEAT_TRAP_LOSE_CON:
1465                 {
1466                         if (check_hit(125))
1467                         {
1468 #ifdef JP
1469                                 msg_print("¾®¤µ¤Ê¥À¡¼¥Ä¤¬Èô¤ó¤Ç¤­¤Æ»É¤µ¤Ã¤¿¡ª");
1470 #else
1471                                 msg_print("A small dart hits you!");
1472 #endif
1473
1474                                 dam = damroll(1, 4);
1475 #ifdef JP
1476                                 take_hit(DAMAGE_ATTACK, dam, "¥À¡¼¥Ä¤Îæ«", -1);
1477 #else
1478                                 take_hit(DAMAGE_ATTACK, dam, "a dart trap", -1);
1479 #endif
1480
1481                                 (void)do_dec_stat(A_CON);
1482                         }
1483                         else
1484                         {
1485 #ifdef JP
1486                                 msg_print("¾®¤µ¤Ê¥À¡¼¥Ä¤¬Èô¤ó¤Ç¤­¤¿¡ª¤¬¡¢±¿Îɤ¯Åö¤¿¤é¤Ê¤«¤Ã¤¿¡£");
1487 #else
1488                                 msg_print("A small dart barely misses you.");
1489 #endif
1490
1491                         }
1492                         break;
1493                 }
1494
1495                 case FEAT_TRAP_BLIND:
1496                 {
1497 #ifdef JP
1498                         msg_print("¹õ¤¤¥¬¥¹¤ËÊñ¤ß¹þ¤Þ¤ì¤¿¡ª");
1499 #else
1500                         msg_print("A black gas surrounds you!");
1501 #endif
1502
1503                         if (!p_ptr->resist_blind)
1504                         {
1505                                 (void)set_blind(p_ptr->blind + randint0(50) + 25);
1506                         }
1507                         break;
1508                 }
1509
1510                 case FEAT_TRAP_CONFUSE:
1511                 {
1512 #ifdef JP
1513                         msg_print("¤­¤é¤á¤¯¥¬¥¹¤ËÊñ¤ß¹þ¤Þ¤ì¤¿¡ª");
1514 #else
1515                         msg_print("A gas of scintillating colors surrounds you!");
1516 #endif
1517
1518                         if (!p_ptr->resist_conf)
1519                         {
1520                                 (void)set_confused(p_ptr->confused + randint0(20) + 10);
1521                         }
1522                         break;
1523                 }
1524
1525                 case FEAT_TRAP_POISON:
1526                 {
1527 #ifdef JP
1528                         msg_print("»É·ãŪ¤ÊÎп§¤Î¥¬¥¹¤ËÊñ¤ß¹þ¤Þ¤ì¤¿¡ª");
1529 #else
1530                         msg_print("A pungent green gas surrounds you!");
1531 #endif
1532
1533                         if (!p_ptr->resist_pois && !p_ptr->oppose_pois)
1534                         {
1535                                 (void)set_poisoned(p_ptr->poisoned + randint0(20) + 10);
1536                         }
1537                         break;
1538                 }
1539
1540                 case FEAT_TRAP_SLEEP:
1541                 {
1542 #ifdef JP
1543                         msg_print("´ñ̯¤ÊÇò¤¤Ì¸¤ËÊñ¤Þ¤ì¤¿¡ª");
1544 #else
1545                         msg_print("A strange white mist surrounds you!");
1546 #endif
1547
1548                         if (!p_ptr->free_act)
1549                         {
1550 #ifdef JP
1551 msg_print("¤¢¤Ê¤¿¤Ï̲¤ê¤Ë½¢¤¤¤¿¡£");
1552 #else
1553                                 msg_print("You fall asleep.");
1554 #endif
1555
1556
1557                                 if (ironman_nightmare)
1558                                 {
1559 #ifdef JP
1560 msg_print("¿È¤ÎÌÓ¤â¤è¤À¤Ä¸÷·Ê¤¬Æ¬¤ËÉ⤫¤ó¤À¡£");
1561 #else
1562                                         msg_print("A horrible vision enters your mind.");
1563 #endif
1564
1565
1566                                         /* Pick a nightmare */
1567                                         get_mon_num_prep(get_nightmare, NULL);
1568
1569                                         /* Have some nightmares */
1570                                         have_nightmare(get_mon_num(MAX_DEPTH));
1571
1572                                         /* Remove the monster restriction */
1573                                         get_mon_num_prep(NULL, NULL);
1574                                 }
1575                                 (void)set_paralyzed(p_ptr->paralyzed + randint0(10) + 5);
1576                         }
1577                         break;
1578                 }
1579
1580                 case FEAT_TRAP_TRAPS:
1581                 {
1582 #ifdef JP
1583 msg_print("¤Þ¤Ð¤æ¤¤Á®¸÷¤¬Áö¤Ã¤¿¡ª");
1584 #else
1585                         msg_print("There is a bright flash of light!");
1586 #endif
1587
1588
1589                         /* Destroy this trap */
1590                         cave_set_feat(y, x, floor_type[randint0(100)]);
1591
1592                         /* Make some new traps */
1593                         project(0, 1, y, x, 0, GF_MAKE_TRAP, PROJECT_HIDE | PROJECT_JUMP | PROJECT_GRID, -1);
1594
1595                         break;
1596                 }
1597
1598                 case FEAT_TRAP_ALARM:
1599                 {
1600 #ifdef JP
1601                         msg_print("¤±¤¿¤¿¤Þ¤·¤¤²»¤¬ÌĤê¶Á¤¤¤¿¡ª");
1602 #else
1603                         msg_print("An alarm sounds!");
1604 #endif
1605
1606                         aggravate_monsters(0);
1607
1608                         break;
1609                 }
1610
1611                 case FEAT_TRAP_OPEN:
1612                 {
1613 #ifdef JP
1614                         msg_print("Âç²»¶Á¤È¶¦¤Ë¤Þ¤ï¤ê¤ÎÊɤ¬Êø¤ì¤¿¡ª");
1615 #else
1616                         msg_print("Suddenly, surrounding walls are opened!");
1617 #endif
1618                         (void)project(0, 3, y, x, 0, GF_DISINTEGRATE, PROJECT_GRID | PROJECT_HIDE, -1);
1619                         (void)project(0, 3, y, x - 4, 0, GF_DISINTEGRATE, PROJECT_GRID | PROJECT_HIDE, -1);
1620                         (void)project(0, 3, y, x + 4, 0, GF_DISINTEGRATE, PROJECT_GRID | PROJECT_HIDE, -1);
1621                         aggravate_monsters(0);
1622
1623                         break;
1624                 }
1625         }
1626         if (break_trap && is_trap(c_ptr->feat))
1627         {
1628                 cave_set_feat(y, x, floor_type[randint0(100)]);
1629 #ifdef JP
1630                 msg_print("¥È¥é¥Ã¥×¤òÊ´ºÕ¤·¤¿¡£");
1631 #else
1632                 msg_print("You destroyed the trap.");
1633 #endif
1634         }
1635 }
1636
1637
1638 static void touch_zap_player(monster_type *m_ptr)
1639 {
1640         int aura_damage = 0;
1641         monster_race *r_ptr = &r_info[m_ptr->r_idx];
1642
1643         if (r_ptr->flags2 & RF2_AURA_FIRE)
1644         {
1645                 if (!p_ptr->immune_fire)
1646                 {
1647                         char aura_dam[80];
1648
1649                         aura_damage = damroll(1 + (r_ptr->level / 26), 1 + (r_ptr->level / 17));
1650
1651                         /* Hack -- Get the "died from" name */
1652                         monster_desc(aura_dam, m_ptr, 0x288);
1653
1654 #ifdef JP
1655                         msg_print("ÆÍÁ³¤È¤Æ¤âÇ®¤¯¤Ê¤Ã¤¿¡ª");
1656 #else
1657                         msg_print("You are suddenly very hot!");
1658 #endif
1659
1660
1661                         if (p_ptr->oppose_fire) aura_damage = (aura_damage + 2) / 3;
1662                         if (p_ptr->resist_fire) aura_damage = (aura_damage + 2) / 3;
1663
1664                         take_hit(DAMAGE_NOESCAPE, aura_damage, aura_dam, -1);
1665                         r_ptr->r_flags2 |= RF2_AURA_FIRE;
1666                         handle_stuff();
1667                 }
1668         }
1669
1670         if (r_ptr->flags3 & RF3_AURA_COLD)
1671         {
1672                 if (!p_ptr->immune_cold)
1673                 {
1674                         char aura_dam[80];
1675
1676                         aura_damage = damroll(1 + (r_ptr->level / 26), 1 + (r_ptr->level / 17));
1677
1678                         /* Hack -- Get the "died from" name */
1679                         monster_desc(aura_dam, m_ptr, 0x288);
1680
1681 #ifdef JP
1682                         msg_print("ÆÍÁ³¤È¤Æ¤â´¨¤¯¤Ê¤Ã¤¿¡ª");
1683 #else
1684                         msg_print("You are suddenly very cold!");
1685 #endif
1686
1687
1688                         if (p_ptr->oppose_cold) aura_damage = (aura_damage + 2) / 3;
1689                         if (p_ptr->resist_cold) aura_damage = (aura_damage + 2) / 3;
1690
1691                         take_hit(DAMAGE_NOESCAPE, aura_damage, aura_dam, -1);
1692                         r_ptr->r_flags3 |= RF3_AURA_COLD;
1693                         handle_stuff();
1694                 }
1695         }
1696
1697         if (r_ptr->flags2 & RF2_AURA_ELEC)
1698         {
1699                 if (!p_ptr->immune_elec)
1700                 {
1701                         char aura_dam[80];
1702
1703                         aura_damage = damroll(1 + (r_ptr->level / 26), 1 + (r_ptr->level / 17));
1704
1705                         /* Hack -- Get the "died from" name */
1706                         monster_desc(aura_dam, m_ptr, 0x288);
1707
1708                         if (p_ptr->oppose_elec) aura_damage = (aura_damage + 2) / 3;
1709                         if (p_ptr->resist_elec) aura_damage = (aura_damage + 2) / 3;
1710
1711 #ifdef JP
1712                         msg_print("ÅÅ·â¤ò¤¯¤é¤Ã¤¿¡ª");
1713 #else
1714                         msg_print("You get zapped!");
1715 #endif
1716
1717                         take_hit(DAMAGE_NOESCAPE, aura_damage, aura_dam, -1);
1718                         r_ptr->r_flags2 |= RF2_AURA_ELEC;
1719                         handle_stuff();
1720                 }
1721         }
1722 }
1723
1724
1725 static void natural_attack(s16b m_idx, int attack, bool *fear, bool *mdeath)
1726 {
1727         int             k, bonus, chance;
1728         int             n_weight = 0;
1729         monster_type    *m_ptr = &m_list[m_idx];
1730         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
1731         char            m_name[80];
1732
1733         int             dss, ddd;
1734
1735         cptr            atk_desc;
1736
1737         switch (attack)
1738         {
1739                 case MUT2_SCOR_TAIL:
1740                         dss = 3;
1741                         ddd = 7;
1742                         n_weight = 5;
1743 #ifdef JP
1744                         atk_desc = "¿¬Èø";
1745 #else
1746                         atk_desc = "tail";
1747 #endif
1748
1749                         break;
1750                 case MUT2_HORNS:
1751                         dss = 2;
1752                         ddd = 6;
1753                         n_weight = 15;
1754 #ifdef JP
1755                         atk_desc = "³Ñ";
1756 #else
1757                         atk_desc = "horns";
1758 #endif
1759
1760                         break;
1761                 case MUT2_BEAK:
1762                         dss = 2;
1763                         ddd = 4;
1764                         n_weight = 5;
1765 #ifdef JP
1766                         atk_desc = "¥¯¥Á¥Ð¥·";
1767 #else
1768                         atk_desc = "beak";
1769 #endif
1770
1771                         break;
1772                 case MUT2_TRUNK:
1773                         dss = 1;
1774                         ddd = 4;
1775                         n_weight = 35;
1776 #ifdef JP
1777                         atk_desc = "¾Ý¤ÎÉ¡";
1778 #else
1779                         atk_desc = "trunk";
1780 #endif
1781
1782                         break;
1783                 case MUT2_TENTACLES:
1784                         dss = 2;
1785                         ddd = 5;
1786                         n_weight = 5;
1787 #ifdef JP
1788                         atk_desc = "¿¨¼ê";
1789 #else
1790                         atk_desc = "tentacles";
1791 #endif
1792
1793                         break;
1794                 default:
1795                         dss = ddd = n_weight = 1;
1796 #ifdef JP
1797                         atk_desc = "̤ÄêµÁ¤ÎÉô°Ì";
1798 #else
1799                         atk_desc = "undefined body part";
1800 #endif
1801
1802         }
1803
1804         /* Extract monster name (or "it") */
1805         monster_desc(m_name, m_ptr, 0);
1806
1807
1808         /* Calculate the "attack quality" */
1809         bonus = p_ptr->to_h_m;
1810         bonus += (p_ptr->lev * 6 / 5);
1811         chance = (p_ptr->skill_thn + (bonus * BTH_PLUS_ADJ));
1812
1813         /* Test for hit */
1814         if ((!(r_ptr->flags2 & RF2_QUANTUM) || !randint0(2)) && test_hit_norm(chance, r_ptr->ac, m_ptr->ml))
1815         {
1816                 /* Sound */
1817                 sound(SOUND_HIT);
1818
1819 #ifdef JP
1820                 msg_format("%s¤ò%s¤Ç¹¶·â¤·¤¿¡£", m_name, atk_desc);
1821 #else
1822                 msg_format("You hit %s with your %s.", m_name, atk_desc);
1823 #endif
1824
1825
1826                 k = damroll(ddd, dss);
1827                 k = critical_norm(n_weight, bonus, k, (s16b)bonus, 0);
1828
1829                 /* Apply the player damage bonuses */
1830                 k += p_ptr->to_d_m;
1831
1832                 /* No negative damage */
1833                 if (k < 0) k = 0;
1834
1835                 /* Modify the damage */
1836                 k = mon_damage_mod(m_ptr, k, FALSE);
1837
1838                 /* Complex message */
1839                 if (p_ptr->wizard)
1840                 {
1841 #ifdef JP
1842                                 msg_format("%d/%d ¤Î¥À¥á¡¼¥¸¤òÍ¿¤¨¤¿¡£", k, m_ptr->hp);
1843 #else
1844                         msg_format("You do %d (out of %d) damage.", k, m_ptr->hp);
1845 #endif
1846
1847                 }
1848
1849                 /* Anger the monster */
1850                 if (k > 0) anger_monster(m_ptr);
1851
1852                 /* Damage, check for fear and mdeath */
1853                 switch (attack)
1854                 {
1855                         case MUT2_SCOR_TAIL:
1856                                 project(0, 0, m_ptr->fy, m_ptr->fx, k, GF_POIS, PROJECT_KILL, -1);
1857                                 *mdeath = (m_ptr->r_idx == 0);
1858                                 break;
1859                         case MUT2_HORNS:
1860                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1861                                 break;
1862                         case MUT2_BEAK:
1863                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1864                                 break;
1865                         case MUT2_TRUNK:
1866                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1867                                 break;
1868                         case MUT2_TENTACLES:
1869                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1870                                 break;
1871                         default:
1872                                 *mdeath = mon_take_hit(m_idx, k, fear, NULL);
1873                 }
1874
1875                 touch_zap_player(m_ptr);
1876         }
1877         /* Player misses */
1878         else
1879         {
1880                 /* Sound */
1881                 sound(SOUND_MISS);
1882
1883                 /* Message */
1884 #ifdef JP
1885                         msg_format("¥ß¥¹¡ª %s¤Ë¤«¤ï¤µ¤ì¤¿¡£", m_name);
1886 #else
1887                 msg_format("You miss %s.", m_name);
1888 #endif
1889
1890         }
1891 }
1892
1893
1894
1895 /*
1896  * Player attacks a (poor, defenseless) creature        -RAK-
1897  *
1898  * If no "weapon" is available, then "punch" the monster one time.
1899  */
1900 static void py_attack_aux(int y, int x, bool *fear, bool *mdeath, s16b hand, int mode)
1901 {
1902         int             num = 0, k, bonus, chance, vir;
1903
1904         cave_type       *c_ptr = &cave[y][x];
1905
1906         monster_type    *m_ptr = &m_list[c_ptr->m_idx];
1907         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
1908
1909         object_type     *o_ptr;
1910
1911         char            m_name[80];
1912
1913         bool            success_hit = FALSE;
1914         bool            old_success_hit = FALSE;
1915         bool            backstab = FALSE;
1916         bool            vorpal_cut = FALSE;
1917         int             chaos_effect = 0;
1918         bool            stab_fleeing = FALSE;
1919         bool            fuiuchi = FALSE;
1920         bool            do_quake = FALSE;
1921         bool            weak = FALSE;
1922         bool            drain_msg = TRUE;
1923         int             drain_result = 0, drain_heal = 0;
1924         bool            can_drain = FALSE;
1925         int             num_blow;
1926         int             drain_left = MAX_VAMPIRIC_DRAIN;
1927         u32b flgs[TR_FLAG_SIZE]; /* A massive hack -- life-draining weapons */
1928         bool            is_human = (r_ptr->d_char == 'p');
1929         bool            is_lowlevel = (r_ptr->level < (p_ptr->lev - 15));
1930         bool            zantetsu_mukou, e_j_mukou;
1931
1932
1933
1934         if (((p_ptr->pclass == CLASS_ROGUE) || (p_ptr->pclass == CLASS_NINJA)) && inventory[INVEN_RARM+hand].tval)
1935         {
1936                 int tmp = p_ptr->lev*6+(p_ptr->skill_stl+10)*4;
1937                 if (p_ptr->monlite && (mode != HISSATSU_NYUSIN)) tmp /= 3;
1938                 if (p_ptr->cursed & TRC_AGGRAVATE) tmp /= 2;
1939                 if (r_ptr->level > (p_ptr->lev*p_ptr->lev/20+10)) tmp /= 3;
1940                 if (m_ptr->csleep && m_ptr->ml)
1941                 {
1942                         /* Can't backstab creatures that we can't see, right? */
1943                         backstab = TRUE;
1944                 }
1945                 else if ((p_ptr->special_defense & NINJA_S_STEALTH) && (randint0(tmp) > (r_ptr->level+20)) && m_ptr->ml && !(r_ptr->flags3 & RF3_RES_ALL))
1946                 {
1947                         fuiuchi = TRUE;
1948                 }
1949                 else if (m_ptr->monfear && m_ptr->ml)
1950                 {
1951                         stab_fleeing = TRUE;
1952                 }
1953         }
1954
1955         if(!buki_motteruka(INVEN_RARM) && !buki_motteruka(INVEN_LARM))
1956         {
1957                 if ((r_ptr->level + 10) > p_ptr->lev)
1958                 {
1959                         if (p_ptr->skill_exp[GINOU_SUDE] < s_info[p_ptr->pclass].s_max[GINOU_SUDE])
1960                         {
1961                                 if (p_ptr->skill_exp[GINOU_SUDE] < 4000)
1962                                         p_ptr->skill_exp[GINOU_SUDE]+=40;
1963                                 else if((p_ptr->skill_exp[GINOU_SUDE] < 6000))
1964                                         p_ptr->skill_exp[GINOU_SUDE]+=5;
1965                                 else if((p_ptr->skill_exp[GINOU_SUDE] < 7000) && (p_ptr->lev > 19))
1966                                         p_ptr->skill_exp[GINOU_SUDE]+=1;
1967                                 else if((p_ptr->skill_exp[GINOU_SUDE] < 8000) && (p_ptr->lev > 34))
1968                                         if (one_in_(3)) p_ptr->skill_exp[GINOU_SUDE]+=1;
1969                                 p_ptr->update |= (PU_BONUS);
1970                         }
1971                 }
1972         }
1973         else
1974         {
1975                 if ((r_ptr->level + 10) > p_ptr->lev)
1976                 {
1977                         int tval = inventory[INVEN_RARM+hand].tval - TV_BOW;
1978                         int sval = inventory[INVEN_RARM+hand].sval;
1979                         int now_exp = p_ptr->weapon_exp[tval][sval];
1980                         if (now_exp < s_info[p_ptr->pclass].w_max[tval][sval])
1981                         {
1982                                 int amount = 0;
1983                                 if (now_exp < 4000) amount = 80;
1984                                 else if(now_exp < 6000) amount = 10;
1985                                 else if((now_exp < 7000) && (p_ptr->lev > 19)) amount = 1;
1986                                 else if((p_ptr->lev > 34) && one_in_(2)) amount = 1;
1987                                 p_ptr->weapon_exp[tval][sval] += amount;
1988                                 p_ptr->update |= (PU_BONUS);
1989                         }
1990                 }
1991         }
1992
1993         /* Disturb the monster */
1994         m_ptr->csleep = 0;
1995         if (r_ptr->flags7 & (RF7_HAS_LITE_1 | RF7_HAS_LITE_2))
1996                 p_ptr->update |= (PU_MON_LITE);
1997
1998         /* Extract monster name (or "it") */
1999         monster_desc(m_name, m_ptr, 0);
2000
2001         /* Access the weapon */
2002         o_ptr = &inventory[INVEN_RARM+hand];
2003
2004         /* Calculate the "attack quality" */
2005         bonus = p_ptr->to_h[hand] + o_ptr->to_h;
2006         chance = (p_ptr->skill_thn + (bonus * BTH_PLUS_ADJ));
2007         if (mode == HISSATSU_IAI) chance += 60;
2008         if (p_ptr->special_defense & KATA_KOUKIJIN) chance += 150;
2009
2010         if (p_ptr->sutemi) chance = MAX(chance * 3 / 2, chance + 60);
2011
2012         vir = virtue_number(V_VALOUR);
2013         if (vir)
2014         {
2015                 chance += (p_ptr->virtues[vir - 1]/10);
2016         }
2017
2018         zantetsu_mukou = ((o_ptr->name1 == ART_ZANTETSU) && (r_ptr->d_char == 'j'));
2019         e_j_mukou = ((o_ptr->name1 == ART_EXCALIBUR_J) && (r_ptr->d_char == 'S'));
2020
2021         if ((mode == HISSATSU_KYUSHO) || (mode == HISSATSU_MINEUCHI) || (mode == HISSATSU_3DAN) || (mode == HISSATSU_IAI)) num_blow = 1;
2022         else if (mode == HISSATSU_COLD) num_blow = p_ptr->num_blow[hand]+2;
2023         else num_blow = p_ptr->num_blow[hand];
2024
2025         /* Attack once for each legal blow */
2026         while ((num++ < num_blow) && !p_ptr->is_dead)
2027         {
2028                 if (((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) || (mode == HISSATSU_KYUSHO))
2029                 {
2030                         if (p_ptr->migite && p_ptr->hidarite)
2031                         {
2032                                 success_hit = one_in_(2);
2033                         }
2034                         else success_hit = TRUE;
2035                 }
2036                 else if (mode == HISSATSU_MAJIN)
2037                 {
2038                         if (num == 1)
2039                         {
2040                                 if (one_in_(2))
2041                                         success_hit = FALSE;
2042                                 old_success_hit = success_hit;
2043                         }
2044                         else success_hit = old_success_hit;
2045                 }
2046                 else if ((p_ptr->pclass == CLASS_NINJA) && ((backstab || fuiuchi) && !(r_ptr->flags3 & RF3_RES_ALL))) success_hit = TRUE;
2047                 else success_hit = test_hit_norm(chance, r_ptr->ac, m_ptr->ml);
2048
2049                 /* Test for hit */
2050                 if (success_hit)
2051                 {
2052                         int vorpal_chance = ((o_ptr->name1 == ART_VORPAL_BLADE) || (o_ptr->name1 == ART_CHAINSWORD)) ? 2 : 4;
2053
2054                         /* Sound */
2055                         sound(SOUND_HIT);
2056
2057                         /* Message */
2058                         if (backstab)
2059 #ifdef JP
2060                                 msg_format("¤¢¤Ê¤¿¤ÏÎä¹ó¤Ë¤â̲¤Ã¤Æ¤¤¤ë̵ÎϤÊ%s¤òÆͤ­»É¤·¤¿¡ª",
2061 #else
2062                                 msg_format("You cruelly stab the helpless, sleeping %s!",
2063 #endif
2064
2065                                     m_name);
2066                         else if (fuiuchi)
2067 #ifdef JP
2068                                 msg_format("ÉÔ°Õ¤òÆͤ¤¤Æ%s¤Ë¶¯Îõ¤Ê°ì·â¤ò¶ô¤é¤ï¤»¤¿¡ª",
2069 #else
2070                                 msg_format("You make surprise attack, and hit %s with a powerful blow!",
2071 #endif
2072
2073                                     m_name);
2074                         else if (stab_fleeing)
2075 #ifdef JP
2076                                 msg_format("ƨ¤²¤ë%s¤òÇØÃ椫¤éÆͤ­»É¤·¤¿¡ª",
2077 #else
2078                                 msg_format("You backstab the fleeing %s!",
2079 #endif
2080
2081                                     m_name);
2082                         else
2083                         {
2084                                 if (!(((p_ptr->pclass == CLASS_MONK) || (p_ptr->pclass == CLASS_FORCETRAINER) || (p_ptr->pclass == CLASS_BERSERKER)) && (empty_hands(TRUE) > 1)))
2085 #ifdef JP
2086                         msg_format("%s¤ò¹¶·â¤·¤¿¡£", m_name);
2087 #else
2088                                         msg_format("You hit %s.", m_name);
2089 #endif
2090
2091                         }
2092
2093                         /* Hack -- bare hands do one damage */
2094                         k = 1;
2095
2096                         object_flags(o_ptr, flgs);
2097
2098                         /* Select a chaotic effect (50% chance) */
2099                         if ((have_flag(flgs, TR_CHAOTIC)) && one_in_(2))
2100                         {
2101                                 if (one_in_(10))
2102                                 chg_virtue(V_CHANCE, 1);
2103
2104                                 if (randint1(5) < 3)
2105                                 {
2106                                         /* Vampiric (20%) */
2107                                         chaos_effect = 1;
2108                                 }
2109                                 else if (one_in_(250))
2110                                 {
2111                                         /* Quake (0.12%) */
2112                                         chaos_effect = 2;
2113                                 }
2114                                 else if (!one_in_(10))
2115                                 {
2116                                         /* Confusion (26.892%) */
2117                                         chaos_effect = 3;
2118                                 }
2119                                 else if (one_in_(2))
2120                                 {
2121                                         /* Teleport away (1.494%) */
2122                                         chaos_effect = 4;
2123                                 }
2124                                 else
2125                                 {
2126                                         /* Polymorph (1.494%) */
2127                                         chaos_effect = 5;
2128                                 }
2129                         }
2130
2131                         /* Vampiric drain */
2132                         if ((have_flag(flgs, TR_VAMPIRIC)) || (chaos_effect == 1) || (mode == HISSATSU_DRAIN))
2133                         {
2134                                 /* Only drain "living" monsters */
2135                                 if (monster_living(r_ptr))
2136                                         can_drain = TRUE;
2137                                 else
2138                                         can_drain = FALSE;
2139                         }
2140
2141                         if ((have_flag(flgs, TR_VORPAL)) && (randint1(vorpal_chance*3/2) == 1) && !zantetsu_mukou)
2142                                 vorpal_cut = TRUE;
2143                         else vorpal_cut = FALSE;
2144
2145                         if (((p_ptr->pclass == CLASS_MONK) || (p_ptr->pclass == CLASS_FORCETRAINER) || (p_ptr->pclass == CLASS_BERSERKER)) && (empty_hands(TRUE) > 1))
2146                         {
2147                                 int special_effect = 0, stun_effect = 0, times = 0, max_times;
2148                                 int min_level = 1;
2149                                 martial_arts *ma_ptr = &ma_blows[0], *old_ptr = &ma_blows[0];
2150                                 int resist_stun = 0;
2151                                 int weight = 8;
2152
2153                                 if (r_ptr->flags1 & RF1_UNIQUE) resist_stun += 88;
2154                                 if (r_ptr->flags3 & RF3_NO_STUN) resist_stun += 66;
2155                                 if (r_ptr->flags3 & RF3_NO_CONF) resist_stun += 33;
2156                                 if (r_ptr->flags3 & RF3_NO_SLEEP) resist_stun += 33;
2157                                 if ((r_ptr->flags3 & RF3_UNDEAD) || (r_ptr->flags3 & RF3_NONLIVING))
2158                                         resist_stun += 66;
2159
2160                                 if (p_ptr->special_defense & KAMAE_BYAKKO)
2161                                         max_times = (p_ptr->lev < 3 ? 1 : p_ptr->lev / 3);
2162                                 else if (p_ptr->special_defense & KAMAE_SUZAKU)
2163                                         max_times = 1;
2164                                 else if (p_ptr->special_defense & KAMAE_GENBU)
2165                                         max_times = 1;
2166                                 else
2167                                         max_times = (p_ptr->lev < 7 ? 1 : p_ptr->lev / 7);
2168                                 /* Attempt 'times' */
2169                                 for (times = 0; times < max_times; times++)
2170                                 {
2171                                         do
2172                                         {
2173                                                 ma_ptr = &ma_blows[randint0(MAX_MA)];
2174                                                 if ((p_ptr->pclass == CLASS_FORCETRAINER) && (ma_ptr->min_level > 1)) min_level = ma_ptr->min_level + 3;
2175                                                 else min_level = ma_ptr->min_level;
2176                                         }
2177                                         while ((min_level > p_ptr->lev) ||
2178                                                (randint1(p_ptr->lev) < ma_ptr->chance));
2179
2180                                         /* keep the highest level attack available we found */
2181                                         if ((ma_ptr->min_level > old_ptr->min_level) &&
2182                                             !p_ptr->stun && !p_ptr->confused)
2183                                         {
2184                                                 old_ptr = ma_ptr;
2185
2186                                                 if (p_ptr->wizard && cheat_xtra)
2187                                                 {
2188 #ifdef JP
2189                                                         msg_print("¹¶·â¤òºÆÁªÂò¤·¤Þ¤·¤¿¡£");
2190 #else
2191                                                         msg_print("Attack re-selected.");
2192 #endif
2193
2194                                                 }
2195                                         }
2196                                         else
2197                                         {
2198                                                 ma_ptr = old_ptr;
2199                                         }
2200                                 }
2201
2202                                 if (p_ptr->pclass == CLASS_FORCETRAINER) min_level = MAX(1, ma_ptr->min_level - 3);
2203                                 else min_level = ma_ptr->min_level;
2204                                 k = damroll(ma_ptr->dd, ma_ptr->ds);
2205                                 if (p_ptr->special_attack & ATTACK_SUIKEN) k *= 2;
2206
2207                                 if (ma_ptr->effect == MA_KNEE)
2208                                 {
2209                                         if (r_ptr->flags1 & RF1_MALE)
2210                                         {
2211 #ifdef JP
2212                                                 msg_format("%s¤Ë¶âŪɨ½³¤ê¤ò¤¯¤é¤ï¤·¤¿¡ª", m_name);
2213 #else
2214                                                 msg_format("You hit %s in the groin with your knee!", m_name);
2215 #endif
2216
2217                                                 sound(SOUND_PAIN);
2218                                                 special_effect = MA_KNEE;
2219                                         }
2220                                         else
2221                                                 msg_format(ma_ptr->desc, m_name);
2222                                 }
2223
2224                                 else if (ma_ptr->effect == MA_SLOW)
2225                                 {
2226                                         if (!((r_ptr->flags1 & RF1_NEVER_MOVE) ||
2227                                             strchr("~#{}.UjmeEv$,DdsbBFIJQSXclnw!=?", r_ptr->d_char)))
2228                                         {
2229 #ifdef JP
2230                                                 msg_format("%s¤Î­¼ó¤Ë´ØÀá½³¤ê¤ò¤¯¤é¤ï¤·¤¿¡ª", m_name);
2231 #else
2232                                                 msg_format("You kick %s in the ankle.", m_name);
2233 #endif
2234
2235                                                 special_effect = MA_SLOW;
2236                                         }
2237                                         else msg_format(ma_ptr->desc, m_name);
2238                                 }
2239                                 else
2240                                 {
2241                                         if (ma_ptr->effect)
2242                                         {
2243                                                 stun_effect = (ma_ptr->effect / 2) + randint1(ma_ptr->effect / 2);
2244                                         }
2245
2246                                         msg_format(ma_ptr->desc, m_name);
2247                                 }
2248
2249                                 if (p_ptr->special_defense & KAMAE_SUZAKU) weight = 4;
2250                                 if ((p_ptr->pclass == CLASS_FORCETRAINER) && (p_ptr->magic_num1[0]))
2251                                 {
2252                                         weight += (p_ptr->magic_num1[0]/30);
2253                                         if (weight > 20) weight = 20;
2254                                 }
2255
2256                                 k = critical_norm(p_ptr->lev * weight, min_level, k, p_ptr->to_h[0], 0);
2257
2258                                 if ((special_effect == MA_KNEE) && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
2259                                 {
2260 #ifdef JP
2261                                         msg_format("%^s¤Ï¶ìÄˤˤ¦¤á¤¤¤Æ¤¤¤ë¡ª", m_name);
2262 #else
2263                                         msg_format("%^s moans in agony!", m_name);
2264 #endif
2265
2266                                         stun_effect = 7 + randint1(13);
2267                                         resist_stun /= 3;
2268                                 }
2269
2270                                 else if ((special_effect == MA_SLOW) && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
2271                                 {
2272                                         if (!(r_ptr->flags1 & RF1_UNIQUE) &&
2273                                             (randint1(p_ptr->lev) > r_ptr->level) &&
2274                                             m_ptr->mspeed > 60)
2275                                         {
2276 #ifdef JP
2277                                                 msg_format("%^s¤Ï­¤ò¤Ò¤­¤º¤ê»Ï¤á¤¿¡£", m_name);
2278 #else
2279                                                 msg_format("%^s starts limping slower.", m_name);
2280 #endif
2281
2282                                                 m_ptr->mspeed -= 10;
2283                                         }
2284                                 }
2285
2286                                 if (stun_effect && ((k + p_ptr->to_d[hand]) < m_ptr->hp))
2287                                 {
2288                                         if (p_ptr->lev > randint1(r_ptr->level + resist_stun + 10))
2289                                         {
2290                                                 if (m_ptr->stunned)
2291 #ifdef JP
2292                                                         msg_format("%^s¤Ï¤µ¤é¤Ë¥Õ¥é¥Õ¥é¤Ë¤Ê¤Ã¤¿¡£", m_name);
2293 #else
2294                                                         msg_format("%^s is more stunned.", m_name);
2295 #endif
2296
2297                                                 else
2298 #ifdef JP
2299                                                         msg_format("%^s¤Ï¥Õ¥é¥Õ¥é¤Ë¤Ê¤Ã¤¿¡£", m_name);
2300 #else
2301                                                         msg_format("%^s is stunned.", m_name);
2302 #endif
2303
2304
2305                                                 m_ptr->stunned += stun_effect;
2306                                         }
2307                                 }
2308                         }
2309
2310                         /* Handle normal weapon */
2311                         else if (o_ptr->k_idx)
2312                         {
2313                                 k = damroll(o_ptr->dd, o_ptr->ds);
2314                                 if (p_ptr->riding)
2315                                 {
2316                                         if((o_ptr->tval == TV_POLEARM) && ((o_ptr->sval == SV_LANCE) || (o_ptr->sval == SV_HEAVY_LANCE)))
2317                                         {
2318                                                 k += damroll(2, o_ptr->ds);
2319                                         }
2320                                 }
2321
2322                                 k = tot_dam_aux(o_ptr, k, m_ptr, mode);
2323
2324                                 if (backstab)
2325                                 {
2326                                         k *= (3 + (p_ptr->lev / 20));
2327                                 }
2328                                 else if (fuiuchi)
2329                                 {
2330                                         k = k*(5+(p_ptr->lev*2/25))/2;
2331                                 }
2332                                 else if (stab_fleeing)
2333                                 {
2334                                         k = (3 * k) / 2;
2335                                 }
2336
2337                                 if ((p_ptr->impact[hand] && ((k > 50) || one_in_(7))) ||
2338                                          (chaos_effect == 2) || (mode == HISSATSU_QUAKE))
2339                                 {
2340                                         do_quake = TRUE;
2341                                 }
2342
2343                                 if ((!(o_ptr->tval == TV_SWORD) || !(o_ptr->sval == SV_DOKUBARI)) && !(mode == HISSATSU_KYUSHO))
2344                                         k = critical_norm(o_ptr->weight, o_ptr->to_h, k, p_ptr->to_h[hand], mode);
2345
2346                                 drain_result = k;
2347
2348                                 if (vorpal_cut)
2349                                 {
2350                                         int mult = 2;
2351
2352                                         if ((o_ptr->name1 == ART_CHAINSWORD) && !one_in_(2))
2353                                         {
2354                                                 char chainsword_noise[1024];
2355 #ifdef JP
2356        if (!get_rnd_line("chainswd_j.txt", 0, chainsword_noise))
2357 #else
2358                                                 if (!get_rnd_line("chainswd.txt", 0, chainsword_noise))
2359 #endif
2360
2361                                                 {
2362                                                         msg_print(chainsword_noise);
2363                                                 }
2364                                         }
2365
2366                                         if (o_ptr->name1 == ART_VORPAL_BLADE)
2367                                         {
2368 #ifdef JP
2369                                                 msg_print("Ìܤˤâ»ß¤Þ¤é¤Ì¥Ü¡¼¥Ñ¥ë¡¦¥Ö¥ì¡¼¥É¡¢¼êÏ£¤ÎÁá¶È¡ª");
2370 #else
2371                                                 msg_print("Your Vorpal Blade goes snicker-snack!");
2372 #endif
2373
2374                                         }
2375                                         else
2376                                         {
2377 #ifdef JP
2378                                                 msg_format("%s¤ò¥°¥Ã¥µ¥êÀÚ¤êÎö¤¤¤¿¡ª", m_name);
2379 #else
2380                                                 msg_format("Your weapon cuts deep into %s!", m_name);
2381 #endif
2382
2383                                         }
2384
2385                                         /* Try to increase the damage */
2386                                         while (one_in_(vorpal_chance))
2387                                         {
2388                                                 mult++;
2389                                         }
2390
2391                                         k *= mult;
2392
2393                                         /* Ouch! */
2394                                         if (((r_ptr->flags3 & RF3_RES_ALL) ? k/100 : k) > m_ptr->hp)
2395                                         {
2396 #ifdef JP
2397                                                 msg_format("%s¤ò¿¿¤ÃÆó¤Ä¤Ë¤·¤¿¡ª", m_name);
2398 #else
2399                                                 msg_format("You cut %s in half!", m_name);
2400 #endif
2401
2402                                         }
2403                                         else
2404                                         {
2405                                                 switch(mult)
2406                                                 {
2407 #ifdef JP
2408 case 2: msg_format("%s¤ò»Â¤Ã¤¿¡ª", m_name);             break;
2409 #else
2410                                                         case 2: msg_format("You gouge %s!", m_name);            break;
2411 #endif
2412
2413 #ifdef JP
2414 case 3: msg_format("%s¤ò¤Ö¤Ã¤¿»Â¤Ã¤¿¡ª", m_name);                       break;
2415 #else
2416                                                         case 3: msg_format("You maim %s!", m_name);                     break;
2417 #endif
2418
2419 #ifdef JP
2420 case 4: msg_format("%s¤ò¥á¥Ã¥¿»Â¤ê¤Ë¤·¤¿¡ª", m_name);           break;
2421 #else
2422                                                         case 4: msg_format("You carve %s!", m_name);            break;
2423 #endif
2424
2425 #ifdef JP
2426 case 5: msg_format("%s¤ò¥á¥Ã¥¿¥á¥¿¤Ë»Â¤Ã¤¿¡ª", m_name);         break;
2427 #else
2428                                                         case 5: msg_format("You cleave %s!", m_name);           break;
2429 #endif
2430
2431 #ifdef JP
2432 case 6: msg_format("%s¤ò»É¿È¤Ë¤·¤¿¡ª", m_name);         break;
2433 #else
2434                                                         case 6: msg_format("You smite %s!", m_name);            break;
2435 #endif
2436
2437 #ifdef JP
2438 case 7: msg_format("%s¤ò»Â¤Ã¤Æ»Â¤Ã¤Æ»Â¤ê¤Þ¤¯¤Ã¤¿¡ª", m_name);   break;
2439 #else
2440                                                         case 7: msg_format("You eviscerate %s!", m_name);       break;
2441 #endif
2442
2443 #ifdef JP
2444 default:        msg_format("%s¤òºÙÀÚ¤ì¤Ë¤·¤¿¡ª", m_name);               break;
2445 #else
2446                                                         default:        msg_format("You shred %s!", m_name);            break;
2447 #endif
2448
2449                                                 }
2450                                         }
2451                                         drain_result = drain_result * 3 / 2;
2452                                 }
2453
2454                                 k += o_ptr->to_d;
2455                                 drain_result += o_ptr->to_d;
2456                         }
2457
2458                         /* Apply the player damage bonuses */
2459                         k += p_ptr->to_d[hand];
2460                         drain_result += p_ptr->to_d[hand];
2461
2462                         if ((mode == HISSATSU_SUTEMI) || (mode == HISSATSU_3DAN)) k *= 2;
2463                         if ((mode == HISSATSU_SEKIRYUKA) && (r_ptr->flags3 & (RF3_UNDEAD | RF3_DEMON | RF3_NONLIVING))) k = 0;
2464                         if ((mode == HISSATSU_SEKIRYUKA) && !p_ptr->cut) k /= 2;
2465
2466                         /* No negative damage */
2467                         if (k < 0) k = 0;
2468
2469                         if ((mode == HISSATSU_ZANMA) && !((r_ptr->flags3 & (RF3_DEMON | RF3_UNDEAD | RF3_NONLIVING)) && (r_ptr->flags3 & RF3_EVIL)))
2470                         {
2471                                 k = 0;
2472                         }
2473
2474                         if (zantetsu_mukou)
2475                         {
2476 #ifdef JP
2477                                 msg_print("¤³¤ó¤ÊÆð¤é¤«¤¤¤â¤Î¤ÏÀÚ¤ì¤ó¡ª");
2478 #else
2479                                 msg_print("You cannot cut such a elastic thing!");
2480 #endif
2481                                 k = 0;
2482                         }
2483
2484                         if (e_j_mukou)
2485                         {
2486 #ifdef JP
2487                                 msg_print("ÃØéá¤Ï¶ì¼ê¤À¡ª");
2488 #else
2489                                 msg_print("Spiders are difficult for you to deal with!");
2490 #endif
2491                                 k /= 2;
2492                         }
2493
2494                         if (mode == HISSATSU_MINEUCHI)
2495                         {
2496                                 int tmp = (10 + randint1(15) + p_ptr->lev / 5);
2497
2498                                 k = 0;
2499                                 anger_monster(m_ptr);
2500
2501                                 if (!(r_ptr->flags3 & (RF3_NO_STUN)))
2502                                 {
2503                                         /* Get stunned */
2504                                         if (m_ptr->stunned)
2505                                         {
2506 #ifdef JP
2507 msg_format("%s¤Ï¤Ò¤É¤¯¤â¤¦¤í¤¦¤È¤·¤¿¡£", m_name);
2508 #else
2509                                                 msg_format("%s is more dazed.", m_name);
2510 #endif
2511
2512                                                 tmp /= 2;
2513                                         }
2514                                         else
2515                                         {
2516 #ifdef JP
2517 msg_format("%s ¤Ï¤â¤¦¤í¤¦¤È¤·¤¿¡£", m_name);
2518 #else
2519                                                 msg_format("%s is dazed.", m_name);
2520 #endif
2521                                         }
2522
2523                                         /* Apply stun */
2524                                         m_ptr->stunned = (tmp < 200) ? tmp : 200;
2525                                 }
2526                                 else
2527                                 {
2528 #ifdef JP
2529 msg_format("%s ¤Ë¤Ï¸ú²Ì¤¬¤Ê¤«¤Ã¤¿¡£", m_name);
2530 #else
2531                                                 msg_format("%s is not effected.", m_name);
2532 #endif
2533                                 }
2534                         }
2535
2536                         /* Modify the damage */
2537                         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))));
2538                         if (((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI)) || (mode == HISSATSU_KYUSHO))
2539                         {
2540                                 if ((randint1(randint1(r_ptr->level/7)+5) == 1) && !(r_ptr->flags1 & RF1_UNIQUE) && !(r_ptr->flags7 & RF7_UNIQUE2))
2541                                 {
2542                                         k = m_ptr->hp + 1;
2543 #ifdef JP
2544 msg_format("%s¤ÎµÞ½ê¤òÆͤ­»É¤·¤¿¡ª", m_name);
2545 #else
2546                                         msg_format("You hit %s on a fatal spot!", m_name);
2547 #endif
2548                                 }
2549                                 else k = 1;
2550                         }
2551                         else if ((p_ptr->pclass == CLASS_NINJA) && (!p_ptr->icky_wield[hand]) && ((p_ptr->cur_lite <= 0) || one_in_(7)))
2552                         {
2553                                 int maxhp = maxroll(r_ptr->hdice, r_ptr->hside);
2554                                 if (one_in_(backstab ? 13 : (stab_fleeing || fuiuchi) ? 15 : 27))
2555                                 {
2556                                         k *= 5;
2557                                         drain_result *= 2;
2558 #ifdef JP
2559 msg_format("¿Ï¤¬%s¤Ë¿¼¡¹¤ÈÆͤ­»É¤µ¤Ã¤¿¡ª", m_name);
2560 #else
2561                                         msg_format("You critically injured %s!", m_name);
2562 #endif
2563                                 }
2564                                 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)))
2565                                 {
2566                                         if ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_UNIQUE2) || (m_ptr->hp >= maxhp/2))
2567                                         {
2568                                                 k = MAX(k*5, m_ptr->hp/2);
2569                                                 drain_result *= 2;
2570 #ifdef JP
2571 msg_format("%s¤ËÃ×Ì¿½ý¤òÉé¤ï¤»¤¿¡ª", m_name);
2572 #else
2573                                         msg_format("You fatally injured %s!", m_name);
2574 #endif
2575                                         }
2576                                         else
2577                                         {
2578                                                 k = m_ptr->hp + 1;
2579 #ifdef JP
2580 msg_format("¿Ï¤¬%s¤ÎµÞ½ê¤ò´Ó¤¤¤¿¡ª", m_name);
2581 #else
2582                                         msg_format("You hit %s on a fatal spot!", m_name);
2583 #endif
2584                                         }
2585                                 }
2586                         }
2587
2588                         /* Complex message */
2589                         if (p_ptr->wizard || cheat_xtra)
2590                         {
2591 #ifdef JP
2592                                 msg_format("%d/%d ¤Î¥À¥á¡¼¥¸¤òÍ¿¤¨¤¿¡£", k, m_ptr->hp);
2593 #else
2594                                 msg_format("You do %d (out of %d) damage.", k, m_ptr->hp);
2595 #endif
2596
2597                         }
2598
2599                         if (k <= 0) can_drain = FALSE;
2600
2601                         if (drain_result > m_ptr->hp)
2602                                 drain_result = m_ptr->hp;
2603
2604                         /* Damage, check for fear and death */
2605                         if (mon_take_hit(c_ptr->m_idx, k, fear, NULL))
2606                         {
2607                                 *mdeath = TRUE;
2608                                 if ((p_ptr->pclass == CLASS_BERSERKER) && energy_use)
2609                                 {
2610                                         if (p_ptr->migite && p_ptr->hidarite)
2611                                         {
2612                                                 if (hand) energy_use = energy_use*3/5+energy_use*num*2/(p_ptr->num_blow[hand]*5);
2613                                                 else energy_use = energy_use*num*3/(p_ptr->num_blow[hand]*5);
2614                                         }
2615                                         else
2616                                         {
2617                                                 energy_use = energy_use*num/p_ptr->num_blow[hand];
2618                                         }
2619                                 }
2620                                 if ((o_ptr->name1 == ART_ZANTETSU) && is_lowlevel)
2621 #ifdef JP
2622                                         msg_print("¤Þ¤¿¤Ä¤Þ¤é¤Ì¤â¤Î¤ò»Â¤Ã¤Æ¤·¤Þ¤Ã¤¿¡¥¡¥¡¥");
2623 #else
2624                                         msg_print("Sign..Another trifling thing I've cut....");
2625 #endif
2626                                 break;
2627                         }
2628
2629                         /* Anger the monster */
2630                         if (k > 0) anger_monster(m_ptr);
2631
2632                         touch_zap_player(m_ptr);
2633
2634                         /* Are we draining it?  A little note: If the monster is
2635                         dead, the drain does not work... */
2636
2637                         if (can_drain && (drain_result > 0))
2638                         {
2639                                 if (o_ptr->name1 == ART_MURAMASA)
2640                                 {
2641                                         if (is_human)
2642                                         {
2643                                                 int to_h = o_ptr->to_h;
2644                                                 int to_d = o_ptr->to_d;
2645                                                 int i, flag;
2646
2647                                                 flag = 1;
2648                                                 for (i = 0; i < to_h + 3; i++) if (one_in_(4)) flag = 0;
2649                                                 if (flag) to_h++;
2650
2651                                                 flag = 1;
2652                                                 for (i = 0; i < to_d + 3; i++) if (one_in_(4)) flag = 0;
2653                                                 if (flag) to_d++;
2654
2655                                                 if (o_ptr->to_h != to_h || o_ptr->to_d != to_d)
2656                                                 {
2657 #ifdef JP
2658                                                         msg_print("ÍÅÅá¤Ï·ì¤òµÛ¤Ã¤Æ¶¯¤¯¤Ê¤Ã¤¿¡ª");
2659 #else
2660                                                         msg_print("Muramasa sucked blood, and became more powerful!");
2661 #endif
2662                                                         o_ptr->to_h = to_h;
2663                                                         o_ptr->to_d = to_d;
2664                                                 }
2665                                         }
2666                                 }
2667                                 else
2668                                 {
2669                                         if (drain_result > 5) /* Did we really hurt it? */
2670                                         {
2671                                                 drain_heal = damroll(2, drain_result / 6);
2672
2673                                                 if (cheat_xtra)
2674                                                 {
2675 #ifdef JP
2676                                                         msg_format("Draining left: %d", drain_left);
2677 #else
2678                                                         msg_format("Draining left: %d", drain_left);
2679 #endif
2680
2681                                                 }
2682
2683                                                 if (drain_left)
2684                                                 {
2685                                                         if (drain_heal < drain_left)
2686                                                         {
2687                                                                 drain_left -= drain_heal;
2688                                                         }
2689                                                         else
2690                                                         {
2691                                                                 drain_heal = drain_left;
2692                                                                 drain_left = 0;
2693                                                         }
2694
2695                                                         if (drain_msg)
2696                                                         {
2697 #ifdef JP
2698                                                                 msg_format("¿Ï¤¬%s¤«¤éÀ¸Ì¿ÎϤòµÛ¤¤¼è¤Ã¤¿¡ª", m_name);
2699 #else
2700                                                                 msg_format("Your weapon drains life from %s!", m_name);
2701 #endif
2702
2703                                                                 drain_msg = FALSE;
2704                                                         }
2705
2706                                                         drain_heal = (drain_heal * mutant_regenerate_mod) / 100;
2707
2708                                                         hp_player(drain_heal);
2709                                                         /* We get to keep some of it! */
2710                                                 }
2711                                         }
2712                                 }
2713                                 m_ptr->maxhp -= (k+7)/8;
2714                                 if (m_ptr->hp > m_ptr->maxhp) m_ptr->hp = m_ptr->maxhp;
2715                                 weak = TRUE;
2716                         }
2717                         can_drain = FALSE;
2718                         drain_result = 0;
2719
2720                         /* Confusion attack */
2721                         if ((p_ptr->special_attack & ATTACK_CONFUSE) || (chaos_effect == 3) || (mode == HISSATSU_CONF))
2722                         {
2723                                 /* Cancel glowing hands */
2724                                 if (p_ptr->special_attack & ATTACK_CONFUSE)
2725                                 {
2726                                         p_ptr->special_attack &= ~(ATTACK_CONFUSE);
2727 #ifdef JP
2728                                         msg_print("¼ê¤Îµ±¤­¤¬¤Ê¤¯¤Ê¤Ã¤¿¡£");
2729 #else
2730                                         msg_print("Your hands stop glowing.");
2731 #endif
2732                                         p_ptr->redraw |= (PR_STATUS);
2733
2734                                 }
2735
2736                                 /* Confuse the monster */
2737                                 if (r_ptr->flags3 & RF3_NO_CONF)
2738                                 {
2739                                         if (m_ptr->ml)
2740                                         {
2741                                                 r_ptr->r_flags3 |= RF3_NO_CONF;
2742                                         }
2743
2744 #ifdef JP
2745                                         msg_format("%^s¤Ë¤Ï¸ú²Ì¤¬¤Ê¤«¤Ã¤¿¡£", m_name);
2746 #else
2747                                         msg_format("%^s is unaffected.", m_name);
2748 #endif
2749
2750                                 }
2751                                 else if (randint0(100) < r_ptr->level)
2752                                 {
2753 #ifdef JP
2754                                         msg_format("%^s¤Ë¤Ï¸ú²Ì¤¬¤Ê¤«¤Ã¤¿¡£", m_name);
2755 #else
2756                                         msg_format("%^s is unaffected.", m_name);
2757 #endif
2758
2759                                 }
2760                                 else
2761                                 {
2762 #ifdef JP
2763                                         msg_format("%^s¤Ïº®Í𤷤¿¤è¤¦¤À¡£", m_name);
2764 #else
2765                                         msg_format("%^s appears confused.", m_name);
2766 #endif
2767
2768                                         m_ptr->confused += 10 + randint0(p_ptr->lev) / 5;
2769                                 }
2770                         }
2771
2772                         else if (chaos_effect == 4)
2773                         {
2774                                 bool resists_tele = FALSE;
2775
2776                                 if (r_ptr->flags3 & RF3_RES_TELE)
2777                                 {
2778                                         if (r_ptr->flags1 & RF1_UNIQUE)
2779                                         {
2780                                                 if (m_ptr->ml) r_ptr->r_flags3 |= RF3_RES_TELE;
2781 #ifdef JP
2782                                                 msg_format("%^s¤Ë¤Ï¸ú²Ì¤¬¤Ê¤«¤Ã¤¿¡£", m_name);
2783 #else
2784                                                 msg_format("%^s is unaffected!", m_name);
2785 #endif
2786
2787                                                 resists_tele = TRUE;
2788                                         }
2789                                         else if (r_ptr->level > randint1(100))
2790                                         {
2791                                                 if (m_ptr->ml) r_ptr->r_flags3 |= RF3_RES_TELE;
2792 #ifdef JP
2793                                                 msg_format("%^s¤ÏÄñ¹³ÎϤò»ý¤Ã¤Æ¤¤¤ë¡ª", m_name);
2794 #else
2795                                                 msg_format("%^s resists!", m_name);
2796 #endif
2797
2798                                                 resists_tele = TRUE;
2799                                         }
2800                                 }
2801
2802                                 if (!resists_tele)
2803                                 {
2804 #ifdef JP
2805                                         msg_format("%^s¤Ï¾Ã¤¨¤¿¡ª", m_name);
2806 #else
2807                                         msg_format("%^s disappears!", m_name);
2808 #endif
2809
2810                                         teleport_away(c_ptr->m_idx, 50, FALSE);
2811                                         num = p_ptr->num_blow[hand] + 1; /* Can't hit it anymore! */
2812                                         *mdeath = TRUE;
2813                                 }
2814                         }
2815
2816                         else if ((chaos_effect == 5) && cave_floor_bold(y, x) &&
2817                                  (randint1(90) > r_ptr->level))
2818                         {
2819                                 if (!(r_ptr->flags1 & RF1_UNIQUE) &&
2820                                     !(r_ptr->flags4 & RF4_BR_CHAO) &&
2821                                     !(r_ptr->flags1 & RF1_QUESTOR))
2822                                 {
2823                                         if (polymorph_monster(y, x))
2824                                         {
2825 #ifdef JP
2826                                                 msg_format("%^s¤ÏÊѲ½¤·¤¿¡ª", m_name);
2827 #else
2828                                                 msg_format("%^s changes!", m_name);
2829 #endif
2830
2831
2832                                                 /* Hack -- Get new monster */
2833                                                 m_ptr = &m_list[c_ptr->m_idx];
2834
2835                                                 /* Oops, we need a different name... */
2836                                                 monster_desc(m_name, m_ptr, 0);
2837
2838                                                 /* Hack -- Get new race */
2839                                                 r_ptr = &r_info[m_ptr->r_idx];
2840
2841                                                 *fear = FALSE;
2842                                                 weak = FALSE;
2843                                         }
2844                                         else
2845                                         {
2846 #ifdef JP
2847                                         msg_format("%^s¤Ë¤Ï¸ú²Ì¤¬¤Ê¤«¤Ã¤¿¡£", m_name);
2848 #else
2849                                                 msg_format("%^s is unaffected.", m_name);
2850 #endif
2851
2852                                         }
2853                                 }
2854                         }
2855                         else if (o_ptr->name1 == ART_G_HAMMER)
2856                         {
2857                                 monster_type *m_ptr = &m_list[c_ptr->m_idx];
2858
2859                                 if (m_ptr->hold_o_idx)
2860                                 {
2861                                         object_type *q_ptr = &o_list[m_ptr->hold_o_idx];
2862                                         char o_name[MAX_NLEN];
2863
2864                                         object_desc(o_name, q_ptr, TRUE, 0);
2865                                         q_ptr->held_m_idx = 0;
2866                                         q_ptr->marked = 0;
2867                                         m_ptr->hold_o_idx = q_ptr->next_o_idx;
2868                                         q_ptr->next_o_idx = 0;
2869 #ifdef JP
2870                                         msg_format("%s¤òÃ¥¤Ã¤¿¡£", o_name);
2871 #else
2872                                         msg_format("You snatched %s.", o_name);
2873 #endif
2874                                         inven_carry(q_ptr);
2875                                 }
2876                         }
2877                 }
2878
2879                 /* Player misses */
2880                 else
2881                 {
2882                         backstab = FALSE; /* Clumsy! */
2883                         fuiuchi = FALSE; /* Clumsy! */
2884
2885                         if ((o_ptr->tval == TV_POLEARM) && (o_ptr->sval == SV_DEATH_SCYTHE) && one_in_(3))
2886                         {
2887                                 u32b flgs[TR_FLAG_SIZE];
2888
2889                                 /* Sound */
2890                                 sound(SOUND_HIT);
2891
2892                                 /* Message */
2893 #ifdef JP
2894                                 msg_format("¥ß¥¹¡ª %s¤Ë¤«¤ï¤µ¤ì¤¿¡£", m_name);
2895 #else
2896                                 msg_format("You miss %s.", m_name);
2897 #endif
2898                                 /* Message */
2899 #ifdef JP
2900                                 msg_print("¿¶¤ê²ó¤·¤¿Âç³ù¤¬¼«Ê¬¼«¿È¤ËÊ֤äƤ­¤¿¡ª");
2901 #else
2902                                 msg_print("Your scythe returns to you!");
2903 #endif
2904
2905                                 /* Extract the flags */
2906                                 object_flags(o_ptr, flgs);
2907
2908                                 k = damroll(o_ptr->dd, o_ptr->ds);
2909                                 {
2910                                         int mult;
2911                                         switch (p_ptr->mimic_form)
2912                                         {
2913                                         case MIMIC_NONE:
2914                                                 switch (p_ptr->prace)
2915                                                 {
2916                                                         case RACE_YEEK:
2917                                                         case RACE_KLACKON:
2918                                                         case RACE_HUMAN:
2919                                                         case RACE_AMBERITE:
2920                                                         case RACE_DUNADAN:
2921                                                                 mult = 25;break;
2922                                                         case RACE_HALF_ORC:
2923                                                         case RACE_HALF_TROLL:
2924                                                         case RACE_HALF_OGRE:
2925                                                         case RACE_HALF_GIANT:
2926                                                         case RACE_HALF_TITAN:
2927                                                         case RACE_CYCLOPS:
2928                                                         case RACE_IMP:
2929                                                         case RACE_SKELETON:
2930                                                         case RACE_ZOMBIE:
2931                                                         case RACE_VAMPIRE:
2932                                                         case RACE_SPECTRE:
2933                                                         case RACE_DEMON:
2934                                                         case RACE_DRACONIAN:
2935                                                                 mult = 30;break;
2936                                                         default:
2937                                                                 mult = 10;break;
2938                                                 }
2939                                                 break;
2940                                         case MIMIC_DEMON:
2941                                         case MIMIC_DEMON_LORD:
2942                                         case MIMIC_VAMPIRE:
2943                                                 mult = 30;break;
2944                                         default:
2945                                                 mult = 10;break;
2946                                         }
2947
2948                                         if (p_ptr->align < 0 && mult < 20)
2949                                                 mult = 20;
2950                                         if (!(p_ptr->resist_acid || p_ptr->oppose_acid) && (mult < 25))
2951                                                 mult = 25;
2952                                         if (!(p_ptr->resist_elec || p_ptr->oppose_elec) && (mult < 25))
2953                                                 mult = 25;
2954                                         if (!(p_ptr->resist_fire || p_ptr->oppose_fire) && (mult < 25))
2955                                                 mult = 25;
2956                                         if (!(p_ptr->resist_cold || p_ptr->oppose_cold) && (mult < 25))
2957                                                 mult = 25;
2958                                         if (!(p_ptr->resist_pois || p_ptr->oppose_pois) && (mult < 25))
2959                                                 mult = 25;
2960
2961                                         if ((p_ptr->pclass != CLASS_SAMURAI) && (have_flag(flgs, TR_FORCE_WEAPON)) && (p_ptr->csp > (p_ptr->msp / 30)))
2962                                         {
2963                                                 p_ptr->csp -= (1+(p_ptr->msp / 30));
2964                                                 p_ptr->redraw |= (PR_MANA);
2965                                                 mult = mult * 3 / 2 + 20;
2966                                         }
2967                                         k *= mult;
2968                                         k /= 10;
2969                                 }
2970
2971                                 k = critical_norm(o_ptr->weight, o_ptr->to_h, k, p_ptr->to_h[hand], mode);
2972                                 if (one_in_(6))
2973                                 {
2974                                         int mult = 2;
2975 #ifdef JP
2976                                         msg_format("¥°¥Ã¥µ¥êÀÚ¤êÎö¤«¤ì¤¿¡ª");
2977 #else
2978                                         msg_format("Your weapon cuts deep into yourself!");
2979 #endif
2980                                         /* Try to increase the damage */
2981                                         while (one_in_(4))
2982                                         {
2983                                                 mult++;
2984                                         }
2985
2986                                         k *= mult;
2987                                 }
2988                                 k += (p_ptr->to_d[hand] + o_ptr->to_d);
2989
2990                                 if (k < 0) k = 0;
2991
2992 #ifdef JP
2993                                 take_hit(DAMAGE_FORCE, k, "»à¤ÎÂç³ù", -1);
2994 #else
2995                                 take_hit(DAMAGE_FORCE, k, "Death scythe", -1);
2996 #endif
2997
2998                                 redraw_stuff();
2999                         }
3000                         else
3001                         {
3002                                 /* Sound */
3003                                 sound(SOUND_MISS);
3004
3005                                 /* Message */
3006 #ifdef JP
3007                                 msg_format("¥ß¥¹¡ª %s¤Ë¤«¤ï¤µ¤ì¤¿¡£", m_name);
3008 #else
3009                                 msg_format("You miss %s.", m_name);
3010 #endif
3011                         }
3012                 }
3013                 backstab = FALSE;
3014                 fuiuchi = FALSE;
3015         }
3016
3017
3018         if (weak && !(*mdeath))
3019         {
3020 #ifdef JP
3021                 msg_format("%s¤Ï¼å¤¯¤Ê¤Ã¤¿¤è¤¦¤À¡£", m_name);
3022 #else
3023                 msg_format("%^s seems weakened.", m_name);
3024 #endif
3025         }
3026         if (drain_left != MAX_VAMPIRIC_DRAIN)
3027         {
3028                 if (one_in_(4))
3029                 {
3030                         chg_virtue(V_UNLIFE, 1);
3031                 }
3032         }
3033         /* Mega-Hack -- apply earthquake brand */
3034         if (do_quake)
3035         {
3036                 earthquake(py, px, 10);
3037                 if (!cave[y][x].m_idx) *mdeath = TRUE;
3038         }
3039 }
3040
3041 bool py_attack(int y, int x, int mode)
3042 {
3043         bool            fear = FALSE;
3044         bool            mdeath = FALSE;
3045         bool            stormbringer = FALSE;
3046
3047         cave_type       *c_ptr = &cave[y][x];
3048         monster_type    *m_ptr = &m_list[c_ptr->m_idx];
3049         char            m_name[80];
3050
3051         /* Disturb the player */
3052         disturb(0, 0);
3053
3054         energy_use = 100;
3055
3056         if (m_ptr->csleep) /* It is not honorable etc to attack helpless victims */
3057         {
3058                 if (!(r_info[m_ptr->r_idx].flags3 & RF3_EVIL) || one_in_(5)) chg_virtue(V_COMPASSION, -1);
3059                 if (!(r_info[m_ptr->r_idx].flags3 & RF3_EVIL) || one_in_(5)) chg_virtue(V_HONOUR, -1);
3060         }
3061
3062         /* Extract monster name (or "it") */
3063         monster_desc(m_name, m_ptr, 0);
3064
3065         /* Auto-Recall if possible and visible */
3066         if (m_ptr->ml) monster_race_track(m_ptr->ap_r_idx);
3067
3068         /* Track a new monster */
3069         if (m_ptr->ml) health_track(c_ptr->m_idx);
3070
3071         if ((r_info[m_ptr->r_idx].flags1 & RF1_FEMALE) &&
3072             !(p_ptr->stun || p_ptr->confused || p_ptr->image || !m_ptr->ml))
3073         {
3074                 if ((inventory[INVEN_RARM].name1 == ART_ZANTETSU) || (inventory[INVEN_LARM].name1 == ART_ZANTETSU))
3075                 {
3076 #ifdef JP
3077                         msg_print("ÀÛ¼Ô¡¢¤ª¤Ê¤´¤Ï»Â¤ì¤Ì¡ª");
3078 #else
3079                         msg_print("I can not attack women!");
3080 #endif
3081                         return FALSE;
3082                 }
3083         }
3084
3085         if (d_info[dungeon_type].flags1 & DF1_NO_MELEE)
3086         {
3087 #ifdef JP
3088                 msg_print("¤Ê¤¼¤«¹¶·â¤¹¤ë¤³¤È¤¬¤Ç¤­¤Ê¤¤¡£");
3089 #else
3090                 msg_print("Something prevent you from attacking.");
3091 #endif
3092                 return FALSE;
3093         }
3094
3095         /* Stop if friendly */
3096         if (!is_hostile(m_ptr) &&
3097             !(p_ptr->stun || p_ptr->confused || p_ptr->image ||
3098             p_ptr->shero || !m_ptr->ml))
3099         {
3100                 if (inventory[INVEN_RARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
3101                 if (inventory[INVEN_LARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
3102                 if (stormbringer)
3103                 {
3104 #ifdef JP
3105                         msg_format("¹õ¤¤¿Ï¤Ï¶¯ÍߤË%s¤ò¹¶·â¤·¤¿¡ª", m_name);
3106 #else
3107                         msg_format("Your black blade greedily attacks %s!", m_name);
3108 #endif
3109                         chg_virtue(V_INDIVIDUALISM, 1);
3110                         chg_virtue(V_HONOUR, -1);
3111                         chg_virtue(V_JUSTICE, -1);
3112                         chg_virtue(V_COMPASSION, -1);
3113                 }
3114                 else if (p_ptr->pclass != CLASS_BERSERKER)
3115                 {
3116 #ifdef JP
3117                         if (get_check("ËÜÅö¤Ë¹¶·â¤·¤Þ¤¹¤«¡©"))
3118 #else
3119                         if (get_check("Really hit it? "))
3120 #endif
3121                         {
3122                                 chg_virtue(V_INDIVIDUALISM, 1);
3123                                 chg_virtue(V_HONOUR, -1);
3124                                 chg_virtue(V_JUSTICE, -1);
3125                                 chg_virtue(V_COMPASSION, -1);
3126                         }
3127                         else
3128                         {
3129 #ifdef JP
3130                                 msg_format("%s¤ò¹¶·â¤¹¤ë¤Î¤ò»ß¤á¤¿¡£", m_name);
3131 #else
3132                                 msg_format("You stop to avoid hitting %s.", m_name);
3133 #endif
3134                         return FALSE;
3135                         }
3136                 }
3137         }
3138
3139
3140         /* Handle player fear */
3141         if (p_ptr->afraid)
3142         {
3143                 /* Message */
3144                 if (m_ptr->ml)
3145 #ifdef JP
3146                 msg_format("¶²¤¯¤Æ%s¤ò¹¶·â¤Ç¤­¤Ê¤¤¡ª", m_name);
3147 #else
3148                         msg_format("You are too afraid to attack %s!", m_name);
3149 #endif
3150
3151                 else
3152 #ifdef JP
3153                         msg_format ("¤½¤Ã¤Á¤Ë¤Ï²¿¤«¶²¤¤¤â¤Î¤¬¤¤¤ë¡ª");
3154 #else
3155                         msg_format ("There is something scary in your way!");
3156 #endif
3157
3158                 /* Disturb the monster */
3159                 m_ptr->csleep = 0;
3160                 p_ptr->update |= (PU_MON_LITE);
3161
3162                 /* Done */
3163                 return FALSE;
3164         }
3165
3166         if (p_ptr->migite && p_ptr->hidarite)
3167         {
3168                 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_info[m_ptr->r_idx].level))
3169                 {
3170                         if (p_ptr->skill_exp[GINOU_NITOURYU] < 4000)
3171                                 p_ptr->skill_exp[GINOU_NITOURYU]+=80;
3172                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < 6000)
3173                                 p_ptr->skill_exp[GINOU_NITOURYU]+=4;
3174                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < 7000)
3175                                 p_ptr->skill_exp[GINOU_NITOURYU]+=1;
3176                         else if(p_ptr->skill_exp[GINOU_NITOURYU] < 8000)
3177                                 if (one_in_(3)) p_ptr->skill_exp[GINOU_NITOURYU]+=1;
3178                         p_ptr->update |= (PU_BONUS);
3179                 }
3180         }
3181
3182         if (p_ptr->riding)
3183         {
3184                 int ridinglevel = r_info[m_list[p_ptr->riding].r_idx].level;
3185                 if ((p_ptr->skill_exp[GINOU_RIDING] < s_info[p_ptr->pclass].s_max[GINOU_RIDING]) && ((p_ptr->skill_exp[GINOU_RIDING] - 1000) / 200 < r_info[m_ptr->r_idx].level) && (p_ptr->skill_exp[GINOU_RIDING]/100 - 2000 < ridinglevel))
3186                         p_ptr->skill_exp[GINOU_RIDING]++;
3187                 if ((p_ptr->skill_exp[GINOU_RIDING] < s_info[p_ptr->pclass].s_max[GINOU_RIDING]) && (p_ptr->skill_exp[GINOU_RIDING]/100 < ridinglevel))
3188                 {
3189                         if (ridinglevel*100 > (p_ptr->skill_exp[GINOU_RIDING] + 1500))
3190                                 p_ptr->skill_exp[GINOU_RIDING] += (1+(ridinglevel - p_ptr->skill_exp[GINOU_RIDING]/100 - 15));
3191                         else p_ptr->skill_exp[GINOU_RIDING]++;
3192                 }
3193                 p_ptr->update |= (PU_BONUS);
3194         }
3195
3196         riding_t_m_idx = c_ptr->m_idx;
3197         if (p_ptr->migite) py_attack_aux(y, x, &fear, &mdeath, 0, mode);
3198         if (p_ptr->hidarite && !mdeath) py_attack_aux(y, x, &fear, &mdeath, 1, mode);
3199
3200         /* Mutations which yield extra 'natural' attacks */
3201         if (!mdeath)
3202         {
3203                 if ((p_ptr->muta2 & MUT2_HORNS) && !mdeath)
3204                         natural_attack(c_ptr->m_idx, MUT2_HORNS, &fear, &mdeath);
3205                 if ((p_ptr->muta2 & MUT2_BEAK) && !mdeath)
3206                         natural_attack(c_ptr->m_idx, MUT2_BEAK, &fear, &mdeath);
3207                 if ((p_ptr->muta2 & MUT2_SCOR_TAIL) && !mdeath)
3208                         natural_attack(c_ptr->m_idx, MUT2_SCOR_TAIL, &fear, &mdeath);
3209                 if ((p_ptr->muta2 & MUT2_TRUNK) && !mdeath)
3210                         natural_attack(c_ptr->m_idx, MUT2_TRUNK, &fear, &mdeath);
3211                 if ((p_ptr->muta2 & MUT2_TENTACLES) && !mdeath)
3212                         natural_attack(c_ptr->m_idx, MUT2_TENTACLES, &fear, &mdeath);
3213         }
3214
3215         /* Hack -- delay fear messages */
3216         if (fear && m_ptr->ml && !mdeath)
3217         {
3218                 /* Sound */
3219                 sound(SOUND_FLEE);
3220
3221                 /* Message */
3222 #ifdef JP
3223                 msg_format("%^s¤Ï¶²Éݤ·¤Æƨ¤²½Ð¤·¤¿¡ª", m_name);
3224 #else
3225                 msg_format("%^s flees in terror!", m_name);
3226 #endif
3227
3228         }
3229
3230         if ((p_ptr->special_defense & KATA_IAI) && ((mode != HISSATSU_IAI) || mdeath))
3231         {
3232                 set_action(ACTION_NONE);
3233         }
3234
3235         return mdeath;
3236 }
3237
3238
3239 static bool pattern_seq(int c_y, int c_x, int n_y, int n_x)
3240 {
3241         if (!pattern_tile(c_y, c_x) && !pattern_tile(n_y, n_x))
3242                 return TRUE;
3243
3244         if (cave[n_y][n_x].feat == FEAT_PATTERN_START)
3245         {
3246                 if (!pattern_tile(c_y, c_x) &&
3247                     !p_ptr->confused && !p_ptr->stun && !p_ptr->image)
3248                 {
3249 #ifdef JP
3250                         if (get_check("¥Ñ¥¿¡¼¥ó¤Î¾å¤òÊ⤭»Ï¤á¤ë¤È¡¢Á´¤Æ¤òÊ⤫¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£¤¤¤¤¤Ç¤¹¤«¡©"))
3251 #else
3252                         if (get_check("If you start walking the Pattern, you must walk the whole way. Ok? "))
3253 #endif
3254
3255                                 return TRUE;
3256                         else
3257                                 return FALSE;
3258                 }
3259                 else
3260                         return TRUE;
3261         }
3262         else if ((cave[n_y][n_x].feat == FEAT_PATTERN_OLD) ||
3263                  (cave[n_y][n_x].feat == FEAT_PATTERN_END) ||
3264                  (cave[n_y][n_x].feat == FEAT_PATTERN_XTRA2))
3265         {
3266                 if (pattern_tile(c_y, c_x))
3267                 {
3268                         return TRUE;
3269                 }
3270                 else
3271                 {
3272 #ifdef JP
3273                         msg_print("¥Ñ¥¿¡¼¥ó¤Î¾å¤òÊ⤯¤Ë¤Ï¥¹¥¿¡¼¥ÈÃÏÅÀ¤«¤éÊ⤭»Ï¤á¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó¡£");
3274 #else
3275                         msg_print("You must start walking the Pattern from the startpoint.");
3276 #endif
3277
3278                         return FALSE;
3279                 }
3280         }
3281         else if ((cave[n_y][n_x].feat == FEAT_PATTERN_XTRA1) ||
3282                  (cave[c_y][c_x].feat == FEAT_PATTERN_XTRA1))
3283         {
3284                 return TRUE;
3285         }
3286         else if (cave[c_y][c_x].feat == FEAT_PATTERN_START)
3287         {
3288                 if (pattern_tile(n_y, n_x))
3289                         return TRUE;
3290                 else
3291                 {
3292 #ifdef JP
3293                         msg_print("¥Ñ¥¿¡¼¥ó¤Î¾å¤ÏÀµ¤·¤¤½ç½ø¤ÇÊ⤫¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó¡£");
3294 #else
3295                         msg_print("You must walk the Pattern in correct order.");
3296 #endif
3297
3298                         return FALSE;
3299                 }
3300         }
3301         else if ((cave[c_y][c_x].feat == FEAT_PATTERN_OLD) ||
3302                  (cave[c_y][c_x].feat == FEAT_PATTERN_END) ||
3303                  (cave[c_y][c_x].feat == FEAT_PATTERN_XTRA2))
3304         {
3305                 if (!pattern_tile(n_y, n_x))
3306                 {
3307 #ifdef JP
3308                         msg_print("¥Ñ¥¿¡¼¥ó¤òƧ¤ß³°¤·¤Æ¤Ï¤¤¤±¤Þ¤»¤ó¡£");
3309 #else
3310                         msg_print("You may not step off from the Pattern.");
3311 #endif
3312
3313                         return FALSE;
3314                 }
3315                 else
3316                 {
3317                         return TRUE;
3318                 }
3319         }
3320         else
3321         {
3322                 if (!pattern_tile(c_y, c_x))
3323                 {
3324 #ifdef JP
3325                         msg_print("¥Ñ¥¿¡¼¥ó¤Î¾å¤òÊ⤯¤Ë¤Ï¥¹¥¿¡¼¥ÈÃÏÅÀ¤«¤éÊ⤭»Ï¤á¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó¡£");
3326 #else
3327                         msg_print("You must start walking the Pattern from the startpoint.");
3328 #endif
3329
3330                         return FALSE;
3331                 }
3332                 else
3333                 {
3334                         byte ok_move = FEAT_PATTERN_START;
3335                         switch (cave[c_y][c_x].feat)
3336                         {
3337                                 case FEAT_PATTERN_1:
3338                                         ok_move = FEAT_PATTERN_2;
3339                                         break;
3340                                 case FEAT_PATTERN_2:
3341                                         ok_move = FEAT_PATTERN_3;
3342                                         break;
3343                                 case FEAT_PATTERN_3:
3344                                         ok_move = FEAT_PATTERN_4;
3345                                         break;
3346                                 case FEAT_PATTERN_4:
3347                                         ok_move = FEAT_PATTERN_1;
3348                                         break;
3349                                 default:
3350                                         if (p_ptr->wizard)
3351 #ifdef JP
3352                                                 msg_format("¤ª¤«¤·¤Ê¥Ñ¥¿¡¼¥óÊâ¹Ô¡¢%d¡£", cave[c_y][c_x]);
3353 #else
3354                                                 msg_format("Funny Pattern walking, %d.", cave[c_y][c_x]);
3355 #endif
3356
3357                                         return TRUE; /* Goof-up */
3358                         }
3359
3360                         if ((cave[n_y][n_x].feat == ok_move) ||
3361                             (cave[n_y][n_x].feat == cave[c_y][c_x].feat))
3362                                 return TRUE;
3363                         else
3364                         {
3365                                 if (!pattern_tile(n_y, n_x))
3366 #ifdef JP
3367                                         msg_print("¥Ñ¥¿¡¼¥ó¤òƧ¤ß³°¤·¤Æ¤Ï¤¤¤±¤Þ¤»¤ó¡£");
3368 #else
3369                                         msg_print("You may not step off from the Pattern.");
3370 #endif
3371
3372                                 else
3373 #ifdef JP
3374                                         msg_print("¥Ñ¥¿¡¼¥ó¤Î¾å¤ÏÀµ¤·¤¤½ç½ø¤ÇÊ⤫¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó¡£");
3375 #else
3376                                         msg_print("You must walk the Pattern in correct order.");
3377 #endif
3378
3379
3380                                 return FALSE;
3381                         }
3382                 }
3383         }
3384 }
3385
3386
3387
3388 bool player_can_enter(byte feature)
3389 {
3390         bool pass_wall;
3391
3392         /* Player can not walk through "walls" unless in Shadow Form */
3393         if (p_ptr->wraith_form || p_ptr->pass_wall || p_ptr->kabenuke)
3394                 pass_wall = TRUE;
3395         else
3396                 pass_wall = FALSE;
3397
3398         switch (feature)
3399         {
3400                 case FEAT_DEEP_WATER:
3401                 case FEAT_SHAL_LAVA:
3402                 case FEAT_DEEP_LAVA:
3403                         return (TRUE);
3404
3405                 case FEAT_DARK_PIT:
3406                 {
3407                         if (p_ptr->ffall)
3408                                 return (TRUE);
3409                         else
3410                                 return (FALSE);
3411                 }
3412
3413                 case FEAT_TREES:
3414                 {
3415                         return (TRUE);
3416                 }
3417
3418                 case FEAT_RUBBLE:
3419                 case FEAT_MAGMA:
3420                 case FEAT_QUARTZ:
3421                 case FEAT_MAGMA_H:
3422                 case FEAT_QUARTZ_H:
3423                 case FEAT_MAGMA_K:
3424                 case FEAT_QUARTZ_K:
3425                 case FEAT_WALL_EXTRA:
3426                 case FEAT_WALL_INNER:
3427                 case FEAT_WALL_OUTER:
3428                 case FEAT_WALL_SOLID:
3429                 {
3430                         return (pass_wall);
3431                 }
3432
3433                 case FEAT_MOUNTAIN:
3434                 {
3435                         return (!dun_level && p_ptr->ffall);
3436                 }
3437                 case FEAT_PERM_EXTRA:
3438                 case FEAT_PERM_INNER:
3439                 case FEAT_PERM_OUTER:
3440                 case FEAT_PERM_SOLID:
3441                 {
3442                         return (FALSE);
3443                 }
3444         }
3445
3446         return (TRUE);
3447 }
3448
3449
3450 /*
3451  * Move player in the given direction, with the given "pickup" flag.
3452  *
3453  * This routine should (probably) always induce energy expenditure.
3454  *
3455  * Note that moving will *always* take a turn, and will *always* hit
3456  * any monster which might be in the destination grid.  Previously,
3457  * moving into walls was "free" and did NOT hit invisible monsters.
3458  */
3459 void move_player(int dir, int do_pickup, bool break_trap)
3460 {
3461         int y, x;
3462
3463         cave_type *c_ptr;
3464         monster_type *m_ptr;
3465
3466         char m_name[80];
3467
3468         bool p_can_pass_walls = FALSE;
3469         bool stormbringer = FALSE;
3470
3471         bool oktomove = TRUE;
3472         bool do_past = FALSE;
3473
3474         /* Find the result of moving */
3475         y = py + ddy[dir];
3476         x = px + ddx[dir];
3477
3478         /* Examine the destination */
3479         c_ptr = &cave[y][x];
3480
3481         /* Exit the area */
3482         if (!dun_level && !p_ptr->wild_mode &&
3483                 ((x == 0) || (x == MAX_WID - 1) ||
3484                  (y == 0) || (y == MAX_HGT - 1)))
3485         {
3486                 /* Can the player enter the grid? */
3487                 if (c_ptr->mimic && player_can_enter(c_ptr->mimic))
3488                 {
3489                         /* Hack: move to new area */
3490                         if ((y == 0) && (x == 0))
3491                         {
3492                                 p_ptr->wilderness_y--;
3493                                 p_ptr->wilderness_x--;
3494                                 p_ptr->oldpy = cur_hgt - 2;
3495                                 p_ptr->oldpx = cur_wid - 2;
3496                                 ambush_flag = FALSE;
3497                         }
3498
3499                         else if ((y == 0) && (x == MAX_WID - 1))
3500                         {
3501                                 p_ptr->wilderness_y--;
3502                                 p_ptr->wilderness_x++;
3503                                 p_ptr->oldpy = cur_hgt - 2;
3504                                 p_ptr->oldpx = 1;
3505                                 ambush_flag = FALSE;
3506                         }
3507
3508                         else if ((y == MAX_HGT - 1) && (x == 0))
3509                         {
3510                                 p_ptr->wilderness_y++;
3511                                 p_ptr->wilderness_x--;
3512                                 p_ptr->oldpy = 1;
3513                                 p_ptr->oldpx = cur_wid - 2;
3514                                 ambush_flag = FALSE;
3515                         }
3516
3517                         else if ((y == MAX_HGT - 1) && (x == MAX_WID - 1))
3518                         {
3519                                 p_ptr->wilderness_y++;
3520                                 p_ptr->wilderness_x++;
3521                                 p_ptr->oldpy = 1;
3522                                 p_ptr->oldpx = 1;
3523                                 ambush_flag = FALSE;
3524                         }
3525
3526                         else if (y == 0)
3527                         {
3528                                 p_ptr->wilderness_y--;
3529                                 p_ptr->oldpy = cur_hgt - 2;
3530                                 p_ptr->oldpx = x;
3531                                 ambush_flag = FALSE;
3532                         }
3533
3534                         else if (y == MAX_HGT - 1)
3535                         {
3536                                 p_ptr->wilderness_y++;
3537                                 p_ptr->oldpy = 1;
3538                                 p_ptr->oldpx = x;
3539                                 ambush_flag = FALSE;
3540                         }
3541
3542                         else if (x == 0)
3543                         {
3544                                 p_ptr->wilderness_x--;
3545                                 p_ptr->oldpx = cur_wid - 2;
3546                                 p_ptr->oldpy = y;
3547                                 ambush_flag = FALSE;
3548                         }
3549
3550                         else if (x == MAX_WID - 1)
3551                         {
3552                                 p_ptr->wilderness_x++;
3553                                 p_ptr->oldpx = 1;
3554                                 p_ptr->oldpy = y;
3555                                 ambush_flag = FALSE;
3556                         }
3557
3558                         p_ptr->leftbldg = TRUE;
3559                         p_ptr->leaving = TRUE;
3560                         energy_use = 100;
3561
3562                         return;
3563                 }
3564
3565                 oktomove = FALSE;
3566         }
3567
3568         /* Get the monster */
3569         m_ptr = &m_list[c_ptr->m_idx];
3570
3571
3572         if (inventory[INVEN_RARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
3573         if (inventory[INVEN_LARM].name1 == ART_STORMBRINGER) stormbringer = TRUE;
3574
3575         /* Player can not walk through "walls"... */
3576         /* unless in Shadow Form */
3577         if (p_ptr->wraith_form || p_ptr->pass_wall || p_ptr->kabenuke)
3578                 p_can_pass_walls = TRUE;
3579         if ((cave[y][x].feat >= FEAT_PERM_EXTRA) &&
3580             (cave[y][x].feat <= FEAT_PERM_SOLID))
3581         {
3582                 p_can_pass_walls = FALSE;
3583         }
3584
3585         if (p_ptr->riding)
3586         {
3587                 cave[py][px].m_idx = 0;
3588         }
3589
3590         /* Hack -- attack monsters */
3591         if (c_ptr->m_idx && (m_ptr->ml || cave_floor_bold(y, x) || p_can_pass_walls))
3592         {
3593
3594                 /* Attack -- only if we can see it OR it is not in a wall */
3595                 if (!is_hostile(m_ptr) &&
3596                     !(p_ptr->confused || p_ptr->image || !m_ptr->ml || p_ptr->stun ||
3597                     ((p_ptr->muta2 & MUT2_BERS_RAGE) && p_ptr->shero)) &&
3598                     (pattern_seq(py, px, y, x)) &&
3599                     ((cave_floor_bold(y, x)) || (c_ptr->feat == FEAT_TREES) || (p_can_pass_walls)))
3600                 {
3601                         m_ptr->csleep = 0;
3602                         p_ptr->update |= (PU_MON_LITE);
3603
3604                         /* Extract monster name (or "it") */
3605                         monster_desc(m_name, m_ptr, 0);
3606
3607                         /* Auto-Recall if possible and visible */
3608                         if (m_ptr->ml) monster_race_track(m_ptr->ap_r_idx);
3609
3610                         /* Track a new monster */
3611                         if (m_ptr->ml) health_track(c_ptr->m_idx);
3612
3613                         /* displace? */
3614                         if ((stormbringer && (randint1(1000) > 666)) || (p_ptr->pclass == CLASS_BERSERKER))
3615                         {
3616                                 py_attack(y, x, 0);
3617                                 oktomove = FALSE;
3618                         }
3619                         else if (monster_can_cross_terrain(cave[py][px].feat, &r_info[m_ptr->r_idx]) &&
3620                                  (cave_floor_bold(py, px) || cave[py][px].feat == FEAT_TREES ||
3621                                   (r_info[m_ptr->r_idx].flags2 & RF2_PASS_WALL)))
3622                         {
3623                                 do_past = TRUE;
3624                         }
3625                         else
3626                         {
3627 #ifdef JP
3628                                 msg_format("%^s¤¬¼ÙËâ¤À¡ª", m_name);
3629 #else
3630                                 msg_format("%^s is in your way!", m_name);
3631 #endif
3632
3633                                 energy_use = 0;
3634                                 oktomove = FALSE;
3635                         }
3636
3637                         /* now continue on to 'movement' */
3638                 }
3639                 else
3640                 {
3641                         py_attack(y, x, 0);
3642                         oktomove = FALSE;
3643                 }
3644         }
3645
3646         if (!oktomove)
3647         {
3648         }
3649
3650         else if ((c_ptr->feat == FEAT_DARK_PIT) && !p_ptr->ffall)
3651         {
3652 #ifdef JP
3653                 msg_print("Îö¤±Ìܤò²£Àڤ뤳¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£");
3654 #else
3655                 msg_print("You can't cross the chasm.");
3656 #endif
3657
3658                 energy_use = 0;
3659                 running = 0;
3660                 oktomove = FALSE;
3661         }
3662
3663         else if (c_ptr->feat == FEAT_MOUNTAIN)
3664         {
3665                 if (dun_level || !p_ptr->ffall)
3666                 {
3667 #ifdef JP
3668                         msg_print("»³¤Ë¤ÏÅФì¤Þ¤»¤ó¡ª");
3669 #else
3670                         msg_print("You can't climb the mountains!");
3671 #endif
3672
3673                         running = 0;
3674                         energy_use = 0;
3675                         oktomove = FALSE;
3676                 }
3677         }
3678         /*
3679          * Player can move through trees and
3680          * has effective -10 speed
3681          * Rangers can move without penality
3682          */
3683         else if (c_ptr->feat == FEAT_TREES)
3684         {
3685                 oktomove = TRUE;
3686                 if ((p_ptr->pclass != CLASS_RANGER) && !p_ptr->ffall) energy_use *= 2;
3687         }
3688
3689         else if ((c_ptr->feat >= FEAT_QUEST_ENTER) &&
3690                 (c_ptr->feat <= FEAT_QUEST_EXIT))
3691         {
3692                 oktomove = TRUE;
3693         }
3694
3695 #ifdef ALLOW_EASY_DISARM /* TNB */
3696
3697         /* Disarm a visible trap */
3698         else if ((do_pickup != easy_disarm) && is_known_trap(c_ptr))
3699         {
3700                 bool ignore = FALSE;
3701                 switch (c_ptr->feat)
3702                 {
3703                         case FEAT_TRAP_TRAPDOOR:
3704                         case FEAT_TRAP_PIT:
3705                         case FEAT_TRAP_SPIKED_PIT:
3706                         case FEAT_TRAP_POISON_PIT:
3707                                 if (p_ptr->ffall) ignore = TRUE;
3708                                 break;
3709                         case FEAT_TRAP_TELEPORT:
3710                                 if (p_ptr->anti_tele) ignore = TRUE;
3711                                 break;
3712                         case FEAT_TRAP_FIRE:
3713                                 if (p_ptr->immune_fire) ignore = TRUE;
3714                                 break;
3715                         case FEAT_TRAP_ACID:
3716                                 if (p_ptr->immune_acid) ignore = TRUE;
3717                                 break;
3718                         case FEAT_TRAP_BLIND:
3719                                 if (p_ptr->resist_blind) ignore = TRUE;
3720                                 break;
3721                         case FEAT_TRAP_CONFUSE:
3722                                 if (p_ptr->resist_conf) ignore = TRUE;
3723                                 break;
3724                         case FEAT_TRAP_POISON:
3725                                 if (p_ptr->resist_pois) ignore = TRUE;
3726                                 break;
3727                         case FEAT_TRAP_SLEEP:
3728                                 if (p_ptr->free_act) ignore = TRUE;
3729                                 break;
3730                 }
3731
3732                 if (!ignore)
3733                 {
3734                         (void)do_cmd_disarm_aux(y, x, dir);
3735                         return;
3736                 }
3737         }
3738
3739 #endif /* ALLOW_EASY_DISARM -- TNB */
3740         else if (p_ptr->riding && (r_info[m_list[p_ptr->riding].r_idx].flags1 & RF1_NEVER_MOVE))
3741         {
3742 #ifdef JP
3743                 msg_print("Æ°¤±¤Ê¤¤¡ª");
3744 #else
3745                 msg_print("Can't move!");
3746 #endif
3747                 energy_use = 0;
3748                 oktomove = FALSE;
3749                 disturb(0, 0);
3750         }
3751
3752         else if (p_ptr->riding && m_list[p_ptr->riding].monfear)
3753         {
3754                 char m_name[80];
3755
3756                 /* Acquire the monster name */
3757                 monster_desc(m_name, &m_list[p_ptr->riding], 0);
3758
3759                 /* Dump a message */
3760 #ifdef JP
3761 msg_format("%s¤¬¶²Éݤ·¤Æ¤¤¤ÆÀ©¸æ¤Ç¤­¤Ê¤¤¡£", m_name);
3762 #else
3763                 msg_format("%^s is too scared to control.", m_name);
3764 #endif
3765                 oktomove = FALSE;
3766                 disturb(0, 0);
3767         }
3768
3769         else if (p_ptr->riding && p_ptr->riding_ryoute)
3770         {
3771                 oktomove = FALSE;
3772                 disturb(0, 0);
3773         }
3774
3775         else if ((p_ptr->riding && (r_info[m_list[p_ptr->riding].r_idx].flags7 & RF7_AQUATIC)) && (c_ptr->feat != FEAT_SHAL_WATER) && (c_ptr->feat != FEAT_DEEP_WATER))
3776         {
3777 #ifdef JP
3778                 msg_print("Φ¾å¤Ë¾å¤¬¤ì¤Ê¤¤¡£");
3779 #else
3780                 msg_print("Can't land.");
3781 #endif
3782                 energy_use = 0;
3783                 oktomove = FALSE;
3784                 disturb(0, 0);
3785         }
3786
3787         else if ((p_ptr->riding && !(r_info[m_list[p_ptr->riding].r_idx].flags7 & (RF7_AQUATIC | RF7_CAN_SWIM | RF7_CAN_FLY))) && (c_ptr->feat == FEAT_DEEP_WATER))
3788         {
3789 #ifdef JP
3790                 msg_print("¿å¾å¤Ë¹Ô¤±¤Ê¤¤¡£");
3791 #else
3792                 msg_print("Can't swim.");
3793 #endif
3794                 energy_use = 0;
3795                 oktomove = FALSE;
3796                 disturb(0, 0);
3797         }
3798
3799         else if ((p_ptr->riding && (r_info[m_list[p_ptr->riding].r_idx].flags2 & (RF2_AURA_FIRE)) && !(r_info[m_list[p_ptr->riding].r_idx].flags7 & (RF7_CAN_FLY))) && (c_ptr->feat == FEAT_SHAL_WATER))
3800         {
3801 #ifdef JP
3802                 msg_print("¿å¾å¤Ë¹Ô¤±¤Ê¤¤¡£");
3803 #else
3804                 msg_print("Can't swim.");
3805 #endif
3806                 energy_use = 0;
3807                 oktomove = FALSE;
3808                 disturb(0, 0);
3809         }
3810
3811         else if ((p_ptr->riding && !(r_info[m_list[p_ptr->riding].r_idx].flags7 & (RF7_CAN_FLY)) && !(r_info[m_list[p_ptr->riding].r_idx].flags3 & (RF3_IM_FIRE))) && ((c_ptr->feat == FEAT_SHAL_LAVA) || (c_ptr->feat == FEAT_DEEP_LAVA)))
3812         {
3813 #ifdef JP
3814                 msg_print("ÍÏ´ä¤Î¾å¤Ë¹Ô¤±¤Ê¤¤¡£");
3815 #else
3816                 msg_print("Too hot to go through.");
3817 #endif
3818                 energy_use = 0;
3819                 oktomove = FALSE;
3820                 disturb(0, 0);
3821         }
3822
3823         else if (p_ptr->riding && m_list[p_ptr->riding].stunned && one_in_(2))
3824         {
3825                 char m_name[80];
3826                 monster_desc(m_name, &m_list[p_ptr->riding], 0);
3827 #ifdef JP
3828                 msg_format("%s¤¬Û¯Û°¤È¤·¤Æ¤¤¤Æ¤¦¤Þ¤¯Æ°¤±¤Ê¤¤¡ª",m_name);
3829 #else
3830                 msg_format("You cannot control stunned %s!",m_name);
3831 #endif
3832                 oktomove = FALSE;
3833                 disturb(0, 0);
3834         }
3835
3836         /* Player can not walk through "walls" unless in wraith form...*/
3837         else if ((!cave_floor_bold(y, x)) &&
3838                 (!p_can_pass_walls))
3839         {
3840                 byte feat;
3841
3842                 oktomove = FALSE;
3843
3844                 /* Feature code (applying "mimic" field) */
3845                 feat = c_ptr->mimic ? c_ptr->mimic : f_info[c_ptr->feat].mimic;
3846
3847                 /* Disturb the player */
3848                 disturb(0, 0);
3849
3850                 /* Notice things in the dark */
3851                 if ((!(c_ptr->info & (CAVE_MARK))) &&
3852                     (p_ptr->blind || !(c_ptr->info & (CAVE_LITE))))
3853                 {
3854                         /* Rubble */
3855                         if (feat == FEAT_RUBBLE)
3856                         {
3857 #ifdef JP
3858                                 msg_print("´äÀФ¬¹Ô¤¯¼ê¤ò¤Ï¤Ð¤ó¤Ç¤¤¤ë¤è¤¦¤À¡£");
3859 #else
3860                                 msg_print("You feel some rubble blocking your way.");
3861 #endif
3862
3863                                 c_ptr->info |= (CAVE_MARK);
3864                                 lite_spot(y, x);
3865                         }
3866
3867                         /* Closed door */
3868                         else if (is_closed_door(feat))
3869                         {
3870 #ifdef JP
3871                                 msg_print("¥É¥¢¤¬¹Ô¤¯¼ê¤ò¤Ï¤Ð¤ó¤Ç¤¤¤ë¤è¤¦¤À¡£");
3872 #else
3873                                 msg_print("You feel a closed door blocking your way.");
3874 #endif
3875
3876                                 c_ptr->info |= (CAVE_MARK);
3877                                 lite_spot(y, x);
3878                         }
3879
3880                         /* Wall (or secret door) */
3881                         else
3882                         {
3883 #ifdef JP
3884                                 msg_print("Êɤ¬¹Ô¤¯¼ê¤ò¤Ï¤Ð¤ó¤Ç¤¤¤ë¤è¤¦¤À¡£");
3885 #else
3886                                 msg_print("You feel a wall blocking your way.");
3887 #endif
3888
3889                                 c_ptr->info |= (CAVE_MARK);
3890                                 lite_spot(y, x);
3891                         }
3892                 }
3893
3894                 /* Notice things */
3895                 else
3896                 {
3897                         /* Rubble */
3898                         if (feat == FEAT_RUBBLE)
3899                         {
3900 #ifdef JP
3901                                 msg_print("´äÀФ¬¹Ô¤¯¼ê¤ò¤Ï¤Ð¤ó¤Ç¤¤¤ë¡£");
3902 #else
3903                                 msg_print("There is rubble blocking your way.");
3904 #endif
3905
3906
3907                                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3908                                         energy_use = 0;
3909
3910                                 /*
3911                                  * Well, it makes sense that you lose time bumping into
3912                                  * a wall _if_ you are confused, stunned or blind; but
3913                                  * typing mistakes should not cost you a turn...
3914                                  */
3915                         }
3916                         /* Closed doors */
3917                         else if (is_closed_door(feat))
3918                         {
3919 #ifdef ALLOW_EASY_OPEN
3920
3921                                 if (easy_open && easy_open_door(y, x)) return;
3922
3923 #endif /* ALLOW_EASY_OPEN */
3924
3925 #ifdef JP
3926                                 msg_print("¥É¥¢¤¬¹Ô¤¯¼ê¤ò¤Ï¤Ð¤ó¤Ç¤¤¤ë¡£");
3927 #else
3928                                 msg_print("There is a closed door blocking your way.");
3929 #endif
3930
3931
3932                                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3933                                         energy_use = 0;
3934                         }
3935
3936                         /* Wall (or secret door) */
3937                         else
3938                         {
3939 #ifdef JP
3940                                 msg_print("Êɤ¬¹Ô¤¯¼ê¤ò¤Ï¤Ð¤ó¤Ç¤¤¤ë¡£");
3941 #else
3942                                 msg_print("There is a wall blocking your way.");
3943 #endif
3944
3945
3946                                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3947                                         energy_use = 0;
3948                         }
3949                 }
3950
3951                 /* Sound */
3952                 sound(SOUND_HITWALL);
3953         }
3954
3955         /* Normal movement */
3956         if (!pattern_seq(py, px, y, x))
3957         {
3958                 if (!(p_ptr->confused || p_ptr->stun || p_ptr->image))
3959                 {
3960                         energy_use = 0;
3961                 }
3962
3963                 /* To avoid a loop with running */
3964                 disturb(0, 0);
3965
3966                 oktomove = FALSE;
3967         }
3968
3969         /* Normal movement */
3970         if (oktomove)
3971         {
3972                 int oy, ox;
3973
3974                 if (p_ptr->warning)
3975                 {
3976                         if(!process_frakir(x,y))
3977                         {
3978                                 energy_use = 25;
3979                                 return;
3980                         }
3981                 }
3982
3983                 if (do_past)
3984                 {
3985 #ifdef JP
3986                         msg_format("%s¤ò²¡¤·Âऱ¤¿¡£", m_name);
3987 #else
3988                         msg_format("You push past %s.", m_name);
3989 #endif
3990
3991                         m_ptr->fy = py;
3992                         m_ptr->fx = px;
3993                         cave[py][px].m_idx = c_ptr->m_idx;
3994                         c_ptr->m_idx = 0;
3995                         update_mon(cave[py][px].m_idx, TRUE);
3996                 }
3997
3998                 /* Change oldpx and oldpy to place the player well when going back to big mode */
3999                 if (p_ptr->wild_mode)
4000                 {
4001                         if(ddy[dir] > 0)  p_ptr->oldpy = 1;
4002                         if(ddy[dir] < 0)  p_ptr->oldpy = MAX_HGT - 2;
4003                         if(ddy[dir] == 0) p_ptr->oldpy = MAX_HGT / 2;
4004                         if(ddx[dir] > 0)  p_ptr->oldpx = 1;
4005                         if(ddx[dir] < 0)  p_ptr->oldpx = MAX_WID - 2;
4006                         if(ddx[dir] == 0) p_ptr->oldpx = MAX_WID / 2;
4007                 }
4008
4009                 /* Save old location */
4010                 oy = py;
4011                 ox = px;
4012
4013                 /* Move the player */
4014                 py = y;
4015                 px = x;
4016
4017                 if (p_ptr->riding && (r_info[m_list[p_ptr->riding].r_idx].flags2 & RF2_KILL_WALL))
4018                 {
4019                         if (cave[py][px].feat >= FEAT_RUBBLE && cave[py][px].feat < FEAT_PERM_SOLID)
4020                         {
4021                                 /* Forget the wall */
4022                                 cave[py][px].info &= ~(CAVE_MARK);
4023
4024                                 /* Notice */
4025                                 cave_set_feat(py, px, floor_type[randint0(100)]);
4026                         }
4027                 }
4028                 if (music_singing(MUSIC_WALL))
4029                 {
4030                         project(0, 0, py, px,
4031                                 (60 + p_ptr->lev), GF_DISINTEGRATE, PROJECT_KILL | PROJECT_ITEM, -1);
4032                 }
4033                 else if (p_ptr->kill_wall)
4034                 {
4035                         if (cave_valid_bold(py, px) &&
4036                                 (cave[py][px].feat < FEAT_PATTERN_START ||
4037                                  cave[py][px].feat > FEAT_PATTERN_XTRA2) &&
4038                                 (cave[py][px].feat < FEAT_DEEP_WATER ||
4039                                  cave[py][px].feat > FEAT_GRASS))
4040                         {
4041                                 if (cave[py][px].feat == FEAT_TREES)
4042                                         cave_set_feat(py, px, FEAT_GRASS);
4043                                 else
4044                                         cave_set_feat(py, px, floor_type[randint0(100)]);
4045                         }
4046                                 /* Update some things -- similar to GF_KILL_WALL */
4047                         p_ptr->update |= (PU_VIEW | PU_LITE | PU_FLOW | PU_MONSTERS | PU_MON_LITE);
4048                 }
4049
4050                 /* Redraw new spot */
4051                 lite_spot(py, px);
4052
4053                 /* Redraw old spot */
4054                 lite_spot(oy, ox);
4055
4056                 /* Sound */
4057                 /* sound(SOUND_WALK); */
4058
4059                 /* Check for new panel (redraw map) */
4060                 verify_panel();
4061
4062                 /* For get everything when requested hehe I'm *NASTY* */
4063                 if (dun_level && (d_info[dungeon_type].flags1 & DF1_FORGET))
4064                 {
4065                         wiz_dark();
4066                 }
4067
4068                 if ((p_ptr->pclass == CLASS_NINJA))
4069                 {
4070                         if (c_ptr->info & (CAVE_GLOW)) set_superstealth(FALSE);
4071                         else if (p_ptr->cur_lite <= 0) set_superstealth(TRUE);
4072                 }
4073                 if ((p_ptr->action == ACTION_HAYAGAKE) && !cave_floor_bold(py, px))
4074                 {
4075 #ifdef JP
4076                         msg_print("¤³¤³¤Ç¤ÏÁÇÁ᤯ư¤±¤Ê¤¤¡£");
4077 #else
4078                         msg_print("You cannot run in wall.");
4079 #endif
4080                         set_action(ACTION_NONE);
4081                 }
4082
4083                 /* Update stuff */
4084                 p_ptr->update |= (PU_VIEW | PU_LITE | PU_FLOW | PU_MON_LITE);
4085
4086                 /* Update the monsters */
4087                 p_ptr->update |= (PU_DISTANCE);
4088
4089                 /* Window stuff */
4090                 p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
4091
4092                 /* Spontaneous Searching */
4093                 if ((p_ptr->skill_fos >= 50) ||
4094                     (0 == randint0(50 - p_ptr->skill_fos)))
4095                 {
4096                         search();
4097                 }
4098
4099                 /* Continuous Searching */
4100                 if (p_ptr->action == ACTION_SEARCH)
4101                 {
4102                         search();
4103                 }
4104
4105                 /* Handle "objects" */
4106
4107 #ifdef ALLOW_EASY_DISARM /* TNB */
4108
4109                 carry(do_pickup != always_pickup);
4110
4111 #else /* ALLOW_EASY_DISARM -- TNB */
4112
4113                 carry(do_pickup);
4114
4115 #endif /* ALLOW_EASY_DISARM -- TNB */
4116
4117                 /* Handle "store doors" */
4118                 if (((c_ptr->feat >= FEAT_SHOP_HEAD) &&
4119                     (c_ptr->feat <= FEAT_SHOP_TAIL)) ||
4120                     (c_ptr->feat == FEAT_MUSEUM))
4121                 {
4122                         /* Disturb */
4123                         disturb(0, 0);
4124
4125                         energy_use = 0;
4126                         /* Hack -- Enter store */
4127                         command_new = SPECIAL_KEY_STORE;
4128                 }
4129
4130                 /* Handle "building doors" -KMW- */
4131                 else if ((c_ptr->feat >= FEAT_BLDG_HEAD) &&
4132                     (c_ptr->feat <= FEAT_BLDG_TAIL))
4133                 {
4134                         /* Disturb */
4135                         disturb(0, 0);
4136
4137                         energy_use = 0;
4138                         /* Hack -- Enter building */
4139                         command_new = SPECIAL_KEY_BUILDING;
4140                 }
4141
4142                 /* Handle quest areas -KMW- */
4143                 else if (cave[y][x].feat == FEAT_QUEST_ENTER)
4144                 {
4145                         /* Disturb */
4146                         disturb(0, 0);
4147
4148                         energy_use = 0;
4149                         /* Hack -- Enter quest level */
4150                         command_new = SPECIAL_KEY_QUEST;
4151                 }
4152
4153                 else if (cave[y][x].feat == FEAT_QUEST_EXIT)
4154                 {
4155                         if (quest[p_ptr->inside_quest].type == QUEST_TYPE_FIND_EXIT)
4156                         {
4157                                 if (record_fix_quest) do_cmd_write_nikki(NIKKI_FIX_QUEST_C, p_ptr->inside_quest, NULL);
4158                                 quest[p_ptr->inside_quest].status = QUEST_STATUS_COMPLETED;
4159                                 quest[p_ptr->inside_quest].complev = (byte)p_ptr->lev;
4160 #ifdef JP
4161                                 msg_print("¥¯¥¨¥¹¥È¤òãÀ®¤·¤¿¡ª");
4162 #else
4163                                 msg_print("You accomplished your quest!");
4164 #endif
4165
4166                                 msg_print(NULL);
4167                         }
4168
4169                         leave_quest_check();
4170
4171                         p_ptr->inside_quest = cave[y][x].special;
4172                         dun_level = 0;
4173                         p_ptr->oldpx = 0;
4174                         p_ptr->oldpy = 0;
4175                         p_ptr->leaving = TRUE;
4176                 }
4177
4178                 /* Set off a trap */
4179                 else if (is_trap(c_ptr->feat))
4180                 {
4181                         /* Disturb */
4182                         disturb(0, 0);
4183
4184                         /* Hidden trap */
4185                         if (c_ptr->mimic)
4186                         {
4187                                 /* Message */
4188 #ifdef JP
4189                                 msg_print("¥È¥é¥Ã¥×¤À¡ª");
4190 #else
4191                                 msg_print("You found a trap!");
4192 #endif
4193
4194                                 /* Pick a trap */
4195                                 disclose_grid(py, px);
4196                         }
4197
4198                         /* Hit the trap */
4199                         hit_trap(break_trap);
4200                 }
4201
4202                 /* Warn when leaving trap detected region */
4203                 if ((disturb_trap_detect || alert_trap_detect)
4204                     && p_ptr->dtrap && !(cave[py][px].info & CAVE_IN_DETECT))
4205                 {
4206                         /* No duplicate warning */
4207                         p_ptr->dtrap = FALSE;
4208
4209                         /* You are just on the edge */
4210                         if (!(cave[py][px].info & CAVE_UNSAFE))
4211                         {
4212                                 if (alert_trap_detect)
4213                                 {
4214 #ifdef JP
4215                                         msg_print("* Ãí°Õ:¤³¤ÎÀè¤Ï¥È¥é¥Ã¥×¤Î´¶ÃÎÈϰϳ°¤Ç¤¹¡ª *");
4216 #else
4217                                         msg_print("*Leaving trap detect region!*");
4218 #endif
4219                                 }
4220                                 
4221                                 if (disturb_trap_detect)
4222                                 {
4223                                         disturb(0, 0);
4224                                 }
4225                         }
4226                 }
4227         }
4228
4229         if (p_ptr->riding)
4230         {
4231                 m_list[p_ptr->riding].fy = py;
4232                 m_list[p_ptr->riding].fx = px;
4233                 cave[py][px].m_idx = p_ptr->riding;
4234                 update_mon(cave[py][px].m_idx, TRUE);
4235                 p_ptr->update |= (PU_MON_LITE);
4236         }
4237 }
4238
4239
4240 /*
4241  * Hack -- Check for a "known wall" (see below)
4242  */
4243 static int see_wall(int dir, int y, int x)
4244 {
4245         cave_type   *c_ptr;
4246         byte feat;
4247
4248         /* Get the new location */
4249         y += ddy[dir];
4250         x += ddx[dir];
4251
4252         /* Illegal grids are not known walls */
4253         if (!in_bounds2(y, x)) return (FALSE);
4254
4255         /* Access grid */
4256         c_ptr = &cave[y][x];
4257
4258         /* Feature code (applying "mimic" field) */
4259         feat = c_ptr->mimic ? c_ptr->mimic : f_info[c_ptr->feat].mimic;
4260
4261         /* Non-wall grids are not known walls */
4262         if (feat <= FEAT_DOOR_TAIL) return (FALSE);
4263
4264         if ((feat >= FEAT_DEEP_WATER) &&
4265             (feat <= FEAT_GRASS)) return (FALSE);
4266
4267         if ((feat >= FEAT_SHOP_HEAD) &&
4268             (feat <= FEAT_SHOP_TAIL)) return (FALSE);
4269
4270         if (feat == FEAT_DEEP_GRASS) return (FALSE);
4271         if (feat == FEAT_FLOWER) return (FALSE);
4272
4273         if (feat == FEAT_MUSEUM) return (FALSE);
4274
4275         if ((feat >= FEAT_BLDG_HEAD) &&
4276             (feat <= FEAT_BLDG_TAIL)) return (FALSE);
4277
4278 /*      if (feat == FEAT_TREES) return (FALSE); */
4279
4280         /* Must be known to the player */
4281         if (!(c_ptr->info & (CAVE_MARK))) return (FALSE);
4282
4283         if (feat >= FEAT_TOWN) return (FALSE);
4284
4285         /* Default */
4286         return (TRUE);
4287 }
4288
4289
4290 /*
4291  * Hack -- Check for an "unknown corner" (see below)
4292  */
4293 static int see_nothing(int dir, int y, int x)
4294 {
4295         /* Get the new location */
4296         y += ddy[dir];
4297         x += ddx[dir];
4298
4299         /* Illegal grids are unknown */
4300         if (!in_bounds2(y, x)) return (TRUE);
4301
4302         /* Memorized grids are always known */
4303         if (cave[y][x].info & (CAVE_MARK)) return (FALSE);
4304
4305         /* Non-floor grids are unknown */
4306         if (!cave_floor_bold(y, x)) return (TRUE);
4307
4308         /* Viewable door/wall grids are known */
4309         if (player_can_see_bold(y, x)) return (FALSE);
4310
4311         /* Default */
4312         return (TRUE);
4313 }
4314
4315
4316
4317
4318
4319 /*
4320  * The running algorithm:                       -CJS-
4321  *
4322  * In the diagrams below, the player has just arrived in the
4323  * grid marked as '@', and he has just come from a grid marked
4324  * as 'o', and he is about to enter the grid marked as 'x'.
4325  *
4326  * Of course, if the "requested" move was impossible, then you
4327  * will of course be blocked, and will stop.
4328  *
4329  * Overview: You keep moving until something interesting happens.
4330  * If you are in an enclosed space, you follow corners. This is
4331  * the usual corridor scheme. If you are in an open space, you go
4332  * straight, but stop before entering enclosed space. This is
4333  * analogous to reaching doorways. If you have enclosed space on
4334  * one side only (that is, running along side a wall) stop if
4335  * your wall opens out, or your open space closes in. Either case
4336  * corresponds to a doorway.
4337  *
4338  * What happens depends on what you can really SEE. (i.e. if you
4339  * have no light, then running along a dark corridor is JUST like
4340  * running in a dark room.) The algorithm works equally well in
4341  * corridors, rooms, mine tailings, earthquake rubble, etc, etc.
4342  *
4343  * These conditions are kept in static memory:
4344  * find_openarea         You are in the open on at least one
4345  * side.
4346  * find_breakleft        You have a wall on the left, and will
4347  * stop if it opens
4348  * find_breakright       You have a wall on the right, and will
4349  * stop if it opens
4350  *
4351  * To initialize these conditions, we examine the grids adjacent
4352  * to the grid marked 'x', two on each side (marked 'L' and 'R').
4353  * If either one of the two grids on a given side is seen to be
4354  * closed, then that side is considered to be closed. If both
4355  * sides are closed, then it is an enclosed (corridor) run.
4356  *
4357  * LL           L
4358  * @x          LxR
4359  * RR          @R
4360  *
4361  * Looking at more than just the immediate squares is
4362  * significant. Consider the following case. A run along the
4363  * corridor will stop just before entering the center point,
4364  * because a choice is clearly established. Running in any of
4365  * three available directions will be defined as a corridor run.
4366  * Note that a minor hack is inserted to make the angled corridor
4367  * entry (with one side blocked near and the other side blocked
4368  * further away from the runner) work correctly. The runner moves
4369  * diagonally, but then saves the previous direction as being
4370  * straight into the gap. Otherwise, the tail end of the other
4371  * entry would be perceived as an alternative on the next move.
4372  *
4373  * #.#
4374  * ##.##
4375  * .@x..
4376  * ##.##
4377  * #.#
4378  *
4379  * Likewise, a run along a wall, and then into a doorway (two
4380  * runs) will work correctly. A single run rightwards from @ will
4381  * stop at 1. Another run right and down will enter the corridor
4382  * and make the corner, stopping at the 2.
4383  *
4384  * ##################
4385  * o@x       1
4386  * ########### ######
4387  * #2          #
4388  * #############
4389  *
4390  * After any move, the function area_affect is called to
4391  * determine the new surroundings, and the direction of
4392  * subsequent moves. It examines the current player location
4393  * (at which the runner has just arrived) and the previous
4394  * direction (from which the runner is considered to have come).
4395  *
4396  * Moving one square in some direction places you adjacent to
4397  * three or five new squares (for straight and diagonal moves
4398  * respectively) to which you were not previously adjacent,
4399  * marked as '!' in the diagrams below.
4400  *
4401  *   ...!              ...
4402  *   .o@!  (normal)    .o.!  (diagonal)
4403  *   ...!  (east)      ..@!  (south east)
4404  *                      !!!
4405  *
4406  * You STOP if any of the new squares are interesting in any way:
4407  * for example, if they contain visible monsters or treasure.
4408  *
4409  * You STOP if any of the newly adjacent squares seem to be open,
4410  * and you are also looking for a break on that side. (that is,
4411  * find_openarea AND find_break).
4412  *
4413  * You STOP if any of the newly adjacent squares do NOT seem to be
4414  * open and you are in an open area, and that side was previously
4415  * entirely open.
4416  *
4417  * Corners: If you are not in the open (i.e. you are in a corridor)
4418  * and there is only one way to go in the new squares, then turn in
4419  * that direction. If there are more than two new ways to go, STOP.
4420  * If there are two ways to go, and those ways are separated by a
4421  * square which does not seem to be open, then STOP.
4422  *
4423  * Otherwise, we have a potential corner. There are two new open
4424  * squares, which are also adjacent. One of the new squares is
4425  * diagonally located, the other is straight on (as in the diagram).
4426  * We consider two more squares further out (marked below as ?).
4427  *
4428  * We assign "option" to the straight-on grid, and "option2" to the
4429  * diagonal grid, and "check_dir" to the grid marked 's'.
4430  *
4431  * ##s
4432  * @x?
4433  * #.?
4434  *
4435  * If they are both seen to be closed, then it is seen that no benefit
4436  * is gained from moving straight. It is a known corner.  To cut the
4437  * corner, go diagonally, otherwise go straight, but pretend you
4438  * stepped diagonally into that next location for a full view next
4439  * time. Conversely, if one of the ? squares is not seen to be closed,
4440  * then there is a potential choice. We check to see whether it is a
4441  * potential corner or an intersection/room entrance.  If the square
4442  * two spaces straight ahead, and the space marked with 's' are both
4443  * unknown space, then it is a potential corner and enter if
4444  * find_examine is set, otherwise must stop because it is not a
4445  * corner.
4446  */
4447
4448
4449
4450
4451 /*
4452  * Hack -- allow quick "cycling" through the legal directions
4453  */
4454 static byte cycle[] =
4455 { 1, 2, 3, 6, 9, 8, 7, 4, 1, 2, 3, 6, 9, 8, 7, 4, 1 };
4456
4457 /*
4458  * Hack -- map each direction into the "middle" of the "cycle[]" array
4459  */
4460 static byte chome[] =
4461 { 0, 8, 9, 10, 7, 0, 11, 6, 5, 4 };
4462
4463 /*
4464  * The direction we are running
4465  */
4466 static byte find_current;
4467
4468 /*
4469  * The direction we came from
4470  */
4471 static byte find_prevdir;
4472
4473 /*
4474  * We are looking for open area
4475  */
4476 static bool find_openarea;
4477
4478 /*
4479  * We are looking for a break
4480  */
4481 static bool find_breakright;
4482 static bool find_breakleft;
4483
4484
4485
4486 /*
4487  * Initialize the running algorithm for a new direction.
4488  *
4489  * Diagonal Corridor -- allow diaginal entry into corridors.
4490  *
4491  * Blunt Corridor -- If there is a wall two spaces ahead and
4492  * we seem to be in a corridor, then force a turn into the side
4493  * corridor, must be moving straight into a corridor here. ???
4494  *
4495  * Diagonal Corridor    Blunt Corridor (?)
4496  *       # #                  #
4497  *       #x#                 @x#
4498  *       @p.                  p
4499  */
4500 static void run_init(int dir)
4501 {
4502         int             row, col, deepleft, deepright;
4503         int             i, shortleft, shortright;
4504
4505
4506         /* Save the direction */
4507         find_current = dir;
4508
4509         /* Assume running straight */
4510         find_prevdir = dir;
4511
4512         /* Assume looking for open area */
4513         find_openarea = TRUE;
4514
4515         /* Assume not looking for breaks */
4516         find_breakright = find_breakleft = FALSE;
4517
4518         /* Assume no nearby walls */
4519         deepleft = deepright = FALSE;
4520         shortright = shortleft = FALSE;
4521
4522         p_ptr->run_py = py;
4523         p_ptr->run_px = px;
4524
4525         /* Find the destination grid */
4526         row = py + ddy[dir];
4527         col = px + ddx[dir];
4528
4529         /* Extract cycle index */
4530         i = chome[dir];
4531
4532         /* Check for walls */
4533         if (see_wall(cycle[i+1], py, px))
4534         {
4535                 find_breakleft = TRUE;
4536                 shortleft = TRUE;
4537         }
4538         else if (see_wall(cycle[i+1], row, col))
4539         {
4540                 find_breakleft = TRUE;
4541                 deepleft = TRUE;
4542         }
4543
4544         /* Check for walls */
4545         if (see_wall(cycle[i-1], py, px))
4546         {
4547                 find_breakright = TRUE;
4548                 shortright = TRUE;
4549         }
4550         else if (see_wall(cycle[i-1], row, col))
4551         {
4552                 find_breakright = TRUE;
4553                 deepright = TRUE;
4554         }
4555
4556         /* Looking for a break */
4557         if (find_breakleft && find_breakright)
4558         {
4559                 /* Not looking for open area */
4560                 find_openarea = FALSE;
4561
4562                 /* Hack -- allow angled corridor entry */
4563                 if (dir & 0x01)
4564                 {
4565                         if (deepleft && !deepright)
4566                         {
4567                                 find_prevdir = cycle[i - 1];
4568                         }
4569                         else if (deepright && !deepleft)
4570                         {
4571                                 find_prevdir = cycle[i + 1];
4572                         }
4573                 }
4574
4575                 /* Hack -- allow blunt corridor entry */
4576                 else if (see_wall(cycle[i], row, col))
4577                 {
4578                         if (shortleft && !shortright)
4579                         {
4580                                 find_prevdir = cycle[i - 2];
4581                         }
4582                         else if (shortright && !shortleft)
4583                         {
4584                                 find_prevdir = cycle[i + 2];
4585                         }
4586                 }
4587         }
4588 }
4589
4590
4591 /*
4592  * Update the current "run" path
4593  *
4594  * Return TRUE if the running should be stopped
4595  */
4596 static bool run_test(void)
4597 {
4598         int         prev_dir, new_dir, check_dir = 0;
4599         int         row, col;
4600         int         i, max, inv;
4601         int         option = 0, option2 = 0;
4602         cave_type   *c_ptr;
4603         byte feat;
4604
4605         /* Where we came from */
4606         prev_dir = find_prevdir;
4607
4608
4609         /* Range of newly adjacent grids */
4610         max = (prev_dir & 0x01) + 1;
4611
4612         /* break run when leaving trap detected region */
4613         if ((disturb_trap_detect || alert_trap_detect)
4614             && p_ptr->dtrap && !(cave[py][px].info & CAVE_IN_DETECT))
4615         {
4616                 /* No duplicate warning */
4617                 p_ptr->dtrap = FALSE;
4618
4619                 /* You are just on the edge */
4620                 if (!(cave[py][px].info & CAVE_UNSAFE))
4621                 {
4622                         if (alert_trap_detect)
4623                         {
4624 #ifdef JP
4625                                 msg_print("* Ãí°Õ:¤³¤ÎÀè¤Ï¥È¥é¥Ã¥×¤Î´¶ÃÎÈϰϳ°¤Ç¤¹¡ª *");
4626 #else
4627                                 msg_print("*Leaving trap detect region!*");
4628 #endif
4629                         }
4630
4631                         if (disturb_trap_detect)
4632                         {
4633                                 /* Break Run */
4634                                 return(TRUE);
4635                         }
4636                 }
4637         }
4638
4639         /* Look at every newly adjacent square. */
4640         for (i = -max; i <= max; i++)
4641         {
4642                 s16b this_o_idx, next_o_idx = 0;
4643
4644
4645                 /* New direction */
4646                 new_dir = cycle[chome[prev_dir] + i];
4647
4648                 /* New location */
4649                 row = py + ddy[new_dir];
4650                 col = px + ddx[new_dir];
4651
4652                 /* Access grid */
4653                 c_ptr = &cave[row][col];
4654
4655                 /* Feature code (applying "mimic" field) */
4656                 feat = c_ptr->mimic ? c_ptr->mimic : f_info[c_ptr->feat].mimic;
4657
4658                 /* Visible monsters abort running */
4659                 if (c_ptr->m_idx)
4660                 {
4661                         monster_type *m_ptr = &m_list[c_ptr->m_idx];
4662
4663                         /* Visible monster */
4664                         if (m_ptr->ml) return (TRUE);
4665                 }
4666
4667                 /* Visible objects abort running */
4668                 for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
4669                 {
4670                         object_type *o_ptr;
4671
4672                         /* Acquire object */
4673                         o_ptr = &o_list[this_o_idx];
4674
4675                         /* Acquire next object */
4676                         next_o_idx = o_ptr->next_o_idx;
4677
4678                         /* Visible object */
4679                         if (o_ptr->marked) return (TRUE);
4680                 }
4681
4682
4683                 /* Assume unknown */
4684                 inv = TRUE;
4685
4686                 /* Check memorized grids */
4687                 if (c_ptr->info & (CAVE_MARK))
4688                 {
4689                         bool notice = TRUE;
4690
4691                         /* Examine the terrain */
4692                         switch (feat)
4693                         {
4694                                 /* Floors */
4695                                 case FEAT_FLOOR:
4696
4697                                 /* Invis traps */
4698                                 case FEAT_INVIS:
4699
4700                                 /* Normal veins */
4701                                 case FEAT_MAGMA:
4702                                 case FEAT_QUARTZ:
4703
4704                                 /* Hidden treasure */
4705                                 case FEAT_MAGMA_H:
4706                                 case FEAT_QUARTZ_H:
4707
4708                                 /* Known treasure (almost uninteresting) */
4709                                 case FEAT_MAGMA_K:
4710                                 case FEAT_QUARTZ_K:
4711
4712                                 /* Walls */
4713                                 case FEAT_RUBBLE:
4714                                 case FEAT_WALL_EXTRA:
4715                                 case FEAT_WALL_INNER:
4716                                 case FEAT_WALL_OUTER:
4717                                 case FEAT_WALL_SOLID:
4718                                 case FEAT_PERM_EXTRA:
4719                                 case FEAT_PERM_INNER:
4720                                 case FEAT_PERM_OUTER:
4721                                 case FEAT_PERM_SOLID:
4722                                 /* dirt, grass, trees, ... */
4723                                 case FEAT_SHAL_WATER:
4724                                 case FEAT_DIRT:
4725                                 case FEAT_GRASS:
4726                                 case FEAT_DEEP_GRASS:
4727                                 case FEAT_FLOWER:
4728                                 case FEAT_DARK_PIT:
4729                                 case FEAT_TREES:
4730                                 case FEAT_MOUNTAIN:
4731                                 {
4732                                         /* Ignore */
4733                                         notice = FALSE;
4734
4735                                         /* Done */
4736                                         break;
4737                                 }
4738
4739                                 /* quest features */
4740                                 case FEAT_QUEST_ENTER:
4741                                 case FEAT_QUEST_EXIT:
4742                                 {
4743                                         /* Notice */
4744                                         notice = TRUE;
4745
4746                                         /* Done */
4747                                         break;
4748                                 }
4749
4750                                 case FEAT_DEEP_LAVA:
4751                                 case FEAT_SHAL_LAVA:
4752                                 {
4753                                         /* Ignore */
4754                                         if (p_ptr->invuln || p_ptr->immune_fire) notice = FALSE;
4755
4756                                         /* Done */
4757                                         break;
4758                                 }
4759
4760                                 case FEAT_DEEP_WATER:
4761                                 {
4762                                         /* Ignore */
4763                                         if (p_ptr->ffall || p_ptr->total_weight<= (((u32b)adj_str_wgt[p_ptr->stat_ind[A_STR]]*(p_ptr->pclass == CLASS_BERSERKER ? 150 : 100))/2)) notice = FALSE;
4764
4765                                         /* Done */
4766                                         break;
4767                                 }
4768
4769                                 /* Open doors */
4770                                 case FEAT_OPEN:
4771                                 case FEAT_BROKEN:
4772                                 {
4773                                         /* Option -- ignore */
4774                                         if (find_ignore_doors) notice = FALSE;
4775
4776                                         /* Done */
4777                                         break;
4778                                 }
4779
4780                                 /* Stairs */
4781                                 case FEAT_LESS:
4782                                 case FEAT_MORE:
4783                                 case FEAT_LESS_LESS:
4784                                 case FEAT_MORE_MORE:
4785                                 case FEAT_ENTRANCE:
4786                                 {
4787                                         /* Option -- ignore */
4788                                         if (find_ignore_stairs) notice = FALSE;
4789
4790                                         /* Done */
4791                                         break;
4792                                 }
4793                         }
4794
4795                         /* Interesting feature */
4796                         if (notice) return (TRUE);
4797
4798                         /* The grid is "visible" */
4799                         inv = FALSE;
4800                 }
4801
4802                 /* Analyze unknown grids and floors */
4803 /*              if (inv || cave_floor_bold(row, col) || */
4804 /*                  (cave[row][col].feat == FEAT_TREES)) */
4805                 if (inv || cave_floor_bold(row, col))
4806                 {
4807                         /* Looking for open area */
4808                         if (find_openarea)
4809                         {
4810                                 /* Nothing */
4811                         }
4812
4813                         /* The first new direction. */
4814                         else if (!option)
4815                         {
4816                                 option = new_dir;
4817                         }
4818
4819                         /* Three new directions. Stop running. */
4820                         else if (option2)
4821                         {
4822                                 return (TRUE);
4823                         }
4824
4825                         /* Two non-adjacent new directions.  Stop running. */
4826                         else if (option != cycle[chome[prev_dir] + i - 1])
4827                         {
4828                                 return (TRUE);
4829                         }
4830
4831                         /* Two new (adjacent) directions (case 1) */
4832                         else if (new_dir & 0x01)
4833                         {
4834                                 check_dir = cycle[chome[prev_dir] + i - 2];
4835                                 option2 = new_dir;
4836                         }
4837
4838                         /* Two new (adjacent) directions (case 2) */
4839                         else
4840                         {
4841                                 check_dir = cycle[chome[prev_dir] + i + 1];
4842                                 option2 = option;
4843                                 option = new_dir;
4844                         }
4845                 }
4846
4847                 /* Obstacle, while looking for open area */
4848                 else
4849                 {
4850                         if (find_openarea)
4851                         {
4852                                 if (i < 0)
4853                                 {
4854                                         /* Break to the right */
4855                                         find_breakright = TRUE;
4856                                 }
4857
4858                                 else if (i > 0)
4859                                 {
4860                                         /* Break to the left */
4861                                         find_breakleft = TRUE;
4862                                 }
4863                         }
4864                 }
4865         }
4866
4867
4868         /* Looking for open area */
4869         if (find_openarea)
4870         {
4871                 /* Hack -- look again */
4872                 for (i = -max; i < 0; i++)
4873                 {
4874                         new_dir = cycle[chome[prev_dir] + i];
4875
4876                         row = py + ddy[new_dir];
4877                         col = px + ddx[new_dir];
4878
4879                         /* Access grid */
4880                         c_ptr = &cave[row][col];
4881
4882                         /* Feature code (applying "mimic" field) */
4883                         feat = c_ptr->mimic ? c_ptr->mimic : f_info[c_ptr->feat].mimic;
4884
4885                         /* Unknown grid or non-wall XXX XXX XXX cave_floor_grid(c_ptr)) */
4886                         if (!(c_ptr->info & (CAVE_MARK)) ||
4887                             ((feat <= FEAT_DOOR_TAIL) ||
4888                              (feat == FEAT_FLOWER) ||
4889                              (feat == FEAT_DEEP_GRASS) ||
4890                              ((feat >= FEAT_DEEP_WATER) &&
4891                               (feat <= FEAT_GRASS))))
4892
4893                         {
4894                                 /* Looking to break right */
4895                                 if (find_breakright)
4896                                 {
4897                                         return (TRUE);
4898                                 }
4899                         }
4900
4901                         /* Obstacle */
4902                         else
4903                         {
4904                                 /* Looking to break left */
4905                                 if (find_breakleft)
4906                                 {
4907                                         return (TRUE);
4908                                 }
4909                         }
4910                 }
4911
4912                 /* Hack -- look again */
4913                 for (i = max; i > 0; i--)
4914                 {
4915                         new_dir = cycle[chome[prev_dir] + i];
4916
4917                         row = py + ddy[new_dir];
4918                         col = px + ddx[new_dir];
4919
4920                         /* Access grid */
4921                         c_ptr = &cave[row][col];
4922
4923                         /* Feature code (applying "mimic" field) */
4924                         feat = c_ptr->mimic ? c_ptr->mimic : f_info[c_ptr->feat].mimic;
4925
4926                         /* Unknown grid or non-wall XXX XXX XXX cave_floor_grid(c_ptr)) */
4927                         if (!(c_ptr->info & (CAVE_MARK)) ||
4928                             ((feat <= FEAT_DOOR_TAIL) ||
4929                              (feat == FEAT_FLOWER) ||
4930                              (feat == FEAT_DEEP_GRASS) ||
4931                              ((feat >= FEAT_DEEP_WATER) &&
4932                               (feat <= FEAT_GRASS))))
4933
4934                         {
4935                                 /* Looking to break left */
4936                                 if (find_breakleft)
4937                                 {
4938                                         return (TRUE);
4939                                 }
4940                         }
4941
4942                         /* Obstacle */
4943                         else
4944                         {
4945                                 /* Looking to break right */
4946                                 if (find_breakright)
4947                                 {
4948                                         return (TRUE);
4949                                 }
4950                         }
4951                 }
4952         }
4953
4954
4955         /* Not looking for open area */
4956         else
4957         {
4958                 /* No options */
4959                 if (!option)
4960                 {
4961                         return (TRUE);
4962                 }
4963
4964                 /* One option */
4965                 else if (!option2)
4966                 {
4967                         /* Primary option */
4968                         find_current = option;
4969
4970                         /* No other options */
4971                         find_prevdir = option;
4972                 }
4973
4974                 /* Two options, examining corners */
4975                 else if (find_examine && !find_cut)
4976                 {
4977                         /* Primary option */
4978                         find_current = option;
4979
4980                         /* Hack -- allow curving */
4981                         find_prevdir = option2;
4982                 }
4983
4984                 /* Two options, pick one */
4985                 else
4986                 {
4987                         /* Get next location */
4988                         row = py + ddy[option];
4989                         col = px + ddx[option];
4990
4991                         /* Don't see that it is closed off. */
4992                         /* This could be a potential corner or an intersection. */
4993                         if (!see_wall(option, row, col) ||
4994                             !see_wall(check_dir, row, col))
4995                         {
4996                                 /* Can not see anything ahead and in the direction we */
4997                                 /* are turning, assume that it is a potential corner. */
4998                                 if (find_examine &&
4999                                     see_nothing(option, row, col) &&
5000                                     see_nothing(option2, row, col))
5001                                 {
5002                                         find_current = option;
5003                                         find_prevdir = option2;
5004                                 }
5005
5006                                 /* STOP: we are next to an intersection or a room */
5007                                 else
5008                                 {
5009                                         return (TRUE);
5010                                 }
5011                         }
5012
5013                         /* This corner is seen to be enclosed; we cut the corner. */
5014                         else if (find_cut)
5015                         {
5016                                 find_current = option2;
5017                                 find_prevdir = option2;
5018                         }
5019
5020                         /* This corner is seen to be enclosed, and we */
5021                         /* deliberately go the long way. */
5022                         else
5023                         {
5024                                 find_current = option;
5025                                 find_prevdir = option2;
5026                         }
5027                 }
5028         }
5029
5030
5031         /* About to hit a known wall, stop */
5032         if (see_wall(find_current, py, px))
5033         {
5034                 return (TRUE);
5035         }
5036
5037
5038         /* Failure */
5039         return (FALSE);
5040 }
5041
5042
5043
5044 /*
5045  * Take one step along the current "run" path
5046  */
5047 void run_step(int dir)
5048 {
5049         /* Start running */
5050         if (dir)
5051         {
5052                 cave_type   *c_ptr;
5053                 byte feat;
5054         
5055                 /* Access grid */
5056                 c_ptr = &cave[py+ddy[dir]][px+ddx[dir]];
5057
5058                 /* Feature code (applying "mimic" field) */
5059                 feat = c_ptr->mimic ? c_ptr->mimic : f_info[c_ptr->feat].mimic;
5060
5061                 /* Hack -- do not start silly run */
5062                 if (see_wall(dir, py, px) &&
5063                    (feat != FEAT_TREES))
5064                 {
5065                         /* Message */
5066 #ifdef JP
5067                         msg_print("¤½¤ÎÊý¸þ¤Ë¤Ï¹Ô¤±¤Þ¤»¤ó¡£");
5068 #else
5069                         msg_print("You cannot run in that direction.");
5070 #endif
5071
5072
5073                         /* Disturb */
5074                         disturb(0, 0);
5075
5076                         /* Done */
5077                         return;
5078                 }
5079
5080                 /* Calculate torch radius */
5081                 p_ptr->update |= (PU_TORCH);
5082
5083                 /* Initialize */
5084                 run_init(dir);
5085         }
5086
5087         /* Keep running */
5088         else
5089         {
5090                 /* Update run */
5091                 if (run_test())
5092                 {
5093                         /* Disturb */
5094                         disturb(0, 0);
5095
5096                         /* Done */
5097                         return;
5098                 }
5099         }
5100
5101         /* Decrease the run counter */
5102         if (--running <= 0) return;
5103
5104         /* Take time */
5105         energy_use = 100;
5106
5107         /* Move the player, using the "pickup" flag */
5108 #ifdef ALLOW_EASY_DISARM /* TNB */
5109
5110         move_player(find_current, FALSE, FALSE);
5111
5112 #else /* ALLOW_EASY_DISARM -- TNB */
5113
5114         move_player(find_current, always_pickup, FALSE);
5115
5116 #endif /* ALLOW_EASY_DISARM -- TNB */
5117
5118         if ((py == p_ptr->run_py) && (px == p_ptr->run_px))
5119         {
5120                 p_ptr->run_py = 0;
5121                 p_ptr->run_px = 0;
5122                 disturb(0, 0);
5123         }
5124 }