OSDN Git Service

Merge pull request #1411 from sikabane-works/feature/refactor-ego-id-enum-class
[hengbandforosx/hengbandosx.git] / src / dungeon / dungeon.h
1 #pragma once
2
3 #include <string>
4 #include <vector>
5
6 #include "dungeon/dungeon-flag-types.h"
7 #include "monster-race/race-ability-flags.h"
8 #include "monster-race/race-behavior-flags.h"
9 #include "monster-race/race-flags-resistance.h"
10 #include "monster-race/race-kind-flags.h"
11 #include "monster-race/race-resistance-mask.h"
12 #include "monster-race/race-visual-flags.h"
13 #include "system/angband.h"
14 #include "util/flag-group.h"
15
16 #define DUNGEON_FEAT_PROB_NUM 3
17
18 #define DUNGEON_ANGBAND 1
19 #define DUNGEON_GALGALS 2
20 #define DUNGEON_ORC 3
21 #define DUNGEON_MAZE 4
22 #define DUNGEON_DRAGON 5
23 #define DUNGEON_GRAVE 6
24 #define DUNGEON_WOOD 7
25 #define DUNGEON_VOLCANO 8
26 #define DUNGEON_HELL 9
27 #define DUNGEON_HEAVEN 10
28 #define DUNGEON_OCEAN 11
29 #define DUNGEON_CASTLE 12
30 #define DUNGEON_CTH 13
31 #define DUNGEON_MOUNTAIN 14
32 #define DUNGEON_GOLD 15
33 #define DUNGEON_NO_MAGIC 16
34 #define DUNGEON_NO_MELEE 17
35 #define DUNGEON_CHAMELEON 18
36 #define DUNGEON_DARKNESS 19
37 #define DUNGEON_MAX 19
38
39 struct feat_prob {
40     FEAT_IDX feat{}; /* Feature tile */
41     PERCENTAGE percent{}; /* Chance of type */
42 };
43
44 /* A structure for the != dungeon types */
45 struct dungeon_type {
46     DUNGEON_IDX idx{};
47
48     std::string name; /* Name */
49     std::string text; /* Description */
50
51     POSITION dy{};
52     POSITION dx{};
53
54     feat_prob floor[DUNGEON_FEAT_PROB_NUM]{}; /* Floor probability */
55     feat_prob fill[DUNGEON_FEAT_PROB_NUM]{}; /* Cave wall probability */
56     FEAT_IDX outer_wall{}; /* Outer wall tile */
57     FEAT_IDX inner_wall{}; /* Inner wall tile */
58     FEAT_IDX stream1{}; /* stream tile */
59     FEAT_IDX stream2{}; /* stream tile */
60
61     DEPTH mindepth{}; /* Minimal depth */
62     DEPTH maxdepth{}; /* Maximal depth */
63     PLAYER_LEVEL min_plev{}; /* Minimal plev needed to enter -- it's an anti-cheating mesure */
64     BIT_FLAGS16 pit{};
65     BIT_FLAGS16 nest{};
66     BIT_FLAGS8 mode{}; /* Mode of combinaison of the monster flags */
67
68     int min_m_alloc_level{}; /* Minimal number of monsters per level */
69     int max_m_alloc_chance{}; /* There is a 1/max_m_alloc_chance chance per round of creating a new monster */
70
71     EnumClassFlagGroup<DungeonFeatureType> flags{}; /* Dungeon Flags */
72
73     BIT_FLAGS mflags1{}; /* The monster flags that are allowed */
74     BIT_FLAGS mflags2{};
75     BIT_FLAGS mflags3{};
76     BIT_FLAGS mflags7{};
77     BIT_FLAGS mflags8{};
78     BIT_FLAGS mflags9{};
79
80     EnumClassFlagGroup<MonsterAbilityType> mon_ability_flags;
81     EnumClassFlagGroup<MonsterBehaviorType> mon_behavior_flags;
82     EnumClassFlagGroup<MonsterVisualType> mon_visual_flags;
83     EnumClassFlagGroup<MonsterKindType> mon_kind_flags;
84     EnumClassFlagGroup<MonsterResistanceType> mon_resistance_flags;
85
86     char r_char[5]{}; /* Monster race allowed */
87     KIND_OBJECT_IDX final_object{}; /* The object you'll find at the bottom */
88     ARTIFACT_IDX final_artifact{}; /* The artifact you'll find at the bottom */
89     MONRACE_IDX final_guardian{}; /* The artifact's guardian. If an artifact is specified, then it's NEEDED */
90
91     PROB special_div{}; /* % of monsters affected by the flags/races allowed, to add some variety */
92     int tunnel_percent{};
93     int obj_great{};
94     int obj_good{};
95 };
96
97 extern std::vector<DEPTH> max_dlv;
98 extern std::vector<dungeon_type> d_info;
99
100 class PlayerType;
101 DUNGEON_IDX choose_dungeon(concptr note, POSITION y, POSITION x);
102 bool is_in_dungeon(PlayerType *player_ptr);