summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2010-01-12 00:01:16 +0100
committerBardur Arantsson <bardur@scientician.net>2010-01-12 00:06:50 +0100
commit6ce1c07d3493add43a2ddea81bcc96b249b58892 (patch)
treed793bf31a05db8c9a6ce63058d8555c7c8463cf8
parent380a7102efd4233fabfca8a9a0184408bd597ded (diff)
Remove ALLOW_WIZARD option.
-rw-r--r--src/config.h5
-rw-r--r--src/dungeon.c18
-rw-r--r--src/wizard2.c53
3 files changed, 1 insertions, 75 deletions
diff --git a/src/config.h b/src/config.h
index 4366a6bf..40f198d6 100644
--- a/src/config.h
+++ b/src/config.h
@@ -153,11 +153,6 @@
/*
- * OPTION: Hack -- Compile in support for "Wizard Commands"
- */
-#define ALLOW_WIZARD
-
-/*
* OPTION: Hack -- Compile in support for "Spoiler Generation"
*/
#define ALLOW_SPOILERS
diff --git a/src/dungeon.c b/src/dungeon.c
index fd5afeb9..bcda2da1 100644
--- a/src/dungeon.c
+++ b/src/dungeon.c
@@ -3458,13 +3458,8 @@ static void process_world(void)
*/
static bool enter_wizard_mode(void)
{
-#if 0
- /* Ask first time */
- if (!(noscore & 0x0002))
-#else
/* Ask first time, but not while loading a dead char with the -w option */
if (!noscore && !(p_ptr->chp < 0))
-#endif
{
/* Mention effects */
msg_print("Wizard mode is for debugging and experimenting.");
@@ -3486,19 +3481,13 @@ static bool enter_wizard_mode(void)
}
-#ifdef ALLOW_WIZARD
-
/*
* Verify use of "debug" commands
*/
static bool enter_debug_mode(void)
{
/* Ask first time */
-#if 0
- if (!(noscore & 0x0008))
-#else
-if (!noscore && !wizard)
-#endif
+ if (!noscore && !wizard)
{
/* Mention effects */
msg_print("The debug commands are for debugging and experimenting.");
@@ -3525,8 +3514,6 @@ if (!noscore && !wizard)
*/
extern void do_cmd_debug(void);
-#endif /* ALLOW_WIZARD */
-
/*
* Parse and execute the current command
@@ -3575,7 +3562,6 @@ static void process_command(void)
#endif
-#ifdef ALLOW_WIZARD
/*** Wizard Commands ***/
@@ -3613,8 +3599,6 @@ static void process_command(void)
break;
}
-#endif /* ALLOW_WIZARD */
-
/*** Inventory Commands ***/
diff --git a/src/wizard2.c b/src/wizard2.c
index 99d0eb41..2f018208 100644
--- a/src/wizard2.c
+++ b/src/wizard2.c
@@ -150,8 +150,6 @@ void do_cmd_rerate(void)
}
-#ifdef ALLOW_WIZARD
-
/*
* Create the artifact of the specified number -- DAN
*
@@ -182,11 +180,6 @@ static void wiz_create_named_art()
/* Ignore "empty" artifacts */
if (!a_ptr->name) return;
-#if 0
- /* Ignore generated artifacts */
- if (a_ptr->cur_num) return;
-#endif
-
/* Acquire the "kind" index */
i = lookup_kind(a_ptr->tval, a_ptr->sval);
@@ -199,38 +192,7 @@ static void wiz_create_named_art()
/* Save the name */
q_ptr->name1 = a_idx;
-#if 0 /* Old ugly method */
- /* Extract the fields */
- q_ptr->pval = a_ptr->pval;
- q_ptr->ac = a_ptr->ac;
- q_ptr->dd = a_ptr->dd;
- q_ptr->ds = a_ptr->ds;
- q_ptr->to_a = a_ptr->to_a;
- q_ptr->to_h = a_ptr->to_h;
- q_ptr->to_d = a_ptr->to_d;
- q_ptr->weight = a_ptr->weight;
-
- /* Hack -- acquire "cursed" flag */
- if (a_ptr->flags3 & (TR3_CURSED)) q_ptr->ident |= (IDENT_CURSED);
-
- k_ptr = &k_info[q_ptr->k_idx];
-
- /* Extract some flags */
- object_flags(q_ptr, &f1, &f2, &f3, &f4, &f5, &esp);
-
- /* Hack give a basic exp/exp level to an object that needs it */
- if (f4 & TR4_LEVELS)
- {
- q_ptr->elevel = (k_ptr->level / 10) + 1;
- q_ptr->exp = player_exp[q_ptr->elevel - 1];
- }
-
- random_artifact_resistance(q_ptr);
-
- a_ptr->cur_num = 1;
-#else
apply_magic(q_ptr, -1, TRUE, TRUE, TRUE);
-#endif
/* Identify it fully */
object_aware(q_ptr);
@@ -1173,11 +1135,6 @@ static void wiz_quantity_item(object_type *o_ptr)
char tmp_val[100];
-#if 0 /* DG -- A Wizard can do whatever he/she/it wants */
- /* Never duplicate artifacts */
- if (artifact_p(o_ptr) || o_ptr->art_name) return;
-#endif
-
tmp_qnt = o_ptr->number;
/* Default */
@@ -2053,13 +2010,3 @@ void do_cmd_debug(void)
break;
}
}
-
-
-#else
-
-#ifdef MACINTOSH
-static int i = 0;
-#endif
-
-#endif
-