OSDN Git Service

Merge branch 'hengband:develop' into feature/refactoring
[hengbandforosx/hengbandosx.git] / src / monster / monster-processor-util.h
1 /*!
2  * @brief monster-processのための構造体群
3  * @date 2020/03/07
4  * @author Hourier
5  */
6
7 #pragma once
8
9 #include "monster-race/race-ability-flags.h"
10 #include "monster-race/race-behavior-flags.h"
11 #include "system/angband.h"
12 #include "util/flag-group.h"
13
14 struct turn_flags {
15     bool see_m;
16     bool aware;
17     bool is_riding_mon;
18     bool do_turn;
19     bool do_move;
20     bool do_view;
21     bool do_take;
22     bool must_alter_to_move;
23
24     bool did_open_door;
25     bool did_bash_door;
26     bool did_take_item;
27     bool did_kill_item;
28     bool did_move_body;
29     bool did_pass_wall;
30     bool did_kill_wall;
31 };
32
33 struct old_race_flags {
34     BIT_FLAGS old_r_flags1;
35     BIT_FLAGS old_r_flags2;
36     BIT_FLAGS old_r_flags3;
37     BIT_FLAGS old_r_flagsr;
38     EnumClassFlagGroup<MonsterAbilityType> old_r_ability_flags;
39     EnumClassFlagGroup<MonsterBehaviorType> old_r_behavior_flags;
40
41     byte old_r_blows0;
42     byte old_r_blows1;
43     byte old_r_blows2;
44     byte old_r_blows3;
45
46     byte old_r_cast_spell;
47 };
48
49 struct coordinate_candidate {
50     POSITION gy;
51     POSITION gx;
52     POSITION gdis;
53 };
54
55 struct monster_type;
56 turn_flags *init_turn_flags(MONSTER_IDX riding_idx, MONSTER_IDX m_idx, turn_flags *turn_flags_ptr);
57 old_race_flags *init_old_race_flags(old_race_flags *old_race_flags_ptr);
58 coordinate_candidate init_coordinate_candidate(void);
59
60 void store_enemy_approch_direction(int *mm, POSITION y, POSITION x);
61 void store_moves_val(int *mm, int y, int x);
62 void save_old_race_flags(MONRACE_IDX monster_race_idx, old_race_flags *old_race_flags_ptr);
63 SPEED decide_monster_speed(monster_type *m_ptr);