OSDN Git Service

[Feature] #38790 新性格『チャージマン』のモンスター誤認仕様実装。 / Implement monster misunderstanding featur...
[hengband/hengband.git] / src / monster2.c
1 /*!
2  * @file monster2.c
3  * @brief モンスター処理 / misc code for monsters
4  * @date 2014/07/08
5  * @author
6  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
7  * This software may be copied and distributed for educational, research,
8  * and not for profit purposes provided that this copyright and statement
9  * are included in all such copies.  Other copyrights may also apply.
10  * 2014 Deskull rearranged comment for Doxygen.
11  */
12
13 #include "angband.h"
14 #include "cmd-pet.h"
15 #include "monster-hook.h"
16 #include "monster-status.h"
17
18 #define HORDE_NOGOOD 0x01 /*!< (未実装フラグ)HORDE生成でGOODなモンスターの生成を禁止する? */
19 #define HORDE_NOEVIL 0x02 /*!< (未実装フラグ)HORDE生成でEVILなモンスターの生成を禁止する? */
20
21
22 /*!
23  * @var horror_desc
24  * @brief ELDRITCH HORROR効果時のモンスターの形容メッセージ(通常時)
25  */
26 cptr horror_desc[MAX_SAN_HORROR] =
27 {
28 #ifdef JP
29         "忌まわしい",
30         "底知れぬ",
31         "ぞっとする",
32         "破滅的な",
33         "冒涜的な",
34
35         "いやな",
36         "恐ろしい",
37         "不潔な",
38         "容赦のない",
39         "おぞましい",
40
41         "地獄の",
42         "身の毛もよだつ",
43         "地獄の",
44         "忌まわしい",
45         "悪夢のような",
46
47         "嫌悪を感じる",
48         "罰当たりな",
49         "恐い",
50         "不浄な",
51         "言うもおぞましい",
52 #else
53         "abominable",
54         "abysmal",
55         "appalling",
56         "baleful",
57         "blasphemous",
58
59         "disgusting",
60         "dreadful",
61         "filthy",
62         "grisly",
63         "hideous",
64
65         "hellish",
66         "horrible",
67         "infernal",
68         "loathsome",
69         "nightmarish",
70
71         "repulsive",
72         "sacrilegious",
73         "terrible",
74         "unclean",
75         "unspeakable",
76 #endif
77
78 };
79
80 /*!
81  * @var funny_desc
82  * @brief ELDRITCH HORROR効果時のモンスターの形容メッセージ(幻覚状態時)
83  */
84 cptr funny_desc[MAX_SAN_FUNNY] =
85 {
86 #ifdef JP
87         "間抜けな",
88         "滑稽な",
89         "ばからしい",
90         "無味乾燥な",
91         "馬鹿げた",
92
93         "笑える",
94         "ばかばかしい",
95         "ぶっとんだ",
96         "いかした",
97         "ポストモダンな",
98
99         "ファンタスティックな",
100         "ダダイズム的な",
101         "キュビズム的な",
102         "宇宙的な",
103         "卓越した",
104
105         "理解不能な",
106         "ものすごい",
107         "驚くべき",
108         "信じられない",
109         "カオティックな",
110
111         "野性的な",
112         "非常識な",
113 #else
114         "silly",
115         "hilarious",
116         "absurd",
117         "insipid",
118         "ridiculous",
119
120         "laughable",
121         "ludicrous",
122         "far-out",
123         "groovy",
124         "postmodern",
125
126         "fantastic",
127         "dadaistic",
128         "cubistic",
129         "cosmic",
130         "awesome",
131
132         "incomprehensible",
133         "fabulous",
134         "amazing",
135         "incredible",
136         "chaotic",
137
138         "wild",
139         "preposterous",
140 #endif
141
142 };
143
144 /*!
145  * @var funny_comments
146  * @brief ELDRITCH HORROR効果時の幻覚時間延長を示す錯乱表現
147  */
148 cptr funny_comments[MAX_SAN_COMMENT] =
149 {
150 #ifdef JP
151   /* nuke me */
152         "最高だぜ!",
153         "うひょー!",
154         "いかすぜ!",
155         "すんばらしい!",
156         "ぶっとびー!"
157 #else
158         "Wow, cosmic, man!",
159         "Rad!",
160         "Groovy!",
161         "Cool!",
162         "Far out!"
163 #endif
164
165 };
166
167
168 /*!
169  * @brief モンスターの目標地点をセットする / Set the target of counter attack
170  * @param m_ptr モンスターの参照ポインタ
171  * @param y 目標y座標
172  * @param x 目標x座標
173  * @return なし
174  */
175 void set_target(monster_type *m_ptr, POSITION y, POSITION x)
176 {
177         m_ptr->target_y = y;
178         m_ptr->target_x = x;
179 }
180
181
182 /*!
183  * @brief モンスターの目標地点をリセットする / Reset the target of counter attack
184  * @param m_ptr モンスターの参照ポインタ
185  * @return なし
186  */
187 void reset_target(monster_type *m_ptr)
188 {
189         set_target(m_ptr, 0, 0);
190 }
191
192
193 /*!
194  * @brief モンスターの真の種族を返す / Extract monster race pointer of a monster's true form
195  * @param m_ptr モンスターの参照ポインタ
196  * @return 本当のモンスター種族参照ポインタ
197  */
198 monster_race *real_r_ptr(monster_type *m_ptr)
199 {
200         monster_race *r_ptr = &r_info[m_ptr->r_idx];
201
202         /* Extract real race */
203         if (m_ptr->mflag2 & MFLAG2_CHAMELEON)
204         {
205                 if (r_ptr->flags1 & RF1_UNIQUE)
206                         return &r_info[MON_CHAMELEON_K];
207                 else
208                         return &r_info[MON_CHAMELEON];
209         }
210         else
211         {
212                 return r_ptr;
213         }
214 }
215
216
217 /*!
218  * @brief モンスター配列からモンスターを消去する / Delete a monster by index.
219  * @param i 消去するモンスターのID
220  * @return なし
221  * @details
222  * モンスターを削除するとそのモンスターが拾っていたアイテムも同時に削除される。 /
223  * When a monster is deleted, all of its objects are deleted.
224  */
225 void delete_monster_idx(MONSTER_IDX i)
226 {
227         POSITION x, y;
228         monster_type *m_ptr = &m_list[i];
229         monster_race *r_ptr = &r_info[m_ptr->r_idx];
230         OBJECT_IDX this_o_idx, next_o_idx = 0;
231
232         /* Get location */
233         y = m_ptr->fy;
234         x = m_ptr->fx;
235
236         /* Hack -- Reduce the racial counter */
237         real_r_ptr(m_ptr)->cur_num--;
238
239         /* Hack -- count the number of "reproducers" */
240         if (r_ptr->flags2 & (RF2_MULTIPLY)) num_repro--;
241
242         if (MON_CSLEEP(m_ptr)) (void)set_monster_csleep(i, 0);
243         if (MON_FAST(m_ptr)) (void)set_monster_fast(i, 0);
244         if (MON_SLOW(m_ptr)) (void)set_monster_slow(i, 0);
245         if (MON_STUNNED(m_ptr)) (void)set_monster_stunned(i, 0);
246         if (MON_CONFUSED(m_ptr)) (void)set_monster_confused(i, 0);
247         if (MON_MONFEAR(m_ptr)) (void)set_monster_monfear(i, 0);
248         if (MON_INVULNER(m_ptr)) (void)set_monster_invulner(i, 0, FALSE);
249
250
251         /* Hack -- remove target monster */
252         if (i == target_who) target_who = 0;
253
254         /* Hack -- remove tracked monster */
255         if (i == p_ptr->health_who) health_track(0);
256
257         if (pet_t_m_idx == i ) pet_t_m_idx = 0;
258         if (riding_t_m_idx == i) riding_t_m_idx = 0;
259         if (p_ptr->riding == i) p_ptr->riding = 0;
260
261         /* Monster is gone */
262         cave[y][x].m_idx = 0;
263
264
265         /* Delete objects */
266         for (this_o_idx = m_ptr->hold_o_idx; this_o_idx; this_o_idx = next_o_idx)
267         {
268                 object_type *o_ptr;
269                 o_ptr = &o_list[this_o_idx];
270
271                 /* Acquire next object */
272                 next_o_idx = o_ptr->next_o_idx;
273
274                 /*
275                  * o_ptr->held_m_idx is needed in delete_object_idx()
276                  * to prevent calling lite_spot()
277                  */
278
279                 delete_object_idx(this_o_idx);
280         }
281
282
283         if (is_pet(m_ptr)) check_pets_num_and_align(m_ptr, FALSE);
284
285
286         /* Wipe the Monster */
287         (void)WIPE(m_ptr, monster_type);
288
289         /* Count monsters */
290         m_cnt--;
291
292         /* Visual update */
293         lite_spot(y, x);
294
295         /* Update some things */
296         if (r_ptr->flags7 & (RF7_LITE_MASK | RF7_DARK_MASK))
297                 p_ptr->update |= (PU_MON_LITE);
298 }
299
300
301 /*!
302  * @brief 指定位置に存在するモンスターを削除する / Delete the monster, if any, at a given location
303  * @param x 削除位置x座標
304  * @param y 削除位置y座標
305  * @return なし
306  */
307 void delete_monster(POSITION y, POSITION x)
308 {
309         cave_type *c_ptr;
310
311         /* Paranoia */
312         if (!in_bounds(y, x)) return;
313
314         /* Check the grid */
315         c_ptr = &cave[y][x];
316
317         /* Delete the monster (if any) */
318         if (c_ptr->m_idx) delete_monster_idx(c_ptr->m_idx);
319 }
320
321
322 /*!
323  * @brief モンスター情報を配列内移動する / Move an object from index i1 to index i2 in the object list
324  * @param i1 配列移動元添字
325  * @param i2 配列移動先添字
326  * @return なし
327  */
328 static void compact_monsters_aux(IDX i1, IDX i2)
329 {
330         POSITION y, x;
331         int i;
332         cave_type *c_ptr;
333         monster_type *m_ptr;
334         OBJECT_IDX this_o_idx, next_o_idx = 0;
335
336         /* Do nothing */
337         if (i1 == i2) return;
338
339         /* Old monster */
340         m_ptr = &m_list[i1];
341
342         y = m_ptr->fy;
343         x = m_ptr->fx;
344
345         /* Cave grid */
346         c_ptr = &cave[y][x];
347
348         /* Update the cave */
349         c_ptr->m_idx = i2;
350
351         /* Repair objects being carried by monster */
352         for (this_o_idx = m_ptr->hold_o_idx; this_o_idx; this_o_idx = next_o_idx)
353         {
354                 object_type *o_ptr;
355                 o_ptr = &o_list[this_o_idx];
356
357                 /* Acquire next object */
358                 next_o_idx = o_ptr->next_o_idx;
359
360                 /* Reset monster pointer */
361                 o_ptr->held_m_idx = i2;
362         }
363
364         /* Hack -- Update the target */
365         if (target_who == i1) target_who = i2;
366
367         /* Hack -- Update the target */
368         if (pet_t_m_idx == i1) pet_t_m_idx = i2;
369         if (riding_t_m_idx == i1) riding_t_m_idx = i2;
370
371         /* Hack -- Update the riding */
372         if (p_ptr->riding == i1) p_ptr->riding = i2;
373
374         /* Hack -- Update the health bar */
375         if (p_ptr->health_who == i1) health_track(i2);
376
377         /* Hack -- Update parent index */
378         if (is_pet(m_ptr))
379         {
380                 for (i = 1; i < m_max; i++)
381                 {
382                         monster_type *m2_ptr = &m_list[i];
383
384                         if (m2_ptr->parent_m_idx == i1)
385                                 m2_ptr->parent_m_idx = i2;
386                 }
387         }
388
389         /* Structure copy */
390         (void)COPY(&m_list[i2], &m_list[i1], monster_type);
391
392         /* Wipe the hole */
393         (void)WIPE(&m_list[i1], monster_type);
394
395         for (i = 0; i < MAX_MTIMED; i++)
396         {
397                 int mproc_idx = get_mproc_idx(i1, i);
398                 if (mproc_idx >= 0) mproc_list[i][mproc_idx] = i2;
399         }
400 }
401
402
403 /*!
404  * @brief モンスター情報配列を圧縮する / Compact and Reorder the monster list
405  * @param size 圧縮後のモンスター件数目標
406  * @return なし
407  * @details
408  * This function can be very dangerous, use with caution!
409  *
410  * When actually "compacting" monsters, we base the saving throw
411  * on a combination of monster level, distance from player, and
412  * current "desperation".
413  *
414  * After "compacting" (if needed), we "reorder" the monsters into a more
415  * compact order, and we reset the allocation info, and the "live" array.
416  */
417 void compact_monsters(int size)
418 {
419         MONSTER_IDX i;
420         int num, cnt;
421         int cur_lev, cur_dis, chance;
422
423         /* Message (only if compacting) */
424         if (size) msg_print(_("モンスター情報を圧縮しています...", "Compacting monsters..."));
425
426
427         /* Compact at least 'size' objects */
428         for (num = 0, cnt = 1; num < size; cnt++)
429         {
430                 /* Get more vicious each iteration */
431                 cur_lev = 5 * cnt;
432
433                 /* Get closer each iteration */
434                 cur_dis = 5 * (20 - cnt);
435
436                 /* Check all the monsters */
437                 for (i = 1; i < m_max; i++)
438                 {
439                         monster_type *m_ptr = &m_list[i];
440
441                         monster_race *r_ptr = &r_info[m_ptr->r_idx];
442
443                         /* Paranoia -- skip "dead" monsters */
444                         if (!m_ptr->r_idx) continue;
445
446                         /* Hack -- High level monsters start out "immune" */
447                         if (r_ptr->level > cur_lev) continue;
448
449                         if (i == p_ptr->riding) continue;
450
451                         /* Ignore nearby monsters */
452                         if ((cur_dis > 0) && (m_ptr->cdis < cur_dis)) continue;
453
454                         /* Saving throw chance */
455                         chance = 90;
456
457                         /* Only compact "Quest" Monsters in emergencies */
458                         if ((r_ptr->flags1 & (RF1_QUESTOR)) && (cnt < 1000)) chance = 100;
459
460                         /* Try not to compact Unique Monsters */
461                         if (r_ptr->flags1 & (RF1_UNIQUE)) chance = 100;
462
463                         /* All monsters get a saving throw */
464                         if (randint0(100) < chance) continue;
465
466                         if (record_named_pet && is_pet(m_ptr) && m_ptr->nickname)
467                         {
468                                 char m_name[80];
469                                 monster_desc(m_name, m_ptr, MD_INDEF_VISIBLE);
470                                 do_cmd_write_nikki(NIKKI_NAMED_PET, RECORD_NAMED_PET_COMPACT, m_name);
471                         }
472
473                         delete_monster_idx(i);
474
475                         /* Count the monster */
476                         num++;
477                 }
478         }
479
480
481         /* Excise dead monsters (backwards!) */
482         for (i = m_max - 1; i >= 1; i--)
483         {
484                 /* Get the i'th monster */
485                 monster_type *m_ptr = &m_list[i];
486
487                 /* Skip real monsters */
488                 if (m_ptr->r_idx) continue;
489
490                 /* Move last monster into open hole */
491                 compact_monsters_aux(m_max - 1, i);
492
493                 /* Compress "m_max" */
494                 m_max--;
495         }
496 }
497
498
499 /*!
500  * @brief プレイヤーのフロア離脱に伴う全モンスター配列の消去 / Delete/Remove all the monsters when the player leaves the level
501  * @return なし
502  * @details
503  * This is an efficient method of simulating multiple calls to the
504  * "delete_monster()" function, with no visual effects.
505  */
506 void wipe_m_list(void)
507 {
508         int i;
509
510         /* Hack -- if Banor or Lupart dies, stay another dead */
511         if (!r_info[MON_BANORLUPART].max_num)
512         {
513                 if (r_info[MON_BANOR].max_num)
514                 {
515                         r_info[MON_BANOR].max_num = 0;
516                         r_info[MON_BANOR].r_pkills++;
517                         r_info[MON_BANOR].r_akills++;
518                         if (r_info[MON_BANOR].r_tkills < MAX_SHORT) r_info[MON_BANOR].r_tkills++;
519                 }
520                 if (r_info[MON_LUPART].max_num)
521                 {
522                         r_info[MON_LUPART].max_num = 0;
523                         r_info[MON_LUPART].r_pkills++;
524                         r_info[MON_LUPART].r_akills++;
525                         if (r_info[MON_LUPART].r_tkills < MAX_SHORT) r_info[MON_LUPART].r_tkills++;
526                 }
527         }
528
529         /* Delete all the monsters */
530         for (i = m_max - 1; i >= 1; i--)
531         {
532                 monster_type *m_ptr = &m_list[i];
533
534                 /* Skip dead monsters */
535                 if (!m_ptr->r_idx) continue;
536
537                 /* Monster is gone */
538                 cave[m_ptr->fy][m_ptr->fx].m_idx = 0;
539
540                 /* Wipe the Monster */
541                 (void)WIPE(m_ptr, monster_type);
542
543         }
544
545         /*
546          * Wiping racial counters of all monsters and incrementing of racial
547          * counters of monsters in party_mon[] are required to prevent multiple
548          * generation of unique monster who is the minion of player.
549          */
550
551         /* Hack -- Wipe the racial counter of all monster races */
552         for (i = 1; i < max_r_idx; i++) r_info[i].cur_num = 0;
553
554         /* Reset "m_max" */
555         m_max = 1;
556
557         /* Reset "m_cnt" */
558         m_cnt = 0;
559
560         /* Reset "mproc_max[]" */
561         for (i = 0; i < MAX_MTIMED; i++) mproc_max[i] = 0;
562
563         /* Hack -- reset "reproducer" count */
564         num_repro = 0;
565
566         /* Hack -- no more target */
567         target_who = 0;
568         pet_t_m_idx = 0;
569         riding_t_m_idx = 0;
570
571         /* Hack -- no more tracking */
572         health_track(0);
573 }
574
575
576 /*!
577  * @brief モンスター配列の空きを探す / Acquires and returns the index of a "free" monster.
578  * @return 利用可能なモンスター配列の添字
579  * @details
580  * This routine should almost never fail, but it *can* happen.
581  */
582 MONSTER_IDX m_pop(void)
583 {
584         MONSTER_IDX i;
585
586         /* Normal allocation */
587         if (m_max < max_m_idx)
588         {
589                 /* Access the next hole */
590                 i = m_max;
591
592                 /* Expand the array */
593                 m_max++;
594
595                 /* Count monsters */
596                 m_cnt++;
597
598                 /* Return the index */
599                 return (i);
600         }
601
602         /* Recycle dead monsters */
603         for (i = 1; i < m_max; i++)
604         {
605                 monster_type *m_ptr;
606
607                 /* Acquire monster */
608                 m_ptr = &m_list[i];
609
610                 /* Skip live monsters */
611                 if (m_ptr->r_idx) continue;
612
613                 /* Count monsters */
614                 m_cnt++;
615
616                 /* Use this monster */
617                 return (i);
618         }
619
620         /* Warn the player (except during dungeon creation) */
621         if (character_dungeon) msg_print(_("モンスターが多すぎる!", "Too many monsters!"));
622
623         /* Try not to crash */
624         return (0);
625 }
626
627
628
629
630 /*!
631  * @var summon_specific_type
632  * @brief 召喚条件を指定するグローバル変数 / Hack -- the "type" of the current "summon specific"
633  * @todo summon_specific_typeグローバル変数の除去と関数引数への代替を行う
634  */
635 static int summon_specific_type = 0;
636
637
638 /*!
639  * @var summon_specific_who
640  * @brief 召喚を行ったプレイヤーあるいはモンスターのIDを示すグローバル変数 / Hack -- the index of the summoning monster
641  * @todo summon_specific_who グローバル変数の除去と関数引数への代替を行う
642  */
643 static int summon_specific_who = -1;
644
645 /*!
646  * @var summon_unique_okay
647  * @brief 召喚対象にユニークを含めるかを示すグローバル変数 / summoning unique enable
648  * @todo summon_unique_okay グローバル変数の除去と関数引数への代替を行う
649  */
650 static bool summon_unique_okay = FALSE;
651
652 /*!
653  * @brief 指定されたモンスター種族がsummon_specific_typeで指定された召喚条件に合うかどうかを返す
654  * @return 召喚条件が一致するならtrue
655  * @details
656  */
657 static bool summon_specific_aux(MONRACE_IDX r_idx)
658 {
659         monster_race *r_ptr = &r_info[r_idx];
660         int okay = FALSE;
661
662         /* Check our requirements */
663         switch (summon_specific_type)
664         {
665                 case SUMMON_ANT:
666                 {
667                         okay = (r_ptr->d_char == 'a');
668                         break;
669                 }
670
671                 case SUMMON_SPIDER:
672                 {
673                         okay = (r_ptr->d_char == 'S');
674                         break;
675                 }
676
677                 case SUMMON_HOUND:
678                 {
679                         okay = ((r_ptr->d_char == 'C') || (r_ptr->d_char == 'Z'));
680                         break;
681                 }
682
683                 case SUMMON_HYDRA:
684                 {
685                         okay = (r_ptr->d_char == 'M');
686                         break;
687                 }
688
689                 case SUMMON_ANGEL:
690                 {
691                         okay = (r_ptr->d_char == 'A' && ((r_ptr->flags3 & RF3_EVIL) || (r_ptr->flags3 & RF3_GOOD)));
692                         break;
693                 }
694
695                 case SUMMON_DEMON:
696                 {
697                         okay = (r_ptr->flags3 & RF3_DEMON);
698                         break;
699                 }
700
701                 case SUMMON_UNDEAD:
702                 {
703                         okay = (r_ptr->flags3 & RF3_UNDEAD);
704                         break;
705                 }
706
707                 case SUMMON_DRAGON:
708                 {
709                         okay = (r_ptr->flags3 & RF3_DRAGON);
710                         break;
711                 }
712
713                 case SUMMON_HI_UNDEAD:
714                 {
715                         okay = ((r_ptr->d_char == 'L') ||
716                                 (r_ptr->d_char == 'V') ||
717                                 (r_ptr->d_char == 'W'));
718                         break;
719                 }
720
721                 case SUMMON_HI_DRAGON:
722                 {
723                         okay = (r_ptr->d_char == 'D');
724                         break;
725                 }
726
727                 case SUMMON_HI_DEMON:
728                 {
729                         okay = (((r_ptr->d_char == 'U') ||
730                                  (r_ptr->d_char == 'H') ||
731                                  (r_ptr->d_char == 'B')) &&
732                                 (r_ptr->flags3 & RF3_DEMON)) ? TRUE : FALSE;
733                         break;
734                 }
735
736                 case SUMMON_AMBERITES:
737                 {
738                         okay = (r_ptr->flags3 & (RF3_AMBERITE)) ? TRUE : FALSE;
739                         break;
740                 }
741
742                 case SUMMON_UNIQUE:
743                 {
744                         okay = (r_ptr->flags1 & (RF1_UNIQUE)) ? TRUE : FALSE;
745                         break;
746                 }
747
748                 case SUMMON_MOLD:
749                 {
750                         okay = (r_ptr->d_char == 'm');
751                         break;
752                 }
753                 case SUMMON_BAT:
754                 {
755                         okay = (r_ptr->d_char == 'b');
756                         break;
757                 }
758                 case SUMMON_QUYLTHULG:
759                 {
760                         okay = (r_ptr->d_char == 'Q');
761                         break;
762                 }
763
764                 case SUMMON_COIN_MIMIC:
765                 {
766                         okay = (r_ptr->d_char == '$');
767                         break;
768                 }
769
770                 case SUMMON_MIMIC:
771                 {
772                         okay = ((r_ptr->d_char == '!') ||
773                                  (r_ptr->d_char == '?') ||
774                                  (r_ptr->d_char == '=') ||
775                                  (r_ptr->d_char == '$') ||
776                                  (r_ptr->d_char == '|'));
777                         break;
778                 }
779
780                 case SUMMON_GOLEM:
781                 {
782                         okay = (r_ptr->d_char == 'g');
783                         break;
784                 }
785
786                 case SUMMON_CYBER:
787                 {
788                         okay = ((r_ptr->d_char == 'U') &&
789                                 (r_ptr->flags4 & RF4_ROCKET));
790                         break;
791                 }
792
793
794                 case SUMMON_KIN:
795                 {
796                         okay = ((r_ptr->d_char == summon_kin_type) && (r_idx != MON_HAGURE));
797                         break;
798                 }
799
800                 case SUMMON_DAWN:
801                 {
802                         okay = (r_idx == MON_DAWN);
803                         break;
804                 }
805
806                 case SUMMON_ANIMAL:
807                 {
808                         okay = (r_ptr->flags3 & (RF3_ANIMAL));
809                         break;
810                 }
811
812                 case SUMMON_ANIMAL_RANGER:
813                 {
814                         okay = ((r_ptr->flags3 & (RF3_ANIMAL)) &&
815                                (my_strchr("abcflqrwBCHIJKMRS", r_ptr->d_char)) &&
816                                !(r_ptr->flags3 & (RF3_DRAGON)) &&
817                                !(r_ptr->flags3 & (RF3_EVIL)) &&
818                                !(r_ptr->flags3 & (RF3_UNDEAD)) &&
819                                !(r_ptr->flags3 & (RF3_DEMON)) &&
820                                !(r_ptr->flags2 & (RF2_MULTIPLY)) &&
821                                !(r_ptr->flags4 || r_ptr->a_ability_flags1 || r_ptr->a_ability_flags2));
822                         break;
823                 }
824
825                 case SUMMON_HI_DRAGON_LIVING:
826                 {
827                         okay = ((r_ptr->d_char == 'D') && monster_living(r_ptr));
828                         break;
829                 }
830
831                 case SUMMON_LIVING:
832                 {
833                         okay = monster_living(r_ptr);
834                         break;
835                 }
836
837                 case SUMMON_PHANTOM:
838                 {
839                         okay = (r_idx == MON_PHANTOM_B || r_idx == MON_PHANTOM_W);
840                         break;
841                 }
842
843                 case SUMMON_BLUE_HORROR:
844                 {
845                         okay = (r_idx == MON_BLUE_HORROR);
846                         break;
847                 }
848
849                 case SUMMON_ELEMENTAL:
850                 {
851                         okay = (r_ptr->d_char == 'E');
852                         break;
853                 }
854
855                 case SUMMON_VORTEX:
856                 {
857                         okay = (r_ptr->d_char == 'v');
858                         break;
859                 }
860
861                 case SUMMON_HYBRID:
862                 {
863                         okay = (r_ptr->d_char == 'H');
864                         break;
865                 }
866
867                 case SUMMON_BIRD:
868                 {
869                         okay = (r_ptr->d_char == 'B');
870                         break;
871                 }
872
873                 case SUMMON_KAMIKAZE:
874                 {
875                         int i;
876                         for (i = 0; i < 4; i++)
877                                 if (r_ptr->blow[i].method == RBM_EXPLODE) okay = TRUE;
878                         break;
879                 }
880
881                 case SUMMON_KAMIKAZE_LIVING:
882                 {
883                         int i;
884
885                         for (i = 0; i < 4; i++)
886                                 if (r_ptr->blow[i].method == RBM_EXPLODE) okay = TRUE;
887                         okay = (okay && monster_living(r_ptr));
888                         break;
889                 }
890
891                 case SUMMON_MANES:
892                 {
893                         okay = (r_idx == MON_MANES);
894                         break;
895                 }
896
897                 case SUMMON_LOUSE:
898                 {
899                         okay = (r_idx == MON_LOUSE);
900                         break;
901                 }
902
903                 case SUMMON_GUARDIANS:
904                 {
905                         okay = (r_ptr->flags7 & RF7_GUARDIAN);
906                         break;
907                 }
908
909                 case SUMMON_KNIGHTS:
910                 {
911                         okay = ((r_idx == MON_NOV_PALADIN) ||
912                                 (r_idx == MON_NOV_PALADIN_G) ||
913                                 (r_idx == MON_PALADIN) ||
914                                 (r_idx == MON_W_KNIGHT) ||
915                                 (r_idx == MON_ULTRA_PALADIN) ||
916                                 (r_idx == MON_KNI_TEMPLAR));
917                         break;
918                 }
919
920                 case SUMMON_EAGLES:
921                 {
922                         okay = (r_ptr->d_char == 'B' &&
923                                 (r_ptr->flags8 & RF8_WILD_MOUNTAIN) &&
924                                 (r_ptr->flags8 & RF8_WILD_ONLY));
925                         break;
926                 }
927
928                 case SUMMON_PIRANHAS:
929                 {
930                         okay = (r_idx == MON_PIRANHA);
931                         break;
932                 }
933
934                 case SUMMON_ARMAGE_GOOD:
935                 {
936                         okay = (r_ptr->d_char == 'A' && (r_ptr->flags3 & RF3_GOOD));
937                         break;
938                 }
939
940                 case SUMMON_ARMAGE_EVIL:
941                 {
942                         okay = ((r_ptr->flags3 & RF3_DEMON) ||
943                                 (r_ptr->d_char == 'A' && (r_ptr->flags3 & RF3_EVIL)));
944                         break;
945                 }
946         }
947         /* Since okay is int, "return (okay);" is not correct. */
948         return (bool)(okay ? TRUE : FALSE);
949 }
950
951 /*!
952  * @var chameleon_change_m_idx
953  * @brief カメレオンの変身先モンスターIDを受け渡すためのグローバル変数
954  * @todo 変数渡しの問題などもあるができればchameleon_change_m_idxのグローバル変数を除去し、関数引き渡しに移行すること
955  */
956 static int chameleon_change_m_idx = 0;
957
958
959 /*!
960  * @brief 指定されたモンスター種族がダンジョンの制限にかかるかどうかをチェックする / Some dungeon types restrict the possible monsters.
961  * @param r_idx チェックするモンスター種族ID
962  * @return 召喚条件が一致するならtrue / Return TRUE is the monster is OK and FALSE otherwise
963  */
964 static bool restrict_monster_to_dungeon(MONRACE_IDX r_idx)
965 {
966         dungeon_info_type *d_ptr = &d_info[dungeon_type];
967         monster_race *r_ptr = &r_info[r_idx];
968         byte a;
969
970         if (d_ptr->flags1 & DF1_CHAMELEON)
971         {
972                 if (chameleon_change_m_idx) return TRUE;
973         }
974         if (d_ptr->flags1 & DF1_NO_MAGIC)
975         {
976                 if (r_idx != MON_CHAMELEON &&
977                     r_ptr->freq_spell && 
978                     !(r_ptr->flags4 & RF4_NOMAGIC_MASK) &&
979                     !(r_ptr->a_ability_flags1 & RF5_NOMAGIC_MASK) &&
980                     !(r_ptr->a_ability_flags2 & RF6_NOMAGIC_MASK))
981                         return FALSE;
982         }
983         if (d_ptr->flags1 & DF1_NO_MELEE)
984         {
985                 if (r_idx == MON_CHAMELEON) return TRUE;
986                 if (!(r_ptr->flags4 & (RF4_BOLT_MASK | RF4_BEAM_MASK | RF4_BALL_MASK)) &&
987                     !(r_ptr->a_ability_flags1 & (RF5_BOLT_MASK | RF5_BEAM_MASK | RF5_BALL_MASK | RF5_CAUSE_1 | RF5_CAUSE_2 | RF5_CAUSE_3 | RF5_CAUSE_4 | RF5_MIND_BLAST | RF5_BRAIN_SMASH)) &&
988                     !(r_ptr->a_ability_flags2 & (RF6_BOLT_MASK | RF6_BEAM_MASK | RF6_BALL_MASK)))
989                         return FALSE;
990         }
991         if (d_ptr->flags1 & DF1_BEGINNER)
992         {
993                 if (r_ptr->level > dun_level)
994                         return FALSE;
995         }
996
997         if (d_ptr->special_div >= 64) return TRUE;
998         if (summon_specific_type && !(d_ptr->flags1 & DF1_CHAMELEON)) return TRUE;
999
1000         switch (d_ptr->mode)
1001         {
1002         case DUNGEON_MODE_AND:
1003                 if (d_ptr->mflags1)
1004                 {
1005                         if ((d_ptr->mflags1 & r_ptr->flags1) != d_ptr->mflags1)
1006                                 return FALSE;
1007                 }
1008                 if (d_ptr->mflags2)
1009                 {
1010                         if ((d_ptr->mflags2 & r_ptr->flags2) != d_ptr->mflags2)
1011                                 return FALSE;
1012                 }
1013                 if (d_ptr->mflags3)
1014                 {
1015                         if ((d_ptr->mflags3 & r_ptr->flags3) != d_ptr->mflags3)
1016                                 return FALSE;
1017                 }
1018                 if (d_ptr->mflags4)
1019                 {
1020                         if ((d_ptr->mflags4 & r_ptr->flags4) != d_ptr->mflags4)
1021                                 return FALSE;
1022                 }
1023                 if (d_ptr->m_a_ability_flags1)
1024                 {
1025                         if ((d_ptr->m_a_ability_flags1 & r_ptr->a_ability_flags1) != d_ptr->m_a_ability_flags1)
1026                                 return FALSE;
1027                 }
1028                 if (d_ptr->m_a_ability_flags2)
1029                 {
1030                         if ((d_ptr->m_a_ability_flags2 & r_ptr->a_ability_flags2) != d_ptr->m_a_ability_flags2)
1031                                 return FALSE;
1032                 }
1033                 if (d_ptr->mflags7)
1034                 {
1035                         if ((d_ptr->mflags7 & r_ptr->flags7) != d_ptr->mflags7)
1036                                 return FALSE;
1037                 }
1038                 if (d_ptr->mflags8)
1039                 {
1040                         if ((d_ptr->mflags8 & r_ptr->flags8) != d_ptr->mflags8)
1041                                 return FALSE;
1042                 }
1043                 if (d_ptr->mflags9)
1044                 {
1045                         if ((d_ptr->mflags9 & r_ptr->flags9) != d_ptr->mflags9)
1046                                 return FALSE;
1047                 }
1048                 if (d_ptr->mflagsr)
1049                 {
1050                         if ((d_ptr->mflagsr & r_ptr->flagsr) != d_ptr->mflagsr)
1051                                 return FALSE;
1052                 }
1053                 for (a = 0; a < 5; a++)
1054                         if (d_ptr->r_char[a] && (d_ptr->r_char[a] != r_ptr->d_char)) return FALSE;
1055
1056                 return TRUE;
1057
1058         case DUNGEON_MODE_NAND:
1059                 if (d_ptr->mflags1)
1060                 {
1061                         if ((d_ptr->mflags1 & r_ptr->flags1) != d_ptr->mflags1)
1062                                 return TRUE;
1063                 }
1064                 if (d_ptr->mflags2)
1065                 {
1066                         if ((d_ptr->mflags2 & r_ptr->flags2) != d_ptr->mflags2)
1067                                 return TRUE;
1068                 }
1069                 if (d_ptr->mflags3)
1070                 {
1071                         if ((d_ptr->mflags3 & r_ptr->flags3) != d_ptr->mflags3)
1072                                 return TRUE;
1073                 }
1074                 if (d_ptr->mflags4)
1075                 {
1076                         if ((d_ptr->mflags4 & r_ptr->flags4) != d_ptr->mflags4)
1077                                 return TRUE;
1078                 }
1079                 if (d_ptr->m_a_ability_flags1)
1080                 {
1081                         if ((d_ptr->m_a_ability_flags1 & r_ptr->a_ability_flags1) != d_ptr->m_a_ability_flags1)
1082                                 return TRUE;
1083                 }
1084                 if (d_ptr->m_a_ability_flags2)
1085                 {
1086                         if ((d_ptr->m_a_ability_flags2 & r_ptr->a_ability_flags2) != d_ptr->m_a_ability_flags2)
1087                                 return TRUE;
1088                 }
1089                 if (d_ptr->mflags7)
1090                 {
1091                         if ((d_ptr->mflags7 & r_ptr->flags7) != d_ptr->mflags7)
1092                                 return TRUE;
1093                 }
1094                 if (d_ptr->mflags8)
1095                 {
1096                         if ((d_ptr->mflags8 & r_ptr->flags8) != d_ptr->mflags8)
1097                                 return TRUE;
1098                 }
1099                 if (d_ptr->mflags9)
1100                 {
1101                         if ((d_ptr->mflags9 & r_ptr->flags9) != d_ptr->mflags9)
1102                                 return TRUE;
1103                 }
1104                 if (d_ptr->mflagsr)
1105                 {
1106                         if ((d_ptr->mflagsr & r_ptr->flagsr) != d_ptr->mflagsr)
1107                                 return TRUE;
1108                 }
1109                 for (a = 0; a < 5; a++)
1110                         if (d_ptr->r_char[a] && (d_ptr->r_char[a] != r_ptr->d_char)) return TRUE;
1111
1112                 return FALSE;
1113
1114         case DUNGEON_MODE_OR:
1115                 if (r_ptr->flags1 & d_ptr->mflags1) return TRUE;
1116                 if (r_ptr->flags2 & d_ptr->mflags2) return TRUE;
1117                 if (r_ptr->flags3 & d_ptr->mflags3) return TRUE;
1118                 if (r_ptr->flags4 & d_ptr->mflags4) return TRUE;
1119                 if (r_ptr->a_ability_flags1 & d_ptr->m_a_ability_flags1) return TRUE;
1120                 if (r_ptr->a_ability_flags2 & d_ptr->m_a_ability_flags2) return TRUE;
1121                 if (r_ptr->flags7 & d_ptr->mflags7) return TRUE;
1122                 if (r_ptr->flags8 & d_ptr->mflags8) return TRUE;
1123                 if (r_ptr->flags9 & d_ptr->mflags9) return TRUE;
1124                 if (r_ptr->flagsr & d_ptr->mflagsr) return TRUE;
1125                 for (a = 0; a < 5; a++)
1126                         if (d_ptr->r_char[a] == r_ptr->d_char) return TRUE;
1127
1128                 return FALSE;
1129
1130         case DUNGEON_MODE_NOR:
1131                 if (r_ptr->flags1 & d_ptr->mflags1) return FALSE;
1132                 if (r_ptr->flags2 & d_ptr->mflags2) return FALSE;
1133                 if (r_ptr->flags3 & d_ptr->mflags3) return FALSE;
1134                 if (r_ptr->flags4 & d_ptr->mflags4) return FALSE;
1135                 if (r_ptr->a_ability_flags1 & d_ptr->m_a_ability_flags1) return FALSE;
1136                 if (r_ptr->a_ability_flags2 & d_ptr->m_a_ability_flags2) return FALSE;
1137                 if (r_ptr->flags7 & d_ptr->mflags7) return FALSE;
1138                 if (r_ptr->flags8 & d_ptr->mflags8) return FALSE;
1139                 if (r_ptr->flags9 & d_ptr->mflags9) return FALSE;
1140                 if (r_ptr->flagsr & d_ptr->mflagsr) return FALSE;
1141                 for (a = 0; a < 5; a++)
1142                         if (d_ptr->r_char[a] == r_ptr->d_char) return FALSE;
1143
1144                 return TRUE;
1145         }
1146
1147         return TRUE;
1148 }
1149
1150 /*!
1151  * @brief モンスター生成制限関数最大2つから / Apply a "monster restriction function" to the "monster allocation table"
1152  * @param monster_hook 制限関数1
1153  * @param monster_hook2 制限関数2
1154  * @return エラーコード
1155  */
1156 errr get_mon_num_prep(monster_hook_type monster_hook,
1157                                           monster_hook_type monster_hook2)
1158 {
1159         int i;
1160
1161         /* Todo: Check the hooks for non-changes */
1162
1163         /* Set the new hooks */
1164         get_mon_num_hook = monster_hook;
1165         get_mon_num2_hook = monster_hook2;
1166
1167         /* Scan the allocation table */
1168         for (i = 0; i < alloc_race_size; i++)
1169         {
1170                 monster_race    *r_ptr;
1171                 
1172                 /* Get the entry */
1173                 alloc_entry *entry = &alloc_race_table[i];
1174
1175                 entry->prob2 = 0;
1176                 r_ptr = &r_info[entry->index];
1177
1178                 /* Skip monsters which don't pass the restriction */
1179                 if ((get_mon_num_hook && !((*get_mon_num_hook)(entry->index))) ||
1180                     (get_mon_num2_hook && !((*get_mon_num2_hook)(entry->index))))
1181                         continue;
1182
1183                 if (!p_ptr->inside_battle && !chameleon_change_m_idx &&
1184                     summon_specific_type != SUMMON_GUARDIANS)
1185                 {
1186                         /* Hack -- don't create questors */
1187                         if (r_ptr->flags1 & RF1_QUESTOR)
1188                                 continue;
1189
1190                         if (r_ptr->flags7 & RF7_GUARDIAN)
1191                                 continue;
1192
1193                         /* Depth Monsters never appear out of depth */
1194                         if ((r_ptr->flags1 & (RF1_FORCE_DEPTH)) &&
1195                             (r_ptr->level > dun_level))
1196                                 continue;
1197                 }
1198
1199                 /* Accept this monster */
1200                 entry->prob2 = entry->prob1;
1201
1202                 if (dun_level && (!p_ptr->inside_quest || is_fixed_quest_idx(p_ptr->inside_quest)) && !restrict_monster_to_dungeon(entry->index) && !p_ptr->inside_battle)
1203                 {
1204                         int hoge = entry->prob2 * d_info[dungeon_type].special_div;
1205                         entry->prob2 = hoge / 64;
1206                         if (randint0(64) < (hoge & 0x3f)) entry->prob2++;
1207                 }
1208         }
1209
1210         /* Success */
1211         return (0);
1212 }
1213
1214 /*!
1215  * @brief 平方根を切り捨て整数で返す
1216  * @param n 数値
1217  * @return 平方根
1218  */
1219 static int mysqrt(int n)
1220 {
1221         int tmp = n>>1;
1222         int tasu = 10;
1223         int kaeriti = 1;
1224
1225         if (!tmp)
1226         {
1227                 if (n) return 1;
1228                 else return 0;
1229         }
1230
1231         while(tmp)
1232         {
1233                 if ((n/tmp) < tmp)
1234                 {
1235                         tmp >>= 1;
1236                 }
1237                 else break;
1238         }
1239         kaeriti = tmp;
1240         while(tasu)
1241         {
1242                 if ((n/tmp) < tmp)
1243                 {
1244                         tasu--;
1245                         tmp = kaeriti;
1246                 }
1247                 else
1248                 {
1249                         kaeriti = tmp;
1250                         tmp += tasu;
1251                 }
1252         }
1253         return kaeriti;
1254 }
1255
1256 /*!
1257  * @brief 生成モンスター種族を1種生成テーブルから選択する
1258  * @param level 生成階
1259  * @return 選択されたモンスター生成種族
1260  * @details
1261  * Choose a monster race that seems "appropriate" to the given level
1262  *
1263  * This function uses the "prob2" field of the "monster allocation table",
1264  * and various local information, to calculate the "prob3" field of the
1265  * same table, which is then used to choose an "appropriate" monster, in
1266  * a relatively efficient manner.
1267  *
1268  * Note that "town" monsters will *only* be created in the town, and
1269  * "normal" monsters will *never* be created in the town, unless the
1270  * "level" is "modified", for example, by polymorph or summoning.
1271  *
1272  * There is a small chance (1/50) of "boosting" the given depth by
1273  * a small amount (up to four levels), except in the town.
1274  *
1275  * It is (slightly) more likely to acquire a monster of the given level
1276  * than one of a lower level.  This is done by choosing several monsters
1277  * appropriate to the given level and keeping the "hardest" one.
1278  *
1279  * Note that if no monsters are "appropriate", then this function will
1280  * fail, and return zero, but this should *almost* never happen.
1281  */
1282 MONRACE_IDX get_mon_num(DEPTH level)
1283 {
1284         int                     i, j, p;
1285         int                     r_idx;
1286         long            value, total;
1287         monster_race    *r_ptr;
1288         alloc_entry             *table = alloc_race_table;
1289
1290         int pls_kakuritu, pls_level;
1291         int delay = mysqrt(level * 10000L) + 400L;
1292
1293         if (level > MAX_DEPTH - 1) level = MAX_DEPTH - 1;
1294
1295         pls_kakuritu = MAX(NASTY_MON_MAX, NASTY_MON_BASE - ((dungeon_turn / (TURNS_PER_TICK * 5000L) - delay / 10)));
1296         pls_level    = MIN(NASTY_MON_PLUS_MAX, 3 + dungeon_turn / (TURNS_PER_TICK * 40000L) - delay / 40 + MIN(5, level / 10)) ;
1297
1298         if (d_info[dungeon_type].flags1 & DF1_MAZE)
1299         {
1300                 pls_kakuritu = MIN(pls_kakuritu / 2, pls_kakuritu - 10);
1301                 if (pls_kakuritu < 2) pls_kakuritu = 2;
1302                 pls_level += 2;
1303                 level += 3;
1304         }
1305
1306         /* Boost the level */
1307         if (!p_ptr->inside_battle && !(d_info[dungeon_type].flags1 & DF1_BEGINNER))
1308         {
1309                 /* Nightmare mode allows more out-of depth monsters */
1310                 if (ironman_nightmare && !randint0(pls_kakuritu))
1311                 {
1312                         /* What a bizarre calculation */
1313                         level = 1 + (level * MAX_DEPTH / randint1(MAX_DEPTH));
1314                 }
1315                 else
1316                 {
1317                         /* Occasional "nasty" monster */
1318                         if (!randint0(pls_kakuritu))
1319                         {
1320                                 /* Pick a level bonus */
1321                                 level += pls_level;
1322                         }
1323                 }
1324         }
1325
1326         /* Reset total */
1327         total = 0L;
1328
1329         /* Process probabilities */
1330         for (i = 0; i < alloc_race_size; i++)
1331         {
1332                 /* Monsters are sorted by depth */
1333                 if (table[i].level > level) break;
1334
1335                 /* Default */
1336                 table[i].prob3 = 0;
1337
1338                 /* Access the "r_idx" of the chosen monster */
1339                 r_idx = table[i].index;
1340
1341                 /* Access the actual race */
1342                 r_ptr = &r_info[r_idx];
1343
1344                 if (!p_ptr->inside_battle && !chameleon_change_m_idx)
1345                 {
1346                         /* Hack -- "unique" monsters must be "unique" */
1347                         if (((r_ptr->flags1 & (RF1_UNIQUE)) ||
1348                              (r_ptr->flags7 & (RF7_NAZGUL))) &&
1349                             (r_ptr->cur_num >= r_ptr->max_num))
1350                         {
1351                                 continue;
1352                         }
1353
1354                         if ((r_ptr->flags7 & (RF7_UNIQUE2)) &&
1355                             (r_ptr->cur_num >= 1))
1356                         {
1357                                 continue;
1358                         }
1359
1360                         if (r_idx == MON_BANORLUPART)
1361                         {
1362                                 if (r_info[MON_BANOR].cur_num > 0) continue;
1363                                 if (r_info[MON_LUPART].cur_num > 0) continue;
1364                         }
1365                 }
1366
1367                 /* Accept */
1368                 table[i].prob3 = table[i].prob2;
1369
1370                 /* Total */
1371                 total += table[i].prob3;
1372         }
1373
1374         /* No legal monsters */
1375         if (total <= 0) return (0);
1376
1377         /* Pick a monster */
1378         value = randint0(total);
1379
1380         /* Find the monster */
1381         for (i = 0; i < alloc_race_size; i++)
1382         {
1383                 /* Found the entry */
1384                 if (value < table[i].prob3) break;
1385
1386                 /* Decrement */
1387                 value = value - table[i].prob3;
1388         }
1389
1390         /* Power boost */
1391         p = randint0(100);
1392
1393         /* Try for a "harder" monster once (50%) or twice (10%) */
1394         if (p < 60)
1395         {
1396                 /* Save old */
1397                 j = i;
1398
1399                 /* Pick a monster */
1400                 value = randint0(total);
1401
1402                 /* Find the monster */
1403                 for (i = 0; i < alloc_race_size; i++)
1404                 {
1405                         /* Found the entry */
1406                         if (value < table[i].prob3) break;
1407
1408                         /* Decrement */
1409                         value = value - table[i].prob3;
1410                 }
1411
1412                 /* Keep the "best" one */
1413                 if (table[i].level < table[j].level) i = j;
1414         }
1415
1416         /* Try for a "harder" monster twice (10%) */
1417         if (p < 10)
1418         {
1419                 /* Save old */
1420                 j = i;
1421
1422                 /* Pick a monster */
1423                 value = randint0(total);
1424
1425                 /* Find the monster */
1426                 for (i = 0; i < alloc_race_size; i++)
1427                 {
1428                         /* Found the entry */
1429                         if (value < table[i].prob3) break;
1430
1431                         /* Decrement */
1432                         value = value - table[i].prob3;
1433                 }
1434
1435                 /* Keep the "best" one */
1436                 if (table[i].level < table[j].level) i = j;
1437         }
1438         return (table[i].index);
1439 }
1440
1441
1442 /*!
1443  * @brief モンスターの呼称を作成する / Build a string describing a monster in some way.
1444  * @param desc 記述出力先の文字列参照ポインタ
1445  * @param m_ptr モンスターの参照ポインタ
1446  * @param mode 呼称オプション
1447  * @return なし
1448  * @details
1449  * We can correctly describe monsters based on their visibility.
1450  * We can force all monsters to be treated as visible or invisible.
1451  * We can build nominatives, objectives, possessives, or reflexives.
1452  * We can selectively pronominalize hidden, visible, or all monsters.
1453  * We can use definite or indefinite descriptions for hidden monsters.
1454  * We can use definite or indefinite descriptions for visible monsters.
1455  *
1456  * Pronominalization involves the gender whenever possible and allowed,
1457  * so that by cleverly requesting pronominalization / visibility, you
1458  * can get messages like "You hit someone.  She screams in agony!".
1459  *
1460  * Reflexives are acquired by requesting Objective plus Possessive.
1461  *
1462  * If no m_ptr arg is given (?), the monster is assumed to be hidden,
1463  * unless the "Assume Visible" mode is requested.
1464  *
1465  * If no r_ptr arg is given, it is extracted from m_ptr and r_info
1466  * If neither m_ptr nor r_ptr is given, the monster is assumed to
1467  * be neuter, singular, and hidden (unless "Assume Visible" is set),
1468  * in which case you may be in trouble... :-)
1469  *
1470  * I am assuming that no monster name is more than 70 characters long,
1471  * so that "char desc[80];" is sufficiently large for any result.
1472  *
1473  * Mode Flags:
1474  *  MD_OBJECTIVE      --> Objective (or Reflexive)
1475  *  MD_POSSESSIVE     --> Possessive (or Reflexive)
1476  *  MD_INDEF_HIDDEN   --> Use indefinites for hidden monsters ("something")
1477  *  MD_INDEF_VISIBLE  --> Use indefinites for visible monsters ("a kobold")
1478  *  MD_PRON_HIDDEN    --> Pronominalize hidden monsters
1479  *  MD_PRON_VISIBLE   --> Pronominalize visible monsters
1480  *  MD_ASSUME_HIDDEN  --> Assume the monster is hidden
1481  *  MD_ASSUME_VISIBLE --> Assume the monster is visible
1482  *  MD_TRUE_NAME      --> Chameleon's true name
1483  *  MD_IGNORE_HALLU   --> Ignore hallucination, and penetrate shape change
1484  *
1485  * Useful Modes:
1486  *  0x00 --> Full nominative name ("the kobold") or "it"
1487  *  MD_INDEF_HIDDEN --> Full nominative name ("the kobold") or "something"
1488  *  MD_ASSUME_VISIBLE --> Genocide resistance name ("the kobold")
1489  *  MD_ASSUME_VISIBLE | MD_INDEF_VISIBLE --> Killing name ("a kobold")
1490  *  MD_PRON_VISIBLE | MD_POSSESSIVE
1491  *    --> Possessive, genderized if visable ("his") or "its"
1492  *  MD_PRON_VISIBLE | MD_POSSESSIVE | MD_OBJECTIVE
1493  *    --> Reflexive, genderized if visable ("himself") or "itself"
1494  */
1495 void monster_desc(char *desc, monster_type *m_ptr, BIT_FLAGS mode)
1496 {
1497         cptr            res;
1498         monster_race    *r_ptr;
1499
1500         cptr            name;
1501         char            buf[128];
1502         char            silly_name[1024];
1503         bool            seen, pron;
1504         bool            named = FALSE;
1505
1506         r_ptr = &r_info[m_ptr->ap_r_idx];
1507
1508         /* Mode of MD_TRUE_NAME will reveal Chameleon's true name */
1509         if (mode & MD_TRUE_NAME) name = (r_name + real_r_ptr(m_ptr)->name);
1510         else name = (r_name + r_ptr->name);
1511
1512         /* Are we hallucinating? (Idea from Nethack...) */
1513         if (p_ptr->image && !(mode & MD_IGNORE_HALLU))
1514         {
1515                 if (one_in_(2))
1516                 {
1517                         if (!get_rnd_line(_("silly_j.txt", "silly.txt"), m_ptr->r_idx, silly_name))
1518                                 named = TRUE;
1519                 }
1520
1521                 if (!named)
1522                 {
1523                         monster_race *hallu_race;
1524
1525                         do
1526                         {
1527                                 hallu_race = &r_info[randint1(max_r_idx - 1)];
1528                         }
1529                         while (!hallu_race->name || (hallu_race->flags1 & RF1_UNIQUE));
1530
1531                         strcpy(silly_name, (r_name + hallu_race->name));
1532                 }
1533
1534                 /* Better not strcpy it, or we could corrupt r_info... */
1535                 name = silly_name;
1536         }
1537
1538         /* Can we "see" it (exists + forced, or visible + not unforced) */
1539         seen = (m_ptr && ((mode & MD_ASSUME_VISIBLE) || (!(mode & MD_ASSUME_HIDDEN) && m_ptr->ml)));
1540
1541         /* Sexed Pronouns (seen and allowed, or unseen and allowed) */
1542         pron = (m_ptr && ((seen && (mode & MD_PRON_VISIBLE)) || (!seen && (mode & MD_PRON_HIDDEN))));
1543
1544
1545         /* First, try using pronouns, or describing hidden monsters */
1546         if (!seen || pron)
1547         {
1548                 /* an encoding of the monster "sex" */
1549                 int kind = 0x00;
1550
1551                 /* Extract the gender (if applicable) */
1552                 if (r_ptr->flags1 & (RF1_FEMALE)) kind = 0x20;
1553                 else if (r_ptr->flags1 & (RF1_MALE)) kind = 0x10;
1554
1555                 /* Ignore the gender (if desired) */
1556                 if (!m_ptr || !pron) kind = 0x00;
1557
1558
1559                 /* Assume simple result */
1560                 res = _("何か", "it");
1561
1562                 /* Brute force: split on the possibilities */
1563                 switch (kind + (mode & (MD_INDEF_HIDDEN | MD_POSSESSIVE | MD_OBJECTIVE)))
1564                 {
1565                         /* Neuter, or unknown */
1566 #ifdef JP
1567                         case 0x00:                                                    res = "何か"; break;
1568                         case 0x00 + (MD_OBJECTIVE):                                   res = "何か"; break;
1569                         case 0x00 + (MD_POSSESSIVE):                                  res = "何かの"; break;
1570                         case 0x00 + (MD_POSSESSIVE | MD_OBJECTIVE):                   res = "何か自身"; break;
1571                         case 0x00 + (MD_INDEF_HIDDEN):                                res = "何か"; break;
1572                         case 0x00 + (MD_INDEF_HIDDEN | MD_OBJECTIVE):                 res = "何か"; break;
1573                         case 0x00 + (MD_INDEF_HIDDEN | MD_POSSESSIVE):                res = "何か"; break;
1574                         case 0x00 + (MD_INDEF_HIDDEN | MD_POSSESSIVE | MD_OBJECTIVE): res = "それ自身"; break;
1575 #else
1576                         case 0x00:                                                    res = "it"; break;
1577                         case 0x00 + (MD_OBJECTIVE):                                   res = "it"; break;
1578                         case 0x00 + (MD_POSSESSIVE):                                  res = "its"; break;
1579                         case 0x00 + (MD_POSSESSIVE | MD_OBJECTIVE):                   res = "itself"; break;
1580                         case 0x00 + (MD_INDEF_HIDDEN):                                res = "something"; break;
1581                         case 0x00 + (MD_INDEF_HIDDEN | MD_OBJECTIVE):                 res = "something"; break;
1582                         case 0x00 + (MD_INDEF_HIDDEN | MD_POSSESSIVE):                res = "something's"; break;
1583                         case 0x00 + (MD_INDEF_HIDDEN | MD_POSSESSIVE | MD_OBJECTIVE): res = "itself"; break;
1584 #endif
1585
1586
1587                         /* Male (assume human if vague) */
1588 #ifdef JP
1589                         case 0x10:                                                    res = "彼"; break;
1590                         case 0x10 + (MD_OBJECTIVE):                                   res = "彼"; break;
1591                         case 0x10 + (MD_POSSESSIVE):                                  res = "彼の"; break;
1592                         case 0x10 + (MD_POSSESSIVE | MD_OBJECTIVE):                   res = "彼自身"; break;
1593                         case 0x10 + (MD_INDEF_HIDDEN):                                res = "誰か"; break;
1594                         case 0x10 + (MD_INDEF_HIDDEN | MD_OBJECTIVE):                 res = "誰か"; break;
1595                         case 0x10 + (MD_INDEF_HIDDEN | MD_POSSESSIVE):                res = "誰かの"; break;
1596                         case 0x10 + (MD_INDEF_HIDDEN | MD_POSSESSIVE | MD_OBJECTIVE): res = "彼自身"; break;
1597 #else
1598                         case 0x10:                                                    res = "he"; break;
1599                         case 0x10 + (MD_OBJECTIVE):                                   res = "him"; break;
1600                         case 0x10 + (MD_POSSESSIVE):                                  res = "his"; break;
1601                         case 0x10 + (MD_POSSESSIVE | MD_OBJECTIVE):                   res = "himself"; break;
1602                         case 0x10 + (MD_INDEF_HIDDEN):                                res = "someone"; break;
1603                         case 0x10 + (MD_INDEF_HIDDEN | MD_OBJECTIVE):                 res = "someone"; break;
1604                         case 0x10 + (MD_INDEF_HIDDEN | MD_POSSESSIVE):                res = "someone's"; break;
1605                         case 0x10 + (MD_INDEF_HIDDEN | MD_POSSESSIVE | MD_OBJECTIVE): res = "himself"; break;
1606 #endif
1607
1608
1609                         /* Female (assume human if vague) */
1610 #ifdef JP
1611                         case 0x20:                                                    res = "彼女"; break;
1612                         case 0x20 + (MD_OBJECTIVE):                                   res = "彼女"; break;
1613                         case 0x20 + (MD_POSSESSIVE):                                  res = "彼女の"; break;
1614                         case 0x20 + (MD_POSSESSIVE | MD_OBJECTIVE):                   res = "彼女自身"; break;
1615                         case 0x20 + (MD_INDEF_HIDDEN):                                res = "誰か"; break;
1616                         case 0x20 + (MD_INDEF_HIDDEN | MD_OBJECTIVE):                 res = "誰か"; break;
1617                         case 0x20 + (MD_INDEF_HIDDEN | MD_POSSESSIVE):                res = "誰かの"; break;
1618                         case 0x20 + (MD_INDEF_HIDDEN | MD_POSSESSIVE | MD_OBJECTIVE): res = "彼女自身"; break;
1619 #else
1620                         case 0x20:                                                    res = "she"; break;
1621                         case 0x20 + (MD_OBJECTIVE):                                   res = "her"; break;
1622                         case 0x20 + (MD_POSSESSIVE):                                  res = "her"; break;
1623                         case 0x20 + (MD_POSSESSIVE | MD_OBJECTIVE):                   res = "herself"; break;
1624                         case 0x20 + (MD_INDEF_HIDDEN):                                res = "someone"; break;
1625                         case 0x20 + (MD_INDEF_HIDDEN | MD_OBJECTIVE):                 res = "someone"; break;
1626                         case 0x20 + (MD_INDEF_HIDDEN | MD_POSSESSIVE):                res = "someone's"; break;
1627                         case 0x20 + (MD_INDEF_HIDDEN | MD_POSSESSIVE | MD_OBJECTIVE): res = "herself"; break;
1628 #endif
1629                 }
1630
1631                 /* Copy the result */
1632                 (void)strcpy(desc, res);
1633         }
1634
1635
1636         /* Handle visible monsters, "reflexive" request */
1637         else if ((mode & (MD_POSSESSIVE | MD_OBJECTIVE)) == (MD_POSSESSIVE | MD_OBJECTIVE))
1638         {
1639                 /* The monster is visible, so use its gender */
1640 #ifdef JP
1641                 if (r_ptr->flags1 & (RF1_FEMALE)) strcpy(desc, "彼女自身");
1642                 else if (r_ptr->flags1 & (RF1_MALE)) strcpy(desc, "彼自身");
1643                 else strcpy(desc, "それ自身");
1644 #else
1645                 if (r_ptr->flags1 & RF1_FEMALE) strcpy(desc, "herself");
1646                 else if (r_ptr->flags1 & RF1_MALE) strcpy(desc, "himself");
1647                 else strcpy(desc, "itself");
1648 #endif
1649         }
1650
1651
1652         /* Handle all other visible monster requests */
1653         else
1654         {
1655                 /* Tanuki? */
1656                 if (is_pet(m_ptr) && !is_original_ap(m_ptr))
1657                 {
1658 #ifdef JP
1659                         char *t;
1660                         strcpy(buf, name);
1661                         t = buf;
1662                         while(strncmp(t, "』", 2) && *t) t++;
1663                         if (*t)
1664                         {
1665                                 *t = '\0';
1666                                 (void)sprintf(desc, "%s?』", buf);
1667                         }
1668                         else
1669                                 (void)sprintf(desc, "%s?", name);
1670 #else
1671                         (void)sprintf(desc, "%s?", name);
1672 #endif
1673                 }
1674                 else
1675
1676                 /* It could be a Unique */
1677                 if ((r_ptr->flags1 & RF1_UNIQUE) && !(p_ptr->image && !(mode & MD_IGNORE_HALLU)))
1678                 {
1679                         /* Start with the name (thus nominative and objective) */
1680                         if ((m_ptr->mflag2 & MFLAG2_CHAMELEON) && !(mode & MD_TRUE_NAME))
1681                         {
1682 #ifdef JP
1683                                 char *t;
1684                                 strcpy(buf, name);
1685                                 t = buf;
1686                                 while (strncmp(t, "』", 2) && *t) t++;
1687                                 if (*t)
1688                                 {
1689                                         *t = '\0';
1690                                         (void)sprintf(desc, "%s?』", buf);
1691                                 }
1692                                 else
1693                                         (void)sprintf(desc, "%s?", name);
1694 #else
1695                                 (void)sprintf(desc, "%s?", name);
1696 #endif
1697                         }
1698
1699                         /* Inside monster arena, and it is not your mount */
1700                         else if (p_ptr->inside_battle &&
1701                                  !(p_ptr->riding && (&m_list[p_ptr->riding] == m_ptr)))
1702                         {
1703                                 /* It is a fake unique monster */
1704                                 (void)sprintf(desc, _("%sもどき", "fake %s"), name);
1705                         }
1706
1707                         else
1708                         {
1709                                 (void)strcpy(desc, name);
1710                         }
1711                 }
1712
1713                 /* It could be an indefinite monster */
1714                 else if (mode & MD_INDEF_VISIBLE)
1715                 {
1716                         /* XXX Check plurality for "some" */
1717
1718                         /* Indefinite monsters need an indefinite article */
1719 #ifdef JP
1720                         (void)strcpy(desc, "");
1721 #else
1722                         (void)strcpy(desc, is_a_vowel(name[0]) ? "an " : "a ");
1723 #endif
1724
1725                         (void)strcat(desc, name);
1726                 }
1727
1728                 /* It could be a normal, definite, monster */
1729                 else
1730                 {
1731                         /* Definite monsters need a definite article */
1732                         if (is_pet(m_ptr))
1733                                 (void)strcpy(desc, _("あなたの", "your "));
1734                         else
1735                                 (void)strcpy(desc, _("", "the "));
1736
1737                         (void)strcat(desc, name);
1738                 }
1739
1740                 if (m_ptr->nickname)
1741                 {
1742                         sprintf(buf,_("「%s」", " called %s"),quark_str(m_ptr->nickname));
1743                         strcat(desc,buf);
1744                 }
1745
1746                 if (p_ptr->riding && (&m_list[p_ptr->riding] == m_ptr))
1747                 {
1748                         strcat(desc,_("(乗馬中)", "(riding)"));
1749                 }
1750
1751                 if ((mode & MD_IGNORE_HALLU) && (m_ptr->mflag2 & MFLAG2_CHAMELEON))
1752                 {
1753                         if (r_ptr->flags1 & RF1_UNIQUE)
1754                         {
1755                                 strcat(desc,_("(カメレオンの王)", "(Chameleon Lord)"));
1756                         }
1757                         else
1758                         {
1759                                 strcat(desc,_("(カメレオン)", "(Chameleon)"));
1760                         }
1761                 }
1762
1763                 if ((mode & MD_IGNORE_HALLU) && !is_original_ap(m_ptr))
1764                 {
1765                         strcat(desc, format("(%s)", r_name + r_info[m_ptr->r_idx].name));
1766                 }
1767
1768                 /* Handle the Possessive as a special afterthought */
1769                 if (mode & MD_POSSESSIVE)
1770                 {
1771                         /* XXX Check for trailing "s" */
1772                         
1773                         /* Simply append "apostrophe" and "s" */
1774                         (void)strcat(desc, _("の", "'s"));
1775                 }
1776         }
1777 }
1778
1779
1780
1781 /*!
1782  * @brief モンスターの調査による思い出補完処理 / Learn about a monster (by "probing" it)
1783  * @param r_idx 補完されるモンスター種族ID
1784  * @return 明らかになった情報の度数
1785  * @details
1786  * Return the number of new flags learnt.  -Mogami-
1787  */
1788 int lore_do_probe(MONRACE_IDX r_idx)
1789 {
1790         monster_race *r_ptr = &r_info[r_idx];
1791         int i, n = 0;
1792         byte tmp_byte;
1793
1794         /* Maximal info about awareness */
1795         if (r_ptr->r_wake != MAX_UCHAR) n++;
1796         if (r_ptr->r_ignore != MAX_UCHAR) n++;
1797         r_ptr->r_wake = r_ptr->r_ignore = MAX_UCHAR;
1798
1799         /* Observe "maximal" attacks */
1800         for (i = 0; i < 4; i++)
1801         {
1802                 /* Examine "actual" blows */
1803                 if (r_ptr->blow[i].effect || r_ptr->blow[i].method)
1804                 {
1805                         /* Maximal observations */
1806                         if (r_ptr->r_blows[i] != MAX_UCHAR) n++;
1807                         r_ptr->r_blows[i] = MAX_UCHAR;
1808                 }
1809         }
1810
1811         /* Maximal drops */
1812         tmp_byte =
1813                 (((r_ptr->flags1 & RF1_DROP_4D2) ? 8 : 0) +
1814                  ((r_ptr->flags1 & RF1_DROP_3D2) ? 6 : 0) +
1815                  ((r_ptr->flags1 & RF1_DROP_2D2) ? 4 : 0) +
1816                  ((r_ptr->flags1 & RF1_DROP_1D2) ? 2 : 0) +
1817                  ((r_ptr->flags1 & RF1_DROP_90)  ? 1 : 0) +
1818                  ((r_ptr->flags1 & RF1_DROP_60)  ? 1 : 0));
1819
1820         /* Only "valid" drops */
1821         if (!(r_ptr->flags1 & RF1_ONLY_GOLD))
1822         {
1823                 if (r_ptr->r_drop_item != tmp_byte) n++;
1824                 r_ptr->r_drop_item = tmp_byte;
1825         }
1826         if (!(r_ptr->flags1 & RF1_ONLY_ITEM))
1827         {
1828                 if (r_ptr->r_drop_gold != tmp_byte) n++;
1829                 r_ptr->r_drop_gold = tmp_byte;
1830         }
1831
1832         /* Observe many spells */
1833         if (r_ptr->r_cast_spell != MAX_UCHAR) n++;
1834         r_ptr->r_cast_spell = MAX_UCHAR;
1835
1836         /* Count unknown flags */
1837         for (i = 0; i < 32; i++)
1838         {
1839                 if (!(r_ptr->r_flags1 & (1L << i)) &&
1840                     (r_ptr->flags1 & (1L << i))) n++;
1841                 if (!(r_ptr->r_flags2 & (1L << i)) &&
1842                     (r_ptr->flags2 & (1L << i))) n++;
1843                 if (!(r_ptr->r_flags3 & (1L << i)) &&
1844                     (r_ptr->flags3 & (1L << i))) n++;
1845                 if (!(r_ptr->r_flags4 & (1L << i)) &&
1846                     (r_ptr->flags4 & (1L << i))) n++;
1847                 if (!(r_ptr->r_flags5 & (1L << i)) &&
1848                     (r_ptr->a_ability_flags1 & (1L << i))) n++;
1849                 if (!(r_ptr->r_flags6 & (1L << i)) &&
1850                     (r_ptr->a_ability_flags2 & (1L << i))) n++;
1851                 if (!(r_ptr->r_flagsr & (1L << i)) &&
1852                     (r_ptr->flagsr & (1L << i))) n++;
1853
1854                 /* r_flags7 is actually unused */
1855 #if 0
1856                 if (!(r_ptr->r_flags7 & (1L << i)) &&
1857                     (r_ptr->flags7 & (1L << i))) n++;
1858 #endif
1859         }
1860
1861         /* Know all the flags */
1862         r_ptr->r_flags1 = r_ptr->flags1;
1863         r_ptr->r_flags2 = r_ptr->flags2;
1864         r_ptr->r_flags3 = r_ptr->flags3;
1865         r_ptr->r_flags4 = r_ptr->flags4;
1866         r_ptr->r_flags5 = r_ptr->a_ability_flags1;
1867         r_ptr->r_flags6 = r_ptr->a_ability_flags2;
1868         r_ptr->r_flagsr = r_ptr->flagsr;
1869
1870         /* r_flags7 is actually unused */
1871         /* r_ptr->r_flags7 = r_ptr->flags7; */
1872
1873         /* Know about evolution */
1874         if (!(r_ptr->r_xtra1 & MR1_SINKA)) n++;
1875         r_ptr->r_xtra1 |= MR1_SINKA;
1876
1877         /* Update monster recall window */
1878         if (p_ptr->monster_race_idx == r_idx)
1879         {
1880                 p_ptr->window |= (PW_MONSTER);
1881         }
1882
1883         /* Return the number of new flags learnt */
1884         return n;
1885 }
1886
1887
1888 /*!
1889  * @brief モンスターの撃破に伴うドロップ情報の保管処理 / Take note that the given monster just dropped some treasure
1890  * @param m_idx モンスター情報のID
1891  * @param num_item 手に入れたアイテム数
1892  * @param num_gold 手に入れた財宝の単位数
1893  * @return なし
1894  * @details
1895  * Note that learning the "GOOD"/"GREAT" flags gives information
1896  * about the treasure (even when the monster is killed for the first
1897  * time, such as uniques, and the treasure has not been examined yet).
1898  *
1899  * This "indirect" method is used to prevent the player from learning
1900  * exactly how much treasure a monster can drop from observing only
1901  * a single example of a drop.  This method actually observes how much
1902  * gold and items are dropped, and remembers that information to be
1903  * described later by the monster recall code.
1904  */
1905 void lore_treasure(MONSTER_IDX m_idx, ITEM_NUMBER num_item, ITEM_NUMBER num_gold)
1906 {
1907         monster_type *m_ptr = &m_list[m_idx];
1908
1909         monster_race *r_ptr = &r_info[m_ptr->r_idx];
1910
1911         /* If the monster doesn't have original appearance, don't note */
1912         if (!is_original_ap(m_ptr)) return;
1913
1914         /* Note the number of things dropped */
1915         if (num_item > r_ptr->r_drop_item) r_ptr->r_drop_item = num_item;
1916         if (num_gold > r_ptr->r_drop_gold) r_ptr->r_drop_gold = num_gold;
1917
1918         /* Hack -- memorize the good/great flags */
1919         if (r_ptr->flags1 & (RF1_DROP_GOOD)) r_ptr->r_flags1 |= (RF1_DROP_GOOD);
1920         if (r_ptr->flags1 & (RF1_DROP_GREAT)) r_ptr->r_flags1 |= (RF1_DROP_GREAT);
1921
1922         /* Update monster recall window */
1923         if (p_ptr->monster_race_idx == m_ptr->r_idx)
1924         {
1925                 p_ptr->window |= (PW_MONSTER);
1926         }
1927 }
1928
1929
1930 /*!
1931  * @brief ELDRITCH_HORRORによるプレイヤーの精神破壊処理
1932  * @param m_ptr ELDRITCH_HORRORを引き起こしたモンスターの参照ポインタ
1933  * @param necro 暗黒領域魔法の詠唱失敗によるものならばTRUEを返す
1934  * @return なし
1935  */
1936 void sanity_blast(monster_type *m_ptr, bool necro)
1937 {
1938         int power = 100;
1939
1940         if (p_ptr->inside_battle || !character_dungeon) return;
1941
1942         if (!necro && m_ptr)
1943         {
1944                 char m_name[80];
1945                 monster_race *r_ptr = &r_info[m_ptr->ap_r_idx];
1946
1947                 power = r_ptr->level / 2;
1948
1949                 monster_desc(m_name, m_ptr, 0);
1950
1951                 if (!(r_ptr->flags1 & RF1_UNIQUE))
1952                 {
1953                         if (r_ptr->flags1 & RF1_FRIENDS)
1954                         power /= 2;
1955                 }
1956                 else power *= 2;
1957
1958                 if (!is_loading_now)
1959                         return; /* No effect yet, just loaded... */
1960
1961                 if (!m_ptr->ml)
1962                         return; /* Cannot see it for some reason */
1963
1964                 if (!(r_ptr->flags2 & RF2_ELDRITCH_HORROR))
1965                         return;
1966
1967                 if (is_pet(m_ptr))
1968                         return; /* Pet eldritch horrors are safe most of the time */
1969
1970                 if (randint1(100) > power) return;
1971
1972                 if (saving_throw(p_ptr->skill_sav - power))
1973                 {
1974                         return; /* Save, no adverse effects */
1975                 }
1976
1977                 if (p_ptr->image)
1978                 {
1979                         /* Something silly happens... */
1980 #ifdef JP
1981                         msg_format("%s%sの顔を見てしまった!",
1982                                 funny_desc[randint0(MAX_SAN_FUNNY)], m_name);
1983 #else
1984                         msg_format("You behold the %s visage of %s!",
1985                                 funny_desc[randint0(MAX_SAN_FUNNY)], m_name);
1986 #endif
1987
1988                         if (one_in_(3))
1989                         {
1990                                 msg_print(funny_comments[randint0(MAX_SAN_COMMENT)]);
1991                                 p_ptr->image = p_ptr->image + randint1(r_ptr->level);
1992                         }
1993
1994                         return; /* Never mind; we can't see it clearly enough */
1995                 }
1996
1997                 /* Something frightening happens... */
1998 #ifdef JP
1999                 msg_format("%s%sの顔を見てしまった!",
2000                         horror_desc[randint0(MAX_SAN_HORROR)], m_name);
2001 #else
2002                 msg_format("You behold the %s visage of %s!",
2003                         horror_desc[randint0(MAX_SAN_HORROR)], m_name);
2004 #endif
2005
2006                 r_ptr->r_flags2 |= RF2_ELDRITCH_HORROR;
2007
2008                 /* Demon characters are unaffected */
2009                 if (prace_is_(RACE_IMP) || prace_is_(RACE_DEMON) || (mimic_info[p_ptr->mimic_form].MIMIC_FLAGS & MIMIC_IS_DEMON)) return;
2010                 if (p_ptr->wizard) return;
2011
2012                 /* Undead characters are 50% likely to be unaffected */
2013                 if (prace_is_(RACE_SKELETON) || prace_is_(RACE_ZOMBIE)
2014                         || prace_is_(RACE_VAMPIRE) || prace_is_(RACE_SPECTRE) ||
2015                     (mimic_info[p_ptr->mimic_form].MIMIC_FLAGS & MIMIC_IS_UNDEAD))
2016                 {
2017                         if (saving_throw(25 + p_ptr->lev)) return;
2018                 }
2019         }
2020         else if(!necro)
2021         {
2022                 monster_race *r_ptr;
2023                 char m_name[80];
2024                 cptr desc;
2025
2026                 get_mon_num_prep(get_nightmare, NULL);
2027
2028                 r_ptr = &r_info[get_mon_num(MAX_DEPTH)];
2029                 power = r_ptr->level + 10;
2030                 desc = r_name + r_ptr->name;
2031
2032                 get_mon_num_prep(NULL, NULL);
2033
2034                 /* Describe it */
2035 #ifndef JP
2036                 if (!(r_ptr->flags1 & RF1_UNIQUE))
2037                         sprintf(m_name, "%s %s", (is_a_vowel(desc[0]) ? "an" : "a"), desc);
2038                 else
2039 #endif
2040                 sprintf(m_name, "%s", desc);
2041
2042                 if (!(r_ptr->flags1 & RF1_UNIQUE))
2043                 {
2044                         if (r_ptr->flags1 & RF1_FRIENDS) power /= 2;
2045                 }
2046                 else power *= 2;
2047
2048                 if (saving_throw(p_ptr->skill_sav * 100 / power))
2049                 {
2050                         msg_format(_("夢の中で%sに追いかけられた。", "%^s chases you through your dreams."), m_name);
2051                         /* Safe */
2052                         return;
2053                 }
2054
2055                 if (p_ptr->image)
2056                 {
2057                         /* Something silly happens... */
2058                         msg_format(_("%s%sの顔を見てしまった!", "You behold the %s visage of %s!"),
2059                                                 funny_desc[randint0(MAX_SAN_FUNNY)], m_name);
2060
2061                         if (one_in_(3))
2062                         {
2063                                 msg_print(funny_comments[randint0(MAX_SAN_COMMENT)]);
2064                                 p_ptr->image = p_ptr->image + randint1(r_ptr->level);
2065                         }
2066
2067                         /* Never mind; we can't see it clearly enough */
2068                         return;
2069                 }
2070
2071                 /* Something frightening happens... */
2072                 msg_format(_("%s%sの顔を見てしまった!", "You behold the %s visage of %s!"),
2073                                   horror_desc[randint0(MAX_SAN_HORROR)], desc);
2074
2075                 r_ptr->r_flags2 |= RF2_ELDRITCH_HORROR;
2076
2077                 if (!p_ptr->mimic_form)
2078                 {
2079                         switch (p_ptr->prace)
2080                         {
2081                         /* Demons may make a saving throw */
2082                         case RACE_IMP:
2083                         case RACE_DEMON:
2084                                 if (saving_throw(20 + p_ptr->lev)) return;
2085                                 break;
2086                         /* Undead may make a saving throw */
2087                         case RACE_SKELETON:
2088                         case RACE_ZOMBIE:
2089                         case RACE_SPECTRE:
2090                         case RACE_VAMPIRE:
2091                                 if (saving_throw(10 + p_ptr->lev)) return;
2092                                 break;
2093                         }
2094                 }
2095                 else
2096                 {
2097                         /* Demons may make a saving throw */
2098                         if (mimic_info[p_ptr->mimic_form].MIMIC_FLAGS & MIMIC_IS_DEMON)
2099                         {
2100                                 if (saving_throw(20 + p_ptr->lev)) return;
2101                         }
2102                         /* Undead may make a saving throw */
2103                         else if (mimic_info[p_ptr->mimic_form].MIMIC_FLAGS & MIMIC_IS_UNDEAD)
2104                         {
2105                                 if (saving_throw(10 + p_ptr->lev)) return;
2106                         }
2107                 }
2108         }
2109         else
2110         {
2111                 msg_print(_("ネクロノミコンを読んで正気を失った!", "Your sanity is shaken by reading the Necronomicon!"));
2112         }
2113
2114         if (saving_throw(p_ptr->skill_sav - power))
2115         {
2116                 return;
2117         }
2118
2119         do {
2120                 (void)do_dec_stat(A_INT);
2121         } while (randint0(100) > p_ptr->skill_sav && one_in_(2));
2122
2123         do {
2124                 (void)do_dec_stat(A_WIS);
2125         } while (randint0(100) > p_ptr->skill_sav && one_in_(2));
2126
2127         switch (randint1(21))
2128         {
2129         case 1:
2130                 if (!(p_ptr->muta3 & MUT3_MORONIC) && one_in_(5))
2131                 {
2132                         if ((p_ptr->stat_use[A_INT] < 4) && (p_ptr->stat_use[A_WIS] < 4))
2133                         {
2134                                 msg_print(_("あなたは完璧な馬鹿になったような気がした。しかしそれは元々だった。", "You turn into an utter moron!"));
2135                         }
2136                         else
2137                         {
2138                                 msg_print(_("あなたは完璧な馬鹿になった!", "You turn into an utter moron!"));
2139                         }
2140
2141                         if (p_ptr->muta3 & MUT3_HYPER_INT)
2142                         {
2143                                 msg_print(_("あなたの脳は生体コンピュータではなくなった。", "Your brain is no longer a living computer."));
2144                                 p_ptr->muta3 &= ~(MUT3_HYPER_INT);
2145                         }
2146                         p_ptr->muta3 |= MUT3_MORONIC;
2147                 }
2148                 break;
2149         case 2:
2150         case 3:
2151         case 4:
2152                 if (!(p_ptr->muta2 & MUT2_COWARDICE) && !p_ptr->resist_fear)
2153                 {
2154                         msg_print(_("あなたはパラノイアになった!", "You become paranoid!"));
2155
2156                         /* Duh, the following should never happen, but anyway... */
2157                         if (p_ptr->muta3 & MUT3_FEARLESS)
2158                         {
2159                                 msg_print(_("あなたはもう恐れ知らずではなくなった。", "You are no longer fearless."));
2160                                 p_ptr->muta3 &= ~(MUT3_FEARLESS);
2161                         }
2162
2163                         p_ptr->muta2 |= MUT2_COWARDICE;
2164                 }
2165                 break;
2166         case 5:
2167         case 6:
2168         case 7:
2169                 if (!(p_ptr->muta2 & MUT2_HALLU) && !p_ptr->resist_chaos)
2170                 {
2171                         msg_print(_("幻覚をひき起こす精神錯乱に陥った!", "You are afflicted by a hallucinatory insanity!"));
2172                         p_ptr->muta2 |= MUT2_HALLU;
2173                 }
2174                 break;
2175         case 8:
2176         case 9:
2177         case 10:
2178                 if (!(p_ptr->muta2 & MUT2_BERS_RAGE))
2179                 {
2180                         msg_print(_("激烈な感情の発作におそわれるようになった!", "You become subject to fits of berserk rage!"));
2181                         p_ptr->muta2 |= MUT2_BERS_RAGE;
2182                 }
2183                 break;
2184         case 11:
2185         case 12:
2186         case 13:
2187         case 14:
2188         case 15:
2189         case 16:
2190                 /* Brain smash */
2191                 if (!p_ptr->resist_conf)
2192                 {
2193                         (void)set_confused(p_ptr->confused + randint0(4) + 4);
2194                 }
2195                 if (!p_ptr->free_act)
2196                 {
2197                         (void)set_paralyzed(p_ptr->paralyzed + randint0(4) + 4);
2198                 }
2199                 if (!p_ptr->resist_chaos)
2200                 {
2201                         (void)set_image(p_ptr->image + randint0(250) + 150);
2202                 }
2203                 break;
2204         case 17:
2205         case 18:
2206         case 19:
2207         case 20:
2208         case 21:
2209                 /* Amnesia */
2210                 if (lose_all_info())
2211                         msg_print(_("あまりの恐怖に全てのことを忘れてしまった!", "You forget everything in your utmost terror!"));
2212                 break;
2213         }
2214
2215         p_ptr->update |= PU_BONUS;
2216         handle_stuff();
2217 }
2218
2219 /*!
2220  * @brief モンスターの各情報を更新する / This function updates the monster record of the given monster
2221  * @param m_idx 更新するモンスター情報のID
2222  * @param full プレイヤーとの距離更新を行うならばtrue
2223  * @return なし
2224  * @details
2225  * This involves extracting the distance to the player (if requested),
2226  * and then checking for visibility (natural, infravision, see-invis,
2227  * telepathy), updating the monster visibility flag, redrawing (or
2228  * erasing) the monster when its visibility changes, and taking note
2229  * of any interesting monster flags (cold-blooded, invisible, etc).
2230  *
2231  * Note the new "mflag" field which encodes several monster state flags,
2232  * including "view" for when the monster is currently in line of sight,
2233  * and "mark" for when the monster is currently visible via detection.
2234  *
2235  * The only monster fields that are changed here are "cdis" (the
2236  * distance from the player), "ml" (visible to the player), and
2237  * "mflag" (to maintain the "MFLAG_VIEW" flag).
2238  *
2239  * Note the special "update_monsters()" function which can be used to
2240  * call this function once for every monster.
2241  *
2242  * Note the "full" flag which requests that the "cdis" field be updated,
2243  * this is only needed when the monster (or the player) has moved.
2244  *
2245  * Every time a monster moves, we must call this function for that
2246  * monster, and update the distance, and the visibility.  Every time
2247  * the player moves, we must call this function for every monster, and
2248  * update the distance, and the visibility.  Whenever the player "state"
2249  * changes in certain ways ("blindness", "infravision", "telepathy",
2250  * and "see invisible"), we must call this function for every monster,
2251  * and update the visibility.
2252  *
2253  * Routines that change the "illumination" of a grid must also call this
2254  * function for any monster in that grid, since the "visibility" of some
2255  * monsters may be based on the illumination of their grid.
2256  *
2257  * Note that this function is called once per monster every time the
2258  * player moves.  When the player is running, this function is one
2259  * of the primary bottlenecks, along with "update_view()" and the
2260  * "process_monsters()" code, so efficiency is important.
2261  *
2262  * Note the optimized "inline" version of the "distance()" function.
2263  *
2264  * A monster is "visible" to the player if (1) it has been detected
2265  * by the player, (2) it is close to the player and the player has
2266  * telepathy, or (3) it is close to the player, and in line of sight
2267  * of the player, and it is "illuminated" by some combination of
2268  * infravision, torch light, or permanent light (invisible monsters
2269  * are only affected by "light" if the player can see invisible).
2270  *
2271  * Monsters which are not on the current panel may be "visible" to
2272  * the player, and their descriptions will include an "offscreen"
2273  * reference.  Currently, offscreen monsters cannot be targetted
2274  * or viewed directly, but old targets will remain set.  XXX XXX
2275  *
2276  * The player can choose to be disturbed by several things, including
2277  * "disturb_move" (monster which is viewable moves in some way), and
2278  * "disturb_near" (monster which is "easily" viewable moves in some
2279  * way).  Note that "moves" includes "appears" and "disappears".
2280  */
2281 void update_monster(MONSTER_IDX m_idx, bool full)
2282 {
2283         monster_type *m_ptr = &m_list[m_idx];
2284
2285         monster_race *r_ptr = &r_info[m_ptr->r_idx];
2286
2287         bool do_disturb = disturb_move;
2288
2289         int d;
2290
2291         /* Current location */
2292         int fy = m_ptr->fy;
2293         int fx = m_ptr->fx;
2294
2295         /* Seen at all */
2296         bool flag = FALSE;
2297
2298         /* Seen by vision */
2299         bool easy = FALSE;
2300
2301         /* Non-Ninja player in the darkness */
2302         bool in_darkness = (d_info[dungeon_type].flags1 & DF1_DARKNESS) && !p_ptr->see_nocto;
2303
2304         /* Do disturb? */
2305         if (disturb_high)
2306         {
2307                 monster_race *ap_r_ptr = &r_info[m_ptr->ap_r_idx];
2308
2309                 if (ap_r_ptr->r_tkills && ap_r_ptr->level >= p_ptr->lev)
2310                         do_disturb = TRUE;
2311         }
2312
2313         /* Compute distance */
2314         if (full)
2315         {
2316                 /* Distance components */
2317                 int dy = (p_ptr->y > fy) ? (p_ptr->y - fy) : (fy - p_ptr->y);
2318                 int dx = (p_ptr->x > fx) ? (p_ptr->x - fx) : (fx - p_ptr->x);
2319
2320                 /* Approximate distance */
2321                 d = (dy > dx) ? (dy + (dx>>1)) : (dx + (dy>>1));
2322
2323                 /* Restrict distance */
2324                 if (d > 255) d = 255;
2325
2326                 if (!d) d = 1;
2327
2328                 /* Save the distance */
2329                 m_ptr->cdis = d;
2330         }
2331
2332         /* Extract distance */
2333         else
2334         {
2335                 /* Extract the distance */
2336                 d = m_ptr->cdis;
2337         }
2338
2339
2340         /* Detected */
2341         if (m_ptr->mflag2 & (MFLAG2_MARK)) flag = TRUE;
2342
2343
2344         /* Nearby */
2345         if (d <= (in_darkness ? MAX_SIGHT / 2 : MAX_SIGHT))
2346         {
2347                 if (!in_darkness || (d <= MAX_SIGHT / 4))
2348                 {
2349                         if (p_ptr->special_defense & KATA_MUSOU)
2350                         {
2351                                 /* Detectable */
2352                                 flag = TRUE;
2353
2354                                 if (is_original_ap(m_ptr) && !p_ptr->image)
2355                                 {
2356                                         /* Hack -- Memorize mental flags */
2357                                         if (r_ptr->flags2 & (RF2_SMART)) r_ptr->r_flags2 |= (RF2_SMART);
2358                                         if (r_ptr->flags2 & (RF2_STUPID)) r_ptr->r_flags2 |= (RF2_STUPID);
2359                                 }
2360                         }
2361
2362                         /* Basic telepathy */
2363                         /* Snipers get telepathy when they concentrate deeper */
2364                         else if (p_ptr->telepathy)
2365                         {
2366                                 /* Empty mind, no telepathy */
2367                                 if (r_ptr->flags2 & (RF2_EMPTY_MIND))
2368                                 {
2369                                         /* Memorize flags */
2370                                         if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags2 |= (RF2_EMPTY_MIND);
2371                                 }
2372
2373                                 /* Weird mind, occasional telepathy */
2374                                 else if (r_ptr->flags2 & (RF2_WEIRD_MIND))
2375                                 {
2376                                         /* One in ten individuals are detectable */
2377                                         if ((m_idx % 10) == 5)
2378                                         {
2379                                                 /* Detectable */
2380                                                 flag = TRUE;
2381
2382                                                 if (is_original_ap(m_ptr) && !p_ptr->image)
2383                                                 {
2384                                                         /* Memorize flags */
2385                                                         r_ptr->r_flags2 |= (RF2_WEIRD_MIND);
2386
2387                                                         /* Hack -- Memorize mental flags */
2388                                                         if (r_ptr->flags2 & (RF2_SMART)) r_ptr->r_flags2 |= (RF2_SMART);
2389                                                         if (r_ptr->flags2 & (RF2_STUPID)) r_ptr->r_flags2 |= (RF2_STUPID);
2390                                                 }
2391                                         }
2392                                 }
2393
2394                                 /* Normal mind, allow telepathy */
2395                                 else
2396                                 {
2397                                         /* Detectable */
2398                                         flag = TRUE;
2399
2400                                         if (is_original_ap(m_ptr) && !p_ptr->image)
2401                                         {
2402                                                 /* Hack -- Memorize mental flags */
2403                                                 if (r_ptr->flags2 & (RF2_SMART)) r_ptr->r_flags2 |= (RF2_SMART);
2404                                                 if (r_ptr->flags2 & (RF2_STUPID)) r_ptr->r_flags2 |= (RF2_STUPID);
2405                                         }
2406                                 }
2407                         }
2408
2409                         /* Magical sensing */
2410                         if ((p_ptr->esp_animal) && (r_ptr->flags3 & (RF3_ANIMAL)))
2411                         {
2412                                 flag = TRUE;
2413                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_ANIMAL);
2414                         }
2415
2416                         /* Magical sensing */
2417                         if ((p_ptr->esp_undead) && (r_ptr->flags3 & (RF3_UNDEAD)))
2418                         {
2419                                 flag = TRUE;
2420                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_UNDEAD);
2421                         }
2422
2423                         /* Magical sensing */
2424                         if ((p_ptr->esp_demon) && (r_ptr->flags3 & (RF3_DEMON)))
2425                         {
2426                                 flag = TRUE;
2427                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_DEMON);
2428                         }
2429
2430                         /* Magical sensing */
2431                         if ((p_ptr->esp_orc) && (r_ptr->flags3 & (RF3_ORC)))
2432                         {
2433                                 flag = TRUE;
2434                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_ORC);
2435                         }
2436
2437                         /* Magical sensing */
2438                         if ((p_ptr->esp_troll) && (r_ptr->flags3 & (RF3_TROLL)))
2439                         {
2440                                 flag = TRUE;
2441                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_TROLL);
2442                         }
2443
2444                         /* Magical sensing */
2445                         if ((p_ptr->esp_giant) && (r_ptr->flags3 & (RF3_GIANT)))
2446                         {
2447                                 flag = TRUE;
2448                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_GIANT);
2449                         }
2450
2451                         /* Magical sensing */
2452                         if ((p_ptr->esp_dragon) && (r_ptr->flags3 & (RF3_DRAGON)))
2453                         {
2454                                 flag = TRUE;
2455                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_DRAGON);
2456                         }
2457
2458                         /* Magical sensing */
2459                         if ((p_ptr->esp_human) && (r_ptr->flags2 & (RF2_HUMAN)))
2460                         {
2461                                 flag = TRUE;
2462                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags2 |= (RF2_HUMAN);
2463                         }
2464
2465                         /* Magical sensing */
2466                         if ((p_ptr->esp_evil) && (r_ptr->flags3 & (RF3_EVIL)))
2467                         {
2468                                 flag = TRUE;
2469                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_EVIL);
2470                         }
2471
2472                         /* Magical sensing */
2473                         if ((p_ptr->esp_good) && (r_ptr->flags3 & (RF3_GOOD)))
2474                         {
2475                                 flag = TRUE;
2476                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_GOOD);
2477                         }
2478
2479                         /* Magical sensing */
2480                         if ((p_ptr->esp_nonliving) &&
2481                             ((r_ptr->flags3 & (RF3_DEMON | RF3_UNDEAD | RF3_NONLIVING)) == RF3_NONLIVING))
2482                         {
2483                                 flag = TRUE;
2484                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags3 |= (RF3_NONLIVING);
2485                         }
2486
2487                         /* Magical sensing */
2488                         if ((p_ptr->esp_unique) && (r_ptr->flags1 & (RF1_UNIQUE)))
2489                         {
2490                                 flag = TRUE;
2491                                 if (is_original_ap(m_ptr) && !p_ptr->image) r_ptr->r_flags1 |= (RF1_UNIQUE);
2492                         }
2493                 }
2494
2495                 /* Normal line of sight, and not blind */
2496                 if (player_has_los_bold(fy, fx) && !p_ptr->blind)
2497                 {
2498                         bool do_invisible = FALSE;
2499                         bool do_cold_blood = FALSE;
2500
2501                         /* Snipers can see targets in darkness when they concentrate deeper */
2502                         if (p_ptr->concent >= CONCENT_RADAR_THRESHOLD)
2503                         {
2504                                 /* Easy to see */
2505                                 easy = flag = TRUE;
2506                         }
2507
2508                         /* Use "infravision" */
2509                         if (d <= p_ptr->see_infra)
2510                         {
2511                                 /* Handle "cold blooded" monsters */
2512                                 if ((r_ptr->flags2 & (RF2_COLD_BLOOD | RF2_AURA_FIRE)) == RF2_COLD_BLOOD)
2513                                 {
2514                                         /* Take note */
2515                                         do_cold_blood = TRUE;
2516                                 }
2517
2518                                 /* Handle "warm blooded" monsters */
2519                                 else
2520                                 {
2521                                         /* Easy to see */
2522                                         easy = flag = TRUE;
2523                                 }
2524                         }
2525
2526                         /* Use "illumination" */
2527                         if (player_can_see_bold(fy, fx))
2528                         {
2529                                 /* Handle "invisible" monsters */
2530                                 if (r_ptr->flags2 & (RF2_INVISIBLE))
2531                                 {
2532                                         /* Take note */
2533                                         do_invisible = TRUE;
2534
2535                                         /* See invisible */
2536                                         if (p_ptr->see_inv)
2537                                         {
2538                                                 /* Easy to see */
2539                                                 easy = flag = TRUE;
2540                                         }
2541                                 }
2542
2543                                 /* Handle "normal" monsters */
2544                                 else
2545                                 {
2546                                         /* Easy to see */
2547                                         easy = flag = TRUE;
2548                                 }
2549                         }
2550
2551                         /* Visible */
2552                         if (flag)
2553                         {
2554                                 if (is_original_ap(m_ptr) && !p_ptr->image)
2555                                 {
2556                                         /* Memorize flags */
2557                                         if (do_invisible) r_ptr->r_flags2 |= (RF2_INVISIBLE);
2558                                         if (do_cold_blood) r_ptr->r_flags2 |= (RF2_COLD_BLOOD);
2559                                 }
2560                         }
2561                 }
2562         }
2563
2564
2565         /* The monster is now visible */
2566         if (flag)
2567         {
2568                 /* It was previously unseen */
2569                 if (!m_ptr->ml)
2570                 {
2571                         /* Mark as visible */
2572                         m_ptr->ml = TRUE;
2573
2574                         /* Draw the monster */
2575                         lite_spot(fy, fx);
2576
2577                         /* Update health bar as needed */
2578                         if (p_ptr->health_who == m_idx) p_ptr->redraw |= (PR_HEALTH);
2579                         if (p_ptr->riding == m_idx) p_ptr->redraw |= (PR_UHEALTH);
2580
2581                         /* Hack -- Count "fresh" sightings */
2582                         if (!p_ptr->image)
2583                         {
2584                                 if ((m_ptr->ap_r_idx == MON_KAGE) && (r_info[MON_KAGE].r_sights < MAX_SHORT))
2585                                         r_info[MON_KAGE].r_sights++;
2586                                 else if (is_original_ap(m_ptr) && (r_ptr->r_sights < MAX_SHORT))
2587                                         r_ptr->r_sights++;
2588                         }
2589
2590                         /* Eldritch Horror */
2591                         if (r_info[m_ptr->ap_r_idx].flags2 & RF2_ELDRITCH_HORROR)
2592                         {
2593                                 sanity_blast(m_ptr, FALSE);
2594                         }
2595
2596                         /* Disturb on appearance */
2597                         if (disturb_near && (projectable(m_ptr->fy, m_ptr->fx, p_ptr->y, p_ptr->x) && projectable(p_ptr->y, p_ptr->x, m_ptr->fy, m_ptr->fx)))
2598                         {
2599                                 if (disturb_pets || is_hostile(m_ptr))
2600                                         disturb(TRUE, TRUE);
2601                         }
2602                 }
2603         }
2604
2605         /* The monster is not visible */
2606         else
2607         {
2608                 /* It was previously seen */
2609                 if (m_ptr->ml)
2610                 {
2611                         /* Mark as not visible */
2612                         m_ptr->ml = FALSE;
2613
2614                         /* Erase the monster */
2615                         lite_spot(fy, fx);
2616
2617                         /* Update health bar as needed */
2618                         if (p_ptr->health_who == m_idx) p_ptr->redraw |= (PR_HEALTH);
2619                         if (p_ptr->riding == m_idx) p_ptr->redraw |= (PR_UHEALTH);
2620
2621                         /* Disturb on disappearance */
2622                         if (do_disturb)
2623                         {
2624                                 if (disturb_pets || is_hostile(m_ptr))
2625                                         disturb(TRUE, TRUE);
2626                         }
2627                 }
2628         }
2629
2630
2631         /* The monster is now easily visible */
2632         if (easy)
2633         {
2634                 /* Change */
2635                 if (!(m_ptr->mflag & (MFLAG_VIEW)))
2636                 {
2637                         /* Mark as easily visible */
2638                         m_ptr->mflag |= (MFLAG_VIEW);
2639
2640                         /* Disturb on appearance */
2641                         if (do_disturb)
2642                         {
2643                                 if (disturb_pets || is_hostile(m_ptr))
2644                                         disturb(TRUE, TRUE);
2645                         }
2646                 }
2647         }
2648
2649         /* The monster is not easily visible */
2650         else
2651         {
2652                 /* Change */
2653                 if (m_ptr->mflag & (MFLAG_VIEW))
2654                 {
2655                         /* Mark as not easily visible */
2656                         m_ptr->mflag &= ~(MFLAG_VIEW);
2657
2658                         /* Disturb on disappearance */
2659                         if (do_disturb)
2660                         {
2661                                 if (disturb_pets || is_hostile(m_ptr))
2662                                         disturb(TRUE, TRUE);
2663                         }
2664                 }
2665         }
2666 }
2667
2668
2669 /*!
2670  * @brief 単純に生存している全モンスターの更新処理を行う / This function simply updates all the (non-dead) monsters (see above).
2671  * @param full 距離更新を行うならtrue
2672  * @return なし
2673  */
2674 void update_monsters(bool full)
2675 {
2676         IDX i;
2677
2678         /* Update each (live) monster */
2679         for (i = 1; i < m_max; i++)
2680         {
2681                 monster_type *m_ptr = &m_list[i];
2682
2683                 /* Skip dead monsters */
2684                 if (!m_ptr->r_idx) continue;
2685                 update_monster(i, full);
2686         }
2687 }
2688
2689
2690 /*!
2691  * @brief カメレオンの王の変身対象となるモンスターかどうか判定する / Hack -- the index of the summoning monster
2692  * @param r_idx モンスター種族ID
2693  * @return 対象にできるならtrueを返す
2694  */
2695 static bool monster_hook_chameleon_lord(MONRACE_IDX r_idx)
2696 {
2697         monster_race *r_ptr = &r_info[r_idx];
2698         monster_type *m_ptr = &m_list[chameleon_change_m_idx];
2699         monster_race *old_r_ptr = &r_info[m_ptr->r_idx];
2700
2701         if (!(r_ptr->flags1 & (RF1_UNIQUE))) return FALSE;
2702         if (r_ptr->flags7 & (RF7_FRIENDLY | RF7_CHAMELEON)) return FALSE;
2703
2704         if (ABS(r_ptr->level - r_info[MON_CHAMELEON_K].level) > 5) return FALSE;
2705
2706         if ((r_ptr->blow[0].method == RBM_EXPLODE) || (r_ptr->blow[1].method == RBM_EXPLODE) || (r_ptr->blow[2].method == RBM_EXPLODE) || (r_ptr->blow[3].method == RBM_EXPLODE))
2707                 return FALSE;
2708
2709         if (!monster_can_cross_terrain(cave[m_ptr->fy][m_ptr->fx].feat, r_ptr, 0)) return FALSE;
2710
2711         /* Not born */
2712         if (!(old_r_ptr->flags7 & RF7_CHAMELEON))
2713         {
2714                 if (monster_has_hostile_align(m_ptr, 0, 0, r_ptr)) return FALSE;
2715         }
2716
2717         /* Born now */
2718         else if (summon_specific_who > 0)
2719         {
2720                 if (monster_has_hostile_align(&m_list[summon_specific_who], 0, 0, r_ptr)) return FALSE;
2721         }
2722
2723         return TRUE;
2724 }
2725
2726 /*!
2727  * @brief カメレオンの変身対象となるモンスターかどうか判定する / Hack -- the index of the summoning monster
2728  * @param r_idx モンスター種族ID
2729  * @return 対象にできるならtrueを返す
2730  */
2731 static bool monster_hook_chameleon(MONRACE_IDX r_idx)
2732 {
2733         monster_race *r_ptr = &r_info[r_idx];
2734         monster_type *m_ptr = &m_list[chameleon_change_m_idx];
2735         monster_race *old_r_ptr = &r_info[m_ptr->r_idx];
2736
2737         if (r_ptr->flags1 & (RF1_UNIQUE)) return FALSE;
2738         if (r_ptr->flags2 & RF2_MULTIPLY) return FALSE;
2739         if (r_ptr->flags7 & (RF7_FRIENDLY | RF7_CHAMELEON)) return FALSE;
2740         
2741         if ((r_ptr->blow[0].method == RBM_EXPLODE) || (r_ptr->blow[1].method == RBM_EXPLODE) || (r_ptr->blow[2].method == RBM_EXPLODE) || (r_ptr->blow[3].method == RBM_EXPLODE))
2742                 return FALSE;
2743
2744         if (!monster_can_cross_terrain(cave[m_ptr->fy][m_ptr->fx].feat, r_ptr, 0)) return FALSE;
2745
2746         /* Not born */
2747         if (!(old_r_ptr->flags7 & RF7_CHAMELEON))
2748         {
2749                 if ((old_r_ptr->flags3 & RF3_GOOD) && !(r_ptr->flags3 & RF3_GOOD)) return FALSE;
2750                 if ((old_r_ptr->flags3 & RF3_EVIL) && !(r_ptr->flags3 & RF3_EVIL)) return FALSE;
2751                 if (!(old_r_ptr->flags3 & (RF3_GOOD | RF3_EVIL)) && (r_ptr->flags3 & (RF3_GOOD | RF3_EVIL))) return FALSE;
2752         }
2753
2754         /* Born now */
2755         else if (summon_specific_who > 0)
2756         {
2757                 if (monster_has_hostile_align(&m_list[summon_specific_who], 0, 0, r_ptr)) return FALSE;
2758         }
2759
2760         return (*(get_monster_hook()))(r_idx);
2761 }
2762
2763 /*!
2764  * @brief モンスターの変身処理
2765  * @param m_idx 変身処理を受けるモンスター情報のID
2766  * @param born 生成時の初変身先指定ならばtrue
2767  * @param r_idx 旧モンスター種族のID
2768  * @return なし
2769  */
2770 void choose_new_monster(MONSTER_IDX m_idx, bool born, MONRACE_IDX r_idx)
2771 {
2772         int oldmaxhp;
2773         monster_type *m_ptr = &m_list[m_idx];
2774         monster_race *r_ptr;
2775         char old_m_name[80];
2776         bool old_unique = FALSE;
2777         int old_r_idx = m_ptr->r_idx;
2778
2779         if (r_info[m_ptr->r_idx].flags1 & RF1_UNIQUE)
2780                 old_unique = TRUE;
2781         if (old_unique && (r_idx == MON_CHAMELEON)) r_idx = MON_CHAMELEON_K;
2782         r_ptr = &r_info[r_idx];
2783
2784         monster_desc(old_m_name, m_ptr, 0);
2785
2786         if (!r_idx)
2787         {
2788                 DEPTH level;
2789
2790                 chameleon_change_m_idx = m_idx;
2791                 if (old_unique)
2792                         get_mon_num_prep(monster_hook_chameleon_lord, NULL);
2793                 else
2794                         get_mon_num_prep(monster_hook_chameleon, NULL);
2795
2796                 if (old_unique)
2797                         level = r_info[MON_CHAMELEON_K].level;
2798                 else if (!dun_level)
2799                         level = wilderness[p_ptr->wilderness_y][p_ptr->wilderness_x].level;
2800                 else
2801                         level = dun_level;
2802
2803                 if (d_info[dungeon_type].flags1 & DF1_CHAMELEON) level+= 2+randint1(3);
2804
2805                 r_idx = get_mon_num(level);
2806                 r_ptr = &r_info[r_idx];
2807
2808                 chameleon_change_m_idx = 0;
2809
2810                 /* Paranoia */
2811                 if (!r_idx) return;
2812         }
2813
2814         if (is_pet(m_ptr)) check_pets_num_and_align(m_ptr, FALSE);
2815
2816         m_ptr->r_idx = r_idx;
2817         m_ptr->ap_r_idx = r_idx;
2818         update_monster(m_idx, FALSE);
2819         lite_spot(m_ptr->fy, m_ptr->fx);
2820
2821         if ((r_info[old_r_idx].flags7 & (RF7_LITE_MASK | RF7_DARK_MASK)) ||
2822             (r_ptr->flags7 & (RF7_LITE_MASK | RF7_DARK_MASK)))
2823                 p_ptr->update |= (PU_MON_LITE);
2824
2825         if (is_pet(m_ptr)) check_pets_num_and_align(m_ptr, TRUE);
2826
2827         if (born)
2828         {
2829                 /* Sub-alignment of a chameleon */
2830                 if (r_ptr->flags3 & (RF3_EVIL | RF3_GOOD))
2831                 {
2832                         m_ptr->sub_align = SUB_ALIGN_NEUTRAL;
2833                         if (r_ptr->flags3 & RF3_EVIL) m_ptr->sub_align |= SUB_ALIGN_EVIL;
2834                         if (r_ptr->flags3 & RF3_GOOD) m_ptr->sub_align |= SUB_ALIGN_GOOD;
2835                 }
2836                 return;
2837         }
2838
2839         if (m_idx == p_ptr->riding)
2840         {
2841                 char m_name[80];
2842                 monster_desc(m_name, m_ptr, 0);
2843                 msg_format(_("突然%sが変身した。", "Suddenly, %s transforms!"), old_m_name);
2844                 if (!(r_ptr->flags7 & RF7_RIDING))
2845                         if (rakuba(0, TRUE)) msg_format(_("地面に落とされた。", "You have fallen from %s."), m_name);
2846         }
2847
2848         /* Extract the monster base speed */
2849         m_ptr->mspeed = get_mspeed(r_ptr);
2850
2851         oldmaxhp = m_ptr->max_maxhp;
2852         /* Assign maximal hitpoints */
2853         if (r_ptr->flags1 & RF1_FORCE_MAXHP)
2854         {
2855                 m_ptr->max_maxhp = maxroll(r_ptr->hdice, r_ptr->hside);
2856         }
2857         else
2858         {
2859                 m_ptr->max_maxhp = damroll(r_ptr->hdice, r_ptr->hside);
2860         }
2861
2862         /* Monsters have double hitpoints in Nightmare mode */
2863         if (ironman_nightmare)
2864         {
2865                 u32b hp = m_ptr->max_maxhp * 2L;
2866                 m_ptr->max_maxhp = (HIT_POINT)MIN(30000, hp);
2867         }
2868
2869         m_ptr->maxhp = (long)(m_ptr->maxhp * m_ptr->max_maxhp) / oldmaxhp;
2870         if (m_ptr->maxhp < 1) m_ptr->maxhp = 1;
2871         m_ptr->hp = (long)(m_ptr->hp * m_ptr->max_maxhp) / oldmaxhp;
2872         
2873         /* reset dealt_damage */
2874         m_ptr->dealt_damage = 0;
2875 }
2876
2877
2878 /*!
2879  * @brief たぬきの変身対象となるモンスターかどうか判定する / Hook for Tanuki
2880  * @param r_idx モンスター種族ID
2881  * @return 対象にできるならtrueを返す
2882  */
2883 static bool monster_hook_tanuki(MONRACE_IDX r_idx)
2884 {
2885         monster_race *r_ptr = &r_info[r_idx];
2886
2887         if (r_ptr->flags1 & (RF1_UNIQUE)) return FALSE;
2888         if (r_ptr->flags2 & RF2_MULTIPLY) return FALSE;
2889         if (r_ptr->flags7 & (RF7_FRIENDLY | RF7_CHAMELEON)) return FALSE;
2890         if (r_ptr->flags7 & RF7_AQUATIC) return FALSE;
2891         
2892         if ((r_ptr->blow[0].method == RBM_EXPLODE) || (r_ptr->blow[1].method == RBM_EXPLODE) || (r_ptr->blow[2].method == RBM_EXPLODE) || (r_ptr->blow[3].method == RBM_EXPLODE))
2893                 return FALSE;
2894
2895         return (*(get_monster_hook()))(r_idx);
2896 }
2897
2898
2899 /*!
2900  * @brief モンスターの表層IDを設定する / Set initial racial appearance of a monster
2901  * @param r_idx モンスター種族ID
2902  * @return モンスター種族の表層ID
2903  */
2904 static IDX initial_r_appearance(MONRACE_IDX r_idx)
2905 {
2906         int attempts = 1000;
2907         IDX ap_r_idx;
2908         DEPTH min = MIN(base_level-5, 50);
2909
2910         if (p_ptr->pseikaku == SEIKAKU_CHARGEMAN)
2911         {
2912                 if (base_level == 0 || one_in_(5)) return MON_ALIEN_JURAL;
2913         }
2914
2915         if (!(r_info[r_idx].flags7 & RF7_TANUKI))
2916                 return r_idx;
2917
2918         get_mon_num_prep(monster_hook_tanuki, NULL);
2919
2920         while (--attempts)
2921         {
2922                 ap_r_idx = get_mon_num(base_level + 10);
2923                 if (r_info[ap_r_idx].level >= min) return ap_r_idx;
2924         }
2925
2926         return r_idx;
2927 }
2928
2929
2930 /*!
2931  * @brief モンスターの個体加速を設定する / Get initial monster speed
2932  * @param r_ptr モンスター種族の参照ポインタ
2933  * @return 加速値
2934  */
2935 byte get_mspeed(monster_race *r_ptr)
2936 {
2937         /* Extract the monster base speed */
2938         int mspeed = r_ptr->speed;
2939
2940         /* Hack -- small racial variety */
2941         if (!(r_ptr->flags1 & RF1_UNIQUE) && !p_ptr->inside_arena)
2942         {
2943                 /* Allow some small variation per monster */
2944                 int i = SPEED_TO_ENERGY(r_ptr->speed) / (one_in_(4) ? 3 : 10);
2945                 if (i) mspeed += rand_spread(0, i);
2946         }
2947
2948         if (mspeed > 199) mspeed = 199;
2949
2950         return (byte)mspeed;
2951 }
2952
2953
2954 /*!
2955  * @brief モンスターを一体生成する / Attempt to place a monster of the given race at the given location.
2956  * @param who 召喚を行ったモンスターID
2957  * @param y 生成位置y座標
2958  * @param x 生成位置x座標
2959  * @param r_idx 生成モンスター種族
2960  * @param mode 生成オプション
2961  * @return 成功したらtrue
2962  * @details 
2963  * To give the player a sporting chance, any monster that appears in
2964  * line-of-sight and is extremely dangerous can be marked as
2965  * "FORCE_SLEEP", which will cause them to be placed with low energy,
2966  * which often (but not always) lets the player move before they do.
2967  *
2968  * This routine refuses to place out-of-depth "FORCE_DEPTH" monsters.
2969  *
2970  * Use special "here" and "dead" flags for unique monsters,
2971  * remove old "cur_num" and "max_num" fields.
2972  *
2973  * Actually, do something similar for artifacts, to simplify
2974  * the "preserve" mode, and to make the "what artifacts" flag more useful.
2975  *
2976  * This is the only function which may place a monster in the dungeon,
2977  * except for the savefile loading code.
2978  */
2979 static bool place_monster_one(MONSTER_IDX who, POSITION y, POSITION x, MONRACE_IDX r_idx, BIT_FLAGS mode)
2980 {
2981         /* Access the location */
2982         cave_type               *c_ptr = &cave[y][x];
2983         monster_type    *m_ptr;
2984         monster_race    *r_ptr = &r_info[r_idx];
2985         cptr            name = (r_name + r_ptr->name);
2986
2987         int cmi;
2988
2989         /* DO NOT PLACE A MONSTER IN THE SMALL SCALE WILDERNESS !!! */
2990         if (p_ptr->wild_mode) return FALSE;
2991
2992         /* Verify location */
2993         if (!in_bounds(y, x)) return (FALSE);
2994
2995         /* Paranoia */
2996         if (!r_idx) return (FALSE);
2997
2998         /* Paranoia */
2999         if (!r_ptr->name) return (FALSE);
3000
3001         if (!(mode & PM_IGNORE_TERRAIN))
3002         {
3003                 /* Not on the Pattern */
3004                 if (pattern_tile(y, x)) return FALSE;
3005
3006                 /* Require empty space (if not ghostly) */
3007                 if (!monster_can_enter(y, x, r_ptr, 0)) return FALSE;
3008         }
3009
3010         if (!p_ptr->inside_battle)
3011         {
3012                 /* Hack -- "unique" monsters must be "unique" */
3013                 if (((r_ptr->flags1 & (RF1_UNIQUE)) ||
3014                      (r_ptr->flags7 & (RF7_NAZGUL))) &&
3015                     (r_ptr->cur_num >= r_ptr->max_num))
3016                 {
3017                         /* Cannot create */
3018                         return (FALSE);
3019                 }
3020
3021                 if ((r_ptr->flags7 & (RF7_UNIQUE2)) &&
3022                     (r_ptr->cur_num >= 1))
3023                 {
3024                         return (FALSE);
3025                 }
3026
3027                 if (r_idx == MON_BANORLUPART)
3028                 {
3029                         if (r_info[MON_BANOR].cur_num > 0) return FALSE;
3030                         if (r_info[MON_LUPART].cur_num > 0) return FALSE;
3031                 }
3032
3033                 /* Depth monsters may NOT be created out of depth, unless in Nightmare mode */
3034                 if ((r_ptr->flags1 & (RF1_FORCE_DEPTH)) && (dun_level < r_ptr->level) &&
3035                     (!ironman_nightmare || (r_ptr->flags1 & (RF1_QUESTOR))))
3036                 {
3037                         /* Cannot create */
3038                         return (FALSE);
3039                 }
3040         }
3041
3042         if (quest_number(dun_level))
3043         {
3044                 int hoge = quest_number(dun_level);
3045                 if ((quest[hoge].type == QUEST_TYPE_KILL_LEVEL) || (quest[hoge].type == QUEST_TYPE_RANDOM))
3046                 {
3047                         if(r_idx == quest[hoge].r_idx)
3048                         {
3049                                 int number_mon, i2, j2;
3050                                 number_mon = 0;
3051
3052                                 /* Count all quest monsters */
3053                                 for (i2 = 0; i2 < cur_wid; ++i2)
3054                                         for (j2 = 0; j2 < cur_hgt; j2++)
3055                                                 if (cave[j2][i2].m_idx > 0)
3056                                                         if (m_list[cave[j2][i2].m_idx].r_idx == quest[hoge].r_idx)
3057                                                                 number_mon++;
3058                                 if(number_mon + quest[hoge].cur_num >= quest[hoge].max_num)
3059                                         return FALSE;
3060                         }
3061                 }
3062         }
3063
3064         if (is_glyph_grid(c_ptr))
3065         {
3066                 if (randint1(BREAK_GLYPH) < (r_ptr->level+20))
3067                 {
3068                         /* Describe observable breakage */
3069                         if (c_ptr->info & CAVE_MARK)
3070                         {
3071                                 msg_print(_("守りのルーンが壊れた!", "The rune of protection is broken!"));
3072                         }
3073
3074                         /* Forget the rune */
3075                         c_ptr->info &= ~(CAVE_MARK);
3076
3077                         /* Break the rune */
3078                         c_ptr->info &= ~(CAVE_OBJECT);
3079                         c_ptr->mimic = 0;
3080
3081                         note_spot(y, x);
3082                 }
3083                 else return FALSE;
3084         }
3085
3086         msg_format_wizard(CHEAT_MONSTER, _("%s(Lv%d)を生成しました。", "%s(Lv%d) was generated."), name, r_ptr->level);
3087
3088         if ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_NAZGUL) || (r_ptr->level < 10)) mode &= ~PM_KAGE;
3089
3090         /* Make a new monster */
3091         c_ptr->m_idx = m_pop();
3092         hack_m_idx_ii = c_ptr->m_idx;
3093
3094         /* Mega-Hack -- catch "failure" */
3095         if (!c_ptr->m_idx) return (FALSE);
3096
3097
3098         /* Get a new monster record */
3099         m_ptr = &m_list[c_ptr->m_idx];
3100
3101         /* Save the race */
3102         m_ptr->r_idx = r_idx;
3103         m_ptr->ap_r_idx = initial_r_appearance(r_idx);
3104
3105         /* No flags */
3106         m_ptr->mflag = 0;
3107         m_ptr->mflag2 = 0;
3108
3109         /* Hack -- Appearance transfer */
3110         if ((mode & PM_MULTIPLY) && (who > 0) && !is_original_ap(&m_list[who]))
3111         {
3112                 m_ptr->ap_r_idx = m_list[who].ap_r_idx;
3113
3114                 /* Hack -- Shadower spawns Shadower */
3115                 if (m_list[who].mflag2 & MFLAG2_KAGE) m_ptr->mflag2 |= MFLAG2_KAGE;
3116         }
3117
3118         /* Sub-alignment of a monster */
3119         if ((who > 0) && !(r_ptr->flags3 & (RF3_EVIL | RF3_GOOD)))
3120                 m_ptr->sub_align = m_list[who].sub_align;
3121         else
3122         {
3123                 m_ptr->sub_align = SUB_ALIGN_NEUTRAL;
3124                 if (r_ptr->flags3 & RF3_EVIL) m_ptr->sub_align |= SUB_ALIGN_EVIL;
3125                 if (r_ptr->flags3 & RF3_GOOD) m_ptr->sub_align |= SUB_ALIGN_GOOD;
3126         }
3127
3128         /* Place the monster at the location */
3129         m_ptr->fy = y;
3130         m_ptr->fx = x;
3131
3132
3133         /* No "timed status" yet */
3134         for (cmi = 0; cmi < MAX_MTIMED; cmi++) m_ptr->mtimed[cmi] = 0;
3135
3136         /* Unknown distance */
3137         m_ptr->cdis = 0;
3138
3139         reset_target(m_ptr);
3140
3141         m_ptr->nickname = 0;
3142
3143         m_ptr->exp = 0;
3144
3145
3146         /* Your pet summons its pet. */
3147         if (who > 0 && is_pet(&m_list[who]))
3148         {
3149                 mode |= PM_FORCE_PET;
3150                 m_ptr->parent_m_idx = who;
3151         }
3152         else
3153         {
3154                 m_ptr->parent_m_idx = 0;
3155         }
3156
3157         if (r_ptr->flags7 & RF7_CHAMELEON)
3158         {
3159                 choose_new_monster(c_ptr->m_idx, TRUE, 0);
3160                 r_ptr = &r_info[m_ptr->r_idx];
3161                 m_ptr->mflag2 |= MFLAG2_CHAMELEON;
3162
3163                 /* Hack - Set sub_align to neutral when the Chameleon Lord is generated as "GUARDIAN" */
3164                 if ((r_ptr->flags1 & RF1_UNIQUE) && (who <= 0))
3165                         m_ptr->sub_align = SUB_ALIGN_NEUTRAL;
3166         }
3167         else if ((mode & PM_KAGE) && !(mode & PM_FORCE_PET))
3168         {
3169                 m_ptr->ap_r_idx = MON_KAGE;
3170                 m_ptr->mflag2 |= MFLAG2_KAGE;
3171         }
3172
3173         if (mode & PM_NO_PET) m_ptr->mflag2 |= MFLAG2_NOPET;
3174
3175         /* Not visible */
3176         m_ptr->ml = FALSE;
3177
3178         /* Pet? */
3179         if (mode & PM_FORCE_PET)
3180         {
3181                 set_pet(m_ptr);
3182         }
3183         /* Friendly? */
3184         else if ((r_ptr->flags7 & RF7_FRIENDLY) ||
3185                  (mode & PM_FORCE_FRIENDLY) || is_friendly_idx(who))
3186         {
3187                 if (!monster_has_hostile_align(NULL, 0, -1, r_ptr)) set_friendly(m_ptr);
3188         }
3189
3190         /* Assume no sleeping */
3191         m_ptr->mtimed[MTIMED_CSLEEP] = 0;
3192
3193         /* Enforce sleeping if needed */
3194         if ((mode & PM_ALLOW_SLEEP) && r_ptr->sleep && !ironman_nightmare)
3195         {
3196                 int val = r_ptr->sleep;
3197                 (void)set_monster_csleep(c_ptr->m_idx, (val * 2) + randint1(val * 10));
3198         }
3199
3200         /* Assign maximal hitpoints */
3201         if (r_ptr->flags1 & RF1_FORCE_MAXHP)
3202         {
3203                 m_ptr->max_maxhp = maxroll(r_ptr->hdice, r_ptr->hside);
3204         }
3205         else
3206         {
3207                 m_ptr->max_maxhp = damroll(r_ptr->hdice, r_ptr->hside);
3208         }
3209
3210         /* Monsters have double hitpoints in Nightmare mode */
3211         if (ironman_nightmare)
3212         {
3213                 u32b hp = m_ptr->max_maxhp * 2L;
3214
3215                 m_ptr->max_maxhp = (HIT_POINT)MIN(30000, hp);
3216         }
3217
3218         m_ptr->maxhp = m_ptr->max_maxhp;
3219
3220         /* And start out fully healthy */
3221         if (m_ptr->r_idx == MON_WOUNDED_BEAR)
3222                 m_ptr->hp = m_ptr->maxhp / 2;
3223         else m_ptr->hp = m_ptr->maxhp;
3224         
3225         
3226         /* dealt damage is 0 at initial*/
3227         m_ptr->dealt_damage = 0;
3228
3229
3230         /* Extract the monster base speed */
3231         m_ptr->mspeed = get_mspeed(r_ptr);
3232
3233         if (mode & PM_HASTE) (void)set_monster_fast(c_ptr->m_idx, 100);
3234
3235         /* Give a random starting energy */
3236         if (!ironman_nightmare)
3237         {
3238                 m_ptr->energy_need = ENERGY_NEED() - (s16b)randint0(100);
3239         }
3240         else
3241         {
3242                 /* Nightmare monsters are more prepared */
3243                 m_ptr->energy_need = ENERGY_NEED() - (s16b)randint0(100) * 2;
3244         }
3245
3246         /* Force monster to wait for player, unless in Nightmare mode */
3247         if ((r_ptr->flags1 & RF1_FORCE_SLEEP) && !ironman_nightmare)
3248         {
3249                 /* Monster is still being nice */
3250                 m_ptr->mflag |= (MFLAG_NICE);
3251
3252                 /* Must repair monsters */
3253                 repair_monsters = TRUE;
3254         }
3255
3256         /* Hack -- see "process_monsters()" */
3257         if (c_ptr->m_idx < hack_m_idx)
3258         {
3259                 /* Monster is still being born */
3260                 m_ptr->mflag |= (MFLAG_BORN);
3261         }
3262
3263
3264         if (r_ptr->flags7 & RF7_SELF_LD_MASK)
3265                 p_ptr->update |= (PU_MON_LITE);
3266         else if ((r_ptr->flags7 & RF7_HAS_LD_MASK) && !MON_CSLEEP(m_ptr))
3267                 p_ptr->update |= (PU_MON_LITE);
3268         update_monster(c_ptr->m_idx, TRUE);
3269
3270
3271         /* Count the monsters on the level */
3272         real_r_ptr(m_ptr)->cur_num++;
3273
3274         /*
3275          * Memorize location of the unique monster in saved floors.
3276          * A unique monster move from old saved floor.
3277          */
3278         if (character_dungeon &&
3279             ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_NAZGUL)))
3280                 real_r_ptr(m_ptr)->floor_id = p_ptr->floor_id;
3281
3282         /* Hack -- Count the number of "reproducers" */
3283         if (r_ptr->flags2 & RF2_MULTIPLY) num_repro++;
3284
3285         /* Hack -- Notice new multi-hued monsters */
3286         {
3287                 monster_race *ap_r_ptr = &r_info[m_ptr->ap_r_idx];
3288                 if (ap_r_ptr->flags1 & (RF1_ATTR_MULTI | RF1_SHAPECHANGER))
3289                         shimmer_monsters = TRUE;
3290         }
3291
3292         if (p_ptr->warning && character_dungeon)
3293         {
3294                 if (r_ptr->flags1 & RF1_UNIQUE)
3295                 {
3296                         cptr color;
3297                         object_type *o_ptr;
3298                         char o_name[MAX_NLEN];
3299
3300                         if (r_ptr->level > p_ptr->lev + 30)
3301                                 color = _("黒く", "black");
3302                         else if (r_ptr->level > p_ptr->lev + 15)
3303                                 color = _("紫色に", "purple");
3304                         else if (r_ptr->level > p_ptr->lev + 5)
3305                                 color = _("ルビー色に", "deep red");
3306                         else if (r_ptr->level > p_ptr->lev - 5)
3307                                 color = _("赤く", "red");
3308                         else if (r_ptr->level > p_ptr->lev - 15)
3309                                 color = _("ピンク色に", "pink");
3310                         else
3311                                 color = _("白く", "white");
3312
3313                         o_ptr = choose_warning_item();
3314                         if (o_ptr)
3315                         {
3316                                 object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
3317                                 msg_format(_("%sは%s光った。", "%s glows %s."), o_name, color);
3318                         }
3319                         else
3320                         {
3321                                 msg_format(_("%s光る物が頭に浮かんだ。", "An %s image forms in your mind."), color);
3322                         }
3323                 }
3324         }
3325
3326         if (is_explosive_rune_grid(c_ptr))
3327         {
3328                 /* Break the ward */
3329                 if (randint1(BREAK_MINOR_GLYPH) > r_ptr->level)
3330                 {
3331                         /* Describe observable breakage */
3332                         if (c_ptr->info & CAVE_MARK)
3333                         {
3334                                 msg_print(_("ルーンが爆発した!", "The rune explodes!"));
3335                                 project(0, 2, y, x, 2 * (p_ptr->lev + damroll(7, 7)), GF_MANA, (PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL | PROJECT_JUMP | PROJECT_NO_HANGEKI), -1);
3336                         }
3337                 }
3338                 else
3339                 {
3340                         msg_print(_("爆発のルーンは解除された。", "An explosive rune was disarmed."));
3341                 }
3342
3343                 /* Forget the rune */
3344                 c_ptr->info &= ~(CAVE_MARK);
3345
3346                 /* Break the rune */
3347                 c_ptr->info &= ~(CAVE_OBJECT);
3348                 c_ptr->mimic = 0;
3349
3350                 note_spot(y, x);
3351                 lite_spot(y, x);
3352         }
3353
3354         /* Success */
3355         return (TRUE);
3356 }
3357
3358
3359
3360 #define MON_SCAT_MAXD 10 /*!< mon_scatter()関数によるモンスター配置で許される中心からの最大距離 */
3361
3362 /*!
3363  * @brief モンスター1体を目標地点に可能ながり近い位置に生成する / improved version of scatter() for place monster
3364  * @param r_idx 生成モンスター種族
3365  * @param yp 結果生成位置y座標
3366  * @param xp 結果生成位置x座標
3367  * @param y 中心生成位置y座標
3368  * @param x 中心生成位置x座標
3369  * @param max_dist 生成位置の最大半径
3370  * @return 成功したらtrue
3371  *  
3372  */
3373 static bool mon_scatter(MONRACE_IDX r_idx, POSITION *yp, POSITION *xp, POSITION y, POSITION x, POSITION max_dist)
3374 {
3375         int place_x[MON_SCAT_MAXD];
3376         int place_y[MON_SCAT_MAXD];
3377         int num[MON_SCAT_MAXD];
3378         int i;
3379         int nx, ny;
3380
3381         if (max_dist >= MON_SCAT_MAXD)
3382                 return FALSE;
3383
3384         for (i = 0; i < MON_SCAT_MAXD; i++)
3385                 num[i] = 0;
3386
3387         for (nx = x - max_dist; nx <= x + max_dist; nx++)
3388         {
3389                 for (ny = y - max_dist; ny <= y + max_dist; ny++)
3390                 {
3391                         /* Ignore annoying locations */
3392                         if (!in_bounds(ny, nx)) continue;
3393
3394                         /* Require "line of projection" */
3395                         if (!projectable(y, x, ny, nx)) continue;
3396
3397                         if (r_idx > 0)
3398                         {
3399                                 monster_race *r_ptr = &r_info[r_idx];
3400
3401                                 /* Require empty space (if not ghostly) */
3402                                 if (!monster_can_enter(ny, nx, r_ptr, 0))
3403                                         continue;
3404                         }
3405                         else
3406                         {
3407                                 /* Walls and Monsters block flow */
3408                                 if (!cave_empty_bold2(ny, nx)) continue;
3409
3410                                 /* ... nor on the Pattern */
3411                                 if (pattern_tile(ny, nx)) continue;
3412                         }
3413
3414                         i = distance(y, x, ny, nx);
3415
3416                         if (i > max_dist)
3417                                 continue;
3418
3419                         num[i]++;
3420
3421                         /* random swap */
3422                         if (one_in_(num[i]))
3423                         {
3424                                 place_x[i] = nx;
3425                                 place_y[i] = ny;
3426                         }
3427                 }
3428         }
3429
3430         i = 0;
3431         while (i < MON_SCAT_MAXD && 0 == num[i])
3432                 i++;
3433         if (i >= MON_SCAT_MAXD)
3434                 return FALSE;
3435
3436         *xp = place_x[i];
3437         *yp = place_y[i];
3438
3439         return TRUE;
3440 }
3441
3442 /*!
3443  * @brief モンスターを目標地点に集団生成する / Attempt to place a "group" of monsters around the given location
3444  * @param who 召喚主のモンスター情報ID
3445  * @param y 中心生成位置y座標
3446  * @param x 中心生成位置x座標
3447  * @param r_idx 生成モンスター種族
3448  * @param mode 生成オプション
3449  * @return 成功したらtrue
3450  */
3451 static bool place_monster_group(IDX who, POSITION y, POSITION x, MONRACE_IDX r_idx, BIT_FLAGS mode)
3452 {
3453         monster_race *r_ptr = &r_info[r_idx];
3454
3455         int n, i;
3456         int total = 0, extra = 0;
3457
3458         int hack_n = 0;
3459
3460         POSITION hack_y[GROUP_MAX];
3461         POSITION hack_x[GROUP_MAX];
3462
3463
3464         /* Pick a group size */
3465         total = randint1(10);
3466
3467         /* Hard monsters, small groups */
3468         if (r_ptr->level > dun_level)
3469         {
3470                 extra = r_ptr->level - dun_level;
3471                 extra = 0 - randint1(extra);
3472         }
3473
3474         /* Easy monsters, large groups */
3475         else if (r_ptr->level < dun_level)
3476         {
3477                 extra = dun_level - r_ptr->level;
3478                 extra = randint1(extra);
3479         }
3480
3481         /* Hack -- limit group reduction */
3482         if (extra > 9) extra = 9;
3483
3484         /* Modify the group size */
3485         total += extra;
3486
3487         /* Minimum size */
3488         if (total < 1) total = 1;
3489
3490         /* Maximum size */
3491         if (total > GROUP_MAX) total = GROUP_MAX;
3492
3493
3494         /* Start on the monster */
3495         hack_n = 1;
3496         hack_x[0] = x;
3497         hack_y[0] = y;
3498
3499         /* Puddle monsters, breadth first, up to total */
3500         for (n = 0; (n < hack_n) && (hack_n < total); n++)
3501         {
3502                 /* Grab the location */
3503                 POSITION hx = hack_x[n];
3504                 POSITION hy = hack_y[n];
3505
3506                 /* Check each direction, up to total */
3507                 for (i = 0; (i < 8) && (hack_n < total); i++)
3508                 {
3509                         POSITION mx, my;
3510
3511                         scatter(&my, &mx, hy, hx, 4, 0);
3512
3513                         /* Walls and Monsters block flow */
3514                         if (!cave_empty_bold2(my, mx)) continue;
3515
3516                         /* Attempt to place another monster */
3517                         if (place_monster_one(who, my, mx, r_idx, mode))
3518                         {
3519                                 /* Add it to the "hack" set */
3520                                 hack_y[hack_n] = my;
3521                                 hack_x[hack_n] = mx;
3522                                 hack_n++;
3523                         }
3524                 }
3525         }
3526
3527
3528         /* Success */
3529         return (TRUE);
3530 }
3531
3532 /*!
3533  * @var place_monster_idx
3534  * @brief 護衛対象となるモンスター種族IDを渡すグローバル変数 / Hack -- help pick an escort type
3535  * @todo 関数ポインタの都合を配慮しながら、グローバル変数place_monster_idxを除去し、関数引数化する
3536  */
3537 static IDX place_monster_idx = 0;
3538
3539 /*!
3540  * @var place_monster_m_idx
3541  * @brief 護衛対象となるモンスターIDを渡すグローバル変数 / Hack -- help pick an escort type
3542  * @todo 関数ポインタの都合を配慮しながら、グローバル変数place_monster_m_idxを除去し、関数引数化する
3543  */
3544 static IDX place_monster_m_idx = 0;
3545
3546 /*!
3547  * @brief モンスター種族が召喚主の護衛となれるかどうかをチェックする / Hack -- help pick an escort type
3548  * @param r_idx チェックするモンスター種族のID
3549  * @return 護衛にできるならばtrue
3550  */
3551 static bool place_monster_can_escort(MONRACE_IDX r_idx)
3552 {
3553         monster_race *r_ptr = &r_info[place_monster_idx];
3554         monster_type *m_ptr = &m_list[place_monster_m_idx];
3555
3556         monster_race *z_ptr = &r_info[r_idx];
3557
3558         /* Hack - Escorts have to have the same dungeon flag */
3559         if (mon_hook_dungeon(place_monster_idx) != mon_hook_dungeon(r_idx)) return (FALSE);
3560
3561         /* Require similar "race" */
3562         if (z_ptr->d_char != r_ptr->d_char) return (FALSE);
3563
3564         /* Skip more advanced monsters */
3565         if (z_ptr->level > r_ptr->level) return (FALSE);
3566
3567         /* Skip unique monsters */
3568         if (z_ptr->flags1 & RF1_UNIQUE) return (FALSE);
3569
3570         /* Paranoia -- Skip identical monsters */
3571         if (place_monster_idx == r_idx) return (FALSE);
3572
3573         /* Skip different alignment */
3574         if (monster_has_hostile_align(m_ptr, 0, 0, z_ptr)) return FALSE;
3575
3576         if (r_ptr->flags7 & RF7_FRIENDLY)
3577         {
3578                 if (monster_has_hostile_align(NULL, 1, -1, z_ptr)) return FALSE;
3579         }
3580
3581         if ((r_ptr->flags7 & RF7_CHAMELEON) && !(z_ptr->flags7 & RF7_CHAMELEON))
3582                 return FALSE;
3583
3584         return (TRUE);
3585 }
3586
3587
3588 /*!
3589  * @brief 一般的なモンスター生成処理のサブルーチン / Attempt to place a monster of the given race at the given location
3590  * @param who 召喚主のモンスター情報ID
3591  * @param y 生成地点y座標
3592  * @param x 生成地点x座標
3593  * @param r_idx 生成するモンスターの種族ID
3594  * @param mode 生成オプション
3595  * @return 生成に成功したらtrue
3596  * @details
3597  * Note that certain monsters are now marked as requiring "friends".
3598  * These monsters, if successfully placed, and if the "grp" parameter
3599  * is TRUE, will be surrounded by a "group" of identical monsters.
3600  *
3601  * Note that certain monsters are now marked as requiring an "escort",
3602  * which is a collection of monsters with similar "race" but lower level.
3603  *
3604  * Some monsters induce a fake "group" flag on their escorts.
3605  *
3606  * Note the "bizarre" use of non-recursion to prevent annoying output
3607  * when running a code profiler.
3608  *
3609  * Note the use of the new "monster allocation table" code to restrict
3610  * the "get_mon_num()" function to "legal" escort types.
3611  */
3612 bool place_monster_aux(MONSTER_IDX who, POSITION y, POSITION x, MONRACE_IDX r_idx, BIT_FLAGS mode)
3613 {
3614         int             i, j, n;
3615         monster_race    *r_ptr = &r_info[r_idx];
3616
3617         if (!(mode & PM_NO_KAGE) && one_in_(333))
3618                 mode |= PM_KAGE;
3619
3620         /* Place one monster, or fail */
3621         if (!place_monster_one(who, y, x, r_idx, mode)) return (FALSE);
3622
3623         /* Require the "group" flag */
3624         if (!(mode & PM_ALLOW_GROUP)) return (TRUE);
3625
3626         place_monster_m_idx = hack_m_idx_ii;
3627
3628         /* Reinforcement */
3629         for(i = 0; i < 6; i++)
3630         {
3631                 if(!r_ptr->reinforce_id[i]) break;
3632                 n = damroll(r_ptr->reinforce_dd[i], r_ptr->reinforce_ds[i]);
3633                 for(j = 0; j < n; j++)
3634                 {
3635                         POSITION nx, ny, d = 7;
3636                         scatter(&ny, &nx, y, x, d, 0);
3637                         (void)place_monster_one(place_monster_m_idx, ny, nx, r_ptr->reinforce_id[i], mode);
3638                 }
3639         }
3640
3641         /* Friends for certain monsters */
3642         if (r_ptr->flags1 & (RF1_FRIENDS))
3643         {
3644                 /* Attempt to place a group */
3645                 (void)place_monster_group(who, y, x, r_idx, mode);
3646         }
3647
3648         /* Escorts for certain monsters */
3649         if (r_ptr->flags1 & (RF1_ESCORT))
3650         {
3651                 /* Set the escort index */
3652                 place_monster_idx = r_idx;
3653
3654                 /* Try to place several "escorts" */
3655                 for (i = 0; i < 32; i++)
3656                 {
3657                         POSITION nx, ny, d = 3;
3658                         MONRACE_IDX z; 
3659
3660                         /* Pick a location */
3661                         scatter(&ny, &nx, y, x, d, 0);
3662
3663                         /* Require empty grids */
3664                         if (!cave_empty_bold2(ny, nx)) continue;
3665
3666                         /* Prepare allocation table */
3667                         get_mon_num_prep(place_monster_can_escort, get_monster_hook2(ny, nx));
3668
3669                         /* Pick a random race */
3670                         z = get_mon_num(r_ptr->level);
3671
3672                         /* Handle failure */
3673                         if (!z) break;
3674
3675                         /* Place a single escort */
3676                         (void)place_monster_one(place_monster_m_idx, ny, nx, z, mode);
3677
3678                         /* Place a "group" of escorts if needed */
3679                         if ((r_info[z].flags1 & RF1_FRIENDS) ||
3680                             (r_ptr->flags1 & RF1_ESCORTS))
3681                         {
3682                                 /* Place a group of monsters */
3683                                 (void)place_monster_group(place_monster_m_idx, ny, nx, z, mode);
3684                         }
3685                 }
3686         }
3687
3688         /* Success */
3689         return (TRUE);
3690 }
3691
3692 /*!
3693  * @brief 一般的なモンスター生成処理のメインルーチン / Attempt to place a monster of the given race at the given location
3694  * @param y 生成地点y座標
3695  * @param x 生成地点x座標
3696  * @param mode 生成オプション
3697  * @return 生成に成功したらtrue
3698  */
3699 bool place_monster(POSITION y, POSITION x, BIT_FLAGS mode)
3700 {
3701         MONRACE_IDX r_idx;
3702
3703         /* Prepare allocation table */
3704         get_mon_num_prep(get_monster_hook(), get_monster_hook2(y, x));
3705
3706         /* Pick a monster */
3707         r_idx = get_mon_num(monster_level);
3708
3709         /* Handle failure */
3710         if (!r_idx) return (FALSE);
3711
3712         /* Attempt to place the monster */
3713         if (place_monster_aux(0, y, x, r_idx, mode)) return (TRUE);
3714
3715         return (FALSE);
3716 }
3717
3718 /*!
3719  * @brief 指定地点に1種類のモンスター種族による群れを生成する
3720  * @param y 生成地点y座標
3721  * @param x 生成地点x座標
3722  * @return 生成に成功したらtrue
3723  */
3724 bool alloc_horde(POSITION y, POSITION x)
3725 {
3726         monster_race *r_ptr = NULL;
3727         MONRACE_IDX r_idx = 0;
3728         MONSTER_IDX m_idx;
3729         int attempts = 1000;
3730         POSITION cy = y;
3731         POSITION cx = x;
3732
3733         /* Prepare allocation table */
3734         get_mon_num_prep(get_monster_hook(), get_monster_hook2(y, x));
3735
3736         while (--attempts)
3737         {
3738                 /* Pick a monster */
3739                 r_idx = get_mon_num(monster_level);
3740
3741                 /* Handle failure */
3742                 if (!r_idx) return (FALSE);
3743
3744                 r_ptr = &r_info[r_idx];
3745
3746                 if (r_ptr->flags1 & RF1_UNIQUE) continue;
3747
3748                 if (r_idx == MON_HAGURE) continue;
3749                 break;
3750         }
3751         if (attempts < 1) return FALSE;
3752
3753         attempts = 1000;
3754
3755         while (--attempts)
3756         {
3757                 /* Attempt to place the monster */
3758                 if (place_monster_aux(0, y, x, r_idx, 0L)) break;
3759         }
3760
3761         if (attempts < 1) return FALSE;
3762
3763         m_idx = cave[y][x].m_idx;
3764
3765         if (m_list[m_idx].mflag2 & MFLAG2_CHAMELEON) r_ptr = &r_info[m_list[m_idx].r_idx];
3766         summon_kin_type = r_ptr->d_char;
3767
3768         for (attempts = randint1(10) + 5; attempts; attempts--)
3769         {
3770                 scatter(&cy, &cx, y, x, 5, 0);
3771
3772                 (void)summon_specific(m_idx, cy, cx, dun_level + 5, SUMMON_KIN, PM_ALLOW_GROUP);
3773
3774                 y = cy;
3775                 x = cx;
3776         }
3777
3778         return TRUE;
3779 }
3780
3781 /*!
3782  * @brief ダンジョンの主生成を試みる / Put the Guardian
3783  * @param def_val 現在の主の生成状態
3784  * @return 生成に成功したらtrue
3785  */
3786 bool alloc_guardian(bool def_val)
3787 {
3788         MONRACE_IDX guardian = d_info[dungeon_type].final_guardian;
3789
3790         if (guardian && (d_info[dungeon_type].maxdepth == dun_level) && (r_info[guardian].cur_num < r_info[guardian].max_num))
3791         {
3792                 int oy;
3793                 int ox;
3794                 int try_count = 4000;
3795
3796                 /* Find a good position */
3797                 while (try_count)
3798                 {
3799                         /* Get a random spot */
3800                         oy = randint1(cur_hgt - 4) + 2;
3801                         ox = randint1(cur_wid - 4) + 2;
3802
3803                         /* Is it a good spot ? */
3804                         if (cave_empty_bold2(oy, ox) && monster_can_cross_terrain(cave[oy][ox].feat, &r_info[guardian], 0))
3805                         {
3806                                 /* Place the guardian */
3807                                 if (place_monster_aux(0, oy, ox, guardian, (PM_ALLOW_GROUP | PM_NO_KAGE | PM_NO_PET))) return TRUE;
3808                         }
3809
3810                         /* One less try count */
3811                         try_count--;
3812                 }
3813
3814                 return FALSE;
3815         }
3816
3817         return def_val;
3818 }
3819
3820
3821 /*!
3822  * @brief ダンジョンの初期配置モンスターを生成1回生成する / Attempt to allocate a random monster in the dungeon.
3823  * @param dis プレイヤーから離れるべき最低距離
3824  * @param mode 生成オプション
3825  * @return 生成に成功したらtrue
3826  * @details
3827  * Place the monster at least "dis" distance from the player.
3828  * Use "slp" to choose the initial "sleep" status
3829  * Use "monster_level" for the monster level
3830  */
3831 bool alloc_monster(POSITION dis, BIT_FLAGS mode)
3832 {
3833         int y = 0, x = 0;
3834         int attempts_left = 10000;
3835
3836         /* Put the Guardian */
3837         if (alloc_guardian(FALSE)) return TRUE;
3838
3839         /* Find a legal, distant, unoccupied, space */
3840         while (attempts_left--)
3841         {
3842                 /* Pick a location */
3843                 y = randint0(cur_hgt);
3844                 x = randint0(cur_wid);
3845
3846                 /* Require empty floor grid (was "naked") */
3847                 if (dun_level)
3848                 {
3849                         if (!cave_empty_bold2(y, x)) continue;
3850                 }
3851                 else
3852                 {
3853                         if (!cave_empty_bold(y, x)) continue;
3854                 }
3855
3856                 /* Accept far away grids */
3857                 if (distance(y, x, p_ptr->y, p_ptr->x) > dis) break;
3858         }
3859
3860         if (!attempts_left)
3861         {
3862                 if (cheat_xtra || cheat_hear)
3863                 {
3864                         msg_print(_("警告!新たなモンスターを配置できません。小さい階ですか?", "Warning! Could not allocate a new monster. Small level?"));
3865                 }
3866
3867                 return (FALSE);
3868         }
3869
3870
3871         if (randint1(5000) <= dun_level)
3872         {
3873                 if (alloc_horde(y, x))
3874                 {
3875                         if (cheat_hear) msg_format(_("モンスターの大群(%c)", "Monster horde (%c)."), summon_kin_type);
3876                         return (TRUE);
3877                 }
3878         }
3879         else
3880         {
3881                 /* Attempt to place the monster, allow groups */
3882                 if (place_monster(y, x, (mode | PM_ALLOW_GROUP))) return (TRUE);
3883         }
3884
3885         return (FALSE);
3886 }
3887
3888
3889 /*!
3890  * @brief モンスターが召喚の基本条件に合っているかをチェックする / Hack -- help decide if a monster race is "okay" to summon
3891  * @param r_idx チェックするモンスター種族ID
3892  * @return 召喚対象にできるならばTRUE
3893  */
3894 static bool summon_specific_okay(MONRACE_IDX r_idx)
3895 {
3896         monster_race *r_ptr = &r_info[r_idx];
3897
3898         /* Hack - Only summon dungeon monsters */
3899         if (!mon_hook_dungeon(r_idx)) return (FALSE);
3900
3901         /* Hack -- identify the summoning monster */
3902         if (summon_specific_who > 0)
3903         {
3904                 monster_type *m_ptr = &m_list[summon_specific_who];
3905
3906                 /* Do not summon enemies */
3907
3908                 /* Friendly vs. opposite aligned normal or pet */
3909                 if (monster_has_hostile_align(m_ptr, 0, 0, r_ptr)) return FALSE;
3910         }
3911         /* Use the player's alignment */
3912         else if (summon_specific_who < 0)
3913         {
3914                 /* Do not summon enemies of the pets */
3915                 if (monster_has_hostile_align(NULL, 10, -10, r_ptr))
3916                 {
3917                         if (!one_in_(ABS(p_ptr->align) / 2 + 1)) return FALSE;
3918                 }
3919         }
3920
3921         if (!summon_unique_okay && ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_NAZGUL))) return FALSE;
3922
3923         /* Hack -- no specific type specified */
3924         if (!summon_specific_type) return (TRUE);
3925
3926         if ((summon_specific_who < 0) &&
3927             ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_NAZGUL)) &&
3928             monster_has_hostile_align(NULL, 10, -10, r_ptr))
3929                 return FALSE;
3930
3931         if ((r_ptr->flags7 & RF7_CHAMELEON) && (d_info[dungeon_type].flags1 & DF1_CHAMELEON)) return TRUE;
3932
3933         return (summon_specific_aux(r_idx));
3934 }
3935
3936
3937 /*!
3938  * @brief モンスターを召喚により配置する / Place a monster (of the specified "type") near the given location. Return TRUE if a monster was actually summoned.
3939  * @param who 召喚主のモンスター情報ID
3940  * @param y1 目標地点y座標
3941  * @param x1 目標地点x座標
3942  * @param lev 相当生成階
3943  * @param type 召喚種別
3944  * @param mode 生成オプション 
3945  * @return 召喚できたらtrueを返す
3946  * @details
3947  *
3948  * We will attempt to place the monster up to 10 times before giving up.
3949  *
3950  * Note: SUMMON_UNIQUE and SUMMON_AMBERITES will summon Unique's
3951  * Note: SUMMON_HI_UNDEAD and SUMMON_HI_DRAGON may summon Unique's
3952  * Note: None of the other summon codes will ever summon Unique's.
3953  *
3954  * This function has been changed.  We now take the "monster level"
3955  * of the summoning monster as a parameter, and use that, along with
3956  * the current dungeon level, to help determine the level of the
3957  * desired monster.  Note that this is an upper bound, and also
3958  * tends to "prefer" monsters of that level.  Currently, we use
3959  * the average of the dungeon and monster levels, and then add
3960  * five to allow slight increases in monster power.
3961  *
3962  * Note that we use the new "monster allocation table" creation code
3963  * to restrict the "get_mon_num()" function to the set of "legal"
3964  * monsters, making this function much faster and more reliable.
3965  *
3966  * Note that this function may not succeed, though this is very rare.
3967  */
3968 bool summon_specific(MONSTER_IDX who, POSITION y1, POSITION x1, DEPTH lev, int type, BIT_FLAGS mode)
3969 {
3970         POSITION x, y;
3971         MONRACE_IDX r_idx;
3972
3973         if (p_ptr->inside_arena) return (FALSE);
3974
3975         if (!mon_scatter(0, &y, &x, y1, x1, 2)) return FALSE;
3976
3977         /* Save the summoner */
3978         summon_specific_who = who;
3979
3980         /* Save the "summon" type */
3981         summon_specific_type = type;
3982
3983         summon_unique_okay = (mode & PM_ALLOW_UNIQUE) ? TRUE : FALSE;
3984
3985         /* Prepare allocation table */
3986         get_mon_num_prep(summon_specific_okay, get_monster_hook2(y, x));
3987
3988         /* Pick a monster, using the level calculation */
3989         r_idx = get_mon_num((dun_level + lev) / 2 + 5);
3990
3991         /* Handle failure */
3992         if (!r_idx)
3993         {
3994                 summon_specific_type = 0;
3995                 return (FALSE);
3996         }
3997
3998         if ((type == SUMMON_BLUE_HORROR) || (type == SUMMON_DAWN)) mode |= PM_NO_KAGE;
3999
4000         /* Attempt to place the monster (awake, allow groups) */
4001         if (!place_monster_aux(who, y, x, r_idx, mode))
4002         {
4003                 summon_specific_type = 0;
4004                 return (FALSE);
4005         }
4006
4007         summon_specific_type = 0;
4008         /* Success */
4009         sound(SOUND_SUMMON);
4010         return (TRUE);
4011 }
4012
4013
4014 /*!
4015  * @brief 特定モンスター種族を召喚により生成する / A "dangerous" function, creates a pet of the specified type
4016  * @param who 召喚主のモンスター情報ID
4017  * @param oy 目標地点y座標
4018  * @param ox 目標地点x座標
4019  * @param r_idx 生成するモンスター種族ID
4020  * @param mode 生成オプション 
4021  * @return 召喚できたらtrueを返す
4022  */
4023 bool summon_named_creature (MONSTER_IDX who, POSITION oy, POSITION ox, MONRACE_IDX r_idx, BIT_FLAGS mode)
4024 {
4025         POSITION x, y;
4026
4027         /* Paranoia */
4028         /* if (!r_idx) return; */
4029
4030         /* Prevent illegal monsters */
4031         if (r_idx >= max_r_idx) return FALSE;
4032
4033         if (p_ptr->inside_arena) return FALSE;
4034
4035         if (!mon_scatter(r_idx, &y, &x, oy, ox, 2)) return FALSE;
4036
4037         /* Place it (allow groups) */
4038         return place_monster_aux(who, y, x, r_idx, (mode | PM_NO_KAGE));
4039 }
4040
4041
4042 /*!
4043  * @brief モンスターを増殖生成する / Let the given monster attempt to reproduce.
4044  * @param m_idx 増殖するモンスター情報ID
4045  * @param clone クローン・モンスター処理ならばtrue
4046  * @param mode 生成オプション 
4047  * @return 生成できたらtrueを返す
4048  * @details
4049  * Note that "reproduction" REQUIRES empty space.
4050  */
4051 bool multiply_monster(MONSTER_IDX m_idx, bool clone, BIT_FLAGS mode)
4052 {
4053         monster_type    *m_ptr = &m_list[m_idx];
4054
4055         POSITION y, x;
4056
4057         if (!mon_scatter(m_ptr->r_idx, &y, &x, m_ptr->fy, m_ptr->fx, 1))
4058                 return FALSE;
4059
4060         if (m_ptr->mflag2 & MFLAG2_NOPET) mode |= PM_NO_PET;
4061
4062         /* Create a new monster (awake, no groups) */
4063         if (!place_monster_aux(m_idx, y, x, m_ptr->r_idx, (mode | PM_NO_KAGE | PM_MULTIPLY)))
4064                 return FALSE;
4065
4066         /* Hack -- Transfer "clone" flag */
4067         if (clone || (m_ptr->smart & SM_CLONED))
4068         {
4069                 m_list[hack_m_idx_ii].smart |= SM_CLONED;
4070                 m_list[hack_m_idx_ii].mflag2 |= MFLAG2_NOPET;
4071         }
4072
4073         return TRUE;
4074 }
4075
4076
4077
4078 /*!
4079  * @brief ダメージを受けたモンスターの様子を記述する / Dump a message describing a monster's reaction to damage
4080  * @param m_idx モンスター情報ID
4081  * @param dam 与えたダメージ
4082  * @return なし
4083  * @details
4084  * Technically should attempt to treat "Beholder"'s as jelly's
4085  */
4086 void message_pain(MONSTER_IDX m_idx, HIT_POINT dam)
4087 {
4088         long oldhp, newhp, tmp;
4089         int percentage;
4090
4091         monster_type *m_ptr = &m_list[m_idx];
4092         monster_race *r_ptr = &r_info[m_ptr->r_idx];
4093
4094         char m_name[80];
4095
4096         /* Get the monster name */
4097         monster_desc(m_name, m_ptr, 0);
4098
4099         if(dam == 0) // Notice non-damage
4100         {
4101                 msg_format(_("%^sはダメージを受けていない。", "%^s is unharmed."), m_name);
4102                 return;
4103         }
4104
4105         /* Note -- subtle fix -CFT */
4106         newhp = (long)(m_ptr->hp);
4107         oldhp = newhp + (long)(dam);
4108         tmp = (newhp * 100L) / oldhp;
4109         percentage = (int)(tmp);
4110
4111         if(my_strchr(",ejmvwQ", r_ptr->d_char)) // Mushrooms, Eyes, Jellies, Molds, Vortices, Worms, Quylthulgs
4112         {
4113 #ifdef JP
4114                 if(percentage > 95) msg_format("%^sはほとんど気にとめていない。", m_name);
4115                 else if(percentage > 75) msg_format("%^sはしり込みした。", m_name);
4116                 else if(percentage > 50) msg_format("%^sは縮こまった。", m_name);
4117                 else if(percentage > 35) msg_format("%^sは痛みに震えた。", m_name);
4118                 else if(percentage > 20) msg_format("%^sは身もだえした。", m_name);
4119                 else if(percentage > 10) msg_format("%^sは苦痛で身もだえした。", m_name);
4120                 else msg_format("%^sはぐにゃぐにゃと痙攣した。", m_name);
4121 #else
4122                 if(percentage > 95) msg_format("%^s barely notices.", m_name);
4123                 else if(percentage > 75) msg_format("%^s flinches.", m_name);
4124                 else if(percentage > 50) msg_format("%^s squelches.", m_name);
4125                 else if(percentage > 35) msg_format("%^s quivers in pain.", m_name);
4126                 else if(percentage > 20) msg_format("%^s writhes about.", m_name);
4127                 else if(percentage > 10) msg_format("%^s writhes in agony.", m_name);
4128                 else msg_format("%^s jerks limply.", m_name);
4129 #endif
4130         }
4131
4132         else if(my_strchr("l", r_ptr->d_char)) // Fish
4133         {
4134 #ifdef JP
4135                 if(percentage > 95) msg_format("%^sはほとんど気にとめていない。", m_name);
4136                 else if(percentage > 75) msg_format("%^sはしり込みした。", m_name);
4137                 else if(percentage > 50) msg_format("%^sは躊躇した。", m_name);
4138                 else if(percentage > 35) msg_format("%^sは痛みに震えた。", m_name);
4139                 else if(percentage > 20) msg_format("%^sは身もだえした。", m_name);
4140                 else if(percentage > 10) msg_format("%^sは苦痛で身もだえした。", m_name);
4141                 else msg_format("%^sはぐにゃぐにゃと痙攣した。", m_name);
4142 #else
4143                 if(percentage > 95) msg_format("%^s barely notices.", m_name);
4144                 else if(percentage > 75) msg_format("%^s flinches.", m_name);
4145                 else if(percentage > 50) msg_format("%^s hesitates.", m_name);
4146                 else if(percentage > 35) msg_format("%^s quivers in pain.", m_name);
4147                 else if(percentage > 20) msg_format("%^s writhes about.", m_name);
4148                 else if(percentage > 10) msg_format("%^s writhes in agony.", m_name);
4149                 else msg_format("%^s jerks limply.", m_name);
4150 #endif          
4151         }
4152
4153         else if(my_strchr("g#+<>", r_ptr->d_char)) // Golems, Walls, Doors, Stairs
4154         {       
4155 #ifdef JP
4156                 if(percentage > 95) msg_format("%sは攻撃を気にとめていない。", m_name);
4157                 else if(percentage > 75) msg_format("%sは攻撃に肩をすくめた。", m_name);
4158                 else if(percentage > 50) msg_format("%^sは雷鳴のように吠えた。", m_name);
4159                 else if(percentage > 35) msg_format("%^sは苦しげに吠えた。", m_name);
4160                 else if(percentage > 20) msg_format("%^sはうめいた。", m_name);
4161                 else if(percentage > 10) msg_format("%^sは躊躇した。", m_name);
4162                 else msg_format("%^sはくしゃくしゃになった。", m_name);
4163 #else
4164                 if(percentage > 95) msg_format("%^s ignores the attack.", m_name);
4165                 else if(percentage > 75) msg_format("%^s shrugs off the attack.", m_name);
4166                 else if(percentage > 50) msg_format("%^s roars thunderously.", m_name);
4167                 else if(percentage > 35) msg_format("%^s rumbles.", m_name);
4168                 else if(percentage > 20) msg_format("%^s grunts.", m_name);
4169                 else if(percentage > 10) msg_format("%^s hesitates.", m_name);
4170                 else msg_format("%^s crumples.", m_name);
4171 #endif
4172         }
4173
4174         else if(my_strchr("JMR", r_ptr->d_char) || !isalpha(r_ptr->d_char)) // Snakes, Hydrae, Reptiles, Mimics
4175         {
4176 #ifdef JP
4177                 if(percentage > 95) msg_format("%^sはほとんど気にとめていない。", m_name);
4178                 else if(percentage > 75) msg_format("%^sはシーッと鳴いた。", m_name);
4179                 else if(percentage > 50) msg_format("%^sは怒って頭を上げた。", m_name);
4180                 else if(percentage > 35) msg_format("%^sは猛然と威嚇した。", m_name);
4181                 else if(percentage > 20) msg_format("%^sは身もだえした。", m_name);
4182                 else if(percentage > 10) msg_format("%^sは苦痛で身もだえした。", m_name);
4183                 else msg_format("%^sはぐにゃぐにゃと痙攣した。", m_name);
4184 #else
4185                 if(percentage > 95) msg_format("%^s barely notices.", m_name);
4186                 else if(percentage > 75) msg_format("%^s hisses.", m_name);
4187                 else if(percentage > 50) msg_format("%^s rears up in anger.", m_name);
4188                 else if(percentage > 35) msg_format("%^s hisses furiously.", m_name);
4189                 else if(percentage > 20) msg_format("%^s writhes about.", m_name);
4190                 else if(percentage > 10) msg_format("%^s writhes in agony.", m_name);
4191                 else msg_format("%^s jerks limply.", m_name);
4192 #endif
4193         }
4194
4195         else if(my_strchr("f", r_ptr->d_char))
4196         {
4197 #ifdef JP
4198                 if(percentage > 95) msg_format("%sは攻撃に肩をすくめた。", m_name);
4199                 else if(percentage > 75) msg_format("%^sは吠えた。", m_name);
4200                 else if(percentage > 50) msg_format("%^sは怒って吠えた。", m_name);
4201                 else if(percentage > 35) msg_format("%^sは痛みでシーッと鳴いた。", m_name);
4202                 else if(percentage > 20) msg_format("%^sは痛みで弱々しく鳴いた。", m_name);
4203                 else if(percentage > 10) msg_format("%^sは苦痛にうめいた。", m_name);
4204                 else msg_format("%sは哀れな鳴き声を出した。", m_name);
4205 #else
4206                 if(percentage > 95) msg_format("%^s shrugs off the attack.", m_name);
4207                 else if(percentage > 75) msg_format("%^s roars.", m_name);
4208                 else if(percentage > 50) msg_format("%^s growls angrily.", m_name);
4209                 else if(percentage > 35) msg_format("%^s hisses with pain.", m_name);
4210                 else if(percentage > 20) msg_format("%^s mewls in pain.", m_name);
4211                 else if(percentage > 10) msg_format("%^s hisses in agony.", m_name);
4212                 else msg_format("%^s mewls pitifully.", m_name);
4213 #endif
4214         }
4215
4216         else if(my_strchr("acFIKS", r_ptr->d_char)) // Ants, Centipedes, Flies, Insects, Beetles, Spiders
4217         {
4218 #ifdef JP
4219                 if(percentage > 95) msg_format("%sは攻撃を気にとめていない。", m_name);
4220                 else if(percentage > 75) msg_format("%^sはキーキー鳴いた。", m_name);
4221                 else if(percentage > 50) msg_format("%^sはヨロヨロ逃げ回った。", m_name);
4222                 else if(percentage > 35) msg_format("%^sはうるさく鳴いた。", m_name);
4223                 else if(percentage > 20) msg_format("%^sは痛みに痙攣した。", m_name);
4224                 else if(percentage > 10) msg_format("%^sは苦痛で痙攣した。", m_name);
4225                 else msg_format("%^sはピクピクひきつった。", m_name);
4226 #else
4227                 if(percentage > 95)     msg_format("%^s ignores the attack.", m_name);
4228                 else if(percentage > 75) msg_format("%^s chitters.", m_name);
4229                 else if(percentage > 50) msg_format("%^s scuttles about.", m_name);
4230                 else if(percentage > 35) msg_format("%^s twitters.", m_name);
4231                 else if(percentage > 20) msg_format("%^s jerks in pain.", m_name);
4232                 else if(percentage > 10) msg_format("%^s jerks in agony.", m_name);
4233                 else msg_format("%^s twitches.", m_name);
4234 #endif
4235         }
4236
4237         else if(my_strchr("B", r_ptr->d_char)) // Birds
4238         {               
4239 #ifdef JP
4240                 if(percentage > 95) msg_format("%^sはさえずった。", m_name);
4241                 else if(percentage > 75) msg_format("%^sはピーピー鳴いた。", m_name);
4242                 else if(percentage > 50) msg_format("%^sはギャーギャー鳴いた。", m_name);
4243                 else if(percentage > 35) msg_format("%^sはギャーギャー鳴きわめいた。", m_name);
4244                 else if(percentage > 20) msg_format("%^sは苦しんだ。", m_name);
4245                 else if(percentage > 10) msg_format("%^sはのたうち回った。", m_name);
4246                 else msg_format("%^sはキーキーと鳴き叫んだ。", m_name);
4247 #else
4248                 if(percentage > 95)     msg_format("%^s chirps.", m_name);
4249                 else if(percentage > 75) msg_format("%^s twitters.", m_name);
4250                 else if(percentage > 50) msg_format("%^s squawks.", m_name);
4251                 else if(percentage > 35) msg_format("%^s chatters.", m_name);
4252                 else if(percentage > 20) msg_format("%^s jeers.", m_name);
4253                 else if(percentage > 10) msg_format("%^s flutters about.", m_name);
4254                 else msg_format("%^s squeaks.", m_name);
4255 #endif
4256         }
4257
4258         else if(my_strchr("duDLUW", r_ptr->d_char)) // Dragons, Demons, High Undead
4259         {       
4260 #ifdef JP
4261                 if(percentage > 95) msg_format("%sは攻撃を気にとめていない。", m_name);
4262                 else if(percentage > 75) msg_format("%^sはしり込みした。", m_name);
4263                 else if(percentage > 50) msg_format("%^sは痛みでシーッと鳴いた。", m_name);
4264                 else if(percentage > 35) msg_format("%^sは痛みでうなった。", m_name);
4265                 else if(percentage > 20) msg_format("%^sは痛みに吠えた。", m_name);
4266                 else if(percentage > 10) msg_format("%^sは苦しげに叫んだ。", m_name);
4267                 else msg_format("%^sは弱々しくうなった。", m_name);
4268 #else
4269                 if(percentage > 95) msg_format("%^s ignores the attack.", m_name);
4270                 else if(percentage > 75) msg_format("%^s flinches.", m_name);
4271                 else if(percentage > 50) msg_format("%^s hisses in pain.", m_name);
4272                 else if(percentage > 35) msg_format("%^s snarls with pain.", m_name);
4273                 else if(percentage > 20) msg_format("%^s roars with pain.", m_name);
4274                 else if(percentage > 10) msg_format("%^s gasps.", m_name);
4275                 else msg_format("%^s snarls feebly.", m_name);
4276 #endif
4277         }
4278
4279         else if(my_strchr("s", r_ptr->d_char)) // Skeletons
4280         {
4281 #ifdef JP
4282                 if(percentage > 95) msg_format("%sは攻撃を気にとめていない。", m_name);
4283                 else if(percentage > 75) msg_format("%sは攻撃に肩をすくめた。", m_name);
4284                 else if(percentage > 50) msg_format("%^sはカタカタと笑った。", m_name);
4285                 else if(percentage > 35) msg_format("%^sはよろめいた。", m_name);
4286                 else if(percentage > 20) msg_format("%^sはカタカタ言った。", m_name);
4287                 else if(percentage > 10) msg_format("%^sはよろめいた。", m_name);
4288                 else msg_format("%^sはガタガタ言った。", m_name);
4289 #else
4290                 if(percentage > 95) msg_format("%^s ignores the attack.", m_name);
4291                 else if(percentage > 75) msg_format("%^s shrugs off the attack.", m_name);
4292                 else if(percentage > 50) msg_format("%^s rattles.", m_name);
4293                 else if(percentage > 35) msg_format("%^s stumbles.", m_name);
4294                 else if(percentage > 20) msg_format("%^s rattles.", m_name);
4295                 else if(percentage > 10) msg_format("%^s staggers.", m_name);
4296                 else msg_format("%^s clatters.", m_name);
4297 #endif
4298         }
4299
4300         else if(my_strchr("z", r_ptr->d_char)) // Zombies
4301         {               
4302 #ifdef JP
4303                 if(percentage > 95) msg_format("%sは攻撃を気にとめていない。", m_name);
4304                 else if(percentage > 75) msg_format("%sは攻撃に肩をすくめた。", m_name);
4305                 else if(percentage > 50) msg_format("%^sはうめいた。", m_name);
4306                 else if(percentage > 35) msg_format("%sは苦しげにうめいた。", m_name);
4307                 else if(percentage > 20) msg_format("%^sは躊躇した。", m_name);
4308                 else if(percentage > 10) msg_format("%^sはうなった。", m_name);
4309                 else msg_format("%^sはよろめいた。", m_name);
4310 #else
4311                 if(percentage > 95) msg_format("%^s ignores the attack.", m_name);
4312                 else if(percentage > 75) msg_format("%^s shrugs off the attack.", m_name);
4313                 else if(percentage > 50) msg_format("%^s groans.", m_name);
4314                 else if(percentage > 35) msg_format("%^s moans.", m_name);
4315                 else if(percentage > 20) msg_format("%^s hesitates.", m_name);
4316                 else if(percentage > 10) msg_format("%^s grunts.", m_name);
4317                 else msg_format("%^s staggers.", m_name);
4318 #endif
4319         }
4320
4321         else if(my_strchr("G", r_ptr->d_char)) // Ghosts
4322         {
4323 #ifdef JP
4324                 if(percentage > 95) msg_format("%sは攻撃を気にとめていない。", m_name);
4325                 else if(percentage > 75) msg_format("%sは攻撃に肩をすくめた。", m_name);
4326                 else if(percentage > 50) msg_format("%sはうめいた。", m_name);
4327                 else if(percentage > 35) msg_format("%^sは泣きわめいた。", m_name);
4328                 else if(percentage > 20) msg_format("%^sは吠えた。", m_name);
4329                 else if(percentage > 10) msg_format("%sは弱々しくうめいた。", m_name);
4330                 else msg_format("%^sはかすかにうめいた。", m_name);
4331 #else
4332                 if(percentage > 95) msg_format("%^s ignores the attack.", m_name);
4333                 else if(percentage > 75) msg_format("%^s shrugs off the attack.", m_name);
4334                 else if(percentage > 50)  msg_format("%^s moans.", m_name);
4335                 else if(percentage > 35) msg_format("%^s wails.", m_name);
4336                 else if(percentage > 20) msg_format("%^s howls.", m_name);
4337                 else if(percentage > 10) msg_format("%^s moans softly.", m_name);
4338                 else msg_format("%^s sighs.", m_name);
4339 #endif
4340         }
4341
4342         else if(my_strchr("CZ", r_ptr->d_char)) // Dogs and Hounds
4343         {
4344 #ifdef JP
4345                 if(percentage > 95) msg_format("%^sは攻撃に肩をすくめた。", m_name);
4346                 else if(percentage > 75) msg_format("%^sは痛みでうなった。", m_name);
4347                 else if(percentage > 50) msg_format("%^sは痛みでキャンキャン吠えた。", m_name);
4348                 else if(percentage > 35) msg_format("%^sは痛みで鳴きわめいた。", m_name);
4349                 else if(percentage > 20) msg_format("%^sは苦痛のあまり鳴きわめいた。", m_name);
4350                 else if(percentage > 10) msg_format("%^sは苦痛でもだえ苦しんだ。", m_name);
4351                 else msg_format("%^sは弱々しく吠えた。", m_name);
4352 #else
4353                 if(percentage > 95) msg_format("%^s shrugs off the attack.", m_name);
4354                 else if(percentage > 75) msg_format("%^s snarls with pain.", m_name);
4355                 else if(percentage > 50) msg_format("%^s yelps in pain.", m_name);
4356                 else if(percentage > 35) msg_format("%^s howls in pain.", m_name);
4357                 else if(percentage > 20) msg_format("%^s howls in agony.", m_name);
4358                 else if(percentage > 10) msg_format("%^s writhes in agony.", m_name);
4359                 else msg_format("%^s yelps feebly.", m_name);
4360 #endif
4361         }
4362
4363         else if(my_strchr("Xbilqrt", r_ptr->d_char)) // One type of creatures (ignore,squeal,shriek)
4364         {
4365 #ifdef JP
4366                 if(percentage > 95) msg_format("%^sは攻撃を気にとめていない。", m_name);
4367                 else if(percentage > 75) msg_format("%^sは痛みでうなった。", m_name);
4368                 else if(percentage > 50) msg_format("%^sは痛みで叫んだ。", m_name);
4369                 else if(percentage > 35) msg_format("%^sは痛みで絶叫した。", m_name);
4370                 else if(percentage > 20) msg_format("%^sは苦痛のあまり絶叫した。", m_name);
4371                 else if(percentage > 10) msg_format("%^sは苦痛でもだえ苦しんだ。", m_name);
4372                 else msg_format("%^sは弱々しく叫んだ。", m_name);
4373 #else
4374                 if(percentage > 95) msg_format("%^s ignores the attack.", m_name);
4375                 else if(percentage > 75) msg_format("%^s grunts with pain.", m_name);
4376                 else if(percentage > 50) msg_format("%^s squeals in pain.", m_name);
4377                 else if(percentage > 35) msg_format("%^s shrieks in pain.", m_name);
4378                 else if(percentage > 20) msg_format("%^s shrieks in agony.", m_name);
4379                 else if(percentage > 10) msg_format("%^s writhes in agony.", m_name);
4380                 else msg_format("%^s cries out feebly.", m_name);
4381 #endif
4382         }
4383
4384         else // Another type of creatures (shrug,cry,scream)
4385         {
4386 #ifdef JP
4387                 if(percentage > 95) msg_format("%^sは攻撃に肩をすくめた。", m_name);
4388                 else if(percentage > 75) msg_format("%^sは痛みでうなった。", m_name);
4389                 else if(percentage > 50) msg_format("%^sは痛みで叫んだ。", m_name);
4390                 else if(percentage > 35) msg_format("%^sは痛みで絶叫した。", m_name);
4391                 else if(percentage > 20) msg_format("%^sは苦痛のあまり絶叫した。", m_name);
4392                 else if(percentage > 10) msg_format("%^sは苦痛でもだえ苦しんだ。", m_name);
4393                 else msg_format("%^sは弱々しく叫んだ。", m_name);
4394 #else
4395                 if(percentage > 95) msg_format("%^s shrugs off the attack.", m_name);
4396                 else if(percentage > 75) msg_format("%^s grunts with pain.", m_name);
4397                 else if(percentage > 50) msg_format("%^s cries out in pain.", m_name);
4398                 else if(percentage > 35) msg_format("%^s screams in pain.", m_name);
4399                 else if(percentage > 20) msg_format("%^s screams in agony.", m_name);
4400                 else if(percentage > 10) msg_format("%^s writhes in agony.", m_name);
4401                 else msg_format("%^s cries out feebly.", m_name);
4402 #endif
4403         }
4404 }
4405
4406
4407
4408 /*!
4409  * @brief SMART(適格に攻撃を行う)モンスターの学習状況を更新する / Learn about an "observed" resistance.
4410  * @param m_idx 更新を行う「モンスター情報ID
4411  * @param what 学習対象ID
4412  * @return なし
4413  */
4414 void update_smart_learn(MONSTER_IDX m_idx, int what)
4415 {
4416         monster_type *m_ptr = &m_list[m_idx];
4417
4418         monster_race *r_ptr = &r_info[m_ptr->r_idx];
4419
4420
4421         /* Not allowed to learn */
4422         if (!smart_learn) return;
4423
4424         /* Too stupid to learn anything */
4425         if (r_ptr->flags2 & (RF2_STUPID)) return;
4426
4427         /* Not intelligent, only learn sometimes */
4428         if (!(r_ptr->flags2 & (RF2_SMART)) && (randint0(100) < 50)) return;
4429
4430
4431
4432         /* Analyze the knowledge */
4433         switch (what)
4434         {
4435         case DRS_ACID:
4436                 if (p_ptr->resist_acid) m_ptr->smart |= (SM_RES_ACID);
4437                 if (IS_OPPOSE_ACID()) m_ptr->smart |= (SM_OPP_ACID);
4438                 if (p_ptr->immune_acid) m_ptr->smart |= (SM_IMM_ACID);
4439                 break;
4440
4441         case DRS_ELEC:
4442                 if (p_ptr->resist_elec) m_ptr->smart |= (SM_RES_ELEC);
4443                 if (IS_OPPOSE_ELEC()) m_ptr->smart |= (SM_OPP_ELEC);
4444                 if (p_ptr->immune_elec) m_ptr->smart |= (SM_IMM_ELEC);
4445                 break;
4446
4447         case DRS_FIRE:
4448                 if (p_ptr->resist_fire) m_ptr->smart |= (SM_RES_FIRE);
4449                 if (IS_OPPOSE_FIRE()) m_ptr->smart |= (SM_OPP_FIRE);
4450                 if (p_ptr->immune_fire) m_ptr->smart |= (SM_IMM_FIRE);
4451                 break;
4452
4453         case DRS_COLD:
4454                 if (p_ptr->resist_cold) m_ptr->smart |= (SM_RES_COLD);
4455                 if (IS_OPPOSE_COLD()) m_ptr->smart |= (SM_OPP_COLD);
4456                 if (p_ptr->immune_cold) m_ptr->smart |= (SM_IMM_COLD);
4457                 break;
4458
4459         case DRS_POIS:
4460                 if (p_ptr->resist_pois) m_ptr->smart |= (SM_RES_POIS);
4461                 if (IS_OPPOSE_POIS()) m_ptr->smart |= (SM_OPP_POIS);
4462                 break;
4463
4464
4465         case DRS_NETH:
4466                 if (p_ptr->resist_neth) m_ptr->smart |= (SM_RES_NETH);
4467                 break;
4468
4469         case DRS_LITE:
4470                 if (p_ptr->resist_lite) m_ptr->smart |= (SM_RES_LITE);
4471                 break;
4472
4473         case DRS_DARK:
4474                 if (p_ptr->resist_dark) m_ptr->smart |= (SM_RES_DARK);
4475                 break;
4476
4477         case DRS_FEAR:
4478                 if (p_ptr->resist_fear) m_ptr->smart |= (SM_RES_FEAR);
4479                 break;
4480
4481         case DRS_CONF:
4482                 if (p_ptr->resist_conf) m_ptr->smart |= (SM_RES_CONF);
4483                 break;
4484
4485         case DRS_CHAOS:
4486                 if (p_ptr->resist_chaos) m_ptr->smart |= (SM_RES_CHAOS);
4487                 break;
4488
4489         case DRS_DISEN:
4490                 if (p_ptr->resist_disen) m_ptr->smart |= (SM_RES_DISEN);
4491                 break;
4492
4493         case DRS_BLIND:
4494                 if (p_ptr->resist_blind) m_ptr->smart |= (SM_RES_BLIND);
4495                 break;
4496
4497         case DRS_NEXUS:
4498                 if (p_ptr->resist_nexus) m_ptr->smart |= (SM_RES_NEXUS);
4499                 break;
4500
4501         case DRS_SOUND:
4502                 if (p_ptr->resist_sound) m_ptr->smart |= (SM_RES_SOUND);
4503                 break;
4504
4505         case DRS_SHARD:
4506                 if (p_ptr->resist_shard) m_ptr->smart |= (SM_RES_SHARD);
4507                 break;
4508
4509         case DRS_FREE:
4510                 if (p_ptr->free_act) m_ptr->smart |= (SM_IMM_FREE);
4511                 break;
4512
4513         case DRS_MANA:
4514                 if (!p_ptr->msp) m_ptr->smart |= (SM_IMM_MANA);
4515                 break;
4516
4517         case DRS_REFLECT:
4518                 if (p_ptr->reflect) m_ptr-> smart |= (SM_IMM_REFLECT);
4519                 break;
4520         }
4521 }
4522
4523
4524 /*!
4525  * @brief プレイヤーを指定座標に配置する / Place the player in the dungeon XXX XXX
4526  * @param x 配置先X座標
4527  * @param y 配置先Y座標
4528  * @return 配置に成功したらTRUE
4529  */
4530 bool player_place(POSITION y, POSITION x)
4531 {
4532         /* Paranoia XXX XXX */
4533         if (cave[y][x].m_idx != 0) return FALSE;
4534
4535         /* Save player location */
4536         p_ptr->y = y;
4537         p_ptr->x = x;
4538
4539         /* Success */
4540         return TRUE;
4541 }
4542
4543
4544 /*!
4545  * @brief モンスターが盗みや拾いで確保していたアイテムを全てドロップさせる / Drop all items carried by a monster
4546  * @param m_ptr モンスター参照ポインタ
4547  * @return なし
4548  */
4549 void monster_drop_carried_objects(monster_type *m_ptr)
4550 {
4551         OBJECT_IDX this_o_idx, next_o_idx = 0;
4552         object_type forge;
4553         object_type *o_ptr;
4554         object_type *q_ptr;
4555
4556
4557         /* Drop objects being carried */
4558         for (this_o_idx = m_ptr->hold_o_idx; this_o_idx; this_o_idx = next_o_idx)
4559         {
4560                 o_ptr = &o_list[this_o_idx];
4561
4562                 /* Acquire next object */
4563                 next_o_idx = o_ptr->next_o_idx;
4564                 q_ptr = &forge;
4565
4566                 /* Copy the object */
4567                 object_copy(q_ptr, o_ptr);
4568
4569                 /* Forget monster */
4570                 q_ptr->held_m_idx = 0;
4571
4572                 delete_object_idx(this_o_idx);
4573
4574                 /* Drop it */
4575                 (void)drop_near(q_ptr, -1, m_ptr->fy, m_ptr->fx);
4576         }
4577
4578         /* Forget objects */
4579         m_ptr->hold_o_idx = 0;
4580 }