OSDN Git Service

Merge pull request #3297 from Hourier/Move-Update-Flags-3
[hengbandforosx/hengbandosx.git] / src / core / player-processor.cpp
1 #include "core/player-processor.h"
2 #include "action/run-execution.h"
3 #include "action/travel-execution.h"
4 #include "core/disturbance.h"
5 #include "core/player-redraw-types.h"
6 #include "core/special-internal-keys.h"
7 #include "core/speed-table.h"
8 #include "core/stuff-handler.h"
9 #include "core/window-redrawer.h"
10 #include "floor/floor-save-util.h"
11 #include "floor/floor-util.h"
12 #include "floor/geometry.h"
13 #include "floor/wild.h"
14 #include "game-option/cheat-options.h"
15 #include "game-option/disturbance-options.h"
16 #include "game-option/map-screen-options.h"
17 #include "grid/grid.h"
18 #include "inventory/pack-overflow.h"
19 #include "io/cursor.h"
20 #include "io/input-key-acceptor.h"
21 #include "io/input-key-processor.h"
22 #include "io/input-key-requester.h"
23 #include "mind/mind-force-trainer.h"
24 #include "mind/mind-sniper.h"
25 #include "monster-floor/monster-generator.h"
26 #include "monster-floor/place-monster-types.h"
27 #include "monster-race/monster-race-hook.h"
28 #include "monster-race/monster-race.h"
29 #include "monster-race/race-flags1.h"
30 #include "monster/monster-describer.h"
31 #include "monster/monster-flag-types.h"
32 #include "monster/monster-list.h"
33 #include "monster/monster-status-setter.h"
34 #include "monster/monster-status.h"
35 #include "monster/monster-update.h"
36 #include "monster/monster-util.h"
37 #include "mutation/mutation-investor-remover.h"
38 #include "player-base/player-class.h"
39 #include "player-info/bluemage-data-type.h"
40 #include "player-info/mane-data-type.h"
41 #include "player-info/samurai-data-type.h"
42 #include "player-info/sniper-data-type.h"
43 #include "player-status/player-energy.h"
44 #include "player/attack-defense-types.h"
45 #include "player/eldritch-horror.h"
46 #include "player/player-skill.h"
47 #include "player/special-defense-types.h"
48 #include "spell-kind/spells-random.h"
49 #include "spell-realm/spells-hex.h"
50 #include "spell-realm/spells-song.h"
51 #include "status/action-setter.h"
52 #include "system/dungeon-info.h"
53 #include "system/floor-type-definition.h"
54 #include "system/grid-type-definition.h"
55 #include "system/monster-race-info.h"
56 #include "system/player-type-definition.h"
57 #include "system/redrawing-flags-updater.h"
58 #include "term/screen-processor.h"
59 #include "timed-effect/player-blindness.h"
60 #include "timed-effect/player-confusion.h"
61 #include "timed-effect/player-cut.h"
62 #include "timed-effect/player-hallucination.h"
63 #include "timed-effect/player-paralysis.h"
64 #include "timed-effect/player-stun.h"
65 #include "timed-effect/timed-effects.h"
66 #include "util/bit-flags-calculator.h"
67 #include "view/display-messages.h"
68 #include "window/display-sub-windows.h"
69 #include "world/world-turn-processor.h"
70
71 bool load = true;
72 bool can_save = false;
73
74 static void process_fishing(PlayerType *player_ptr)
75 {
76     term_xtra(TERM_XTRA_DELAY, 10);
77     if (one_in_(1000)) {
78         bool success = false;
79         get_mon_num_prep(player_ptr, monster_is_fishing_target, nullptr);
80         auto *floor_ptr = player_ptr->current_floor_ptr;
81         const auto wild_level = wilderness[player_ptr->wilderness_y][player_ptr->wilderness_x].level;
82         const auto level = floor_ptr->is_in_dungeon() ? floor_ptr->dun_level : wild_level;
83         const auto r_idx = get_mon_num(player_ptr, 0, level, 0);
84         msg_print(nullptr);
85         if (MonsterRace(r_idx).is_valid() && one_in_(2)) {
86             POSITION y, x;
87             y = player_ptr->y + ddy[player_ptr->fishing_dir];
88             x = player_ptr->x + ddx[player_ptr->fishing_dir];
89             if (place_monster_aux(player_ptr, 0, y, x, r_idx, PM_NO_KAGE)) {
90                 const auto m_name = monster_desc(player_ptr, &floor_ptr->m_list[floor_ptr->grid_array[y][x].m_idx], 0);
91                 msg_print(_(format("%sが釣れた!", m_name.data()), "You have a good catch!"));
92                 success = true;
93             }
94         }
95
96         if (!success) {
97             msg_print(_("餌だけ食われてしまった!くっそ~!", "Damn!  The fish stole your bait!"));
98         }
99
100         disturb(player_ptr, false, true);
101     }
102 }
103
104 bool continuous_action_running(PlayerType *player_ptr)
105 {
106     return player_ptr->running || travel.run || command_rep || (player_ptr->action == ACTION_REST) || (player_ptr->action == ACTION_FISH);
107 }
108
109 /*!
110  * @brief プレイヤーの行動処理 / Process the player
111  * @note
112  * Notice the annoying code to handle "pack overflow", which\n
113  * must come first just in case somebody manages to corrupt\n
114  * the savefiles by clever use of menu commands or something.\n
115  */
116 void process_player(PlayerType *player_ptr)
117 {
118     if (player_ptr->hack_mutation) {
119         msg_print(_("何か変わった気がする!", "You feel different!"));
120         (void)gain_mutation(player_ptr, 0);
121         player_ptr->hack_mutation = false;
122     }
123
124     if (player_ptr->invoking_midnight_curse) {
125         int count = 0;
126         activate_ty_curse(player_ptr, false, &count);
127         player_ptr->invoking_midnight_curse = false;
128     }
129
130     if (player_ptr->phase_out) {
131         for (MONSTER_IDX m_idx = 1; m_idx < player_ptr->current_floor_ptr->m_max; m_idx++) {
132             auto *m_ptr = &player_ptr->current_floor_ptr->m_list[m_idx];
133             if (!m_ptr->is_valid()) {
134                 continue;
135             }
136
137             m_ptr->mflag2.set({ MonsterConstantFlagType::MARK, MonsterConstantFlagType::SHOW });
138             update_monster(player_ptr, m_idx, false);
139         }
140
141         WorldTurnProcessor(player_ptr).print_time();
142     } else if (!(load && player_ptr->energy_need <= 0)) {
143         player_ptr->energy_need -= speed_to_energy(player_ptr->pspeed);
144     }
145
146     if (player_ptr->energy_need > 0) {
147         return;
148     }
149     if (!command_rep) {
150         WorldTurnProcessor(player_ptr).print_time();
151     }
152
153     if (fresh_once && (continuous_action_running(player_ptr) || !command_rep)) {
154         stop_term_fresh();
155     }
156
157     if (player_ptr->resting < 0) {
158         if (player_ptr->resting == COMMAND_ARG_REST_FULL_HEALING) {
159             if ((player_ptr->chp == player_ptr->mhp) && (player_ptr->csp >= player_ptr->msp)) {
160                 set_action(player_ptr, ACTION_NONE);
161             }
162         } else if (player_ptr->resting == COMMAND_ARG_REST_UNTIL_DONE) {
163             if (player_ptr->is_fully_healthy()) {
164                 set_action(player_ptr, ACTION_NONE);
165             }
166         }
167     }
168
169     if (player_ptr->action == ACTION_FISH) {
170         process_fishing(player_ptr);
171     }
172
173     if (check_abort) {
174         if (continuous_action_running(player_ptr)) {
175             inkey_scan = true;
176             if (inkey()) {
177                 flush();
178                 disturb(player_ptr, false, true);
179                 msg_print(_("中断しました。", "Canceled."));
180             }
181         }
182     }
183
184     const auto effects = player_ptr->effects();
185     if (player_ptr->riding && !effects->confusion()->is_confused() && !effects->blindness()->is_blind()) {
186         auto *m_ptr = &player_ptr->current_floor_ptr->m_list[player_ptr->riding];
187         auto *r_ptr = &monraces_info[m_ptr->r_idx];
188         if (m_ptr->is_asleep()) {
189             const auto m_name = monster_desc(player_ptr, m_ptr, 0);
190             (void)set_monster_csleep(player_ptr, player_ptr->riding, 0);
191             msg_format(_("%s^を起こした。", "You have woken %s up."), m_name.data());
192         }
193
194         if (m_ptr->is_stunned()) {
195             if (set_monster_stunned(player_ptr, player_ptr->riding,
196                     (randint0(r_ptr->level) < player_ptr->skill_exp[PlayerSkillKindType::RIDING]) ? 0 : (m_ptr->get_remaining_stun() - 1))) {
197                 const auto m_name = monster_desc(player_ptr, m_ptr, 0);
198                 msg_format(_("%s^を朦朧状態から立ち直らせた。", "%s^ is no longer stunned."), m_name.data());
199             }
200         }
201
202         if (m_ptr->is_confused()) {
203             if (set_monster_confused(player_ptr, player_ptr->riding,
204                     (randint0(r_ptr->level) < player_ptr->skill_exp[PlayerSkillKindType::RIDING]) ? 0 : (m_ptr->get_remaining_confusion() - 1))) {
205                 const auto m_name = monster_desc(player_ptr, m_ptr, 0);
206                 msg_format(_("%s^を混乱状態から立ち直らせた。", "%s^ is no longer confused."), m_name.data());
207             }
208         }
209
210         if (m_ptr->is_fearful()) {
211             if (set_monster_monfear(player_ptr, player_ptr->riding,
212                     (randint0(r_ptr->level) < player_ptr->skill_exp[PlayerSkillKindType::RIDING]) ? 0 : (m_ptr->get_remaining_fear() - 1))) {
213                 const auto m_name = monster_desc(player_ptr, m_ptr, 0);
214                 msg_format(_("%s^を恐怖から立ち直らせた。", "%s^ is no longer fearful."), m_name.data());
215             }
216         }
217
218         handle_stuff(player_ptr);
219     }
220
221     load = false;
222     if (player_ptr->lightspeed) {
223         set_lightspeed(player_ptr, player_ptr->lightspeed - 1, true);
224     }
225
226     auto &rfu = RedrawingFlagsUpdater::get_instance();
227     if (PlayerClass(player_ptr).equals(PlayerClassType::FORCETRAINER) && get_current_ki(player_ptr)) {
228         if (get_current_ki(player_ptr) < 40) {
229             set_current_ki(player_ptr, true, 0);
230         } else {
231             set_current_ki(player_ptr, false, -40);
232         }
233         rfu.set_flag(StatusRedrawingFlag::BONUS);
234     }
235
236     if (player_ptr->action == ACTION_LEARN) {
237         int32_t cost = 0L;
238         uint32_t cost_frac = (player_ptr->msp + 30L) * 256L;
239         s64b_lshift(&cost, &cost_frac, 16);
240         if (s64b_cmp(player_ptr->csp, player_ptr->csp_frac, cost, cost_frac) < 0) {
241             player_ptr->csp = 0;
242             player_ptr->csp_frac = 0;
243             set_action(player_ptr, ACTION_NONE);
244         } else {
245             s64b_sub(&(player_ptr->csp), &(player_ptr->csp_frac), cost, cost_frac);
246         }
247
248         player_ptr->redraw |= PR_MP;
249     }
250
251     if (PlayerClass(player_ptr).samurai_stance_is(SamuraiStanceType::MUSOU)) {
252         if (player_ptr->csp < 3) {
253             set_action(player_ptr, ACTION_NONE);
254         } else {
255             player_ptr->csp -= 2;
256             player_ptr->redraw |= (PR_MP);
257         }
258     }
259
260     /*** Handle actual user input ***/
261     while (player_ptr->energy_need <= 0) {
262         player_ptr->window_flags |= PW_PLAYER;
263         player_ptr->sutemi = false;
264         player_ptr->counter = false;
265         player_ptr->now_damaged = false;
266
267         update_monsters(player_ptr, false);
268         handle_stuff(player_ptr);
269         move_cursor_relative(player_ptr->y, player_ptr->x);
270         if (fresh_before) {
271             term_fresh_force();
272         }
273
274         pack_overflow(player_ptr);
275         if (!command_new) {
276             command_see = false;
277         }
278
279         PlayerEnergy energy(player_ptr);
280         energy.reset_player_turn();
281         auto is_knocked_out = effects->stun()->is_knocked_out();
282         auto is_paralyzed = effects->paralysis()->is_paralyzed();
283         if (player_ptr->phase_out) {
284             move_cursor_relative(player_ptr->y, player_ptr->x);
285             command_cmd = SPECIAL_KEY_BUILDING;
286             process_command(player_ptr);
287         } else if ((is_paralyzed || is_knocked_out) && !cheat_immortal) {
288             energy.set_player_turn_energy(100);
289         } else if (player_ptr->action == ACTION_REST) {
290             if (player_ptr->resting > 0) {
291                 player_ptr->resting--;
292                 if (!player_ptr->resting) {
293                     set_action(player_ptr, ACTION_NONE);
294                 }
295                 player_ptr->redraw |= (PR_ACTION);
296             }
297
298             energy.set_player_turn_energy(100);
299         } else if (player_ptr->action == ACTION_FISH) {
300             energy.set_player_turn_energy(100);
301         } else if (player_ptr->running) {
302             run_step(player_ptr, 0);
303         } else if (travel.run) {
304             travel_step(player_ptr);
305         } else if (command_rep) {
306             command_rep--;
307             player_ptr->redraw |= (PR_ACTION);
308             handle_stuff(player_ptr);
309             msg_flag = false;
310             prt("", 0, 0);
311             process_command(player_ptr);
312         } else {
313             move_cursor_relative(player_ptr->y, player_ptr->x);
314
315             player_ptr->window_flags |= PW_SIGHT_MONSTERS;
316             window_stuff(player_ptr);
317
318             can_save = true;
319             InputKeyRequestor(player_ptr, false).request_command();
320             can_save = false;
321             process_command(player_ptr);
322         }
323
324         pack_overflow(player_ptr);
325         if (player_ptr->energy_use) {
326             if (player_ptr->timewalk || player_ptr->energy_use > 400) {
327                 player_ptr->energy_need += player_ptr->energy_use * TURNS_PER_TICK / 10;
328             } else {
329                 player_ptr->energy_need += (int16_t)((int32_t)player_ptr->energy_use * ENERGY_NEED() / 100L);
330             }
331
332             if (effects->hallucination()->is_hallucinated()) {
333                 player_ptr->redraw |= (PR_MAP);
334             }
335
336             for (MONSTER_IDX m_idx = 1; m_idx < player_ptr->current_floor_ptr->m_max; m_idx++) {
337                 MonsterEntity *m_ptr;
338                 MonsterRaceInfo *r_ptr;
339                 m_ptr = &player_ptr->current_floor_ptr->m_list[m_idx];
340                 if (!m_ptr->is_valid()) {
341                     continue;
342                 }
343
344                 r_ptr = &monraces_info[m_ptr->ap_r_idx];
345
346                 // モンスターのシンボル/カラーの更新
347                 if (m_ptr->ml && r_ptr->visual_flags.has_any_of({ MonsterVisualType::MULTI_COLOR, MonsterVisualType::SHAPECHANGER })) {
348                     lite_spot(player_ptr, m_ptr->fy, m_ptr->fx);
349                 }
350
351                 // 出現して即魔法を使わないようにするフラグを落とす処理
352                 if (m_ptr->mflag.has(MonsterTemporaryFlagType::PREVENT_MAGIC)) {
353                     m_ptr->mflag.reset(MonsterTemporaryFlagType::PREVENT_MAGIC);
354                 }
355
356                 if (m_ptr->mflag.has(MonsterTemporaryFlagType::SANITY_BLAST)) {
357                     m_ptr->mflag.reset(MonsterTemporaryFlagType::SANITY_BLAST);
358                     sanity_blast(player_ptr, m_ptr, false);
359                 }
360
361                 // 感知中のモンスターのフラグを落とす処理
362                 // 感知したターンはMFLAG2_SHOWを落とし、次のターンに感知中フラグのMFLAG2_MARKを落とす
363                 if (m_ptr->mflag2.has(MonsterConstantFlagType::MARK)) {
364                     if (m_ptr->mflag2.has(MonsterConstantFlagType::SHOW)) {
365                         m_ptr->mflag2.reset(MonsterConstantFlagType::SHOW);
366                     } else {
367                         m_ptr->mflag2.reset(MonsterConstantFlagType::MARK);
368                         m_ptr->ml = false;
369                         update_monster(player_ptr, m_idx, false);
370                         if (player_ptr->health_who == m_idx) {
371                             player_ptr->redraw |= (PR_HEALTH);
372                         }
373                         if (player_ptr->riding == m_idx) {
374                             player_ptr->redraw |= (PR_UHEALTH);
375                         }
376
377                         lite_spot(player_ptr, m_ptr->fy, m_ptr->fx);
378                     }
379                 }
380             }
381
382             if (PlayerClass(player_ptr).equals(PlayerClassType::IMITATOR)) {
383                 auto mane_data = PlayerClass(player_ptr).get_specific_data<mane_data_type>();
384                 if (static_cast<int>(mane_data->mane_list.size()) > (player_ptr->lev > 44 ? 3 : player_ptr->lev > 29 ? 2
385                                                                                                                      : 1)) {
386                     mane_data->mane_list.pop_front();
387                 }
388
389                 mane_data->new_mane = false;
390                 player_ptr->redraw |= (PR_IMITATION);
391             }
392
393             if (player_ptr->action == ACTION_LEARN) {
394                 auto mane_data = PlayerClass(player_ptr).get_specific_data<bluemage_data_type>();
395                 mane_data->new_magic_learned = false;
396                 player_ptr->redraw |= (PR_ACTION);
397             }
398
399             if (player_ptr->timewalk && (player_ptr->energy_need > -1000)) {
400                 player_ptr->redraw |= (PR_MAP);
401                 rfu.set_flag(StatusRedrawingFlag::MONSTER_STATUSES);
402                 player_ptr->window_flags |= (PW_OVERHEAD | PW_DUNGEON);
403
404                 msg_print(_("「時は動きだす…」", "You feel time flowing around you once more."));
405                 msg_print(nullptr);
406                 player_ptr->timewalk = false;
407                 player_ptr->energy_need = ENERGY_NEED();
408
409                 handle_stuff(player_ptr);
410             }
411         }
412
413         if (!player_ptr->playing || player_ptr->is_dead) {
414             player_ptr->timewalk = false;
415             break;
416         }
417
418         auto sniper_data = PlayerClass(player_ptr).get_specific_data<sniper_data_type>();
419         if (player_ptr->energy_use && sniper_data && sniper_data->reset_concent) {
420             reset_concentration(player_ptr, true);
421         }
422
423         if (player_ptr->leaving) {
424             break;
425         }
426     }
427
428     update_smell(player_ptr->current_floor_ptr, player_ptr);
429 }
430
431 /*!
432  * @brief プレイヤーの行動エネルギーが充填される(=プレイヤーのターンが回る)毎に行われる処理  / process the effects per 100 energy at player speed.
433  */
434 void process_upkeep_with_speed(PlayerType *player_ptr)
435 {
436     if (!load && player_ptr->enchant_energy_need > 0 && !player_ptr->leaving) {
437         player_ptr->enchant_energy_need -= speed_to_energy(player_ptr->pspeed);
438     }
439
440     if (player_ptr->enchant_energy_need > 0) {
441         return;
442     }
443
444     while (player_ptr->enchant_energy_need <= 0) {
445         if (!load) {
446             check_music(player_ptr);
447         }
448
449         SpellHex spell_hex(player_ptr);
450         if (!load) {
451             spell_hex.decrease_mana();
452         }
453
454         if (!load) {
455             spell_hex.continue_revenge();
456         }
457
458         player_ptr->enchant_energy_need += ENERGY_NEED();
459     }
460 }