summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-08-02 20:06:34 -0400
committerJesse Luehrs <doy@tozt.net>2014-08-02 20:10:40 -0400
commit4e1b44a4905cccd1a8509a91f9d10d7a06f956e7 (patch)
tree62b76b8e00325f1f7a96c646f10b5a5fe62919e6 /crawl-ref/source/player.cc
parent756871af9b64cee576375e9ed5f73cf3cfa1b453 (diff)
downloadcrawl-ref-4e1b44a4905cccd1a8509a91f9d10d7a06f956e7.tar.gz
crawl-ref-4e1b44a4905cccd1a8509a91f9d10d7a06f956e7.zip
allow iterating over branches in a non-enum order (8742)
This allows us to have a consistent and logical ordering of branches without requiring the branch enum itself to be reordered (which could have save compatibility implications). The new ordering of branches just moves Depths to the place in the ordering that it already is planned to go on the next major save compat bump, but other changes are possible, if desired. All places in the code that iterate over branches have been updated to use the new iterator except for code dealing with save files, which still uses enum order, so that we can change the display ordering without affecting saves.
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 78d61a056f..e9954202dd 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -5892,10 +5892,10 @@ void player::init()
constricting = 0;
// Protected fields:
- for (int i = 0; i < NUM_BRANCHES; i++)
+ for (branch_iterator it; it; ++it)
{
- branch_info[i].branch = (branch_type)i;
- branch_info[i].assert_validity();
+ branch_info[it->id].branch = it->id;
+ branch_info[it->id].assert_validity();
}
}
@@ -7869,14 +7869,14 @@ vector<PlaceInfo> player::get_all_place_info(bool visited_only,
{
vector<PlaceInfo> list;
- for (int i = 0; i < NUM_BRANCHES; i++)
+ for (branch_iterator it; it; ++it)
{
- if (visited_only && branch_info[i].num_visits == 0
- || dungeon_only && !is_connected_branch((branch_type)i))
+ if (visited_only && branch_info[it->id].num_visits == 0
+ || dungeon_only && !is_connected_branch(*it))
{
continue;
}
- list.push_back(branch_info[i]);
+ list.push_back(branch_info[it->id]);
}
return list;