forked from crawl/crawl
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbranch.cc
238 lines (204 loc) · 5.26 KB
/
branch.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#include "AppHdr.h"
#include "branch.h"
#include "branch-data.h"
#include "itemname.h"
#include "player.h"
#include "stringutil.h"
#include "travel.h"
FixedVector<level_id, NUM_BRANCHES> brentry;
FixedVector<int, NUM_BRANCHES> brdepth;
FixedVector<int, NUM_BRANCHES> branch_bribe;
branch_type root_branch;
branch_iterator::branch_iterator() :
i(BRANCH_DUNGEON)
{
}
branch_iterator::operator bool() const
{
return i < NUM_BRANCHES;
}
const Branch* branch_iterator::operator*() const
{
static const branch_type branch_order[] = {
BRANCH_DUNGEON,
BRANCH_TEMPLE,
BRANCH_LAIR,
BRANCH_SWAMP,
BRANCH_SHOALS,
BRANCH_SNAKE,
BRANCH_SPIDER,
BRANCH_SLIME,
BRANCH_ORC,
BRANCH_ELF,
#if TAG_MAJOR_VERSION == 34
BRANCH_DWARF,
#endif
BRANCH_VAULTS,
#if TAG_MAJOR_VERSION == 34
BRANCH_BLADE,
BRANCH_FOREST,
#endif
BRANCH_CRYPT,
BRANCH_TOMB,
BRANCH_DEPTHS,
BRANCH_VESTIBULE,
BRANCH_DIS,
BRANCH_GEHENNA,
BRANCH_COCYTUS,
BRANCH_TARTARUS,
BRANCH_ZOT,
BRANCH_ABYSS,
BRANCH_PANDEMONIUM,
BRANCH_ZIGGURAT,
BRANCH_LABYRINTH,
BRANCH_BAZAAR,
BRANCH_TROVE,
BRANCH_SEWER,
BRANCH_OSSUARY,
BRANCH_BAILEY,
BRANCH_ICE_CAVE,
BRANCH_VOLCANO,
BRANCH_WIZLAB
};
COMPILE_CHECK(ARRAYSZ(branch_order) == NUM_BRANCHES);
if (i < NUM_BRANCHES)
return &branches[branch_order[i]];
else
return nullptr;
}
const Branch* branch_iterator::operator->() const
{
return **this;
}
branch_iterator& branch_iterator::operator++()
{
i++;
return *this;
}
branch_iterator branch_iterator::operator++(int)
{
branch_iterator copy = *this;
++(*this);
return copy;
}
const Branch& your_branch()
{
return branches[you.where_are_you];
}
bool at_branch_bottom()
{
return brdepth[you.where_are_you] == you.depth;
}
level_id current_level_parent()
{
// Never called from X[], we don't have to support levels you're not on.
if (!you.level_stack.empty())
return you.level_stack.back().id;
return find_up_level(level_id::current());
}
bool is_hell_subbranch(branch_type branch)
{
return branch >= BRANCH_FIRST_HELL
&& branch <= BRANCH_LAST_HELL
&& branch != BRANCH_VESTIBULE;
}
bool is_random_subbranch(branch_type branch)
{
return parent_branch(branch) == BRANCH_LAIR
&& branch != BRANCH_SLIME;
}
bool is_connected_branch(const Branch *branch)
{
return !(branch->branch_flags & BFLAG_NO_XLEV_TRAVEL);
}
bool is_connected_branch(branch_type branch)
{
ASSERT_RANGE(branch, 0, NUM_BRANCHES);
return is_connected_branch(&branches[branch]);
}
bool is_connected_branch(level_id place)
{
return is_connected_branch(place.branch);
}
branch_type branch_by_abbrevname(const string &branch, branch_type err)
{
for (branch_iterator it; it; ++it)
if (it->abbrevname && it->abbrevname == branch)
return it->id;
return err;
}
branch_type branch_by_shortname(const string &branch)
{
for (branch_iterator it; it; ++it)
if (it->shortname && it->shortname == branch)
return it->id;
return NUM_BRANCHES;
}
int current_level_ambient_noise()
{
return branches[you.where_are_you].ambient_noise;
}
branch_type get_branch_at(const coord_def& pos)
{
return level_id::current().get_next_level_id(pos).branch;
}
bool branch_is_unfinished(branch_type branch)
{
#if TAG_MAJOR_VERSION == 34
if (branch == BRANCH_DWARF
|| branch == BRANCH_FOREST
|| branch == BRANCH_BLADE)
{
return true;
}
#endif
return false;
}
branch_type parent_branch(branch_type branch)
{
if (brentry[branch].is_valid())
return brentry[branch].branch;
// If it's not in the game, use the default parent.
return branches[branch].parent_branch;
}
int runes_for_branch(branch_type branch)
{
switch (branch)
{
case BRANCH_VAULTS: return VAULTS_ENTRY_RUNES;
case BRANCH_ZIGGURAT: return ZIG_ENTRY_RUNES;
case BRANCH_ZOT: return ZOT_ENTRY_RUNES;
default: return 0;
}
}
/**
* Write a description of the rune(s), if any, this branch contains.
*
* @param br the branch in question
* @param remaining_only whether to only mention a rune if the player
* hasn't picked it up yet.
* @returns a string mentioning all applicable runes.
*/
string branch_rune_desc(branch_type br, bool remaining_only)
{
string desc;
vector<string> rune_names;
for (rune_type rune : branches[br].runes)
if (!(remaining_only && you.runes[rune]))
rune_names.push_back(rune_type_name(rune));
if (!rune_names.empty())
{
desc = make_stringf("This branch contains the %s rune%s of Zot.",
comma_separated_line(begin(rune_names),
end(rune_names)).c_str(),
rune_names.size() > 1 ? "s" : "");
}
return desc;
}
branch_type rune_location(rune_type rune)
{
for (const auto& br : branches)
if (find(br.runes.begin(), br.runes.end(), rune) != br.runes.end())
return br.id;
return NUM_BRANCHES;
}