summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-08 23:13:47 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-08 23:13:47 +0000
commit88c3d55edbc70cf7da43226902a3f730f7481f28 (patch)
treef94b8abba4d19c1479c9e1311b666697f8cc4cfb /crawl-ref/source/acr.cc
parentc5a784f95ea94be383dc49f12f5aea1b738b6d65 (diff)
downloadcrawl-ref-88c3d55edbc70cf7da43226902a3f730f7481f28.tar.gz
crawl-ref-88c3d55edbc70cf7da43226902a3f730f7481f28.zip
Add still more whitespace fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4155 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc26
1 files changed, 13 insertions, 13 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 39f77054b2..89d6fcc0a1 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -1431,7 +1431,7 @@ static void _input()
crawl_state.waiting_for_command = true;
c_input_reset(true);
-
+
const command_type cmd = _get_next_cmd();
crawl_state.waiting_for_command = false;
@@ -1484,60 +1484,60 @@ static void _input()
{
PlaceInfo& curr_PlaceInfo = you.get_place_info();
PlaceInfo delta;
-
+
delta.turns_total++;
delta.elapsed_total += you.time_taken;
-
+
switch(you.running)
{
case RMODE_INTERLEVEL:
delta.turns_interlevel++;
delta.elapsed_interlevel += you.time_taken;
break;
-
+
case RMODE_EXPLORE_GREEDY:
case RMODE_EXPLORE:
delta.turns_explore++;
delta.elapsed_explore += you.time_taken;
break;
-
+
case RMODE_TRAVEL:
delta.turns_travel++;
delta.elapsed_travel += you.time_taken;
break;
-
+
default:
// prev_was_rest is needed so that the turn in which
// a player is interrupted from resting is counted
// as a resting turn, rather than "other".
static bool prev_was_rest = false;
-
+
if (!you.delay_queue.empty() &&
you.delay_queue.front().type == DELAY_REST)
prev_was_rest = true;
-
+
if (prev_was_rest)
{
delta.turns_resting++;
delta.elapsed_resting += you.time_taken;
-
+
}
else
{
delta.turns_other++;
delta.elapsed_other += you.time_taken;
}
-
+
if (you.delay_queue.empty() ||
you.delay_queue.front().type != DELAY_REST)
prev_was_rest = false;
-
+
break;
}
-
+
you.global_info += delta;
you.global_info.assert_validity();
-
+
curr_PlaceInfo += delta;
curr_PlaceInfo.assert_validity();
}