summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-12 03:18:07 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-12 03:18:07 -0800
commitce5dd6cec328845983bd62f5ffc32beb6c292ab9 (patch)
treeb9d3f3af10051ca178141a343947b05272425ada /crawl-ref/source
parent1ad42555a20a376ca476a14c44ad80ddefa4163e (diff)
downloadcrawl-ref-ce5dd6cec328845983bd62f5ffc32beb6c292ab9.tar.gz
crawl-ref-ce5dd6cec328845983bd62f5ffc32beb6c292ab9.zip
New macro DEBUG_TEMPLES
The macro DEBUG_TEMPLES can be defined to get diagnostics messages regarding the main temple and overflow temples.
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/dungeon.cc18
-rw-r--r--crawl-ref/source/ng-init.cc10
2 files changed, 25 insertions, 3 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index b42e2b1f82..401c53ab1d 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -55,6 +55,10 @@
#include "traps.h"
#include "travel.h"
+#ifdef DEBUG_DIAGNOSTICS
+#define DEBUG_TEMPLES 1
+#endif
+
#ifdef WIZARD
#include "cio.h" // for cancelable_get_line()
#endif
@@ -1712,7 +1716,7 @@ static void _build_overflow_temples(int level_number)
{
// We've already placed a specialized temple for this
// god, so do nothing.
-#ifdef DEBUG_DIAGNOSTICS
+#ifdef DEBUG_TEMPLES
mprf(MSGCH_DIAGNOSTICS, "Already placed specialized "
"single-altar temple for %s", name.c_str());
#endif
@@ -1722,7 +1726,7 @@ static void _build_overflow_temples(int level_number)
vault_tag = make_stringf("temple_overflow_%s", name.c_str());
vault = random_map_for_tag(vault_tag, true);
-#ifdef DEBUG_DIAGNOSTICS
+#ifdef DEBUG_TEMPLES
if (vault == NULL)
mprf(MSGCH_DIAGNOSTICS, "Couldn't find overflow temple "
"for god %s", name.c_str());
@@ -1749,7 +1753,17 @@ static void _build_overflow_temples(int level_number)
return;
if (!_ensure_vault_placed(_build_vaults(level_number, vault), false))
+ {
+#ifdef DEBUG_TEMPLES
+ mprf(MSGCH_DIAGNOSTICS, "Couldn't place overlfow temple '%s', "
+ "vetoing level.", vault->name.c_str());
+#endif
return;
+ }
+#ifdef DEBUG_TEMPLES
+ mprf(MSGCH_DIAGNOSTICS, "Placed overflow temple %s",
+ vault->name.c_str());
+#endif
}
_current_temple_hash = NULL; // XXX: hack!
}
diff --git a/crawl-ref/source/ng-init.cc b/crawl-ref/source/ng-init.cc
index 9f1d1596b4..588d42b505 100644
--- a/crawl-ref/source/ng-init.cc
+++ b/crawl-ref/source/ng-init.cc
@@ -18,6 +18,10 @@
#include "religion.h"
#include "store.h"
+#ifdef DEBUG_DIAGNOSTICS
+#define DEBUG_TEMPLES 1
+#endif
+
static unsigned char _random_potion_description()
{
int desc, nature, colour;
@@ -129,7 +133,7 @@ void initialise_temples()
main_temple->name.c_str());
}
-#ifdef DEBUG_DIAGNOSITCS
+#ifdef DEBUG_TEMPLES
mprf(MSGCH_DIAGNOSTICS, "Chose main temple %s, size %lu",
main_temple->name.c_str(), main_temple_size);
#endif
@@ -149,6 +153,10 @@ void initialise_temples()
god_list.pop_back();
}
+#ifdef DEBUG_TEMPLES
+ mprf(MSGCH_DIAGNOSTICS, "%lu overflow altars", overflow_gods.size());
+#endif
+
CrawlVector &temple_gods
= you.props[TEMPLE_GODS_KEY].new_vector(SV_BYTE);