OSDN Git Service

ヘルスバー更新に関する修正.
[hengband/hengband.git] / src / melee2.c
1 /* File: melee2.c */
2
3 /*
4  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
5  *
6  * This software may be copied and distributed for educational, research,
7  * and not for profit purposes provided that this copyright and statement
8  * are included in all such copies.  Other copyrights may also apply.
9  */
10
11 /* Purpose: Monster spells and movement */
12
13 /*
14 * This file has several additions to it by Keldon Jones (keldon@umr.edu)
15 * to improve the general quality of the AI (version 0.1.1).
16 */
17
18 #include "angband.h"
19
20 #define SPEAK_CHANCE 8
21 #define GRINDNOISE 20
22 #define CYBERNOISE 20
23
24 /*
25  * Calculate the direction to the next enemy
26  */
27 static bool get_enemy_dir(int m_idx, int *mm)
28 {
29         int i;
30         int x = 0, y = 0;
31         int t_idx;
32         int start;
33         int plus = 1;
34
35         monster_type *m_ptr = &m_list[m_idx];
36         monster_race *r_ptr = &r_info[m_ptr->r_idx];
37
38         monster_type *t_ptr;
39
40         if (riding_t_m_idx && player_bold(m_ptr->fy, m_ptr->fx))
41         {
42                 y = m_list[riding_t_m_idx].fy;
43                 x = m_list[riding_t_m_idx].fx;
44         }
45         else if (is_pet(m_ptr) && pet_t_m_idx)
46         {
47                 y = m_list[pet_t_m_idx].fy;
48                 x = m_list[pet_t_m_idx].fx;
49         }
50         else
51         {
52                 if (p_ptr->inside_battle)
53                 {
54                         start = randint1(m_max-1)+m_max;
55                         if(randint0(2)) plus = -1;
56                 }
57                 else start = m_max + 1;
58
59                 /* Scan thru all monsters */
60                 for (i = start; ((i < start + m_max) && (i > start - m_max)); i+=plus)
61                 {
62                         int dummy = (i % m_max);
63
64                         if (!dummy) continue;
65
66                         t_idx = dummy;
67                         t_ptr = &m_list[t_idx];
68
69                         /* The monster itself isn't a target */
70                         if (t_ptr == m_ptr) continue;
71
72                         /* Paranoia -- Skip dead monsters */
73                         if (!t_ptr->r_idx) continue;
74
75                         if (is_pet(m_ptr))
76                         {
77                                 /* Hack -- only fight away from player */
78                                 if (p_ptr->pet_follow_distance < 0)
79                                 {
80                                         /* No fighting near player */
81                                         if (t_ptr->cdis <= (0 - p_ptr->pet_follow_distance))
82                                         {
83                                                 continue;
84                                         }
85                                 }
86                                 /* Hack -- no fighting away from player */
87                                 else if ((m_ptr->cdis < t_ptr->cdis) &&
88                                                         (t_ptr->cdis > p_ptr->pet_follow_distance))
89                                 {
90                                         continue;
91                                 }
92
93                                 if (r_ptr->aaf < t_ptr->cdis) continue;
94                         }
95
96                         /* Monster must be 'an enemy' */
97                         if (!are_enemies(m_ptr, t_ptr)) continue;
98
99                         /* Monster must be projectable if we can't pass through walls */
100                         if (((r_ptr->flags2 & RF2_PASS_WALL) && ((m_idx != p_ptr->riding) || p_ptr->pass_wall)) ||
101                             ((r_ptr->flags2 & RF2_KILL_WALL) && (m_idx != p_ptr->riding)))
102                         {
103                                 if (!in_disintegration_range(m_ptr->fy, m_ptr->fx, t_ptr->fy, t_ptr->fx)) continue;
104                         }
105                         else
106                         {
107                                 if (!projectable(m_ptr->fy, m_ptr->fx, t_ptr->fy, t_ptr->fx)) continue;
108                         }
109
110                         /* OK -- we've got a target */
111                         y = t_ptr->fy;
112                         x = t_ptr->fx;
113
114                         break;
115                 }
116                 if (!x && !y) return FALSE;
117         }
118
119         /* Extract the direction */
120         x -= m_ptr->fx;
121         y -= m_ptr->fy;
122
123         /* North */
124         if ((y < 0) && (x == 0))
125         {
126                 mm[0] = 8;
127                 mm[1] = 7;
128                 mm[2] = 9;
129         }
130         /* South */
131         else if ((y > 0) && (x == 0))
132         {
133                 mm[0] = 2;
134                 mm[1] = 1;
135                 mm[2] = 3;
136         }
137         /* East */
138         else if ((x > 0) && (y == 0))
139         {
140                 mm[0] = 6;
141                 mm[1] = 9;
142                 mm[2] = 3;
143         }
144         /* West */
145         else if ((x < 0) && (y == 0))
146         {
147                 mm[0] = 4;
148                 mm[1] = 7;
149                 mm[2] = 1;
150         }
151         /* North-West */
152         else if ((y < 0) && (x < 0))
153         {
154                 mm[0] = 7;
155                 mm[1] = 4;
156                 mm[2] = 8;
157         }
158         /* North-East */
159         else if ((y < 0) && (x > 0))
160         {
161                 mm[0] = 9;
162                 mm[1] = 6;
163                 mm[2] = 8;
164         }
165         /* South-West */
166         else if ((y > 0) && (x < 0))
167         {
168                 mm[0] = 1;
169                 mm[1] = 4;
170                 mm[2] = 2;
171         }
172         /* South-East */
173         else if ((y > 0) && (x > 0))
174         {
175                 mm[0] = 3;
176                 mm[1] = 6;
177                 mm[2] = 2;
178         }
179
180         /* Found a monster */
181         return TRUE;
182 }
183
184
185 /*
186  * Hack, based on mon_take_hit... perhaps all monster attacks on
187  * other monsters should use this?
188  */
189 void mon_take_hit_mon(int m_idx, int dam, bool *fear, cptr note, int who)
190 {
191         monster_type    *m_ptr = &m_list[m_idx];
192
193         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
194
195         char m_name[160];
196
197         bool seen = is_seen(m_ptr);
198
199         /* Can the player be aware of this attack? */
200         bool known = (m_ptr->cdis <= MAX_SIGHT);
201
202         /* Extract monster name */
203         monster_desc(m_name, m_ptr, 0);
204
205         /* Redraw (later) if needed */
206         if (m_ptr->ml)
207         {
208                 if (p_ptr->health_who == m_idx) p_ptr->redraw |= (PR_HEALTH);
209                 if (p_ptr->riding == m_idx) p_ptr->redraw |= (PR_UHEALTH);
210         }
211
212         /* Wake it up */
213         m_ptr->csleep = 0;
214
215         if (r_ptr->flags7 & RF7_HAS_LD_MASK) p_ptr->update |= (PU_MON_LITE);
216
217         if (p_ptr->riding && (m_idx == p_ptr->riding)) disturb(1, 0);
218
219         if (m_ptr->invulner && randint0(PENETRATE_INVULNERABILITY))
220         {
221                 if (seen)
222                 {
223 #ifdef JP
224 msg_format("%^s¤Ï¥À¥á¡¼¥¸¤ò¼õ¤±¤Ê¤¤¡£", m_name);
225 #else
226                         msg_format("%^s is unharmed.", m_name);
227 #endif
228
229                 }
230
231                 return;
232         }
233
234         if (r_ptr->flagsr & RFR_RES_ALL)
235         {
236                 if(dam > 0)
237                 {
238                         dam /= 100;
239                         if((dam == 0) && one_in_(3)) dam = 1;
240                 }
241                 if (dam==0)
242                 {
243                         if (seen)
244                         {
245 #ifdef JP
246 msg_format("%^s¤Ï¥À¥á¡¼¥¸¤ò¼õ¤±¤Ê¤¤¡£", m_name);
247 #else
248                                 msg_format("%^s is unharmed.", m_name);
249 #endif
250
251                         }
252                         return;
253                 }
254         }
255
256         /* Hurt it */
257         m_ptr->hp -= dam;
258
259         /* It is dead now... or is it? */
260         if (m_ptr->hp < 0)
261         {
262                 if (((r_ptr->flags1 & (RF1_UNIQUE | RF1_QUESTOR)) ||
263                     (r_ptr->flags7 & RF7_NAZGUL)) &&
264                     !p_ptr->inside_battle)
265                 {
266                         m_ptr->hp = 1;
267                 }
268                 else
269                 {
270                         /* Make a sound */
271                         if (!monster_living(r_ptr))
272                         {
273                                 sound(SOUND_N_KILL);
274                         }
275                         else
276                         {
277                                 sound(SOUND_KILL);
278                         }
279
280                         if (known)
281                         {
282                                 monster_desc(m_name, m_ptr, MD_TRUE_NAME);
283                                 /* Unseen death by normal attack */
284                                 if (!seen)
285                                 {
286                                         mon_fight = TRUE;
287                                 }
288                                 /* Death by special attack */
289                                 else if (note)
290                                 {
291 #ifdef JP
292 msg_format("%^s%s", m_name, note);
293 #else
294                                         msg_format("%^s%s", m_name, note);
295 #endif
296
297                                 }
298                                 /* Death by normal attack -- nonliving monster */
299                                 else if (!monster_living(r_ptr))
300                                 {
301 #ifdef JP
302 msg_format("%^s¤ÏÇ˲õ¤µ¤ì¤¿¡£", m_name);
303 #else
304                                         msg_format("%^s is destroyed.", m_name);
305 #endif
306
307                                 }
308                                 /* Death by normal attack -- living monster */
309                                 else
310                                 {
311 #ifdef JP
312 msg_format("%^s¤Ï»¦¤µ¤ì¤¿¡£", m_name);
313 #else
314                                         msg_format("%^s is killed.", m_name);
315 #endif
316
317                                 }
318                         }
319
320                         monster_gain_exp(who, m_ptr->r_idx);
321
322                         /* Generate treasure */
323                         monster_death(m_idx, FALSE);
324
325                         /* Delete the monster */
326                         delete_monster_idx(m_idx);
327
328                         /* Not afraid */
329                         (*fear) = FALSE;
330
331                         /* Monster is dead */
332                         return;
333                 }
334         }
335
336 #ifdef ALLOW_FEAR
337
338         /* Mega-Hack -- Pain cancels fear */
339         if (m_ptr->monfear && (dam > 0))
340         {
341                 int tmp = randint1(dam / 4);
342
343                 /* Cure a little fear */
344                 if (tmp < m_ptr->monfear)
345                 {
346                         /* Reduce fear */
347                         m_ptr->monfear -= tmp;
348                 }
349
350                 /* Cure all the fear */
351                 else
352                 {
353                         /* Cure fear */
354                         m_ptr->monfear = 0;
355
356                         /* No more fear */
357                         (*fear) = FALSE;
358                 }
359         }
360
361         /* Sometimes a monster gets scared by damage */
362         if (!m_ptr->monfear && !(r_ptr->flags3 & RF3_NO_FEAR))
363         {
364                 int             percentage;
365
366                 /* Percentage of fully healthy */
367                 percentage = (100L * m_ptr->hp) / m_ptr->maxhp;
368
369                 /*
370                 * Run (sometimes) if at 10% or less of max hit points,
371                 * or (usually) when hit for half its current hit points
372                  */
373                 if (((percentage <= 10) && (randint0(10) < percentage)) ||
374                         ((dam >= m_ptr->hp) && (randint0(100) < 80)))
375                 {
376                         /* Hack -- note fear */
377                         (*fear) = TRUE;
378
379                         /* XXX XXX XXX Hack -- Add some timed fear */
380                         m_ptr->monfear += (randint1(10) +
381                                 (((dam >= m_ptr->hp) && (percentage > 7)) ?
382                                 20 : ((11 - percentage) * 5)));
383                 }
384         }
385
386 #endif /* ALLOW_FEAR */
387
388         if ((dam > 0) && !is_pet(m_ptr) && !is_friendly(m_ptr) && (who != m_idx))
389         {
390                 if (is_pet(&m_list[who]) && !player_bold(m_ptr->target_y, m_ptr->target_x))
391                 {
392                         set_target(m_ptr, m_list[who].fy, m_list[who].fx);
393                 }
394         }
395
396         if (p_ptr->riding && (p_ptr->riding == m_idx) && (dam > 0))
397         {
398                 char m_name[80];
399
400                 /* Extract monster name */
401                 monster_desc(m_name, m_ptr, 0);
402
403                 if (m_ptr->hp > m_ptr->maxhp/3) dam = (dam + 1) / 2;
404                 if (rakuba((dam > 200) ? 200 : dam, FALSE))
405                 {
406 #ifdef JP
407 msg_format("%^s¤Ë¿¶¤êÍî¤È¤µ¤ì¤¿¡ª", m_name);
408 #else
409                                 msg_format("You have thrown off from %s!", m_name);
410 #endif
411                 }
412         }
413
414         /* Not dead yet */
415         return;
416 }
417
418
419 /*
420  * Returns whether a given monster will try to run from the player.
421  *
422  * Monsters will attempt to avoid very powerful players.  See below.
423  *
424  * Because this function is called so often, little details are important
425  * for efficiency.  Like not using "mod" or "div" when possible.  And
426  * attempting to check the conditions in an optimal order.  Note that
427  * "(x << 2) == (x * 4)" if "x" has enough bits to hold the result.
428  *
429  * Note that this function is responsible for about one to five percent
430  * of the processor use in normal conditions...
431  */
432 static int mon_will_run(int m_idx)
433 {
434         monster_type *m_ptr = &m_list[m_idx];
435
436 #ifdef ALLOW_TERROR
437
438         monster_race *r_ptr = &r_info[m_ptr->r_idx];
439
440         u16b p_lev, m_lev;
441         u16b p_chp, p_mhp;
442         u16b m_chp, m_mhp;
443         u32b p_val, m_val;
444
445 #endif
446
447         /* Friends can be commanded to avoid the player */
448         if (is_pet(m_ptr))
449         {
450                 /* Are we trying to avoid the player? */
451                 return ((p_ptr->pet_follow_distance < 0) &&
452                                   (m_ptr->cdis <= (0 - p_ptr->pet_follow_distance)));
453         }
454
455         /* Keep monsters from running too far away */
456         if (m_ptr->cdis > MAX_SIGHT + 5) return (FALSE);
457
458         /* All "afraid" monsters will run away */
459         if (m_ptr->monfear) return (TRUE);
460
461 #ifdef ALLOW_TERROR
462
463         /* Nearby monsters will not become terrified */
464         if (m_ptr->cdis <= 5) return (FALSE);
465
466         /* Examine player power (level) */
467         p_lev = p_ptr->lev;
468
469         /* Examine monster power (level plus morale) */
470         m_lev = r_ptr->level + (m_idx & 0x08) + 25;
471
472         /* Optimize extreme cases below */
473         if (m_lev > p_lev + 4) return (FALSE);
474         if (m_lev + 4 <= p_lev) return (TRUE);
475
476         /* Examine player health */
477         p_chp = p_ptr->chp;
478         p_mhp = p_ptr->mhp;
479
480         /* Examine monster health */
481         m_chp = m_ptr->hp;
482         m_mhp = m_ptr->maxhp;
483
484         /* Prepare to optimize the calculation */
485         p_val = (p_lev * p_mhp) + (p_chp << 2); /* div p_mhp */
486         m_val = (m_lev * m_mhp) + (m_chp << 2); /* div m_mhp */
487
488         /* Strong players scare strong monsters */
489         if (p_val * m_mhp > m_val * p_mhp) return (TRUE);
490
491 #endif
492
493         /* Assume no terror */
494         return (FALSE);
495 }
496
497
498
499
500 /*
501  * Search spell castable grid
502  */
503 static bool get_moves_aux2(int m_idx, int *yp, int *xp)
504 {
505         int i, y, x, y1, x1, best = 999;
506
507         cave_type *c_ptr;
508         bool can_open_door = FALSE;
509         int now_cost;
510
511         monster_type *m_ptr = &m_list[m_idx];
512         monster_race *r_ptr = &r_info[m_ptr->r_idx];
513
514         /* Monster location */
515         y1 = m_ptr->fy;
516         x1 = m_ptr->fx;
517
518         /* Monster can already cast spell to player */
519         if (projectable(y1, x1, py, px)) return (FALSE);
520
521         /* Set current grid cost */
522         now_cost = cave[y1][x1].cost;
523         if (now_cost == 0) now_cost = 999;
524
525         /* Can monster bash or open doors? */
526         if (r_ptr->flags2 & (RF2_BASH_DOOR | RF2_OPEN_DOOR))
527         {
528                 can_open_door = TRUE;
529         }
530
531         /* Check nearby grids, diagonals first */
532         for (i = 7; i >= 0; i--)
533         {
534                 int cost;
535
536                 /* Get the location */
537                 y = y1 + ddy_ddd[i];
538                 x = x1 + ddx_ddd[i];
539
540                 /* Ignore locations off of edge */
541                 if (!in_bounds2(y, x)) continue;
542
543                 /* Simply move to player */
544                 if (player_bold(y, x)) return (FALSE);
545
546                 c_ptr = &cave[y][x];
547
548                 cost = c_ptr->cost;
549
550                 /* Monster cannot kill or pass walls */
551                 if (!(((r_ptr->flags2 & RF2_PASS_WALL) && ((m_idx != p_ptr->riding) || p_ptr->pass_wall)) || ((r_ptr->flags2 & RF2_KILL_WALL) && (m_idx != p_ptr->riding))))
552                 {
553                         if (cost == 0) continue;
554                         if (!can_open_door && is_closed_door(c_ptr->feat)) continue;
555                 }
556
557                 /* Hack -- for kill or pass wall monster.. */
558                 if (cost == 0) cost = 998;
559
560                 if (now_cost < cost) continue;
561
562                 if (!projectable(y, x, py, px)) continue;
563
564                 /* Accept louder sounds */
565                 if (best < cost) continue;
566                 best = cost;
567
568                 (*yp) = y1 + ddy_ddd[i];
569                 (*xp) = x1 + ddx_ddd[i];
570         }
571
572         /* No legal move (?) */
573         if (best == 999) return (FALSE);
574
575         /* Success */
576         return (TRUE);
577 }
578
579
580 /*
581  * Choose the "best" direction for "flowing"
582  *
583  * Note that ghosts and rock-eaters are never allowed to "flow",
584  * since they should move directly towards the player.
585  *
586  * Prefer "non-diagonal" directions, but twiddle them a little
587  * to angle slightly towards the player's actual location.
588  *
589  * Allow very perceptive monsters to track old "spoor" left by
590  * previous locations occupied by the player.  This will tend
591  * to have monsters end up either near the player or on a grid
592  * recently occupied by the player (and left via "teleport").
593  *
594  * Note that if "smell" is turned on, all monsters get vicious.
595  *
596  * Also note that teleporting away from a location will cause
597  * the monsters who were chasing you to converge on that location
598  * as long as you are still near enough to "annoy" them without
599  * being close enough to chase directly.  I have no idea what will
600  * happen if you combine "smell" with low "aaf" values.
601  */
602 static bool get_moves_aux(int m_idx, int *yp, int *xp, bool no_flow)
603 {
604         int i, y, x, y1, x1, best;
605
606         cave_type *c_ptr;
607         bool use_scent = FALSE;
608
609         monster_type *m_ptr = &m_list[m_idx];
610         monster_race *r_ptr = &r_info[m_ptr->r_idx];
611
612         /* Can monster cast attack spell? */
613         if (r_ptr->flags4 & (RF4_ATTACK_MASK) ||
614             r_ptr->flags5 & (RF5_ATTACK_MASK) ||
615             r_ptr->flags6 & (RF6_ATTACK_MASK))
616         {
617                 /* Can move spell castable grid? */
618                 if (get_moves_aux2(m_idx, yp, xp)) return (TRUE);
619         }
620
621         /* Monster can't flow */
622         if (no_flow) return (FALSE);
623
624         /* Monster can go through rocks */
625         if ((r_ptr->flags2 & RF2_PASS_WALL) && ((m_idx != p_ptr->riding) || p_ptr->pass_wall)) return (FALSE);
626         if ((r_ptr->flags2 & RF2_KILL_WALL) && (m_idx != p_ptr->riding)) return (FALSE);
627
628         /* Monster location */
629         y1 = m_ptr->fy;
630         x1 = m_ptr->fx;
631
632         /* Hack -- Player can see us, run towards him */
633         if (player_has_los_bold(y1, x1) && projectable(py, px, y1, x1)) return (FALSE);
634
635         /* Monster grid */
636         c_ptr = &cave[y1][x1];
637
638         /* If we can hear noises, advance towards them */
639         if (c_ptr->cost)
640         {
641                 best = 999;
642         }
643
644         /* Otherwise, try to follow a scent trail */
645         else if (c_ptr->when)
646         {
647                 /* Too old smell */
648                 if (cave[py][px].when - c_ptr->when > 127) return (FALSE);
649
650                 use_scent = TRUE;
651                 best = 0;
652         }
653
654         /* Otherwise, advance blindly */
655         else
656         {
657                 return (FALSE);
658         }
659
660         /* Check nearby grids, diagonals first */
661         for (i = 7; i >= 0; i--)
662         {
663                 /* Get the location */
664                 y = y1 + ddy_ddd[i];
665                 x = x1 + ddx_ddd[i];
666
667                 /* Ignore locations off of edge */
668                 if (!in_bounds2(y, x)) continue;
669
670                 c_ptr = &cave[y][x];
671
672                 /* We're following a scent trail */
673                 if (use_scent)
674                 {
675                         int when = c_ptr->when;
676
677                         /* Accept younger scent */
678                         if (best > when) continue;
679                         best = when;
680                 }
681
682                 /* We're using sound */
683                 else
684                 {
685                         int cost;
686
687                         if (r_ptr->flags2 & (RF2_BASH_DOOR | RF2_OPEN_DOOR))
688                                 cost = c_ptr->dist;
689                         else cost = c_ptr->cost;
690
691                         /* Accept louder sounds */
692                         if ((cost == 0) || (best < cost)) continue;
693                         best = cost;
694                 }
695
696                 /* Hack -- Save the "twiddled" location */
697                 (*yp) = py + 16 * ddy_ddd[i];
698                 (*xp) = px + 16 * ddx_ddd[i];
699         }
700
701         /* No legal move (?) */
702         if (best == 999 || best == 0) return (FALSE);
703
704         /* Success */
705         return (TRUE);
706 }
707
708
709 /*
710 * Provide a location to flee to, but give the player a wide berth.
711 *
712 * A monster may wish to flee to a location that is behind the player,
713 * but instead of heading directly for it, the monster should "swerve"
714 * around the player so that he has a smaller chance of getting hit.
715 */
716 static bool get_fear_moves_aux(int m_idx, int *yp, int *xp)
717 {
718         int y, x, y1, x1, fy, fx, gy = 0, gx = 0;
719         int score = -1;
720         int i;
721
722         monster_type *m_ptr = &m_list[m_idx];
723
724         /* Monster location */
725         fy = m_ptr->fy;
726         fx = m_ptr->fx;
727
728         /* Desired destination */
729         y1 = fy - (*yp);
730         x1 = fx - (*xp);
731
732         /* Check nearby grids, diagonals first */
733         for (i = 7; i >= 0; i--)
734         {
735                 int dis, s;
736
737                 /* Get the location */
738                 y = fy + ddy_ddd[i];
739                 x = fx + ddx_ddd[i];
740
741                 /* Ignore locations off of edge */
742                 if (!in_bounds2(y, x)) continue;
743
744                 /* Don't move toward player */
745                 /* if (cave[y][x].dist < 3) continue; */ /* Hmm.. Need it? */
746
747                 /* Calculate distance of this grid from our destination */
748                 dis = distance(y, x, y1, x1);
749
750                 /* Score this grid */
751                 s = 5000 / (dis + 3) - 500 / (cave[y][x].dist + 1);
752
753                 /* No negative scores */
754                 if (s < 0) s = 0;
755
756                 /* Ignore lower scores */
757                 if (s < score) continue;
758
759                 /* Save the score and time */
760                 score = s;
761
762                 /* Save the location */
763                 gy = y;
764                 gx = x;
765         }
766
767         /* No legal move (?) */
768         if (score == -1) return (FALSE);
769
770         /* Find deltas */
771         (*yp) = fy - gy;
772         (*xp) = fx - gx;
773
774         /* Success */
775         return (TRUE);
776 }
777
778 /*
779  * Hack -- Precompute a bunch of calls to distance() in find_safety() and
780  * find_hiding().
781  *
782  * The pair of arrays dist_offsets_y[n] and dist_offsets_x[n] contain the
783  * offsets of all the locations with a distance of n from a central point,
784  * with an offset of (0,0) indicating no more offsets at this distance.
785  *
786  * This is, of course, fairly unreadable, but it eliminates multiple loops
787  * from the previous version.
788  *
789  * It is probably better to replace these arrays with code to compute
790  * the relevant arrays, even if the storage is pre-allocated in hard
791  * coded sizes.  At the very least, code should be included which is
792  * able to generate and dump these arrays (ala "los()").  XXX XXX XXX
793  *
794  * Also, the storage needs could be halved by using bytes.  XXX XXX XXX
795  *
796  * These arrays could be combined into two big arrays, using sub-arrays
797  * to hold the offsets and lengths of each portion of the sub-arrays, and
798  * this could perhaps also be used somehow in the "look" code.  XXX XXX XXX
799  */
800
801
802 static sint d_off_y_0[] =
803 { 0 };
804
805 static sint d_off_x_0[] =
806 { 0 };
807
808
809 static sint d_off_y_1[] =
810 { -1, -1, -1, 0, 0, 1, 1, 1, 0 };
811
812 static sint d_off_x_1[] =
813 { -1, 0, 1, -1, 1, -1, 0, 1, 0 };
814
815
816 static sint d_off_y_2[] =
817 { -1, -1, -2, -2, -2, 0, 0, 1, 1, 2, 2, 2, 0 };
818
819 static sint d_off_x_2[] =
820 { -2, 2, -1, 0, 1, -2, 2, -2, 2, -1, 0, 1, 0 };
821
822
823 static sint d_off_y_3[] =
824 { -1, -1, -2, -2, -3, -3, -3, 0, 0, 1, 1, 2, 2,
825   3, 3, 3, 0 };
826
827 static sint d_off_x_3[] =
828 { -3, 3, -2, 2, -1, 0, 1, -3, 3, -3, 3, -2, 2,
829   -1, 0, 1, 0 };
830
831
832 static sint d_off_y_4[] =
833 { -1, -1, -2, -2, -3, -3, -3, -3, -4, -4, -4, 0,
834   0, 1, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 0 };
835
836 static sint d_off_x_4[] =
837 { -4, 4, -3, 3, -2, -3, 2, 3, -1, 0, 1, -4, 4,
838   -4, 4, -3, 3, -2, -3, 2, 3, -1, 0, 1, 0 };
839
840
841 static sint d_off_y_5[] =
842 { -1, -1, -2, -2, -3, -3, -4, -4, -4, -4, -5, -5,
843   -5, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 4, 4, 5, 5,
844   5, 0 };
845
846 static sint d_off_x_5[] =
847 { -5, 5, -4, 4, -4, 4, -2, -3, 2, 3, -1, 0, 1,
848   -5, 5, -5, 5, -4, 4, -4, 4, -2, -3, 2, 3, -1,
849   0, 1, 0 };
850
851
852 static sint d_off_y_6[] =
853 { -1, -1, -2, -2, -3, -3, -4, -4, -5, -5, -5, -5,
854   -6, -6, -6, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5,
855   5, 5, 6, 6, 6, 0 };
856
857 static sint d_off_x_6[] =
858 { -6, 6, -5, 5, -5, 5, -4, 4, -2, -3, 2, 3, -1,
859   0, 1, -6, 6, -6, 6, -5, 5, -5, 5, -4, 4, -2,
860   -3, 2, 3, -1, 0, 1, 0 };
861
862
863 static sint d_off_y_7[] =
864 { -1, -1, -2, -2, -3, -3, -4, -4, -5, -5, -5, -5,
865   -6, -6, -6, -6, -7, -7, -7, 0, 0, 1, 1, 2, 2, 3,
866   3, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 0 };
867
868 static sint d_off_x_7[] =
869 { -7, 7, -6, 6, -6, 6, -5, 5, -4, -5, 4, 5, -2,
870   -3, 2, 3, -1, 0, 1, -7, 7, -7, 7, -6, 6, -6,
871   6, -5, 5, -4, -5, 4, 5, -2, -3, 2, 3, -1, 0,
872   1, 0 };
873
874
875 static sint d_off_y_8[] =
876 { -1, -1, -2, -2, -3, -3, -4, -4, -5, -5, -6, -6,
877   -6, -6, -7, -7, -7, -7, -8, -8, -8, 0, 0, 1, 1,
878   2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7,
879   8, 8, 8, 0 };
880
881 static sint d_off_x_8[] =
882 { -8, 8, -7, 7, -7, 7, -6, 6, -6, 6, -4, -5, 4,
883   5, -2, -3, 2, 3, -1, 0, 1, -8, 8, -8, 8, -7,
884   7, -7, 7, -6, 6, -6, 6, -4, -5, 4, 5, -2, -3,
885   2, 3, -1, 0, 1, 0 };
886
887
888 static sint d_off_y_9[] =
889 { -1, -1, -2, -2, -3, -3, -4, -4, -5, -5, -6, -6,
890   -7, -7, -7, -7, -8, -8, -8, -8, -9, -9, -9, 0,
891   0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 7,
892   7, 8, 8, 8, 8, 9, 9, 9, 0 };
893
894 static sint d_off_x_9[] =
895 { -9, 9, -8, 8, -8, 8, -7, 7, -7, 7, -6, 6, -4,
896   -5, 4, 5, -2, -3, 2, 3, -1, 0, 1, -9, 9, -9,
897   9, -8, 8, -8, 8, -7, 7, -7, 7, -6, 6, -4, -5,
898   4, 5, -2, -3, 2, 3, -1, 0, 1, 0 };
899
900
901 static sint *dist_offsets_y[10] =
902 {
903         d_off_y_0, d_off_y_1, d_off_y_2, d_off_y_3, d_off_y_4,
904         d_off_y_5, d_off_y_6, d_off_y_7, d_off_y_8, d_off_y_9
905 };
906
907 static sint *dist_offsets_x[10] =
908 {
909         d_off_x_0, d_off_x_1, d_off_x_2, d_off_x_3, d_off_x_4,
910         d_off_x_5, d_off_x_6, d_off_x_7, d_off_x_8, d_off_x_9
911 };
912
913 /*
914 * Choose a "safe" location near a monster for it to run toward.
915 *
916 * A location is "safe" if it can be reached quickly and the player
917 * is not able to fire into it (it isn't a "clean shot").  So, this will
918 * cause monsters to "duck" behind walls.  Hopefully, monsters will also
919 * try to run towards corridor openings if they are in a room.
920 *
921 * This function may take lots of CPU time if lots of monsters are
922 * fleeing.
923 *
924 * Return TRUE if a safe location is available.
925 */
926 static bool find_safety(int m_idx, int *yp, int *xp)
927 {
928         monster_type *m_ptr = &m_list[m_idx];
929
930         int fy = m_ptr->fy;
931         int fx = m_ptr->fx;
932
933         int y, x, dy, dx, d, dis, i;
934         int gy = 0, gx = 0, gdis = 0;
935
936         sint *y_offsets;
937         sint *x_offsets;
938
939         cave_type *c_ptr;
940
941         /* Start with adjacent locations, spread further */
942         for (d = 1; d < 10; d++)
943         {
944                 /* Get the lists of points with a distance d from (fx, fy) */
945                 y_offsets = dist_offsets_y[d];
946                 x_offsets = dist_offsets_x[d];
947
948                 /* Check the locations */
949                 for (i = 0, dx = x_offsets[0], dy = y_offsets[0];
950                      dx != 0 || dy != 0;
951                      i++, dx = x_offsets[i], dy = y_offsets[i])
952                 {
953                         y = fy + dy;
954                         x = fx + dx;
955
956                         /* Skip illegal locations */
957                         if (!in_bounds(y, x)) continue;
958
959                         c_ptr = &cave[y][x];
960
961                         /* Skip locations in a wall */
962                         if (!monster_can_cross_terrain(c_ptr->feat, &r_info[m_ptr->r_idx], (m_idx == p_ptr->riding) ? CEM_RIDING : 0)) continue;
963
964                         /* Check for "availability" (if monsters can flow) */
965                         if (!(m_ptr->mflag2 & MFLAG2_NOFLOW))
966                         {
967                                 /* Ignore grids very far from the player */
968                                 if (c_ptr->dist == 0) continue;
969
970                                 /* Ignore too-distant grids */
971                                 if (c_ptr->dist > cave[fy][fx].dist + 2 * d) continue;
972                         }
973
974                         /* Check for absence of shot (more or less) */
975                         if (!projectable(py, px, y, x))
976                         {
977                                 /* Calculate distance from player */
978                                 dis = distance(y, x, py, px);
979
980                                 /* Remember if further than previous */
981                                 if (dis > gdis)
982                                 {
983                                         gy = y;
984                                         gx = x;
985                                         gdis = dis;
986                                 }
987                         }
988                 }
989
990                 /* Check for success */
991                 if (gdis > 0)
992                 {
993                         /* Good location */
994                         (*yp) = fy - gy;
995                         (*xp) = fx - gx;
996
997                         /* Found safe place */
998                         return (TRUE);
999                 }
1000         }
1001
1002         /* No safe place */
1003         return (FALSE);
1004 }
1005
1006
1007 /*
1008  * Choose a good hiding place near a monster for it to run toward.
1009  *
1010  * Pack monsters will use this to "ambush" the player and lure him out
1011  * of corridors into open space so they can swarm him.
1012  *
1013  * Return TRUE if a good location is available.
1014  */
1015 static bool find_hiding(int m_idx, int *yp, int *xp)
1016 {
1017         monster_type *m_ptr = &m_list[m_idx];
1018         monster_race *r_ptr = &r_info[m_ptr->r_idx];
1019
1020         int fy = m_ptr->fy;
1021         int fx = m_ptr->fx;
1022
1023         int y, x, dy, dx, d, dis, i;
1024         int gy = 0, gx = 0, gdis = 999;
1025
1026         sint *y_offsets, *x_offsets;
1027
1028         /* Start with adjacent locations, spread further */
1029         for (d = 1; d < 10; d++)
1030         {
1031                 /* Get the lists of points with a distance d from (fx, fy) */
1032                 y_offsets = dist_offsets_y[d];
1033                 x_offsets = dist_offsets_x[d];
1034
1035                 /* Check the locations */
1036                 for (i = 0, dx = x_offsets[0], dy = y_offsets[0];
1037                      dx != 0 || dy != 0;
1038                      i++, dx = x_offsets[i], dy = y_offsets[i])
1039                 {
1040                         y = fy + dy;
1041                         x = fx + dx;
1042
1043                         /* Skip illegal locations */
1044                         if (!in_bounds(y, x)) continue;
1045
1046                         /* Skip occupied locations */
1047                         if (!monster_can_enter(y, x, r_ptr, 0)) continue;
1048
1049                         /* Check for hidden, available grid */
1050                         if (!projectable(py, px, y, x) && clean_shot(fy, fx, y, x, FALSE))
1051                         {
1052                                 /* Calculate distance from player */
1053                                 dis = distance(y, x, py, px);
1054
1055                                 /* Remember if closer than previous */
1056                                 if (dis < gdis && dis >= 2)
1057                                 {
1058                                         gy = y;
1059                                         gx = x;
1060                                         gdis = dis;
1061                                 }
1062                         }
1063                 }
1064
1065                 /* Check for success */
1066                 if (gdis < 999)
1067                 {
1068                         /* Good location */
1069                         (*yp) = fy - gy;
1070                         (*xp) = fx - gx;
1071
1072                         /* Found good place */
1073                         return (TRUE);
1074                 }
1075         }
1076
1077         /* No good place */
1078         return (FALSE);
1079 }
1080
1081
1082 /*
1083  * Choose "logical" directions for monster movement
1084  */
1085 static bool get_moves(int m_idx, int *mm)
1086 {
1087         monster_type *m_ptr = &m_list[m_idx];
1088         monster_race *r_ptr = &r_info[m_ptr->r_idx];
1089         int          y, ay, x, ax;
1090         int          move_val = 0;
1091         int          y2 = py;
1092         int          x2 = px;
1093         bool         done = FALSE;
1094         bool         will_run = mon_will_run(m_idx);
1095         cave_type    *c_ptr;
1096         bool         no_flow = ((m_ptr->mflag2 & MFLAG2_NOFLOW) && (cave[m_ptr->fy][m_ptr->fx].cost > 2));
1097         bool         can_pass_wall = ((r_ptr->flags2 & RF2_PASS_WALL) && ((m_idx != p_ptr->riding) || p_ptr->pass_wall));
1098
1099         /* Counter attack to an enemy monster */
1100         if (!will_run && m_ptr->target_y)
1101         {
1102                 int t_m_idx = cave[m_ptr->target_y][m_ptr->target_x].m_idx;
1103
1104                 /* The monster must be an enemy, and in LOS */
1105                 if (t_m_idx &&
1106                     are_enemies(m_ptr, &m_list[t_m_idx]) &&
1107                     los(m_ptr->fy, m_ptr->fx, m_ptr->target_y, m_ptr->target_x) &&
1108                     projectable(m_ptr->fy, m_ptr->fx, m_ptr->target_y, m_ptr->target_x))
1109                 {
1110                         /* Extract the "pseudo-direction" */
1111                         y = m_ptr->fy - m_ptr->target_y;
1112                         x = m_ptr->fx - m_ptr->target_x;
1113                         done = TRUE;
1114                 }
1115         }
1116
1117         if (!done && !will_run && is_hostile(m_ptr) &&
1118             (r_ptr->flags1 & RF1_FRIENDS) &&
1119             ((los(m_ptr->fy, m_ptr->fx, py, px) && projectable(m_ptr->fy, m_ptr->fx, py, px)) ||
1120             (cave[m_ptr->fy][m_ptr->fx].dist < MAX_SIGHT / 2)))
1121         {
1122         /*
1123          * Animal packs try to get the player out of corridors
1124          * (...unless they can move through walls -- TY)
1125          */
1126                 if ((r_ptr->flags3 & RF3_ANIMAL) && !can_pass_wall &&
1127                          !(r_ptr->flags2 & RF2_KILL_WALL))
1128                 {
1129                         int i, room = 0;
1130
1131                         /* Count room grids next to player */
1132                         for (i = 0; i < 8; i++)
1133                         {
1134                                 int xx = px + ddx_ddd[i];
1135                                 int yy = py + ddy_ddd[i];
1136
1137                                 if (!in_bounds2(yy, xx)) continue;
1138
1139                                 c_ptr = &cave[yy][xx];
1140
1141                                 /* Check grid */
1142                                 if (monster_can_cross_terrain(c_ptr->feat, r_ptr, 0))
1143                                 {
1144                                         /* One more room grid */
1145                                         room++;
1146                                 }
1147                         }
1148                         if (cave[py][px].info & CAVE_ROOM) room -= 2;
1149                         if (!r_ptr->flags4 && !r_ptr->flags5 && !r_ptr->flags6) room -= 2;
1150
1151                         /* Not in a room and strong player */
1152                         if (room < (8 * (p_ptr->chp + p_ptr->csp)) /
1153                             (p_ptr->mhp + p_ptr->msp))
1154                         {
1155                                 /* Find hiding place */
1156                                 if (find_hiding(m_idx, &y, &x)) done = TRUE;
1157                         }
1158                 }
1159
1160                 /* Monster groups try to surround the player */
1161                 if (!done && (cave[m_ptr->fy][m_ptr->fx].dist < 3))
1162                 {
1163                         int i;
1164
1165                         /* Find an empty square near the player to fill */
1166                         for (i = 0; i < 8; i++)
1167                         {
1168                                 /* Pick squares near player (semi-randomly) */
1169                                 y2 = py + ddy_ddd[(m_idx + i) & 7];
1170                                 x2 = px + ddx_ddd[(m_idx + i) & 7];
1171
1172                                 /* Already there? */
1173                                 if ((m_ptr->fy == y2) && (m_ptr->fx == x2))
1174                                 {
1175                                         /* Attack the player */
1176                                         y2 = py;
1177                                         x2 = px;
1178
1179                                         break;
1180                                 }
1181
1182                                 if (!in_bounds2(y2, x2)) continue;
1183
1184                                 /* Ignore filled grids */
1185                                 if (!monster_can_enter(y2, x2, r_ptr, 0)) continue;
1186
1187                                 /* Try to fill this hole */
1188                                 break;
1189                         }
1190
1191                         /* Extract the new "pseudo-direction" */
1192                         y = m_ptr->fy - y2;
1193                         x = m_ptr->fx - x2;
1194
1195                         /* Done */
1196                         done = TRUE;
1197                 }
1198         }
1199
1200         if (!done)
1201         {
1202                 /* Flow towards the player */
1203                 (void)get_moves_aux(m_idx, &y2, &x2, no_flow);
1204
1205                 /* Extract the "pseudo-direction" */
1206                 y = m_ptr->fy - y2;
1207                 x = m_ptr->fx - x2;
1208
1209                 /* Not done */
1210         }
1211
1212         /* Apply fear if possible and necessary */
1213         if (is_pet(m_ptr) && will_run)
1214         {
1215                 /* XXX XXX Not very "smart" */
1216                 y = (-y), x = (-x);
1217         }
1218         else
1219         {
1220                 if (!done && will_run)
1221                 {
1222                         int tmp_x = (-x);
1223                         int tmp_y = (-y);
1224
1225                         /* Try to find safe place */
1226                         if (find_safety(m_idx, &y, &x))
1227                         {
1228                                 /* Attempt to avoid the player */
1229                                 if (!no_flow)
1230                                 {
1231                                         /* Adjust movement */
1232                                         if (get_fear_moves_aux(m_idx, &y, &x)) done = TRUE;
1233                                 }
1234                         }
1235
1236                         if (!done)
1237                         {
1238                                 /* This is not a very "smart" method XXX XXX */
1239                                 y = tmp_y;
1240                                 x = tmp_x;
1241                         }
1242                 }
1243         }
1244
1245
1246         /* Check for no move */
1247         if (!x && !y) return (FALSE);
1248
1249
1250         /* Extract the "absolute distances" */
1251         ax = ABS(x);
1252         ay = ABS(y);
1253
1254         /* Do something weird */
1255         if (y < 0) move_val += 8;
1256         if (x > 0) move_val += 4;
1257
1258         /* Prevent the diamond maneuvre */
1259         if (ay > (ax << 1)) move_val += 2;
1260         else if (ax > (ay << 1)) move_val++;
1261
1262         /* Extract some directions */
1263         switch (move_val)
1264         {
1265         case 0:
1266                 mm[0] = 9;
1267                 if (ay > ax)
1268                 {
1269                         mm[1] = 8;
1270                         mm[2] = 6;
1271                         mm[3] = 7;
1272                         mm[4] = 3;
1273                 }
1274                 else
1275                 {
1276                         mm[1] = 6;
1277                         mm[2] = 8;
1278                         mm[3] = 3;
1279                         mm[4] = 7;
1280                 }
1281                 break;
1282         case 1:
1283         case 9:
1284                 mm[0] = 6;
1285                 if (y < 0)
1286                 {
1287                         mm[1] = 3;
1288                         mm[2] = 9;
1289                         mm[3] = 2;
1290                         mm[4] = 8;
1291                 }
1292                 else
1293                 {
1294                         mm[1] = 9;
1295                         mm[2] = 3;
1296                         mm[3] = 8;
1297                         mm[4] = 2;
1298                 }
1299                 break;
1300         case 2:
1301         case 6:
1302                 mm[0] = 8;
1303                 if (x < 0)
1304                 {
1305                         mm[1] = 9;
1306                         mm[2] = 7;
1307                         mm[3] = 6;
1308                         mm[4] = 4;
1309                 }
1310                 else
1311                 {
1312                         mm[1] = 7;
1313                         mm[2] = 9;
1314                         mm[3] = 4;
1315                         mm[4] = 6;
1316                 }
1317                 break;
1318         case 4:
1319                 mm[0] = 7;
1320                 if (ay > ax)
1321                 {
1322                         mm[1] = 8;
1323                         mm[2] = 4;
1324                         mm[3] = 9;
1325                         mm[4] = 1;
1326                 }
1327                 else
1328                 {
1329                         mm[1] = 4;
1330                         mm[2] = 8;
1331                         mm[3] = 1;
1332                         mm[4] = 9;
1333                 }
1334                 break;
1335         case 5:
1336         case 13:
1337                 mm[0] = 4;
1338                 if (y < 0)
1339                 {
1340                         mm[1] = 1;
1341                         mm[2] = 7;
1342                         mm[3] = 2;
1343                         mm[4] = 8;
1344                 }
1345                 else
1346                 {
1347                         mm[1] = 7;
1348                         mm[2] = 1;
1349                         mm[3] = 8;
1350                         mm[4] = 2;
1351                 }
1352                 break;
1353         case 8:
1354                 mm[0] = 3;
1355                 if (ay > ax)
1356                 {
1357                         mm[1] = 2;
1358                         mm[2] = 6;
1359                         mm[3] = 1;
1360                         mm[4] = 9;
1361                 }
1362                 else
1363                 {
1364                         mm[1] = 6;
1365                         mm[2] = 2;
1366                         mm[3] = 9;
1367                         mm[4] = 1;
1368                 }
1369                 break;
1370         case 10:
1371         case 14:
1372                 mm[0] = 2;
1373                 if (x < 0)
1374                 {
1375                         mm[1] = 3;
1376                         mm[2] = 1;
1377                         mm[3] = 6;
1378                         mm[4] = 4;
1379                 }
1380                 else
1381                 {
1382                         mm[1] = 1;
1383                         mm[2] = 3;
1384                         mm[3] = 4;
1385                         mm[4] = 6;
1386                 }
1387                 break;
1388         case 12:
1389                 mm[0] = 1;
1390                 if (ay > ax)
1391                 {
1392                         mm[1] = 2;
1393                         mm[2] = 4;
1394                         mm[3] = 3;
1395                         mm[4] = 7;
1396                 }
1397                 else
1398                 {
1399                         mm[1] = 4;
1400                         mm[2] = 2;
1401                         mm[3] = 7;
1402                         mm[4] = 3;
1403                 }
1404                 break;
1405         }
1406
1407         /* Wants to move... */
1408         return (TRUE);
1409 }
1410
1411
1412 static int check_hit2(int power, int level, int ac, int stun)
1413 {
1414         int i, k;
1415
1416         /* Percentile dice */
1417         k = randint0(100);
1418
1419         if (stun && one_in_(2)) return FALSE;
1420
1421         /* Hack -- Always miss or hit */
1422         if (k < 10) return (k < 5);
1423
1424         /* Calculate the "attack quality" */
1425         i = (power + (level * 3));
1426
1427         /* Power and Level compete against Armor */
1428         if ((i > 0) && (randint1(i) > ((ac * 3) / 4))) return (TRUE);
1429
1430         /* Assume miss */
1431         return (FALSE);
1432 }
1433
1434
1435 /* Monster attacks monster */
1436 static bool monst_attack_monst(int m_idx, int t_idx)
1437 {
1438         monster_type    *m_ptr = &m_list[m_idx];
1439         monster_type    *t_ptr = &m_list[t_idx];
1440
1441         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
1442         monster_race    *tr_ptr = &r_info[t_ptr->r_idx];
1443
1444         int             ap_cnt;
1445         int             ac, rlev, pt;
1446         char            m_name[80], t_name[80];
1447         char            temp[80];
1448         bool            blinked, heal_effect;
1449         bool            explode = FALSE, touched = FALSE, fear = FALSE;
1450         int             y_saver = t_ptr->fy;
1451         int             x_saver = t_ptr->fx;
1452
1453         bool see_m = is_seen(m_ptr);
1454         bool see_t = is_seen(t_ptr);
1455         bool see_either = see_m || see_t;
1456
1457         /* Can the player be aware of this attack? */
1458         bool known = (m_ptr->cdis <= MAX_SIGHT) || (t_ptr->cdis <= MAX_SIGHT);
1459         bool do_silly_attack = (one_in_(2) && p_ptr->image);
1460
1461         /* Cannot attack self */
1462         if (m_idx == t_idx) return FALSE;
1463
1464         /* Not allowed to attack */
1465         if (r_ptr->flags1 & RF1_NEVER_BLOW) return FALSE;
1466
1467         if (d_info[dungeon_type].flags1 & DF1_NO_MELEE) return (FALSE);
1468
1469         /* Total armor */
1470         ac = tr_ptr->ac;
1471
1472         /* Extract the effective monster level */
1473         rlev = ((r_ptr->level >= 1) ? r_ptr->level : 1);
1474
1475         /* Get the monster name (or "it") */
1476         monster_desc(m_name, m_ptr, 0);
1477
1478         /* Get the monster name (or "it") */
1479         monster_desc(t_name, t_ptr, 0);
1480
1481         /* Assume no blink */
1482         blinked = FALSE;
1483
1484         if (!see_either && known)
1485         {
1486                 mon_fight = TRUE;
1487         }
1488
1489         if (p_ptr->riding && (m_idx == p_ptr->riding)) disturb(1, 0);
1490
1491         /* Scan through all four blows */
1492         for (ap_cnt = 0; ap_cnt < 4; ap_cnt++)
1493         {
1494                 bool obvious = FALSE;
1495
1496                 int power = 0;
1497                 int damage = 0;
1498
1499                 cptr act = NULL;
1500
1501                 /* Extract the attack infomation */
1502                 int effect = r_ptr->blow[ap_cnt].effect;
1503                 int method = r_ptr->blow[ap_cnt].method;
1504                 int d_dice = r_ptr->blow[ap_cnt].d_dice;
1505                 int d_side = r_ptr->blow[ap_cnt].d_side;
1506
1507                 if (!m_ptr->r_idx) break;
1508
1509                 /* Stop attacking if the target dies! */
1510                 if (t_ptr->fx != x_saver || t_ptr->fy != y_saver)
1511                         break;
1512
1513                 /* Hack -- no more attacks */
1514                 if (!method) break;
1515
1516                 if (method == RBM_SHOOT) continue;
1517
1518                 /* Extract the attack "power" */
1519                 power = mbe_info[effect].power;
1520
1521                 /* Monster hits */
1522                 if (!effect || check_hit2(power, rlev, ac, m_ptr->stunned))
1523                 {
1524                         /* Wake it up */
1525                         t_ptr->csleep = 0;
1526
1527                         if (tr_ptr->flags7 & RF7_HAS_LD_MASK) p_ptr->update |= (PU_MON_LITE);
1528                         if (t_ptr->ml)
1529                         {
1530                                 /* Redraw the health bar */
1531                                 if (p_ptr->health_who == t_idx) p_ptr->redraw |= (PR_HEALTH);
1532                                 if (p_ptr->riding == t_idx) p_ptr->redraw |= (PR_UHEALTH);
1533                         }
1534
1535                         /* Describe the attack method */
1536                         switch (method)
1537                         {
1538                         case RBM_HIT:
1539                                 {
1540 #ifdef JP
1541 act = "%s¤ò²¥¤Ã¤¿¡£";
1542 #else
1543                                         act = "hits %s.";
1544 #endif
1545
1546                                         touched = TRUE;
1547                                         break;
1548                                 }
1549
1550                         case RBM_TOUCH:
1551                                 {
1552 #ifdef JP
1553 act = "%s¤ò¿¨¤Ã¤¿¡£";
1554 #else
1555                                         act = "touches %s.";
1556 #endif
1557
1558                                         touched = TRUE;
1559                                         break;
1560                                 }
1561
1562                         case RBM_PUNCH:
1563                                 {
1564 #ifdef JP
1565 act = "%s¤ò¥Ñ¥ó¥Á¤·¤¿¡£";
1566 #else
1567                                         act = "punches %s.";
1568 #endif
1569
1570                                         touched = TRUE;
1571                                         break;
1572                                 }
1573
1574                         case RBM_KICK:
1575                                 {
1576 #ifdef JP
1577 act = "%s¤ò½³¤Ã¤¿¡£";
1578 #else
1579                                         act = "kicks %s.";
1580 #endif
1581
1582                                         touched = TRUE;
1583                                         break;
1584                                 }
1585
1586                         case RBM_CLAW:
1587                                 {
1588 #ifdef JP
1589 act = "%s¤ò¤Ò¤Ã¤«¤¤¤¿¡£";
1590 #else
1591                                         act = "claws %s.";
1592 #endif
1593
1594                                         touched = TRUE;
1595                                         break;
1596                                 }
1597
1598                         case RBM_BITE:
1599                                 {
1600 #ifdef JP
1601 act = "%s¤ò³ú¤ó¤À¡£";
1602 #else
1603                                         act = "bites %s.";
1604 #endif
1605
1606                                         touched = TRUE;
1607                                         break;
1608                                 }
1609
1610                         case RBM_STING:
1611                                 {
1612 #ifdef JP
1613 act = "%s¤ò»É¤·¤¿¡£";
1614 #else
1615                                         act = "stings %s.";
1616 #endif
1617
1618                                         touched = TRUE;
1619                                         break;
1620                                 }
1621
1622                         case RBM_SLASH:
1623                                 {
1624 #ifdef JP
1625 act = "%s¤ò»Â¤Ã¤¿¡£";
1626 #else
1627                                         act = "slashes %s.";
1628 #endif
1629
1630                                         break;
1631                                 }
1632
1633                         case RBM_BUTT:
1634                                 {
1635 #ifdef JP
1636 act = "%s¤ò³Ñ¤ÇÆͤ¤¤¿¡£";
1637 #else
1638                                         act = "butts %s.";
1639 #endif
1640
1641                                         touched = TRUE;
1642                                         break;
1643                                 }
1644
1645                         case RBM_CRUSH:
1646                                 {
1647 #ifdef JP
1648 act = "%s¤ËÂÎÅö¤ê¤·¤¿¡£";
1649 #else
1650                                         act = "crushes %s.";
1651 #endif
1652
1653                                         touched = TRUE;
1654                                         break;
1655                                 }
1656
1657                         case RBM_ENGULF:
1658                                 {
1659 #ifdef JP
1660 act = "%s¤ò°û¤ß¹þ¤ó¤À¡£";
1661 #else
1662                                         act = "engulfs %s.";
1663 #endif
1664
1665                                         touched = TRUE;
1666                                         break;
1667                                 }
1668
1669                         case RBM_CHARGE:
1670                                 {
1671 #ifdef JP
1672 act = "%s¤ËÀÁµá½ñ¤ò¤è¤³¤·¤¿¡£";
1673 #else
1674                                         act = "charges %s.";
1675 #endif
1676
1677                                         touched = TRUE;
1678                                         break;
1679                                 }
1680
1681                         case RBM_CRAWL:
1682                                 {
1683 #ifdef JP
1684 act = "%s¤ÎÂΤξå¤òÇ礤²ó¤Ã¤¿¡£";
1685 #else
1686                                         act = "crawls on %s.";
1687 #endif
1688
1689                                         touched = TRUE;
1690                                         break;
1691                                 }
1692
1693                         case RBM_DROOL:
1694                                 {
1695 #ifdef JP
1696 act = "%s¤Ë¤è¤À¤ì¤ò¤¿¤é¤·¤¿¡£";
1697 #else
1698                                         act = "drools on %s.";
1699 #endif
1700
1701                                         touched = FALSE;
1702                                         break;
1703                                 }
1704
1705                         case RBM_SPIT:
1706                                 {
1707 #ifdef JP
1708 act = "%s¤ËÂäòÅǤ¤¤¿¡£";
1709 #else
1710                                         act = "spits on %s.";
1711 #endif
1712
1713                                         touched = FALSE;
1714                                         break;
1715                                 }
1716
1717                         case RBM_EXPLODE:
1718                                 {
1719                                         if (see_either) disturb(1, 0);
1720 #ifdef JP
1721 act = "Çúȯ¤·¤¿¡£";
1722 #else
1723                                         act = "explodes.";
1724 #endif
1725
1726                                         explode = TRUE;
1727                                         touched = FALSE;
1728                                         break;
1729                                 }
1730
1731                         case RBM_GAZE:
1732                                 {
1733 #ifdef JP
1734 act = "%s¤ò¤Ë¤é¤ó¤À¡£";
1735 #else
1736                                         act = "gazes at %s.";
1737 #endif
1738
1739                                         touched = FALSE;
1740                                         break;
1741                                 }
1742
1743                         case RBM_WAIL:
1744                                 {
1745 #ifdef JP
1746 act = "%s¤Ëµã¤­¤Ä¤¤¤¿¡£";
1747 #else
1748                                         act = "wails at %s.";
1749 #endif
1750
1751                                         touched = FALSE;
1752                                         break;
1753                                 }
1754
1755                         case RBM_SPORE:
1756                                 {
1757 #ifdef JP
1758 act = "%s¤Ë˦»Ò¤òÈô¤Ð¤·¤¿¡£";
1759 #else
1760                                         act = "releases spores at %s.";
1761 #endif
1762
1763                                         touched = FALSE;
1764                                         break;
1765                                 }
1766
1767                         case RBM_XXX4:
1768                                 {
1769 #ifdef JP
1770 act = "%s¤ËXXX4¤òÈô¤Ð¤·¤¿¡£";
1771 #else
1772                                         act = "projects XXX4's at %s.";
1773 #endif
1774
1775                                         touched = FALSE;
1776                                         break;
1777                                 }
1778
1779                         case RBM_BEG:
1780                                 {
1781 #ifdef JP
1782 act = "%s¤Ë¶â¤ò¤»¤¬¤ó¤À¡£";
1783 #else
1784                                         act = "begs %s for money.";
1785 #endif
1786
1787                                         touched = FALSE;
1788                                         break;
1789                                 }
1790
1791                         case RBM_INSULT:
1792                                 {
1793 #ifdef JP
1794 act = "%s¤òÉî¿«¤·¤¿¡£";
1795 #else
1796                                         act = "insults %s.";
1797 #endif
1798
1799                                         touched = FALSE;
1800                                         break;
1801                                 }
1802
1803                         case RBM_MOAN:
1804                                 {
1805 #ifdef JP
1806 act = "%s¤Ë¤à¤«¤Ã¤Æ¤¦¤á¤¤¤¿¡£";
1807 #else
1808                                         act = "moans at %s.";
1809 #endif
1810
1811                                         touched = FALSE;
1812                                         break;
1813                                 }
1814
1815                         case RBM_SHOW:
1816                                 {
1817 #ifdef JP
1818 act = "%s¤Ë¤à¤«¤Ã¤Æ²Î¤Ã¤¿¡£";
1819 #else
1820                                         act = "sings to %s.";
1821 #endif
1822
1823                                         touched = FALSE;
1824                                         break;
1825                                 }
1826                         }
1827
1828                         /* Message */
1829                         if (act && see_either)
1830                         {
1831 #ifdef JP
1832                                 if (do_silly_attack) act = silly_attacks2[randint0(MAX_SILLY_ATTACK)];
1833                                 strfmt(temp, act, t_name);
1834                                 msg_format("%^s¤Ï%s", m_name, temp);
1835 #else
1836                                 if (do_silly_attack)
1837                                 {
1838                                         act = silly_attacks[randint0(MAX_SILLY_ATTACK)];
1839                                         strfmt(temp, "%s %s.", act, t_name);
1840                                 }
1841                                 else strfmt(temp, act, t_name);
1842                                 msg_format("%^s %s", m_name, temp);
1843 #endif
1844                         }
1845
1846                         /* Hack -- assume all attacks are obvious */
1847                         obvious = TRUE;
1848
1849                         /* Roll out the damage */
1850                         damage = damroll(d_dice, d_side);
1851
1852                         /* Assume no healing effect */
1853                         heal_effect = FALSE;
1854
1855                         pt = GF_MISSILE;
1856
1857                         /* Apply appropriate damage */
1858                         switch (effect)
1859                         {
1860                         case 0:
1861                                 {
1862                                         damage = 0;
1863                                         pt = 0;
1864                                         break;
1865                                 }
1866
1867                         case RBE_SUPERHURT:
1868                                 {
1869                                         if ((randint1(rlev*2+250) > (ac+200)) || one_in_(13)) {
1870                                                 int tmp_damage = damage-(damage*((ac < 150) ? ac : 150)/250);
1871                                                 damage = MAX(damage, tmp_damage*2);
1872                                                 break;
1873                                         }
1874                                 }
1875                         case RBE_HURT:
1876                                 {
1877                                         damage -= (damage * ((ac < 150) ? ac : 150) / 250);
1878                                         break;
1879                                 }
1880
1881                         case RBE_POISON:
1882                         case RBE_DISEASE:
1883                                 {
1884                                         pt = GF_POIS;
1885                                         break;
1886                                 }
1887
1888                         case RBE_UN_BONUS:
1889                         case RBE_UN_POWER:
1890                                 {
1891                                         pt = GF_DISENCHANT;
1892                                         break;
1893                                 }
1894
1895                         case RBE_EAT_FOOD:
1896                         case RBE_EAT_LITE:
1897                         case RBE_DR_MANA:
1898                                 {
1899                                         pt = damage = 0;
1900                                         break;
1901                                 }
1902
1903                         case RBE_EAT_ITEM:
1904                         case RBE_EAT_GOLD:
1905                                 {
1906                                         pt = damage = 0;
1907                                         if ((p_ptr->riding != m_idx) && one_in_(2)) blinked = TRUE;
1908                                         break;
1909                                 }
1910
1911                         case RBE_ACID:
1912                                 {
1913                                         pt = GF_ACID;
1914                                         break;
1915                                 }
1916
1917                         case RBE_ELEC:
1918                                 {
1919                                         pt = GF_ELEC;
1920                                         break;
1921                                 }
1922
1923                         case RBE_FIRE:
1924                                 {
1925                                         pt = GF_FIRE;
1926                                         break;
1927                                 }
1928
1929                         case RBE_COLD:
1930                                 {
1931                                         pt = GF_COLD;
1932                                         break;
1933                                 }
1934
1935                         case RBE_BLIND:
1936                                 {
1937                                         break;
1938                                 }
1939
1940                         case RBE_CONFUSE:
1941                                 {
1942                                         pt = GF_CONFUSION;
1943                                         break;
1944                                 }
1945
1946                         case RBE_TERRIFY:
1947                                 {
1948                                         pt = GF_TURN_ALL;
1949                                         break;
1950                                 }
1951
1952                         case RBE_PARALYZE:
1953                                 {
1954                                         pt = GF_OLD_SLEEP; /* sort of close... */
1955                                         break;
1956                                 }
1957
1958                         case RBE_LOSE_STR:
1959                         case RBE_LOSE_INT:
1960                         case RBE_LOSE_WIS:
1961                         case RBE_LOSE_DEX:
1962                         case RBE_LOSE_CON:
1963                         case RBE_LOSE_CHR:
1964                         case RBE_LOSE_ALL:
1965                                 {
1966                                         break;
1967                                 }
1968                         case RBE_SHATTER:
1969                                 {
1970                                         damage -= (damage * ((ac < 150) ? ac : 150) / 250);
1971                                         if (damage > 23)
1972                                         {
1973                                                 earthquake(m_ptr->fy, m_ptr->fx, 8);
1974                                         }
1975                                         break;
1976                                 }
1977                         case RBE_EXP_10:
1978                         case RBE_EXP_20:
1979                         case RBE_EXP_40:
1980                         case RBE_EXP_80:
1981                                 {
1982                                         pt = GF_NETHER;
1983                                         break;
1984                                 }
1985                         case RBE_TIME:
1986                                 {
1987                                         pt = GF_TIME;
1988                                         break;
1989                                 }
1990                         case RBE_EXP_VAMP:
1991                                 {
1992                                         pt = GF_OLD_DRAIN;
1993                                         heal_effect = TRUE;
1994                                         break;
1995                                 }
1996
1997                         default:
1998                                 {
1999                                         pt = 0;
2000                                         break;
2001                                 }
2002                         }
2003
2004                         if (pt)
2005                         {
2006                                 /* Do damage if not exploding */
2007                                 if (!explode)
2008                                 {
2009                                         project(m_idx, 0, t_ptr->fy, t_ptr->fx,
2010                                                 (pt == GF_OLD_SLEEP ? r_ptr->level : damage), pt, PROJECT_KILL | PROJECT_STOP | PROJECT_AIMED, -1);
2011                                 }
2012
2013                                 if (heal_effect)
2014                                 {
2015                                         if ((monster_living(tr_ptr)) && (damage > 2))
2016                                         {
2017                                                 bool did_heal = FALSE;
2018
2019                                                 if (m_ptr->hp < m_ptr->maxhp) did_heal = TRUE;
2020
2021                                                 /* Heal */
2022                                                 m_ptr->hp += damroll(4, damage / 6);
2023                                                 if (m_ptr->hp > m_ptr->maxhp) m_ptr->hp = m_ptr->maxhp;
2024
2025                                                 /* Redraw (later) if needed */
2026                                                 if (p_ptr->health_who == m_idx) p_ptr->redraw |= (PR_HEALTH);
2027                                                 if (p_ptr->riding == m_idx) p_ptr->redraw |= (PR_UHEALTH);
2028
2029                                                 /* Special message */
2030                                                 if (see_m && did_heal)
2031                                                 {
2032 #ifdef JP
2033 msg_format("%s¤ÏÂÎÎϤò²óÉü¤·¤¿¤è¤¦¤À¡£", m_name);
2034 #else
2035                                                         msg_format("%^s appears healthier.", m_name);
2036 #endif
2037
2038                                                 }
2039                                         }
2040                                 }
2041
2042                                 if (touched)
2043                                 {
2044                                         /* Aura fire */
2045                                         if ((tr_ptr->flags2 & RF2_AURA_FIRE) && m_ptr->r_idx)
2046                                         {
2047                                                 if (!(r_ptr->flagsr & RFR_EFF_IM_FIRE_MASK))
2048                                                 {
2049                                                         if (see_either)
2050                                                         {
2051 #ifdef JP
2052                                                                 msg_format("%^s¤ÏÆÍÁ³Ç®¤¯¤Ê¤Ã¤¿¡ª", m_name);
2053 #else
2054                                                                 msg_format("%^s is suddenly very hot!", m_name);
2055 #endif
2056                                                         }
2057                                                         if (m_ptr->ml && is_original_ap_and_seen(t_ptr)) tr_ptr->r_flags2 |= RF2_AURA_FIRE;
2058                                                         project(t_idx, 0, m_ptr->fy, m_ptr->fx,
2059                                                                 damroll (1 + ((tr_ptr->level) / 26),
2060                                                                 1 + ((tr_ptr->level) / 17)),
2061                                                                 GF_FIRE, PROJECT_KILL | PROJECT_STOP | PROJECT_AIMED, -1);
2062                                                 }
2063                                                 else
2064                                                 {
2065                                                         if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flagsr |= (r_ptr->flagsr & RFR_EFF_IM_FIRE_MASK);
2066                                                 }
2067                                         }
2068
2069                                         /* Aura cold */
2070                                         if ((tr_ptr->flags3 & RF3_AURA_COLD) && m_ptr->r_idx)
2071                                         {
2072                                                 if (!(r_ptr->flagsr & RFR_EFF_IM_COLD_MASK))
2073                                                 {
2074                                                         if (see_either)
2075                                                         {
2076 #ifdef JP
2077                                                                 msg_format("%^s¤ÏÆÍÁ³´¨¤¯¤Ê¤Ã¤¿¡ª", m_name);
2078 #else
2079                                                                 msg_format("%^s is suddenly very cold!", m_name);
2080 #endif
2081                                                         }
2082                                                         if (m_ptr->ml && is_original_ap_and_seen(t_ptr)) tr_ptr->r_flags3 |= RF3_AURA_COLD;
2083                                                         project(t_idx, 0, m_ptr->fy, m_ptr->fx,
2084                                                                 damroll (1 + ((tr_ptr->level) / 26),
2085                                                                 1 + ((tr_ptr->level) / 17)),
2086                                                                 GF_COLD, PROJECT_KILL | PROJECT_STOP | PROJECT_AIMED, -1);
2087                                                 }
2088                                                 else
2089                                                 {
2090                                                         if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flagsr |= (r_ptr->flagsr & RFR_EFF_IM_COLD_MASK);
2091                                                 }
2092                                         }
2093
2094                                         /* Aura elec */
2095                                         if ((tr_ptr->flags2 & RF2_AURA_ELEC) && m_ptr->r_idx)
2096                                         {
2097                                                 if (!(r_ptr->flagsr & RFR_EFF_IM_ELEC_MASK))
2098                                                 {
2099                                                         if (see_either)
2100                                                         {
2101 #ifdef JP
2102                                                                 msg_format("%^s¤ÏÅÅ·â¤ò¿©¤é¤Ã¤¿¡ª", m_name);
2103 #else
2104                                                                 msg_format("%^s gets zapped!", m_name);
2105 #endif
2106                                                         }
2107                                                         if (m_ptr->ml && is_original_ap_and_seen(t_ptr)) tr_ptr->r_flags2 |= RF2_AURA_ELEC;
2108                                                         project(t_idx, 0, m_ptr->fy, m_ptr->fx,
2109                                                                 damroll (1 + ((tr_ptr->level) / 26),
2110                                                                 1 + ((tr_ptr->level) / 17)),
2111                                                                 GF_ELEC, PROJECT_KILL | PROJECT_STOP | PROJECT_AIMED, -1);
2112                                                 }
2113                                                 else
2114                                                 {
2115                                                         if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flagsr |= (r_ptr->flagsr & RFR_EFF_IM_ELEC_MASK);
2116                                                 }
2117                                         }
2118                                 }
2119                         }
2120                 }
2121
2122                 /* Monster missed player */
2123                 else
2124                 {
2125                         /* Analyze failed attacks */
2126                         switch (method)
2127                         {
2128                         case RBM_HIT:
2129                         case RBM_TOUCH:
2130                         case RBM_PUNCH:
2131                         case RBM_KICK:
2132                         case RBM_CLAW:
2133                         case RBM_BITE:
2134                         case RBM_STING:
2135                         case RBM_SLASH:
2136                         case RBM_BUTT:
2137                         case RBM_CRUSH:
2138                         case RBM_ENGULF:
2139                         case RBM_CHARGE:
2140                                 {
2141                                         /* Wake it up */
2142                                         t_ptr->csleep = 0;
2143
2144                                         if (tr_ptr->flags7 & RF7_HAS_LD_MASK) p_ptr->update |= (PU_MON_LITE);
2145                                         if (t_ptr->ml)
2146                                         {
2147                                                 /* Redraw the health bar */
2148                                                 if (p_ptr->health_who == t_idx) p_ptr->redraw |= (PR_HEALTH);
2149                                                 if (p_ptr->riding == t_idx) p_ptr->redraw |= (PR_UHEALTH);
2150                                         }
2151
2152                                         /* Visible monsters */
2153                                         if (see_m)
2154                                         {
2155                                                 /* Message */
2156 #ifdef JP
2157 msg_format("%s¤Ï%^s¤Î¹¶·â¤ò¤«¤ï¤·¤¿¡£", t_name,m_name);
2158 #else
2159                                                 msg_format("%^s misses %s.", m_name, t_name);
2160 #endif
2161
2162                                         }
2163
2164                                         break;
2165                                 }
2166                         }
2167                 }
2168
2169
2170                 /* Analyze "visible" monsters only */
2171                 if (is_original_ap_and_seen(m_ptr) && !do_silly_attack)
2172                 {
2173                         /* Count "obvious" attacks (and ones that cause damage) */
2174                         if (obvious || damage || (r_ptr->r_blows[ap_cnt] > 10))
2175                         {
2176                                 /* Count attacks of this type */
2177                                 if (r_ptr->r_blows[ap_cnt] < MAX_UCHAR)
2178                                 {
2179                                         r_ptr->r_blows[ap_cnt]++;
2180                                 }
2181                         }
2182                 }
2183         }
2184
2185         if (explode)
2186         {
2187                 sound(SOUND_EXPLODE);
2188
2189                 /* Cancel Invulnerability */
2190                 if (m_ptr->invulner) m_ptr->invulner = 0;
2191
2192 #ifdef JP
2193                 mon_take_hit_mon(m_idx, m_ptr->hp + 1, &fear, "¤ÏÇúȯ¤·¤ÆÊ´¡¹¤Ë¤Ê¤Ã¤¿¡£", m_idx);
2194 #else
2195                 mon_take_hit_mon(m_idx, m_ptr->hp + 1, &fear, " explodes into tiny shreds.", m_idx);
2196 #endif
2197
2198                 blinked = FALSE;
2199         }
2200
2201         /* Blink away */
2202         if (blinked && m_ptr->r_idx)
2203         {
2204                 if (see_m)
2205                 {
2206 #ifdef JP
2207                         msg_print("Å¥ËÀ¤Ï¾Ð¤Ã¤Æƨ¤²¤¿¡ª");
2208 #else
2209                         msg_print("The thief flees laughing!");
2210 #endif
2211                 }
2212                 else if (known)
2213                 {
2214                         mon_fight = TRUE;
2215                 }
2216
2217                 teleport_away(m_idx, MAX_SIGHT * 2 + 5, FALSE, FALSE);
2218         }
2219
2220         return TRUE;
2221 }
2222
2223
2224 /*
2225  * Process a monster
2226  *
2227  * The monster is known to be within 100 grids of the player
2228  *
2229  * In several cases, we directly update the monster lore
2230  *
2231  * Note that a monster is only allowed to "reproduce" if there
2232  * are a limited number of "reproducing" monsters on the current
2233  * level.  This should prevent the level from being "swamped" by
2234  * reproducing monsters.  It also allows a large mass of mice to
2235  * prevent a louse from multiplying, but this is a small price to
2236  * pay for a simple multiplication method.
2237  *
2238  * XXX Monster fear is slightly odd, in particular, monsters will
2239  * fixate on opening a door even if they cannot open it.  Actually,
2240  * the same thing happens to normal monsters when they hit a door
2241  *
2242  * XXX XXX XXX In addition, monsters which *cannot* open or bash
2243  * down a door will still stand there trying to open it...
2244  *
2245  * XXX Technically, need to check for monster in the way
2246  * combined with that monster being in a wall (or door?)
2247  *
2248  * A "direction" of "5" means "pick a random direction".
2249  */
2250 static void process_monster(int m_idx)
2251 {
2252         monster_type    *m_ptr = &m_list[m_idx];
2253         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
2254         monster_race    *ap_r_ptr = &r_info[m_ptr->ap_r_idx];
2255
2256         int             i, d, oy, ox, ny, nx;
2257
2258         int             mm[8];
2259
2260         cave_type       *c_ptr;
2261         feature_type    *f_ptr;
2262
2263         monster_type    *y_ptr;
2264
2265         bool            do_turn;
2266         bool            do_move;
2267         bool            do_view;
2268
2269         bool            did_open_door;
2270         bool            did_bash_door;
2271         bool            did_take_item;
2272         bool            did_kill_item;
2273         bool            did_move_body;
2274         bool            did_pass_wall;
2275         bool            did_kill_wall;
2276         bool            gets_angry = FALSE;
2277         bool            can_cross;
2278         bool            aware = TRUE;
2279
2280         bool            fear;
2281
2282         bool            is_riding_mon = (m_idx == p_ptr->riding);
2283
2284         bool            see_m = is_seen(m_ptr);
2285
2286         if (is_riding_mon && !(r_ptr->flags7 & RF7_RIDING))
2287         {
2288                 if (rakuba(0, TRUE))
2289                 {
2290 #ifdef JP
2291                         msg_print("ÃÏÌ̤ËÍî¤È¤µ¤ì¤¿¡£");
2292 #else
2293                         char m_name[80];
2294                         monster_desc(m_name, &m_list[p_ptr->riding], 0);
2295                         msg_format("You have fallen from %s.", m_name);
2296 #endif
2297                 }
2298         }
2299
2300         if ((m_ptr->mflag2 & MFLAG2_CHAMELEON) && one_in_(13) && !m_ptr->csleep)
2301         {
2302                 choose_new_monster(m_idx, FALSE, 0);
2303                 r_ptr = &r_info[m_ptr->r_idx];
2304         }
2305
2306         /* Players hidden in shadow are almost imperceptable. -LM- */
2307         if (p_ptr->special_defense & NINJA_S_STEALTH)
2308         {
2309                 int tmp = p_ptr->lev*6+(p_ptr->skill_stl+10)*4;
2310                 if (p_ptr->monlite) tmp /= 3;
2311                 if (p_ptr->cursed & TRC_AGGRAVATE) tmp /= 2;
2312                 if (r_ptr->level > (p_ptr->lev*p_ptr->lev/20+10)) tmp /= 3;
2313                 /* Low-level monsters will find it difficult to locate the player. */
2314                 if (randint0(tmp) > (r_ptr->level+20)) aware = FALSE;
2315         }
2316
2317         /* Are there its parent? */
2318         if (m_ptr->parent_m_idx && !m_list[m_ptr->parent_m_idx].r_idx)
2319         {
2320                 /* Its parent have gone, it also goes away. */
2321
2322                 if (see_m)
2323                 {
2324                         char m_name[80];
2325
2326                         /* Acquire the monster name */
2327                         monster_desc(m_name, m_ptr, 0);
2328
2329 #ifdef JP
2330                         msg_format("%s¤Ï¾Ã¤¨µî¤Ã¤¿¡ª", m_name);
2331 #else
2332                         msg_format("%^s disappears!", m_name);
2333 #endif
2334                 }
2335
2336                 /* Delete the monster */
2337                 delete_monster_idx(m_idx);
2338
2339                 return;
2340         }
2341
2342         /* Quantum monsters are odd */
2343         if (r_ptr->flags2 & (RF2_QUANTUM))
2344         {
2345                 /* Sometimes skip move */
2346                 if (!randint0(2)) return;
2347
2348                 /* Sometimes die */
2349                 if (!randint0((m_idx % 100) + 10) && !(r_ptr->flags1 & RF1_QUESTOR))
2350                 {
2351                         bool sad = FALSE;
2352
2353                         if (is_pet(m_ptr) && !(m_ptr->ml))
2354                                 sad = TRUE;
2355
2356                         if (see_m)
2357                         {
2358                                 char m_name[80];
2359
2360                                 /* Acquire the monster name */
2361                                 monster_desc(m_name, m_ptr, 0);
2362
2363                                 /* Oops */
2364 #ifdef JP
2365                                 msg_format("%s¤Ï¾Ã¤¨µî¤Ã¤¿¡ª", m_name);
2366 #else
2367                                 msg_format("%^s disappears!", m_name);
2368 #endif
2369                         }
2370
2371                         /* Generate treasure, etc */
2372                         monster_death(m_idx, FALSE);
2373
2374                         /* Delete the monster */
2375                         delete_monster_idx(m_idx);
2376
2377                         if (sad)
2378                         {
2379 #ifdef JP
2380                                 msg_print("¾¯¤·¤Î´ÖÈᤷ¤¤µ¤Ê¬¤Ë¤Ê¤Ã¤¿¡£");
2381 #else
2382                                 msg_print("You feel sad for a moment.");
2383 #endif
2384                         }
2385
2386                         return;
2387                 }
2388         }
2389
2390         if (m_ptr->r_idx == MON_SHURYUUDAN)
2391 #ifdef JP
2392                 mon_take_hit_mon(m_idx, 1, &fear, "¤ÏÇúȯ¤·¤ÆÊ´¡¹¤Ë¤Ê¤Ã¤¿¡£", m_idx);
2393 #else
2394                 mon_take_hit_mon(m_idx, 1, &fear, " explodes into tiny shreds.", m_idx);
2395 #endif
2396
2397         if ((is_pet(m_ptr) || is_friendly(m_ptr)) && ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_NAZGUL)) && !p_ptr->inside_battle)
2398         {
2399                 static int riding_pinch = 0;
2400
2401                 if (m_ptr->hp < m_ptr->maxhp/3)
2402                 {
2403                         char m_name[80];
2404                         monster_desc(m_name, m_ptr, 0);
2405
2406                         if (is_riding_mon && riding_pinch < 2)
2407                         {
2408 #ifdef JP
2409                                 msg_format("%s¤Ï½ý¤ÎÄˤµ¤Î;¤ê¤¢¤Ê¤¿¤Î«Çû¤«¤éƨ¤ì¤è¤¦¤È¤·¤Æ¤¤¤ë¡£", m_name);
2410 #else
2411                                 msg_format("%^s seems to be in so much pain, and trying to escape from your restriction.", m_name);
2412 #endif
2413                                 riding_pinch++;
2414                                 disturb(1, 0);
2415                         }
2416                         else
2417                         {
2418                                 if (is_riding_mon)
2419                                 {
2420 #ifdef JP
2421                                         msg_format("%s¤Ï¤¢¤Ê¤¿¤Î«Çû¤«¤éæ½Ð¤·¤¿¡£", m_name);
2422 #else
2423                                         msg_format("%^s succeeded to escape from your restriction!", m_name);
2424 #endif
2425                                         if (rakuba(-1, FALSE))
2426                                         {
2427 #ifdef JP
2428                                                 msg_print("ÃÏÌ̤ËÍî¤È¤µ¤ì¤¿¡£");
2429 #else
2430                                                 msg_print("You have fallen from riding pet.");
2431 #endif
2432                                         }
2433                                 }
2434
2435                                 if (see_m)
2436                                 {
2437                                         if ((r_ptr->flags2 & RF2_CAN_SPEAK) && (m_ptr->r_idx != MON_GRIP) && (m_ptr->r_idx != MON_WOLF) && (m_ptr->r_idx != MON_FANG) &&
2438                                             player_has_los_bold(m_ptr->fy, m_ptr->fx) && projectable(m_ptr->fy, m_ptr->fx, py, px))
2439                                         {
2440 #ifdef JP
2441                                                 msg_format("%^s¡Ö¥Ô¥ó¥Á¤À¡ªÂàµÑ¤µ¤»¤Æ¤â¤é¤¦¡ª¡×", m_name);
2442 #else
2443                                                 msg_format("%^s says 'It is the pinch! I will retreat'.", m_name);
2444 #endif
2445                                         }
2446 #ifdef JP
2447                                         msg_format("%^s¤¬¥Æ¥ì¥Ý¡¼¥È¡¦¥ì¥Ù¥ë¤Î´¬Êª¤òÆɤó¤À¡£", m_name);
2448                                         msg_format("%^s¤¬¾Ã¤¨µî¤Ã¤¿¡£", m_name);
2449 #else
2450                                         msg_format("%^s read a scroll of teleport level.", m_name);
2451                                         msg_format("%^s disappears.", m_name);
2452 #endif
2453                                 }
2454
2455                                 if (is_riding_mon && rakuba(-1, FALSE))
2456                                 {
2457 #ifdef JP
2458                                         msg_print("ÃÏÌ̤ËÍî¤È¤µ¤ì¤¿¡£");
2459 #else
2460                                         msg_print("You have fallen from riding pet.");
2461 #endif
2462                                 }
2463
2464                                 /* Check for quest completion */
2465                                 check_quest_completion(m_ptr);
2466
2467                                 delete_monster_idx(m_idx);
2468
2469                                 return;
2470                         }
2471                 }
2472                 else
2473                 {
2474                         /* Reset the counter */
2475                         if (is_riding_mon) riding_pinch = 0;
2476                 }
2477         }
2478
2479         /* Handle "sleep" */
2480         if (m_ptr->csleep)
2481         {
2482                 /* Handle non-aggravation - Still sleeping */
2483                 if (!(p_ptr->cursed & TRC_AGGRAVATE)) return;
2484
2485                 /* Handle aggravation */
2486
2487                 /* Reset sleep counter */
2488                 m_ptr->csleep = 0;
2489
2490                 if (r_ptr->flags7 & RF7_HAS_LD_MASK) p_ptr->update |= (PU_MON_LITE);
2491
2492                 /* Notice the "waking up" */
2493                 if (see_m)
2494                 {
2495                         char m_name[80];
2496
2497                         /* Acquire the monster name */
2498                         monster_desc(m_name, m_ptr, 0);
2499
2500                         /* Dump a message */
2501 #ifdef JP
2502                         msg_format("%^s¤¬Ìܤò³Ð¤Þ¤·¤¿¡£", m_name);
2503 #else
2504                         msg_format("%^s wakes up.", m_name);
2505 #endif
2506                 }
2507
2508                 if (m_ptr->ml)
2509                 {
2510                         /* Redraw the health bar */
2511                         if (p_ptr->health_who == m_idx) p_ptr->redraw |= (PR_HEALTH);
2512                         if (is_riding_mon) p_ptr->redraw |= (PR_UHEALTH);
2513
2514                         /* Hack -- Count the wakings */
2515                         if ((r_ptr->r_wake < MAX_UCHAR) && is_original_ap(m_ptr))
2516                         {
2517                                 r_ptr->r_wake++;
2518                         }
2519                 }
2520         }
2521
2522         /* Handle "stun" */
2523         if (m_ptr->stunned)
2524         {
2525                 /* Sometimes skip move */
2526                 if (one_in_(2)) return;
2527         }
2528
2529         if (is_riding_mon)
2530         {
2531                 p_ptr->update |= (PU_BONUS);
2532         }
2533
2534         /* No one wants to be your friend if you're aggravating */
2535         if (is_friendly(m_ptr) && (p_ptr->cursed & TRC_AGGRAVATE))
2536                 gets_angry = TRUE;
2537
2538         /* Paranoia... no pet uniques outside wizard mode -- TY */
2539         if (is_pet(m_ptr) &&
2540             ((((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_NAZGUL)) &&
2541               monster_has_hostile_align(NULL, 10, -10, r_ptr))
2542              || (r_ptr->flagsr & RFR_RES_ALL)))
2543         {
2544                 gets_angry = TRUE;
2545         }
2546
2547         if (p_ptr->inside_battle) gets_angry = FALSE;
2548
2549         if (gets_angry)
2550         {
2551                 char m_name[80];
2552                 monster_desc(m_name, m_ptr, 0);
2553 #ifdef JP
2554 msg_format("%^s¤ÏÆÍÁ³Å¨¤Ë¤Þ¤ï¤Ã¤¿¡ª", m_name);
2555 #else
2556                 msg_format("%^s suddenly becomes hostile!", m_name);
2557 #endif
2558
2559                 set_hostile(m_ptr);
2560         }
2561
2562         /* Get the origin */
2563         oy = m_ptr->fy;
2564         ox = m_ptr->fx;
2565
2566
2567         /* Attempt to "multiply" if able and allowed */
2568         if ((r_ptr->flags2 & RF2_MULTIPLY) && (num_repro < MAX_REPRO))
2569         {
2570                 int k, y, x;
2571
2572                 /* Count the adjacent monsters */
2573                 for (k = 0, y = oy - 1; y <= oy + 1; y++)
2574                 {
2575                         for (x = ox - 1; x <= ox + 1; x++)
2576                         {
2577                                 /* Ignore locations off of edge */
2578                                 if (!in_bounds2(y, x)) continue;
2579
2580                                 if (cave[y][x].m_idx) k++;
2581                         }
2582                 }
2583
2584                 /* Hack -- multiply slower in crowded areas */
2585                 if ((k < 4) && (!k || !randint0(k * MON_MULT_ADJ)))
2586                 {
2587                         /* Try to multiply */
2588                         if (multiply_monster(m_idx, FALSE, (is_pet(m_ptr) ? PM_FORCE_PET : 0)))
2589                         {
2590                                 /* Take note if visible */
2591                                 if (m_list[hack_m_idx_ii].ml && is_original_ap_and_seen(m_ptr))
2592                                 {
2593                                         r_ptr->r_flags2 |= (RF2_MULTIPLY);
2594                                 }
2595
2596                                 /* Multiplying takes energy */
2597                                 return;
2598                         }
2599                 }
2600         }
2601
2602
2603         if (r_ptr->flags6 & RF6_SPECIAL)
2604         {
2605                 /* Hack -- Ohmu scatters molds! */
2606                 if (m_ptr->r_idx == MON_OHMU)
2607                 {
2608                         if (!p_ptr->inside_arena && !p_ptr->inside_battle)
2609                         {
2610                                 if (r_ptr->freq_spell && (randint1(100) <= r_ptr->freq_spell))
2611                                 {
2612                                         int  k, count = 0;
2613                                         int  rlev = ((r_ptr->level >= 1) ? r_ptr->level : 1);
2614                                         u32b p_mode = is_pet(m_ptr) ? PM_FORCE_PET : 0L;
2615
2616                                         for (k = 0; k < 6; k++)
2617                                         {
2618                                                 if (summon_specific(m_idx, m_ptr->fy, m_ptr->fx, rlev, SUMMON_BIZARRE1, (PM_ALLOW_GROUP | p_mode)))
2619                                                 {
2620                                                         if (m_list[hack_m_idx_ii].ml) count++;
2621                                                 }
2622                                         }
2623
2624                                         if (count && is_original_ap_and_seen(m_ptr)) r_ptr->r_flags6 |= (RF6_SPECIAL);
2625                                 }
2626                         }
2627                 }
2628         }
2629
2630
2631         if (!p_ptr->inside_battle)
2632         {
2633                 /* Hack! "Cyber" monster makes noise... */
2634                 if (m_ptr->ap_r_idx == MON_CYBER &&
2635                     one_in_(CYBERNOISE) &&
2636                     !m_ptr->ml && (m_ptr->cdis <= MAX_SIGHT))
2637                 {
2638                         if (disturb_minor) disturb(FALSE, FALSE);
2639 #ifdef JP
2640 msg_print("½Å¸ü¤Ê­²»¤¬Ê¹¤³¤¨¤¿¡£");
2641 #else
2642                         msg_print("You hear heavy steps.");
2643 #endif
2644
2645                 }
2646
2647                 /* Some monsters can speak */
2648                 if ((ap_r_ptr->flags2 & RF2_CAN_SPEAK) && aware &&
2649                     one_in_(SPEAK_CHANCE) &&
2650                     player_has_los_bold(oy, ox) &&
2651                     projectable(oy, ox, py, px))
2652                 {
2653                         char m_name[80];
2654                         char monmessage[1024];
2655                         cptr filename;
2656
2657                         /* Acquire the monster name/poss */
2658                         if (m_ptr->ml)
2659                                 monster_desc(m_name, m_ptr, 0);
2660                         else
2661 #ifdef JP
2662 strcpy(m_name, "¤½¤ì");
2663 #else
2664                                 strcpy(m_name, "It");
2665 #endif
2666
2667
2668                         /* Select the file for monster quotes */
2669                         if (m_ptr->monfear)
2670 #ifdef JP
2671 filename = "monfear_j.txt";
2672 #else
2673                                 filename = "monfear.txt";
2674 #endif
2675
2676                         else if (is_pet(m_ptr))
2677 #ifdef JP
2678 filename = "monpet_j.txt";
2679 #else
2680                                 filename = "monpet.txt";
2681 #endif
2682
2683                         else if (is_friendly(m_ptr))
2684 #ifdef JP
2685 filename = "monfrien_j.txt";
2686 #else
2687                                 filename = "monfrien.txt";
2688 #endif
2689
2690                         else
2691 #ifdef JP
2692                                 filename = "monspeak_j.txt";
2693 #else
2694                                 filename = "monspeak.txt";
2695 #endif
2696
2697
2698                         /* Get the monster line */
2699                         if (get_rnd_line(filename, m_ptr->ap_r_idx, monmessage) == 0)
2700                         {
2701                                 /* Say something */
2702 #ifdef JP
2703 msg_format("%^s%s", m_name, monmessage);
2704 #else
2705                                 msg_format("%^s %s", m_name, monmessage);
2706 #endif
2707
2708                         }
2709                 }
2710         }
2711
2712         /* Try to cast spell occasionally */
2713         if (r_ptr->freq_spell && randint1(100) <= r_ptr->freq_spell)
2714         {
2715                 bool counterattack = FALSE;
2716
2717                 /* Give priority to counter attack? */
2718                 if (m_ptr->target_y)
2719                 {
2720                         int t_m_idx = cave[m_ptr->target_y][m_ptr->target_x].m_idx;
2721
2722                         /* The monster must be an enemy, and projectable */
2723                         if (t_m_idx &&
2724                             are_enemies(m_ptr, &m_list[t_m_idx]) &&
2725                             projectable(m_ptr->fy, m_ptr->fx, m_ptr->target_y, m_ptr->target_x))
2726                         {
2727                                 counterattack = TRUE;
2728                         }
2729                 }
2730
2731                 if (!counterattack)
2732                 {
2733                         /* Attempt to cast a spell */
2734                         if (aware && make_attack_spell(m_idx)) return;
2735
2736                         /*
2737                          * Attempt to cast a spell at an enemy other than the player
2738                          * (may slow the game a smidgeon, but I haven't noticed.)
2739                          */
2740                         if (monst_spell_monst(m_idx)) return;
2741                 }
2742                 else
2743                 {
2744                         /* Attempt to do counter attack at first */
2745                         if (monst_spell_monst(m_idx)) return;
2746
2747                         if (aware && make_attack_spell(m_idx)) return;
2748                 }
2749         }
2750
2751         /* Hack -- Assume no movement */
2752         mm[0] = mm[1] = mm[2] = mm[3] = 0;
2753         mm[4] = mm[5] = mm[6] = mm[7] = 0;
2754
2755
2756         /* Confused -- 100% random */
2757         if (m_ptr->confused || !aware)
2758         {
2759                 /* Try four "random" directions */
2760                 mm[0] = mm[1] = mm[2] = mm[3] = 5;
2761         }
2762
2763         /* 75% random movement */
2764         else if (((r_ptr->flags1 & (RF1_RAND_50 | RF1_RAND_25)) == (RF1_RAND_50 | RF1_RAND_25)) &&
2765                  (randint0(100) < 75))
2766         {
2767                 /* Memorize flags */
2768                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags1 |= (RF1_RAND_50 | RF1_RAND_25);
2769
2770                 /* Try four "random" directions */
2771                 mm[0] = mm[1] = mm[2] = mm[3] = 5;
2772         }
2773
2774         /* 50% random movement */
2775         else if ((r_ptr->flags1 & RF1_RAND_50) &&
2776                                 (randint0(100) < 50))
2777         {
2778                 /* Memorize flags */
2779                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags1 |= (RF1_RAND_50);
2780
2781                 /* Try four "random" directions */
2782                 mm[0] = mm[1] = mm[2] = mm[3] = 5;
2783         }
2784
2785         /* 25% random movement */
2786         else if ((r_ptr->flags1 & RF1_RAND_25) &&
2787                                 (randint0(100) < 25))
2788         {
2789                 /* Memorize flags */
2790                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags1 |= RF1_RAND_25;
2791
2792                 /* Try four "random" directions */
2793                 mm[0] = mm[1] = mm[2] = mm[3] = 5;
2794         }
2795
2796         /* Can't reach player - find something else to hit */
2797         else if ((r_ptr->flags1 & RF1_NEVER_MOVE) && (m_ptr->cdis > 1))
2798         {
2799                 /* Try four "random" directions */
2800                 mm[0] = mm[1] = mm[2] = mm[3] = 5;
2801
2802                 /* Look for an enemy */
2803 #if 0  /* Hack - Too slow.  Mimic pits are horrible with this on. */
2804                 get_enemy_dir(m_idx, mm);
2805 #endif /* 0 */
2806         }
2807
2808         /* Pets will follow the player */
2809         else if (is_pet(m_ptr))
2810         {
2811                 /* Are we trying to avoid the player? */
2812                 bool avoid = ((p_ptr->pet_follow_distance < 0) &&
2813                                                   (m_ptr->cdis <= (0 - p_ptr->pet_follow_distance)));
2814
2815                 /* Do we want to find the player? */
2816                 bool lonely = (!avoid && (m_ptr->cdis > p_ptr->pet_follow_distance));
2817
2818                 /* Should we find the player if we can't find a monster? */
2819                 bool distant = (m_ptr->cdis > PET_SEEK_DIST);
2820
2821                 /* by default, move randomly */
2822                 mm[0] = mm[1] = mm[2] = mm[3] = 5;
2823
2824                 /* Look for an enemy */
2825                 if (!get_enemy_dir(m_idx, mm))
2826                 {
2827                         /* Find the player if necessary */
2828                         if (avoid || lonely || distant)
2829                         {
2830                                 /* Remember the leash length */
2831                                 int dis = p_ptr->pet_follow_distance;
2832
2833                                 /* Hack -- adjust follow distance temporarily */
2834                                 if (p_ptr->pet_follow_distance > PET_SEEK_DIST)
2835                                 {
2836                                         p_ptr->pet_follow_distance = PET_SEEK_DIST;
2837                                 }
2838
2839                                 /* Find the player */
2840                                 (void)get_moves(m_idx, mm);
2841
2842                                 /* Restore the leash */
2843                                 p_ptr->pet_follow_distance = dis;
2844                         }
2845                 }
2846         }
2847
2848         /* Friendly monster movement */
2849         else if (!is_hostile(m_ptr))
2850         {
2851                 /* by default, move randomly */
2852                 mm[0] = mm[1] = mm[2] = mm[3] = 5;
2853
2854                 /* Look for an enemy */
2855                 get_enemy_dir(m_idx, mm);
2856         }
2857         /* Normal movement */
2858         else
2859         {
2860                 /* Logical moves, may do nothing */
2861                 if (!get_moves(m_idx, mm)) return;
2862         }
2863
2864         /* Assume nothing */
2865         do_turn = FALSE;
2866         do_move = FALSE;
2867         do_view = FALSE;
2868
2869         /* Assume nothing */
2870         did_open_door = FALSE;
2871         did_bash_door = FALSE;
2872         did_take_item = FALSE;
2873         did_kill_item = FALSE;
2874         did_move_body = FALSE;
2875         did_pass_wall = FALSE;
2876         did_kill_wall = FALSE;
2877
2878
2879         /* Take a zero-terminated array of "directions" */
2880         for (i = 0; mm[i]; i++)
2881         {
2882                 /* Get the direction */
2883                 d = mm[i];
2884
2885                 /* Hack -- allow "randomized" motion */
2886                 if (d == 5) d = ddd[randint0(8)];
2887
2888                 /* Get the destination */
2889                 ny = oy + ddy[d];
2890                 nx = ox + ddx[d];
2891
2892                 /* Ignore locations off of edge */
2893                 if (!in_bounds2(ny, nx)) continue;
2894
2895                 /* Access that cave grid */
2896                 c_ptr = &cave[ny][nx];
2897                 f_ptr = &f_info[c_ptr->feat];
2898                 can_cross = monster_can_cross_terrain(c_ptr->feat, r_ptr, is_riding_mon ? CEM_RIDING : 0);
2899
2900                 /* Access that cave grid's contents */
2901                 y_ptr = &m_list[c_ptr->m_idx];
2902
2903                 /* Hack -- player 'in' wall */
2904                 if (player_bold(ny, nx))
2905                 {
2906                         do_move = TRUE;
2907                 }
2908
2909                 else if (c_ptr->m_idx)
2910                 {
2911                         /* Possibly a monster to attack */
2912                         do_move = TRUE;
2913                 }
2914
2915                 /* Floor is open? */
2916                 else if (can_cross)
2917                 {
2918                         /* Go ahead and move */
2919                         do_move = TRUE;
2920
2921                         /* Monster moves through walls (and doors) */
2922                         if ((r_ptr->flags2 & RF2_PASS_WALL) && (!is_riding_mon || p_ptr->pass_wall) &&
2923                             have_flag(f_ptr->flags, FF_CAN_PASS))
2924                         {
2925                                 /* Monster went through a wall */
2926                                 did_pass_wall = TRUE;
2927                         }
2928
2929                         if ((r_ptr->flags2 & RF2_KILL_WALL) && have_flag(f_ptr->flags, FF_TUNNEL) &&
2930                             !have_flag(f_ptr->flags, FF_LOS) && !have_flag(f_ptr->flags, FF_PERMANENT))
2931                         {
2932                                 /* Monster destroyed a wall (later) */
2933                                 did_kill_wall = TRUE;
2934                         }
2935                 }
2936
2937                 /* Monster destroys walls (and doors) */
2938                 else if ((r_ptr->flags2 & RF2_KILL_WALL) && !is_riding_mon &&
2939                          have_flag(f_ptr->flags, FF_TUNNEL) && !have_flag(f_ptr->flags, FF_PERMANENT))
2940                 {
2941                         /* Eat through walls/doors/rubble */
2942                         do_move = TRUE;
2943
2944                         /* Monster destroyed a wall (later) */
2945                         did_kill_wall = TRUE;
2946                 }
2947
2948                 /* Handle doors and secret doors */
2949                 else if (is_closed_door(c_ptr->feat))
2950                 {
2951                         bool may_bash = TRUE;
2952                         feature_type *f_ptr = &f_info[c_ptr->feat];
2953
2954                         /* Assume no move allowed */
2955                         do_move = FALSE;
2956
2957                         /* Creature can open doors. */
2958                         if ((r_ptr->flags2 & RF2_OPEN_DOOR) && have_flag(f_ptr->flags, FF_OPEN) &&
2959                                  (!is_pet(m_ptr) || (p_ptr->pet_extra_flags & PF_OPEN_DOORS)))
2960                         {
2961                                 /* Closed doors */
2962                                 if (!f_ptr->power)
2963                                 {
2964                                         /* The door is open */
2965                                         did_open_door = TRUE;
2966
2967                                         /* Do not bash the door */
2968                                         may_bash = FALSE;
2969
2970                                         /* Take a turn */
2971                                         do_turn = TRUE;
2972                                 }
2973
2974                                 /* Locked doors (not jammed) */
2975                                 else
2976                                 {
2977                                         /* Try to unlock it XXX XXX XXX */
2978                                         if (randint0(m_ptr->hp / 10) > f_ptr->power)
2979                                         {
2980                                                 /* Unlock the door */
2981                                                 cave_alter_feat(ny, nx, FF_DISARM);
2982
2983                                                 /* Do not bash the door */
2984                                                 may_bash = FALSE;
2985
2986                                                 /* Take a turn */
2987                                                 do_turn = TRUE;
2988                                         }
2989                                 }
2990                         }
2991
2992                         /* Stuck doors -- attempt to bash them down if allowed */
2993                         if (may_bash && (r_ptr->flags2 & RF2_BASH_DOOR) && have_flag(f_ptr->flags, FF_BASH) &&
2994                                 (!is_pet(m_ptr) || (p_ptr->pet_extra_flags & PF_OPEN_DOORS)))
2995                         {
2996                                 /* Attempt to Bash XXX XXX XXX */
2997                                 if (randint0(m_ptr->hp / 10) > f_ptr->power)
2998                                 {
2999                                         /* Message */
3000 #ifdef JP
3001                                         msg_print("¥É¥¢¤ò᤭³«¤±¤ë²»¤¬¤·¤¿¡ª");
3002 #else
3003                                         msg_print("You hear a door burst open!");
3004 #endif
3005
3006                                         /* Disturb (sometimes) */
3007                                         if (disturb_minor) disturb(0, 0);
3008
3009                                         /* The door was bashed open */
3010                                         did_bash_door = TRUE;
3011
3012                                         /* Hack -- fall into doorway */
3013                                         do_move = TRUE;
3014                                 }
3015                         }
3016
3017
3018                         /* Deal with doors in the way */
3019                         if (did_open_door || did_bash_door)
3020                         {
3021                                 /* Break down the door */
3022                                 if (did_bash_door && ((randint0(100) < 50) || (feat_state(c_ptr->feat, FF_OPEN) == c_ptr->feat)))
3023                                 {
3024                                         cave_alter_feat(ny, nx, FF_BASH);
3025                                 }
3026
3027                                 /* Open the door */
3028                                 else
3029                                 {
3030                                         cave_alter_feat(ny, nx, FF_OPEN);
3031                                 }
3032
3033                                 /* Handle viewable doors */
3034                                 do_view = TRUE;
3035                         }
3036                 }
3037
3038                 /* Hack -- check for Glyph of Warding */
3039                 if (do_move && is_glyph_grid(c_ptr) &&
3040                     !((r_ptr->flags1 & RF1_NEVER_BLOW) && player_bold(ny, nx)))
3041                 {
3042                         /* Assume no move allowed */
3043                         do_move = FALSE;
3044
3045                         /* Break the ward */
3046                         if (!is_pet(m_ptr) && (randint1(BREAK_GLYPH) < r_ptr->level))
3047                         {
3048                                 /* Describe observable breakage */
3049                                 if (c_ptr->info & CAVE_MARK)
3050                                 {
3051 #ifdef JP
3052                                         msg_print("¼é¤ê¤Î¥ë¡¼¥ó¤¬²õ¤ì¤¿¡ª");
3053 #else
3054                                         msg_print("The rune of protection is broken!");
3055 #endif
3056                                 }
3057
3058                                 /* Forget the rune */
3059                                 c_ptr->info &= ~(CAVE_MARK);
3060
3061                                 /* Break the rune */
3062                                 c_ptr->info &= ~(CAVE_OBJECT);
3063                                 c_ptr->mimic = 0;
3064
3065                                 /* Allow movement */
3066                                 do_move = TRUE;
3067
3068                                 /* Notice */
3069                                 note_spot(ny, nx);
3070                         }
3071                 }
3072                 else if (do_move && is_explosive_rune_grid(c_ptr) &&
3073                          !((r_ptr->flags1 & RF1_NEVER_BLOW) && player_bold(ny, nx)))
3074                 {
3075                         /* Assume no move allowed */
3076                         do_move = FALSE;
3077
3078                         /* Break the ward */
3079                         if (!is_pet(m_ptr))
3080                         {
3081                                 /* Break the ward */
3082                                 if (randint1(BREAK_MINOR_GLYPH) > r_ptr->level)
3083                                 {
3084                                         /* Describe observable breakage */
3085                                         if (c_ptr->info & CAVE_MARK)
3086                                         {
3087 #ifdef JP
3088                                                 msg_print("¥ë¡¼¥ó¤¬Çúȯ¤·¤¿¡ª");
3089 #else
3090                                                 msg_print("The rune explodes!");
3091 #endif
3092
3093                                                 project(0, 2, ny, nx, 2 * (p_ptr->lev + damroll(7, 7)), GF_MANA, (PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL | PROJECT_JUMP | PROJECT_NO_HANGEKI), -1);
3094                                         }
3095                                 }
3096                                 else
3097                                 {
3098 #ifdef JP
3099                                         msg_print("Çúȯ¤Î¥ë¡¼¥ó¤Ï²ò½ü¤µ¤ì¤¿¡£");
3100 #else
3101                                         msg_print("An explosive rune was disarmed.");
3102 #endif
3103                                 }
3104
3105                                 /* Forget the rune */
3106                                 c_ptr->info &= ~(CAVE_MARK);
3107
3108                                 /* Break the rune */
3109                                 c_ptr->info &= ~(CAVE_OBJECT);
3110                                 c_ptr->mimic = 0;
3111
3112                                 note_spot(ny, nx);
3113                                 lite_spot(ny, nx);
3114
3115                                 if (!m_ptr->r_idx) return;
3116                                 /* Allow movement */
3117                                 do_move = TRUE;
3118                         }
3119                 }
3120
3121                 /* The player is in the way */
3122                 if (do_move && player_bold(ny, nx))
3123                 {
3124                         /* Some monsters never attack */
3125                         if (r_ptr->flags1 & RF1_NEVER_BLOW)
3126                         {
3127                                 /* Hack -- memorize lack of attacks */
3128                                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags1 |= (RF1_NEVER_BLOW);
3129
3130                                 /* Do not move */
3131                                 do_move = FALSE;
3132                         }
3133
3134                         /* In anti-melee dungeon, stupid or confused monster takes useless turn */
3135                         if (do_move && (d_info[dungeon_type].flags1 & DF1_NO_MELEE))
3136                         {
3137                                 if (!m_ptr->confused)
3138                                 {
3139                                         if (!(r_ptr->flags2 & RF2_STUPID)) do_move = FALSE;
3140                                         else
3141                                         {
3142                                                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags2 |= (RF2_STUPID);
3143                                         }
3144                                 }
3145                         }
3146
3147                         /* The player is in the way.  Attack him. */
3148                         if (do_move)
3149                         {
3150                                 if (!p_ptr->riding || one_in_(2))
3151                                 {
3152                                         /* Do the attack */
3153                                         (void)make_attack_normal(m_idx);
3154
3155                                         /* Do not move */
3156                                         do_move = FALSE;
3157
3158                                         /* Took a turn */
3159                                         do_turn = TRUE;
3160                                 }
3161                         }
3162                 }
3163
3164                 /* A monster is in the way */
3165                 if (do_move && c_ptr->m_idx)
3166                 {
3167                         monster_race *z_ptr = &r_info[y_ptr->r_idx];
3168
3169                         /* Assume no movement */
3170                         do_move = FALSE;
3171
3172                         /* Attack 'enemies' */
3173                         if (((r_ptr->flags2 & RF2_KILL_BODY) && !(r_ptr->flags1 & RF1_NEVER_BLOW) &&
3174                                  (r_ptr->mexp * r_ptr->level > z_ptr->mexp * z_ptr->level) &&
3175                                  can_cross && (c_ptr->m_idx != p_ptr->riding)) ||
3176                                 are_enemies(m_ptr, y_ptr) || m_ptr->confused)
3177                         {
3178                                 if (!(r_ptr->flags1 & RF1_NEVER_BLOW))
3179                                 {
3180                                         if (r_ptr->flags2 & RF2_KILL_BODY)
3181                                         {
3182                                                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags2 |= (RF2_KILL_BODY);
3183                                         }
3184
3185                                         /* attack */
3186                                         if (y_ptr->r_idx && (y_ptr->hp >= 0))
3187                                         {
3188                                                 if (monst_attack_monst(m_idx, c_ptr->m_idx)) return;
3189
3190                                                 /* In anti-melee dungeon, stupid or confused monster takes useless turn */
3191                                                 else if (d_info[dungeon_type].flags1 & DF1_NO_MELEE)
3192                                                 {
3193                                                         if (m_ptr->confused) return;
3194                                                         else if (r_ptr->flags2 & RF2_STUPID)
3195                                                         {
3196                                                                 if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags2 |= (RF2_STUPID);
3197                                                                 return;
3198                                                         }
3199                                                 }
3200                                         }
3201                                 }
3202                         }
3203
3204                         /* Push past weaker monsters (unless leaving a wall) */
3205                         else if ((r_ptr->flags2 & RF2_MOVE_BODY) && !(r_ptr->flags1 & RF1_NEVER_MOVE) &&
3206                                 (r_ptr->mexp > z_ptr->mexp) &&
3207                                 can_cross && (c_ptr->m_idx != p_ptr->riding) &&
3208                                 monster_can_cross_terrain(cave[m_ptr->fy][m_ptr->fx].feat, z_ptr, 0))
3209                         {
3210                                 /* Allow movement */
3211                                 do_move = TRUE;
3212
3213                                 /* Monster pushed past another monster */
3214                                 did_move_body = TRUE;
3215
3216                                 /* Wake up the moved monster */
3217                                 y_ptr->csleep = 0;
3218
3219                                 if (r_info[y_ptr->r_idx].flags7 & (RF7_LITE_MASK | RF7_DARK_MASK))
3220                                         p_ptr->update |= (PU_MON_LITE);
3221
3222                                 if (y_ptr->ml)
3223                                 {
3224                                         /* Redraw the health bar */
3225                                         if (p_ptr->health_who == c_ptr->m_idx) p_ptr->redraw |= (PR_HEALTH);
3226                                 }
3227
3228                                 /* XXX XXX XXX Message */
3229                         }
3230                 }
3231
3232                 /*
3233                  * Check if monster can cross terrain
3234                  * This is checked after the normal attacks
3235                  * to allow monsters to attack an enemy,
3236                  * even if it can't enter the terrain.
3237                  */
3238                 if (do_move && !can_cross && !did_kill_wall && !did_bash_door)
3239                 {
3240                         /* Assume no move allowed */
3241                         do_move = FALSE;
3242                 }
3243
3244                 /* Some monsters never move */
3245                 if (do_move && (r_ptr->flags1 & RF1_NEVER_MOVE))
3246                 {
3247                         /* Hack -- memorize lack of attacks */
3248                         if (is_original_ap_and_seen(m_ptr)) r_ptr->r_flags1 |= (RF1_NEVER_MOVE);
3249
3250                         /* Do not move */
3251                         do_move = FALSE;
3252                 }
3253
3254                 if (is_riding_mon)
3255                 {
3256                         if (!p_ptr->riding_ryoute && !(m_list[p_ptr->riding].monfear)) do_move = FALSE;
3257                 }
3258
3259                 /* Creature has been allowed move */
3260                 if (do_move)
3261                 {
3262                         s16b this_o_idx, next_o_idx;
3263
3264                         /* Take a turn */
3265                         do_turn = TRUE;
3266
3267                         if (did_kill_wall)
3268                         {
3269                                 if (one_in_(GRINDNOISE))
3270                                 {
3271 #ifdef JP
3272                                         msg_print("¥®¥·¥®¥·¤¤¤¦²»¤¬Ê¹¤³¤¨¤ë¡£");
3273 #else
3274                                         msg_print("There is a grinding sound.");
3275 #endif
3276                                 }
3277
3278                                 cave_alter_feat(ny, nx, FF_HURT_DISI);
3279
3280                                 /* Note changes to viewable region */
3281                                 do_view = TRUE;
3282                         }
3283                         else if (have_flag(f_ptr->flags, FF_TREE))
3284                         {
3285                                 if (!(r_ptr->flags7 & RF7_CAN_FLY) && (!is_riding_mon || !p_ptr->levitation) && !(r_ptr->flags8 & RF8_WILD_WOOD))
3286                                 {
3287                                         m_ptr->energy_need += ENERGY_NEED();
3288                                 }
3289                         }
3290
3291                         if (!is_riding_mon)
3292                         {
3293                                 /* Hack -- Update the old location */
3294                                 cave[oy][ox].m_idx = c_ptr->m_idx;
3295
3296                                 /* Mega-Hack -- move the old monster, if any */
3297                                 if (c_ptr->m_idx)
3298                                 {
3299                                         /* Move the old monster */
3300                                         y_ptr->fy = oy;
3301                                         y_ptr->fx = ox;
3302
3303                                         /* Update the old monster */
3304                                         update_mon(c_ptr->m_idx, TRUE);
3305                                 }
3306
3307                                 /* Hack -- Update the new location */
3308                                 c_ptr->m_idx = m_idx;
3309
3310                                 /* Move the monster */
3311                                 m_ptr->fy = ny;
3312                                 m_ptr->fx = nx;
3313
3314                                 /* Update the monster */
3315                                 update_mon(m_idx, TRUE);
3316
3317                                 /* Redraw the old grid */
3318                                 lite_spot(oy, ox);
3319
3320                                 /* Redraw the new grid */
3321                                 lite_spot(ny, nx);
3322                         }
3323                         else
3324                         {
3325                                 /* Sound */
3326                                 /* sound(SOUND_WALK); */
3327
3328                                 /* Move the player */
3329                                 if (!move_player_effect(ny, nx, MPE_DONT_PICKUP)) break;
3330                         }
3331
3332                         /* Possible disturb */
3333                         if (m_ptr->ml &&
3334                             (disturb_move ||
3335                              (disturb_near && (m_ptr->mflag & MFLAG_VIEW)) ||
3336                              (disturb_high && ap_r_ptr->r_tkills && ap_r_ptr->level >= p_ptr->lev)))
3337                         {
3338                                 /* Disturb */
3339                                 if (is_hostile(m_ptr))
3340                                         disturb(0, 0);
3341                         }
3342
3343                         /* Scan all objects in the grid */
3344                         for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
3345                         {
3346                                 object_type *o_ptr;
3347
3348                                 /* Acquire object */
3349                                 o_ptr = &o_list[this_o_idx];
3350
3351                                 /* Acquire next object */
3352                                 next_o_idx = o_ptr->next_o_idx;
3353
3354                                 /* Skip gold */
3355                                 if (o_ptr->tval == TV_GOLD) continue;
3356
3357                                 /*
3358                                  * Skip "real" corpses and statues, to avoid extreme
3359                                  * silliness like a novice rogue pockets full of statues
3360                                  * and corpses.
3361                                  */
3362                                 if ((o_ptr->tval == TV_CORPSE) ||
3363                                     (o_ptr->tval == TV_STATUE)) continue;
3364
3365                                 /* Take or Kill objects on the floor */
3366                                 if ((r_ptr->flags2 & (RF2_TAKE_ITEM | RF2_KILL_ITEM)) &&
3367                                          (!is_pet(m_ptr) || (p_ptr->pet_extra_flags & PF_PICKUP_ITEMS)))
3368                                 {
3369                                         u32b flgs[TR_FLAG_SIZE];
3370
3371                                         u32b flg2 = 0L;
3372                                         u32b flg3 = 0L;
3373
3374                                         char m_name[80];
3375                                         char o_name[MAX_NLEN];
3376
3377                                         /* Extract some flags */
3378                                         object_flags(o_ptr, flgs);
3379
3380                                         /* Acquire the object name */
3381                                         object_desc(o_name, o_ptr, 0);
3382
3383                                         /* Acquire the monster name */
3384                                         monster_desc(m_name, m_ptr, MD_INDEF_HIDDEN);
3385
3386                                         /* React to objects that hurt the monster */
3387                                         if (have_flag(flgs, TR_KILL_DRAGON)) flg3 |= (RF3_DRAGON);
3388                                         if (have_flag(flgs, TR_SLAY_DRAGON)) flg3 |= (RF3_DRAGON);
3389                                         if (have_flag(flgs, TR_SLAY_TROLL))  flg3 |= (RF3_TROLL);
3390                                         if (have_flag(flgs, TR_KILL_TROLL))  flg3 |= (RF3_TROLL);
3391                                         if (have_flag(flgs, TR_KILL_GIANT))  flg3 |= (RF3_GIANT);
3392                                         if (have_flag(flgs, TR_SLAY_GIANT))  flg3 |= (RF3_GIANT);
3393                                         if (have_flag(flgs, TR_SLAY_ORC))    flg3 |= (RF3_ORC);
3394                                         if (have_flag(flgs, TR_KILL_ORC))    flg3 |= (RF3_ORC);
3395                                         if (have_flag(flgs, TR_SLAY_DEMON))  flg3 |= (RF3_DEMON);
3396                                         if (have_flag(flgs, TR_KILL_DEMON))  flg3 |= (RF3_DEMON);
3397                                         if (have_flag(flgs, TR_SLAY_UNDEAD)) flg3 |= (RF3_UNDEAD);
3398                                         if (have_flag(flgs, TR_KILL_UNDEAD)) flg3 |= (RF3_UNDEAD);
3399                                         if (have_flag(flgs, TR_SLAY_ANIMAL)) flg3 |= (RF3_ANIMAL);
3400                                         if (have_flag(flgs, TR_KILL_ANIMAL)) flg3 |= (RF3_ANIMAL);
3401                                         if (have_flag(flgs, TR_SLAY_EVIL))   flg3 |= (RF3_EVIL);
3402                                         if (have_flag(flgs, TR_KILL_EVIL))   flg3 |= (RF3_EVIL);
3403                                         if (have_flag(flgs, TR_SLAY_HUMAN))  flg2 |= (RF2_HUMAN);
3404                                         if (have_flag(flgs, TR_KILL_HUMAN))  flg2 |= (RF2_HUMAN);
3405
3406                                         /* The object cannot be picked up by the monster */
3407                                         if (object_is_artifact(o_ptr) || (r_ptr->flags3 & flg3) || (r_ptr->flags2 & flg2))
3408                                         {
3409                                                 /* Only give a message for "take_item" */
3410                                                 if ((r_ptr->flags2 & (RF2_TAKE_ITEM)) && (r_ptr->flags2 & (RF2_STUPID)))
3411                                                 {
3412                                                         /* Take note */
3413                                                         did_take_item = TRUE;
3414
3415                                                         /* Describe observable situations */
3416                                                         if (m_ptr->ml && player_can_see_bold(ny, nx))
3417                                                         {
3418                                                                 /* Dump a message */
3419 #ifdef JP
3420                                                                 msg_format("%^s¤Ï%s¤ò½¦¤ª¤¦¤È¤·¤¿¤¬¡¢¤À¤á¤À¤Ã¤¿¡£", m_name, o_name);
3421 #else
3422                                                                 msg_format("%^s tries to pick up %s, but fails.", m_name, o_name);
3423 #endif
3424                                                         }
3425                                                 }
3426                                         }
3427
3428                                         /* Pick up the item */
3429                                         else if (r_ptr->flags2 & RF2_TAKE_ITEM)
3430                                         {
3431                                                 /* Take note */
3432                                                 did_take_item = TRUE;
3433
3434                                                 /* Describe observable situations */
3435                                                 if (player_can_see_bold(ny, nx))
3436                                                 {
3437                                                         /* Dump a message */
3438 #ifdef JP
3439                                                         msg_format("%^s¤¬%s¤ò½¦¤Ã¤¿¡£", m_name, o_name);
3440 #else
3441                                                         msg_format("%^s picks up %s.", m_name, o_name);
3442 #endif
3443                                                 }
3444
3445                                                 /* Excise the object */
3446                                                 excise_object_idx(this_o_idx);
3447
3448                                                 /* Forget mark */
3449                                                 o_ptr->marked = 0;
3450
3451                                                 /* Forget location */
3452                                                 o_ptr->iy = o_ptr->ix = 0;
3453
3454                                                 /* Memorize monster */
3455                                                 o_ptr->held_m_idx = m_idx;
3456
3457                                                 /* Build a stack */
3458                                                 o_ptr->next_o_idx = m_ptr->hold_o_idx;
3459
3460                                                 /* Carry object */
3461                                                 m_ptr->hold_o_idx = this_o_idx;
3462                                         }
3463
3464                                         /* Destroy the item if not a pet */
3465                                         else if (!is_pet(m_ptr))
3466                                         {
3467                                                 /* Take note */
3468                                                 did_kill_item = TRUE;
3469
3470                                                 /* Describe observable situations */
3471                                                 if (player_has_los_bold(ny, nx))
3472                                                 {
3473                                                         /* Dump a message */
3474 #ifdef JP
3475                                                         msg_format("%^s¤¬%s¤òÇ˲õ¤·¤¿¡£", m_name, o_name);
3476 #else
3477                                                         msg_format("%^s destroys %s.", m_name, o_name);
3478 #endif
3479                                                 }
3480
3481                                                 /* Delete the object */
3482                                                 delete_object_idx(this_o_idx);
3483                                         }
3484                                 }
3485                         }
3486                 }
3487
3488                 /* Stop when done */
3489                 if (do_turn) break;
3490         }
3491
3492         /*
3493          *  Forward movements failed, but now received LOS attack!
3494          *  Try to flow by smell.
3495          */
3496         if (p_ptr->no_flowed && i > 2 &&  m_ptr->target_y)
3497                 m_ptr->mflag2 &= ~MFLAG2_NOFLOW;
3498
3499         /* If we haven't done anything, try casting a spell again */
3500         if (!do_turn && !do_move && !m_ptr->monfear && !is_riding_mon && aware)
3501         {
3502                 /* Try to cast spell again */
3503                 if (r_ptr->freq_spell && randint1(100) <= r_ptr->freq_spell)
3504                 {
3505                         if (make_attack_spell(m_idx)) return;
3506                 }
3507         }
3508
3509
3510         /* Notice changes in view */
3511         if (do_view)
3512         {
3513                 /* Update some things */
3514                 p_ptr->update |= (PU_FLOW);
3515
3516                 /* Window stuff */
3517                 p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
3518         }
3519
3520         /* Notice changes in view */
3521         if (do_move && ((r_ptr->flags7 & (RF7_SELF_LD_MASK | RF7_HAS_DARK_1 | RF7_HAS_DARK_2))
3522                 || ((r_ptr->flags7 & (RF7_HAS_LITE_1 | RF7_HAS_LITE_2)) && !p_ptr->inside_battle)))
3523         {
3524                 /* Update some things */
3525                 p_ptr->update |= (PU_MON_LITE);
3526         }
3527
3528         /* Learn things from observable monster */
3529         if (is_original_ap_and_seen(m_ptr))
3530         {
3531                 /* Monster opened a door */
3532                 if (did_open_door) r_ptr->r_flags2 |= (RF2_OPEN_DOOR);
3533
3534                 /* Monster bashed a door */
3535                 if (did_bash_door) r_ptr->r_flags2 |= (RF2_BASH_DOOR);
3536
3537                 /* Monster tried to pick something up */
3538                 if (did_take_item) r_ptr->r_flags2 |= (RF2_TAKE_ITEM);
3539
3540                 /* Monster tried to crush something */
3541                 if (did_kill_item) r_ptr->r_flags2 |= (RF2_KILL_ITEM);
3542
3543                 /* Monster pushed past another monster */
3544                 if (did_move_body) r_ptr->r_flags2 |= (RF2_MOVE_BODY);
3545
3546                 /* Monster passed through a wall */
3547                 if (did_pass_wall) r_ptr->r_flags2 |= (RF2_PASS_WALL);
3548
3549                 /* Monster destroyed a wall */
3550                 if (did_kill_wall) r_ptr->r_flags2 |= (RF2_KILL_WALL);
3551         }
3552
3553
3554         /* Hack -- get "bold" if out of options */
3555         if (!do_turn && !do_move && m_ptr->monfear && aware)
3556         {
3557                 /* No longer afraid */
3558                 m_ptr->monfear = 0;
3559
3560                 /* Message if seen */
3561                 if (see_m)
3562                 {
3563                         char m_name[80];
3564
3565                         /* Acquire the monster name */
3566                         monster_desc(m_name, m_ptr, 0);
3567
3568                         /* Dump a message */
3569 #ifdef JP
3570 msg_format("%^s¤ÏÀ襤¤ò·è°Õ¤·¤¿¡ª", m_name);
3571 #else
3572                         msg_format("%^s turns to fight!", m_name);
3573 #endif
3574
3575                         /* Redraw (later) if needed */
3576                         if (p_ptr->health_who == m_idx) p_ptr->redraw |= (PR_HEALTH);
3577
3578                         chg_virtue(V_COMPASSION, -1);
3579                 }
3580
3581                 /* XXX XXX XXX Actually do something now (?) */
3582         }
3583 }
3584
3585 /*
3586  * Process all the "live" monsters, once per game turn.
3587  *
3588  * During each game turn, we scan through the list of all the "live" monsters,
3589  * (backwards, so we can excise any "freshly dead" monsters), energizing each
3590  * monster, and allowing fully energized monsters to move, attack, pass, etc.
3591  *
3592  * Note that monsters can never move in the monster array (except when the
3593  * "compact_monsters()" function is called by "dungeon()" or "save_player()").
3594  *
3595  * This function is responsible for at least half of the processor time
3596  * on a normal system with a "normal" amount of monsters and a player doing
3597  * normal things.
3598  *
3599  * When the player is resting, virtually 90% of the processor time is spent
3600  * in this function, and its children, "process_monster()" and "make_move()".
3601  *
3602  * Most of the rest of the time is spent in "update_view()" and "lite_spot()",
3603  * especially when the player is running.
3604  *
3605  * Note the special "MFLAG_BORN" flag, which allows us to ignore "fresh"
3606  * monsters while they are still being "born".  A monster is "fresh" only
3607  * during the turn in which it is created, and we use the "hack_m_idx" to
3608  * determine if the monster is yet to be processed during the current turn.
3609  *
3610  * Note the special "MFLAG_NICE" flag, which allows the player to get one
3611  * move before any "nasty" monsters get to use their spell attacks.
3612  *
3613  * Note that when the "knowledge" about the currently tracked monster
3614  * changes (flags, attacks, spells), we induce a redraw of the monster
3615  * recall window.
3616  */
3617 void process_monsters(void)
3618 {
3619         int             i;
3620         int             fx, fy;
3621
3622         bool            test;
3623
3624         monster_type    *m_ptr;
3625         monster_race    *r_ptr;
3626
3627         int             old_monster_race_idx;
3628
3629         u32b    old_r_flags1 = 0L;
3630         u32b    old_r_flags2 = 0L;
3631         u32b    old_r_flags3 = 0L;
3632         u32b    old_r_flags4 = 0L;
3633         u32b    old_r_flags5 = 0L;
3634         u32b    old_r_flags6 = 0L;
3635         u32b    old_r_flagsr = 0L;
3636
3637         byte    old_r_blows0 = 0;
3638         byte    old_r_blows1 = 0;
3639         byte    old_r_blows2 = 0;
3640         byte    old_r_blows3 = 0;
3641
3642         byte    old_r_cast_spell = 0;
3643
3644         int speed;
3645
3646         /* Clear monster fighting indicator */
3647         mon_fight = FALSE;
3648
3649         /* Memorize old race */
3650         old_monster_race_idx = p_ptr->monster_race_idx;
3651
3652         /* Acquire knowledge */
3653         if (p_ptr->monster_race_idx)
3654         {
3655                 /* Acquire current monster */
3656                 r_ptr = &r_info[p_ptr->monster_race_idx];
3657
3658                 /* Memorize flags */
3659                 old_r_flags1 = r_ptr->r_flags1;
3660                 old_r_flags2 = r_ptr->r_flags2;
3661                 old_r_flags3 = r_ptr->r_flags3;
3662                 old_r_flags4 = r_ptr->r_flags4;
3663                 old_r_flags5 = r_ptr->r_flags5;
3664                 old_r_flags6 = r_ptr->r_flags6;
3665                 old_r_flagsr = r_ptr->r_flagsr;
3666
3667                 /* Memorize blows */
3668                 old_r_blows0 = r_ptr->r_blows[0];
3669                 old_r_blows1 = r_ptr->r_blows[1];
3670                 old_r_blows2 = r_ptr->r_blows[2];
3671                 old_r_blows3 = r_ptr->r_blows[3];
3672
3673                 /* Memorize castings */
3674                 old_r_cast_spell = r_ptr->r_cast_spell;
3675         }
3676
3677
3678         /* Process the monsters (backwards) */
3679         for (i = m_max - 1; i >= 1; i--)
3680         {
3681                 /* Access the monster */
3682                 m_ptr = &m_list[i];
3683                 r_ptr = &r_info[m_ptr->r_idx];
3684
3685                 /* Handle "leaving" */
3686                 if (p_ptr->leaving) break;
3687
3688                 /* Ignore "dead" monsters */
3689                 if (!m_ptr->r_idx) continue;
3690
3691                 if (p_ptr->wild_mode) continue;
3692
3693
3694                 /* Handle "fresh" monsters */
3695                 if (m_ptr->mflag & MFLAG_BORN)
3696                 {
3697                         /* No longer "fresh" */
3698                         m_ptr->mflag &= ~(MFLAG_BORN);
3699
3700                         /* Skip */
3701                         continue;
3702                 }
3703
3704                 /* Hack -- Require proximity */
3705                 if (m_ptr->cdis >= AAF_LIMIT) continue;
3706
3707
3708                 /* Access the location */
3709                 fx = m_ptr->fx;
3710                 fy = m_ptr->fy;
3711
3712                 /* Flow by smell is allowed */
3713                 if (!p_ptr->no_flowed)
3714                 {
3715                         m_ptr->mflag2 &= ~MFLAG2_NOFLOW;
3716                 }
3717
3718                 /* Assume no move */
3719                 test = FALSE;
3720
3721                 /* Handle "sensing radius" */
3722                 if (m_ptr->cdis <= (is_pet(m_ptr) ? (r_ptr->aaf > MAX_SIGHT ? MAX_SIGHT : r_ptr->aaf) : r_ptr->aaf))
3723                 {
3724                         /* We can "sense" the player */
3725                         test = TRUE;
3726                 }
3727
3728                 /* Handle "sight" and "aggravation" */
3729                 else if ((m_ptr->cdis <= MAX_SIGHT) &&
3730                         (player_has_los_bold(fy, fx) || (p_ptr->cursed & TRC_AGGRAVATE)))
3731                 {
3732                         /* We can "see" or "feel" the player */
3733                         test = TRUE;
3734                 }
3735
3736 #if 0 /* (cave[py][px].when == cave[fy][fx].when) is always FALSE... */
3737                 /* Hack -- Monsters can "smell" the player from far away */
3738                 /* Note that most monsters have "aaf" of "20" or so */
3739                 else if (!(m_ptr->mflag2 & MFLAG2_NOFLOW) &&
3740                         cave_have_flag_bold(py, px, FF_MOVE) &&
3741                         (cave[py][px].when == cave[fy][fx].when) &&
3742                         (cave[fy][fx].dist < MONSTER_FLOW_DEPTH) &&
3743                         (cave[fy][fx].dist < r_ptr->aaf))
3744                 {
3745                         /* We can "smell" the player */
3746                         test = TRUE;
3747                 }
3748 #endif
3749                 else if (m_ptr->target_y) test = TRUE;
3750
3751                 /* Do nothing */
3752                 if (!test) continue;
3753
3754
3755                 if (p_ptr->riding == i)
3756                         speed = p_ptr->pspeed;
3757                 else
3758                 {
3759                         speed = m_ptr->mspeed;
3760
3761                         /* Monsters move quickly in Nightmare mode */
3762                         if (ironman_nightmare) speed += 5;
3763
3764                         if (m_ptr->fast) speed += 10;
3765                         if (m_ptr->slow) speed -= 10;
3766                 }
3767
3768                 /* Give this monster some energy */
3769                 m_ptr->energy_need -= SPEED_TO_ENERGY(speed);
3770
3771                 /* Not enough energy to move */
3772                 if (m_ptr->energy_need > 0) continue;
3773
3774                 /* Use up "some" energy */
3775                 m_ptr->energy_need += ENERGY_NEED();
3776
3777
3778                 /* Save global index */
3779                 hack_m_idx = i;
3780
3781                 /* Process the monster */
3782                 process_monster(i);
3783
3784                 reset_target(m_ptr);
3785
3786                 /* Give up flow_by_smell when it might useless */
3787                 if (p_ptr->no_flowed && one_in_(3))
3788                         m_ptr->mflag2 |= MFLAG2_NOFLOW;
3789
3790                 /* Hack -- notice death or departure */
3791                 if (!p_ptr->playing || p_ptr->is_dead) break;
3792
3793                 /* Notice leaving */
3794                 if (p_ptr->leaving) break;
3795         }
3796
3797         /* Reset global index */
3798         hack_m_idx = 0;
3799
3800
3801         /* Tracking a monster race (the same one we were before) */
3802         if (p_ptr->monster_race_idx && (p_ptr->monster_race_idx == old_monster_race_idx))
3803         {
3804                 /* Acquire monster race */
3805                 r_ptr = &r_info[p_ptr->monster_race_idx];
3806
3807                 /* Check for knowledge change */
3808                 if ((old_r_flags1 != r_ptr->r_flags1) ||
3809                         (old_r_flags2 != r_ptr->r_flags2) ||
3810                         (old_r_flags3 != r_ptr->r_flags3) ||
3811                         (old_r_flags4 != r_ptr->r_flags4) ||
3812                         (old_r_flags5 != r_ptr->r_flags5) ||
3813                         (old_r_flags6 != r_ptr->r_flags6) ||
3814                         (old_r_flagsr != r_ptr->r_flagsr) ||
3815                         (old_r_blows0 != r_ptr->r_blows[0]) ||
3816                         (old_r_blows1 != r_ptr->r_blows[1]) ||
3817                         (old_r_blows2 != r_ptr->r_blows[2]) ||
3818                         (old_r_blows3 != r_ptr->r_blows[3]) ||
3819                         (old_r_cast_spell != r_ptr->r_cast_spell))
3820                 {
3821                         /* Window stuff */
3822                         p_ptr->window |= (PW_MONSTER);
3823                 }
3824         }
3825 }
3826
3827
3828
3829 bool process_the_world(int num, int who, bool vs_player)
3830 {
3831         monster_type *m_ptr = &m_list[hack_m_idx];  /* the world monster */
3832
3833         if(world_monster) return (FALSE);
3834
3835         if(vs_player)
3836         {
3837                 char m_name[80];
3838                 monster_desc(m_name, m_ptr, 0);
3839
3840                 if (who == 1)
3841 #ifdef JP
3842                         msg_print("¡Ö¡Ø¥¶¡¦¥ï¡¼¥ë¥É¡Ù¡ª»þ¤Ï»ß¤Þ¤Ã¤¿¡ª¡×");
3843 #else
3844                         msg_format("%s yells 'The World! Time has stopped!'", m_name);
3845 #endif
3846                 else if (who == 3)
3847 #ifdef JP
3848                         msg_print("¡Ö»þ¤è¡ª¡×");
3849 #else
3850                         msg_format("%s yells 'Time!'", m_name);
3851 #endif
3852                 else msg_print("hek!");
3853
3854                 msg_print(NULL);
3855         }
3856
3857         /* This monster cast spells */
3858         world_monster = hack_m_idx;
3859
3860         if (vs_player) do_cmd_redraw();
3861
3862         while(num--)
3863         {
3864                 if(!m_ptr->r_idx) break;
3865                 process_monster(world_monster);
3866
3867                 reset_target(m_ptr);
3868
3869                 /* Notice stuff */
3870                 if (p_ptr->notice) notice_stuff();
3871
3872                 /* Update stuff */
3873                 if (p_ptr->update) update_stuff();
3874
3875                 /* Redraw stuff */
3876                 if (p_ptr->redraw) redraw_stuff();
3877
3878                 /* Redraw stuff */
3879                 if (p_ptr->window) window_stuff();
3880
3881                 /* Delay */
3882                 if (vs_player) Term_xtra(TERM_XTRA_DELAY, 500);
3883         }
3884
3885         /* Redraw map */
3886         p_ptr->redraw |= (PR_MAP);
3887
3888         /* Update monsters */
3889         p_ptr->update |= (PU_MONSTERS);
3890
3891         /* Window stuff */
3892         p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
3893
3894         world_monster = 0;
3895         if (vs_player || (player_has_los_bold(m_ptr->fy, m_ptr->fx) && projectable(py, px, m_ptr->fy, m_ptr->fx)))
3896         {
3897 #ifdef JP
3898                 msg_print("¡Ö»þ¤ÏÆ°¤­¤À¤¹¡Ä¡×");
3899 #else
3900                 msg_print("You feel time flowing around you once more.");
3901 #endif
3902                 msg_print(NULL);
3903         }
3904
3905         handle_stuff();
3906
3907         return (TRUE);
3908 }
3909
3910
3911 void monster_gain_exp(int m_idx, int s_idx)
3912 {
3913         monster_type *m_ptr = &m_list[m_idx];
3914         monster_race *r_ptr = &r_info[m_ptr->r_idx];
3915         monster_race *s_ptr = &r_info[s_idx];
3916         int new_exp;
3917
3918         if (p_ptr->inside_battle) return;
3919
3920         if (!r_ptr->next_exp) return;
3921
3922         new_exp = s_ptr->mexp * s_ptr->level / (r_ptr->level + 2);
3923         if (m_idx == p_ptr->riding) new_exp = (new_exp + 1) / 2;
3924         if (!dun_level) new_exp /= 5;
3925         m_ptr->exp += new_exp;
3926         if (m_ptr->mflag2 & MFLAG2_CHAMELEON) return;
3927
3928         if (m_ptr->exp >= r_ptr->next_exp)
3929         {
3930                 char m_name[80];
3931                 int old_hp = m_ptr->hp;
3932                 int old_maxhp = m_ptr->max_maxhp;
3933                 int old_r_idx = m_ptr->r_idx;
3934                 byte old_sub_align = m_ptr->sub_align;
3935
3936                 /* Hack -- Reduce the racial counter of previous monster */
3937                 real_r_ptr(m_ptr)->cur_num--;
3938
3939                 monster_desc(m_name, m_ptr, 0);
3940                 m_ptr->r_idx = r_ptr->next_r_idx;
3941
3942                 /* Count the monsters on the level */
3943                 real_r_ptr(m_ptr)->cur_num++;
3944
3945                 m_ptr->ap_r_idx = m_ptr->r_idx;
3946                 r_ptr = &r_info[m_ptr->r_idx];
3947
3948                 if (r_ptr->flags1 & RF1_FORCE_MAXHP)
3949                 {
3950                         m_ptr->max_maxhp = maxroll(r_ptr->hdice, r_ptr->hside);
3951                 }
3952                 else
3953                 {
3954                         m_ptr->max_maxhp = damroll(r_ptr->hdice, r_ptr->hside);
3955                 }
3956                 if (ironman_nightmare)
3957                 {
3958                         u32b hp = m_ptr->max_maxhp * 2L;
3959
3960                         m_ptr->max_maxhp = (s16b)MIN(30000, hp);
3961                 }
3962                 m_ptr->maxhp = m_ptr->max_maxhp;
3963                 m_ptr->hp = old_hp * m_ptr->maxhp / old_maxhp;
3964
3965                 /* Extract the monster base speed */
3966                 m_ptr->mspeed = get_mspeed(r_ptr);
3967
3968                 /* Sub-alignment of a monster */
3969                 if (!is_pet(m_ptr) && !(r_ptr->flags3 & (RF3_EVIL | RF3_GOOD)))
3970                         m_ptr->sub_align = old_sub_align;
3971                 else
3972                 {
3973                         m_ptr->sub_align = SUB_ALIGN_NEUTRAL;
3974                         if (r_ptr->flags3 & RF3_EVIL) m_ptr->sub_align |= SUB_ALIGN_EVIL;
3975                         if (r_ptr->flags3 & RF3_GOOD) m_ptr->sub_align |= SUB_ALIGN_GOOD;
3976                 }
3977
3978                 m_ptr->exp = 0;
3979
3980                 if (is_pet(m_ptr) || m_ptr->ml)
3981                 {
3982                         if (!ignore_unview || player_can_see_bold(m_ptr->fy, m_ptr->fx))
3983                         {
3984 #ifdef JP
3985                                 msg_format("%s¤Ï%s¤Ë¿Ê²½¤·¤¿¡£", m_name, r_name + r_ptr->name);
3986 #else
3987                                 msg_format("%^s evolved into %s.", m_name, r_name + r_ptr->name);
3988 #endif
3989                         }
3990
3991                         r_info[old_r_idx].r_xtra1 |= MR1_SINKA;
3992
3993                         /* Now you feel very close to this pet. */
3994                         m_ptr->parent_m_idx = 0;
3995                 }
3996                 update_mon(m_idx, FALSE);
3997                 lite_spot(m_ptr->fy, m_ptr->fx);
3998         }
3999         if (m_idx == p_ptr->riding) p_ptr->update |= PU_BONUS;
4000 }