OSDN Git Service

[Refactor] #1752 PlayerClassTypeをenumからenum classへ変更した
[hengbandforosx/hengbandosx.git] / src / specific-object / death-scythe.cpp
1 /*!
2  * @brief 死の大鎌に特有の処理
3  * @date 2020/05/23
4  * @author Hourier
5  * @details 現時点ではダメージ反射のみ。行数に注意して関数を追加しても良い.
6  */
7
8 #include "specific-object/death-scythe.h"
9 #include "combat/attack-criticality.h"
10 #include "core/player-redraw-types.h"
11 #include "core/stuff-handler.h"
12 #include "inventory/inventory-slot-types.h"
13 #include "main/sound-definitions-table.h"
14 #include "main/sound-of-music.h"
15 #include "object-enchant/tr-types.h"
16 #include "object/object-flags.h"
17 #include "player-attack/player-attack-util.h"
18 #include "player-info/race-info.h"
19 #include "player/player-damage.h"
20 #include "player/player-status-flags.h"
21 #include "status/element-resistance.h"
22 #include "system/object-type-definition.h"
23 #include "system/player-type-definition.h"
24 #include "util/bit-flags-calculator.h"
25 #include "view/display-messages.h"
26
27 /*!
28  * @brief 死の大鎌ダメージが跳ね返ってきた時の、種族ごとのダメージ倍率を返す
29  * @param player_ptr プレイヤーへの参照ポインタ
30  * @return 倍率 (実際は1/10になる)
31  */
32 static int calc_death_scythe_reflection_magnification_mimic_none(player_type *player_ptr)
33 {
34     switch (player_ptr->prace) {
35     case PlayerRaceType::YEEK:
36     case PlayerRaceType::KLACKON:
37     case PlayerRaceType::HUMAN:
38     case PlayerRaceType::AMBERITE:
39     case PlayerRaceType::DUNADAN:
40     case PlayerRaceType::BARBARIAN:
41     case PlayerRaceType::BEASTMAN:
42         return 25;
43     case PlayerRaceType::HALF_ORC:
44     case PlayerRaceType::HALF_TROLL:
45     case PlayerRaceType::HALF_OGRE:
46     case PlayerRaceType::HALF_GIANT:
47     case PlayerRaceType::HALF_TITAN:
48     case PlayerRaceType::CYCLOPS:
49     case PlayerRaceType::IMP:
50     case PlayerRaceType::SKELETON:
51     case PlayerRaceType::ZOMBIE:
52     case PlayerRaceType::VAMPIRE:
53     case PlayerRaceType::SPECTRE:
54     case PlayerRaceType::BALROG:
55     case PlayerRaceType::DRACONIAN:
56         return 30;
57     default:
58         return 10;
59     }
60 }
61
62 /*!
63  * @brief 死の大鎌ダメージが跳ね返ってきた時の、変身中の種族も考慮したダメージ倍率を返す
64  * @param player_ptr プレイヤーへの参照ポインタ
65  * @return 倍率 (実際は1/10になる)
66  */
67 static int calc_death_scythe_reflection_magnification(player_type *player_ptr)
68 {
69     switch (player_ptr->mimic_form) {
70     case MIMIC_NONE:
71         return calc_death_scythe_reflection_magnification_mimic_none(player_ptr);
72     case MIMIC_DEMON:
73     case MIMIC_DEMON_LORD:
74     case MIMIC_VAMPIRE:
75         return 30;
76     default:
77         return 10;
78     }
79 }
80
81 /*!
82  * @brief 耐性等に応じて死の大鎌による反射ダメージ倍率を補正する
83  * @param player_ptr プレイヤーへの参照ポインタ
84  * @param magnification ダメージ倍率
85  * @param death_scythe_flags 死の大鎌に関するオブジェクトフラグ配列
86  */
87 static void compensate_death_scythe_reflection_magnification(player_type *player_ptr, int *magnification, const TrFlags &death_scythe_flags)
88 {
89     if ((player_ptr->alignment < 0) && (*magnification < 20))
90         *magnification = 20;
91
92     if (!(has_resist_acid(player_ptr) || is_oppose_acid(player_ptr) || has_immune_acid(player_ptr)) && (*magnification < 25))
93         *magnification = 25;
94
95     if (!(has_resist_elec(player_ptr) || is_oppose_elec(player_ptr) || has_immune_elec(player_ptr)) && (*magnification < 25))
96         *magnification = 25;
97
98     if (!(has_resist_fire(player_ptr) || is_oppose_fire(player_ptr) || has_immune_fire(player_ptr)) && (*magnification < 25))
99         *magnification = 25;
100
101     if (!(has_resist_cold(player_ptr) || is_oppose_cold(player_ptr) || has_immune_cold(player_ptr)) && (*magnification < 25))
102         *magnification = 25;
103
104     if (!(has_resist_pois(player_ptr) || is_oppose_pois(player_ptr)) && (*magnification < 25))
105         *magnification = 25;
106
107     if ((player_ptr->pclass != PlayerClassType::SAMURAI) && (death_scythe_flags.has(TR_FORCE_WEAPON)) && (player_ptr->csp > (player_ptr->msp / 30))) {
108         player_ptr->csp -= (1 + (player_ptr->msp / 30));
109         player_ptr->redraw |= (PR_MANA);
110         *magnification = *magnification * 3 / 2 + 20;
111     }
112 }
113
114 /*!
115  * @brief 死の大鎌による反射ダメージ倍率を更に上げる
116  * @param pa_ptr 直接攻撃構造体への参照ポインタ
117  */
118 static void death_scythe_reflection_critial_hit(player_attack_type *pa_ptr)
119 {
120     if (!one_in_(6))
121         return;
122
123     int more_magnification = 2;
124     msg_format(_("グッサリ切り裂かれた!", "Your weapon cuts deep into yourself!"));
125     while (one_in_(4))
126         more_magnification++;
127
128     pa_ptr->attack_damage *= (HIT_POINT)more_magnification;
129 }
130
131 /*!
132  * @brief 死の大鎌によるダメージ反射のメインルーチン
133  * @param player_ptr プレイヤーへの参照ポインタ
134  * @param pa_ptr 直接攻撃構造体への参照ポインタ
135  */
136 void process_death_scythe_reflection(player_type *player_ptr, player_attack_type *pa_ptr)
137 {
138     sound(SOUND_HIT);
139     msg_format(_("ミス! %sにかわされた。", "You miss %s."), pa_ptr->m_name);
140     msg_print(_("振り回した大鎌が自分自身に返ってきた!", "Your scythe returns to you!"));
141
142     object_type *o_ptr = &player_ptr->inventory_list[INVEN_MAIN_HAND + pa_ptr->hand];
143     auto death_scythe_flags = object_flags(o_ptr);
144     pa_ptr->attack_damage = damroll(o_ptr->dd + player_ptr->to_dd[pa_ptr->hand], o_ptr->ds + player_ptr->to_ds[pa_ptr->hand]);
145     int magnification = calc_death_scythe_reflection_magnification(player_ptr);
146     compensate_death_scythe_reflection_magnification(player_ptr, &magnification, death_scythe_flags);
147     pa_ptr->attack_damage *= (HIT_POINT)magnification;
148     pa_ptr->attack_damage /= 10;
149     pa_ptr->attack_damage = critical_norm(player_ptr, o_ptr->weight, o_ptr->to_h, pa_ptr->attack_damage, player_ptr->to_h[pa_ptr->hand], pa_ptr->mode);
150     death_scythe_reflection_critial_hit(pa_ptr);
151     pa_ptr->attack_damage += (player_ptr->to_d[pa_ptr->hand] + o_ptr->to_d);
152     if (pa_ptr->attack_damage < 0)
153         pa_ptr->attack_damage = 0;
154
155     take_hit(player_ptr, DAMAGE_FORCE, pa_ptr->attack_damage, _("死の大鎌", "Death scythe"));
156     handle_stuff(player_ptr);
157 }