OSDN Git Service

Merge pull request #41491 (taotao/hengband/fix-impure_calc_num_blow into develop).
[hengband/hengband.git] / src / monster-floor / monster-summon.c
1 #include "monster-floor/monster-summon.h"
2 #include "dungeon/dungeon-flag-types.h"
3 #include "dungeon/dungeon.h"
4 #include "main/sound-definitions-table.h"
5 #include "main/sound-of-music.h"
6 #include "monster-floor/monster-generator.h"
7 #include "monster-floor/place-monster-types.h"
8 #include "monster-race/monster-race-hook.h"
9 #include "monster-race/monster-race.h"
10 #include "monster-race/race-flags1.h"
11 #include "monster-race/race-flags7.h"
12 #include "monster/monster-info.h"
13 #include "monster/monster-list.h"
14 #include "monster/monster-util.h"
15 #include "mspell/summon-checker.h"
16 #include "spell/summon-types.h"
17 #include "system/floor-type-definition.h"
18 #include "system/monster-type-definition.h"
19
20 /*!
21  * @var summon_specific_who
22  * @brief 召喚を行ったプレイヤーあるいはモンスターのIDを示すグローバル変数 / Hack -- the index of the summoning monster
23  * @todo summon_specific_who グローバル変数の除去と関数引数への代替を行う
24  */
25 int summon_specific_who = -1;
26
27 /*!
28  * @var summon_unique_okay
29  * @brief 召喚対象にユニークを含めるかを示すグローバル変数 / summoning unique enable
30  * @todo summon_unique_okay グローバル変数の除去と関数引数への代替を行う
31  */
32 bool summon_unique_okay = FALSE;
33
34 /*!
35  * @brief モンスターが召喚の基本条件に合っているかをチェックする / Hack -- help decide if a monster race is "okay" to summon
36  * @param r_idx チェックするモンスター種族ID
37  * @return 召喚対象にできるならばTRUE
38  */
39 static bool summon_specific_okay(player_type *player_ptr, MONRACE_IDX r_idx)
40 {
41     monster_race *r_ptr = &r_info[r_idx];
42     monster_type *m_ptr = &player_ptr->current_floor_ptr->m_list[summon_specific_who];
43     if (!mon_hook_dungeon(player_ptr, r_idx))
44         return FALSE;
45
46     if (summon_specific_who > 0) {
47         if (monster_has_hostile_align(player_ptr, m_ptr, 0, 0, r_ptr))
48             return FALSE;
49     } else if (summon_specific_who < 0) {
50         if (monster_has_hostile_align(player_ptr, NULL, 10, -10, r_ptr) && !one_in_(ABS(player_ptr->align) / 2 + 1))
51             return FALSE;
52     }
53
54     if (!summon_unique_okay && ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_NAZGUL)))
55         return FALSE;
56
57     if (!summon_specific_type)
58         return TRUE;
59
60     if ((summon_specific_who < 0) && ((r_ptr->flags1 & RF1_UNIQUE) || (r_ptr->flags7 & RF7_NAZGUL))
61         && monster_has_hostile_align(player_ptr, NULL, 10, -10, r_ptr))
62         return FALSE;
63
64     if ((r_ptr->flags7 & RF7_CHAMELEON) && (d_info[player_ptr->dungeon_idx].flags1 & DF1_CHAMELEON))
65         return TRUE;
66
67     return check_summon_specific(player_ptr, m_ptr->r_idx, r_idx);
68 }
69
70 /*!
71  * @brief モンスター死亡時に召喚されうるモンスターかどうかの判定
72  * @param type モンスター種族ID
73  * @return 召喚されうるならばTRUE (あやしい影として生成されない)
74  */
75 static bool is_dead_summoning(summon_type type)
76 {
77     bool summoning = type == SUMMON_BLUE_HORROR;
78     summoning |= type == SUMMON_DAWN;
79     summoning |= type == SUMMON_TOTEM_MOAI;
80     return summoning;
81 }
82
83 /*!
84  * @brief モンスターを召喚により配置する / Place a monster (of the specified "type") near the given location. Return TRUE if a monster was actually summoned.
85  * @param player_ptr プレーヤーへの参照ポインタ
86  * @param who 召喚主のモンスター情報ID
87  * @param y1 目標地点y座標
88  * @param x1 目標地点x座標
89  * @param lev 相当生成階
90  * @param type 召喚種別
91  * @param mode 生成オプション
92  * @return 召喚できたらtrueを返す
93  */
94 bool summon_specific(player_type *player_ptr, MONSTER_IDX who, POSITION y1, POSITION x1, DEPTH lev, summon_type type, BIT_FLAGS mode)
95 {
96     floor_type *floor_ptr = player_ptr->current_floor_ptr;
97     if (floor_ptr->inside_arena)
98         return FALSE;
99
100     POSITION x, y;
101     if (!mon_scatter(player_ptr, 0, &y, &x, y1, x1, 2))
102         return FALSE;
103
104     summon_specific_who = who;
105     summon_specific_type = type;
106     summon_unique_okay = (mode & PM_ALLOW_UNIQUE) != 0;
107     get_mon_num_prep(player_ptr, summon_specific_okay, get_monster_hook2(player_ptr, y, x));
108
109     MONRACE_IDX r_idx = get_mon_num(player_ptr, 0, (floor_ptr->dun_level + lev) / 2 + 5, 0);
110     if (!r_idx) {
111         summon_specific_type = 0;
112         return FALSE;
113     }
114
115     if (is_dead_summoning(type))
116         mode |= PM_NO_KAGE;
117
118     if (!place_monster_aux(player_ptr, who, y, x, r_idx, mode)) {
119         summon_specific_type = 0;
120         return FALSE;
121     }
122
123     summon_specific_type = 0;
124     sound(SOUND_SUMMON);
125     return TRUE;
126 }
127
128 /*!
129  * @brief 特定モンスター種族を召喚により生成する / A "dangerous" function, creates a pet of the specified type
130  * @param player_ptr プレーヤーへの参照ポインタ
131  * @param who 召喚主のモンスター情報ID
132  * @param oy 目標地点y座標
133  * @param ox 目標地点x座標
134  * @param r_idx 生成するモンスター種族ID
135  * @param mode 生成オプション
136  * @return 召喚できたらtrueを返す
137  */
138 bool summon_named_creature(player_type *player_ptr, MONSTER_IDX who, POSITION oy, POSITION ox, MONRACE_IDX r_idx, BIT_FLAGS mode)
139 {
140     if (r_idx >= max_r_idx)
141         return FALSE;
142
143     POSITION x, y;
144     if (player_ptr->current_floor_ptr->inside_arena || !mon_scatter(player_ptr, r_idx, &y, &x, oy, ox, 2))
145         return FALSE;
146
147     return place_monster_aux(player_ptr, who, y, x, r_idx, (mode | PM_NO_KAGE));
148 }