OSDN Git Service

[Refactor] #37353 コメント整理。 / Refactor comments.
[hengbandforosx/hengbandosx.git] / src / wizard2.c
1 /*!
2  * @file wizard2.c
3  * @brief ウィザードモードの処理(特別処理中心) / Wizard commands
4  * @date 2014/09/07
5  * @author
6  * Copyright (c) 1997 Ben Harrison, and others<br>
7  * This software may be copied and distributed for educational, research,
8  * and not for profit purposes provided that this copyright and statement
9  * are included in all such copies.  Other copyrights may also apply.<br>
10  * 2014 Deskull rearranged comment for Doxygen.<br>
11  */
12
13 #include "angband.h"
14 #include "selfinfo.h"
15 #include "patron.h"
16 #include "mutation.h"
17 #include "quest.h"
18 #include "artifact.h"
19 #include "player-status.h"
20
21 #include "spells.h"
22 #include "spells-object.h"
23 #include "spells-summon.h"
24 #include "spells-status.h"
25 #include "spells-world.h"
26 #include "spells-floor.h"
27
28 #include "object-hook.h"
29 #include "monster-status.h"
30
31 #include "floor.h"
32 #include "floor-save.h"
33
34 #ifdef ALLOW_WIZARD
35
36 /*!
37  * @brief 必ず成功するウィザードモード用次元の扉処理 / Wizard Dimension Door
38  * @return 実際にテレポートを行ったらTRUEを返す
39  */
40 static bool wiz_dimension_door(void)
41 {
42         POSITION x = 0, y = 0;
43         if (!tgt_pt(&x, &y)) return FALSE;
44         teleport_player_to(y, x, TELEPORT_NONMAGICAL);
45         return (TRUE);
46 }
47
48 /*!
49  * @brief 指定されたIDの固定アーティファクトを生成する / Create the artifact of the specified number
50  * @return なし
51  */
52 static void wiz_create_named_art(void)
53 {
54         char tmp_val[10] = "";
55         ARTIFACT_IDX a_idx;
56
57         /* Query */
58         if (!get_string("Artifact ID:", tmp_val, 3)) return;
59
60         /* Extract */
61         a_idx = (ARTIFACT_IDX)atoi(tmp_val);
62         if(a_idx < 0) a_idx = 0;
63         if(a_idx >= max_a_idx) a_idx = 0; 
64
65         /* Create the artifact */
66         (void)create_named_art(a_idx, p_ptr->y, p_ptr->x);
67
68         /* All done */
69         msg_print("Allocated.");
70 }
71
72 /*!
73  * @brief ウィザードモード用モンスターの群れ生成 / Summon a horde of monsters
74  * @return なし
75  */
76 static void do_cmd_summon_horde(void)
77 {
78         POSITION wy = p_ptr->y, wx = p_ptr->x;
79         int attempts = 1000;
80
81         while (--attempts)
82         {
83                 scatter(&wy, &wx, p_ptr->y, p_ptr->x, 3, 0);
84                 if (cave_empty_bold(wy, wx)) break;
85         }
86
87         (void)alloc_horde(wy, wx);
88 }
89
90 /*!
91  * @brief 32ビット変数のビット配列を並べて描画する / Output a long int in binary format.
92  * @return なし
93  */
94 static void prt_binary(BIT_FLAGS flags, int row, int col)
95 {
96         int i;
97         u32b bitmask;
98
99         /* Scan the flags */
100         for (i = bitmask = 1; i <= 32; i++, bitmask *= 2)
101         {
102                 /* Dump set bits */
103                 if (flags & bitmask)
104                 {
105                         Term_putch(col++, row, TERM_BLUE, '*');
106                 }
107
108                 /* Dump unset bits */
109                 else
110                 {
111                         Term_putch(col++, row, TERM_WHITE, '-');
112                 }
113         }
114 }
115
116
117 #define K_MAX_DEPTH 110 /*!< アイテムの階層毎生成率を表示する最大階 */
118
119 /*!
120  * @brief アイテムの階層毎生成率を表示する / Output a rarity graph for a type of object.
121  * @param tval ベースアイテムの大項目ID
122  * @param sval ベースアイテムの小項目ID
123  * @param row 表示列
124  * @param col 表示行
125  * @return なし
126  */
127 static void prt_alloc(OBJECT_TYPE_VALUE tval, OBJECT_SUBTYPE_VALUE sval, TERM_LEN row, TERM_LEN col)
128 {
129         int i, j;
130         int home = 0;
131         u32b rarity[K_MAX_DEPTH];
132         u32b total[K_MAX_DEPTH];
133         s32b display[22];
134         concptr r = "+---Rate---+";
135         object_kind *k_ptr;
136
137
138         /* Get the entry */
139         alloc_entry *table = alloc_kind_table;
140
141         /* Wipe the tables */
142         (void)C_WIPE(rarity, K_MAX_DEPTH, u32b);
143         (void)C_WIPE(total, K_MAX_DEPTH, u32b);
144         (void)C_WIPE(display, 22, s32b);
145
146         /* Scan all entries */
147         for (i = 0; i < K_MAX_DEPTH; i++)
148         {
149                 int total_frac = 0;
150                 for (j = 0; j < alloc_kind_size; j++)
151                 {
152                         PERCENTAGE prob = 0;
153
154                         if (table[j].level <= i)
155                         {
156                                 prob = table[j].prob1 * GREAT_OBJ * K_MAX_DEPTH;
157                         }
158                         else if (table[j].level - 1 > 0)
159                         {
160                                 prob = table[j].prob1 * i * K_MAX_DEPTH / (table[j].level - 1);
161                         }
162
163                         /* Acquire this kind */
164                         k_ptr = &k_info[table[j].index];
165
166                         /* Accumulate probabilities */
167                         total[i] += prob / (GREAT_OBJ * K_MAX_DEPTH);
168                         total_frac += prob % (GREAT_OBJ * K_MAX_DEPTH);
169
170                         /* Accumulate probabilities */
171                         if ((k_ptr->tval == tval) && (k_ptr->sval == sval))
172                         {
173                                 home = k_ptr->level;
174                                 rarity[i] += prob / (GREAT_OBJ * K_MAX_DEPTH);
175                         }
176                 }
177                 total[i] += total_frac / (GREAT_OBJ * K_MAX_DEPTH);
178         }
179
180         /* Calculate probabilities for each range */
181         for (i = 0; i < 22; i++)
182         {
183                 /* Shift the values into view */
184                 int possibility = 0;
185                 for (j = i * K_MAX_DEPTH / 22; j < (i + 1) * K_MAX_DEPTH / 22; j++)
186                         possibility += rarity[j] * 100000 / total[j];
187                 display[i] = possibility / 5;
188         }
189
190         /* Graph the rarities */
191         for (i = 0; i < 22; i++)
192         {
193                 Term_putch(col, row + i + 1, TERM_WHITE,  '|');
194
195                 prt(format("%2dF", (i * 5)), row + i + 1, col);
196
197
198                 /* Note the level */
199                 if ((i * K_MAX_DEPTH / 22 <= home) && (home < (i + 1) * K_MAX_DEPTH / 22))
200                 {
201                         c_prt(TERM_RED, format("%3d.%04d%%", display[i] / 1000, display[i] % 1000), row + i + 1, col + 3);
202                 }
203                 else
204                 {
205                         c_prt(TERM_WHITE, format("%3d.%04d%%", display[i] / 1000, display[i] % 1000), row + i + 1, col + 3);
206                 }
207         }
208
209         /* Make it look nice */
210         prt(r, row, col);
211 }
212
213 /*!
214  * @brief プレイヤーの職業を変更する
215  * @return なし
216  * @todo 魔法領域の再選択などがまだ不完全、要実装。
217  */
218 static void do_cmd_wiz_reset_class(void)
219 {
220         int tmp_int;
221         char tmp_val[160];
222         char ppp[80];
223
224         /* Prompt */
225         sprintf(ppp, "Class (0-%d): ", MAX_CLASS - 1);
226
227         /* Default */
228         sprintf(tmp_val, "%d", p_ptr->pclass);
229
230         /* Query */
231         if (!get_string(ppp, tmp_val, 2)) return;
232
233         /* Extract */
234         tmp_int = atoi(tmp_val);
235
236         /* Verify */
237         if (tmp_int < 0 || tmp_int >= MAX_CLASS) return;
238
239         /* Save it */
240         p_ptr->pclass = (byte_hack)tmp_int;
241
242         /* Redraw inscription */
243         p_ptr->window |= (PW_PLAYER);
244
245         /* {.} and {$} effect p_ptr->warning and TRC_TELEPORT_SELF */
246         p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
247
248         handle_stuff();
249 }
250
251
252 /*!
253  * @brief ウィザードモード用処理としてターゲット中の相手をテレポートバックする / Hack -- Teleport to the target
254  * @return なし
255  */
256 static void do_cmd_wiz_bamf(void)
257 {
258         /* Must have a target */
259         if (!target_who) return;
260
261         /* Teleport to the target */
262         teleport_player_to(target_row, target_col, TELEPORT_NONMAGICAL);
263 }
264
265
266 /*!
267  * @brief プレイヤーの現能力値を調整する
268  * Aux function for "do_cmd_wiz_change()".      -RAK-
269  * @return なし
270  */
271 static void do_cmd_wiz_change_aux(void)
272 {
273         int i, j;
274         int tmp_int;
275         long tmp_long;
276         s16b tmp_s16b;
277         char tmp_val[160];
278         char ppp[80];
279
280
281         /* Query the stats */
282         for (i = 0; i < A_MAX; i++)
283         {
284                 /* Prompt */
285                 sprintf(ppp, "%s (3-%d): ", stat_names[i], p_ptr->stat_max_max[i]);
286
287                 /* Default */
288                 sprintf(tmp_val, "%d", p_ptr->stat_max[i]);
289
290                 /* Query */
291                 if (!get_string(ppp, tmp_val, 3)) return;
292
293                 /* Extract */
294                 tmp_int = atoi(tmp_val);
295
296                 /* Verify */
297                 if (tmp_int > p_ptr->stat_max_max[i]) tmp_int = p_ptr->stat_max_max[i];
298                 else if (tmp_int < 3) tmp_int = 3;
299
300                 /* Save it */
301                 p_ptr->stat_cur[i] = p_ptr->stat_max[i] = (BASE_STATUS)tmp_int;
302         }
303
304
305         /* Default */
306         sprintf(tmp_val, "%d", WEAPON_EXP_MASTER);
307
308         /* Query */
309         if (!get_string(_("熟練度: ", "Proficiency: "), tmp_val, 9)) return;
310
311         /* Extract */
312         tmp_s16b = (s16b)atoi(tmp_val);
313
314         /* Verify */
315         if (tmp_s16b < WEAPON_EXP_UNSKILLED) tmp_s16b = WEAPON_EXP_UNSKILLED;
316         if (tmp_s16b > WEAPON_EXP_MASTER) tmp_s16b = WEAPON_EXP_MASTER;
317
318         for (j = 0; j <= TV_WEAPON_END - TV_WEAPON_BEGIN; j++)
319         {
320                 for (i = 0;i < 64;i++)
321                 {
322                         p_ptr->weapon_exp[j][i] = tmp_s16b;
323                         if (p_ptr->weapon_exp[j][i] > s_info[p_ptr->pclass].w_max[j][i]) p_ptr->weapon_exp[j][i] = s_info[p_ptr->pclass].w_max[j][i];
324                 }
325         }
326
327         for (j = 0; j < 10; j++)
328         {
329                 p_ptr->skill_exp[j] = tmp_s16b;
330                 if (p_ptr->skill_exp[j] > s_info[p_ptr->pclass].s_max[j]) p_ptr->skill_exp[j] = s_info[p_ptr->pclass].s_max[j];
331         }
332
333         for (j = 0; j < 32; j++)
334                 p_ptr->spell_exp[j] = (tmp_s16b > SPELL_EXP_MASTER ? SPELL_EXP_MASTER : tmp_s16b);
335         for (; j < 64; j++)
336                 p_ptr->spell_exp[j] = (tmp_s16b > SPELL_EXP_EXPERT ? SPELL_EXP_EXPERT : tmp_s16b);
337
338         /* Default */
339         sprintf(tmp_val, "%ld", (long)(p_ptr->au));
340
341         /* Query */
342         if (!get_string("Gold: ", tmp_val, 9)) return;
343
344         /* Extract */
345         tmp_long = atol(tmp_val);
346
347         /* Verify */
348         if (tmp_long < 0) tmp_long = 0L;
349
350         /* Save */
351         p_ptr->au = tmp_long;
352
353         /* Default */
354         sprintf(tmp_val, "%ld", (long)(p_ptr->max_exp));
355
356         /* Query */
357         if (!get_string("Experience: ", tmp_val, 9)) return;
358
359         /* Extract */
360         tmp_long = atol(tmp_val);
361
362         /* Verify */
363         if (tmp_long < 0) tmp_long = 0L;
364
365         if (p_ptr->prace != RACE_ANDROID)
366         {
367                 /* Save */
368                 p_ptr->max_exp = tmp_long;
369                 p_ptr->exp = tmp_long;
370
371                 /* Update */
372                 check_experience();
373         }
374 }
375
376
377 /*!
378  * @brief プレイヤーの現能力値を調整する(メインルーチン)
379  * Change various "permanent" player variables.
380  * @return なし
381  */
382 static void do_cmd_wiz_change(void)
383 {
384         /* Interact */
385         do_cmd_wiz_change_aux();
386         do_cmd_redraw();
387 }
388
389
390 /*!
391  * @brief アイテムの詳細ステータスを表示する / 
392  * Change various "permanent" player variables.
393  * @param o_ptr 詳細を表示するアイテム情報の参照ポインタ
394  * @return なし
395  * @details
396  * Wizard routines for creating objects         -RAK-
397  * And for manipulating them!                   -Bernd-
398  *
399  * This has been rewritten to make the whole procedure
400  * of debugging objects much easier and more comfortable.
401  *
402  * The following functions are meant to play with objects:
403  * Create, modify, roll for them (for statistic purposes) and more.
404  * The original functions were by RAK.
405  * The function to show an item's debug information was written
406  * by David Reeve Sward <sward+@CMU.EDU>.
407  *                             Bernd (wiebelt@mathematik.hu-berlin.de)
408  *
409  * Here are the low-level functions
410  * - wiz_display_item()
411  *     display an item's debug-info
412  * - wiz_create_itemtype()
413  *     specify tval and sval (type and subtype of object)
414  * - wiz_tweak_item()
415  *     specify pval, +AC, +tohit, +todam
416  *     Note that the wizard can leave this function anytime,
417  *     thus accepting the default-values for the remaining values.
418  *     pval comes first now, since it is most important.
419  * - wiz_reroll_item()
420  *     apply some magic to the item or current_world_ptr->game_turn it into an artifact.
421  * - wiz_roll_item()
422  *     Get some statistics about the rarity of an item:
423  *     We create a lot of fake items and see if they are of the
424  *     same type (tval and sval), then we compare pval and +AC.
425  *     If the fake-item is better or equal it is counted.
426  *     Note that cursed items that are better or equal (absolute values)
427  *     are counted, too.
428  *     HINT: This is *very* useful for balancing the game!
429  * - wiz_quantity_item()
430  *     change the quantity of an item, but be sane about it.
431  *
432  * And now the high-level functions
433  * - do_cmd_wiz_play()
434  *     play with an existing object
435  * - wiz_create_item()
436  *     create a new object
437  *
438  * Note -- You do not have to specify "pval" and other item-properties
439  * directly. Just apply magic until you are satisfied with the item.
440  *
441  * Note -- For some items (such as wands, staffs, some rings, etc), you
442  * must apply magic, or you will get "broken" or "uncharged" objects.
443  *
444  * Note -- Redefining artifacts via "do_cmd_wiz_play()" may destroy
445  * the artifact.  Be careful.
446  *
447  * Hack -- this function will allow you to create multiple artifacts.
448  * This "feature" may induce crashes or other nasty effects.
449  * Just display an item's properties (debug-info)
450  * Originally by David Reeve Sward <sward+@CMU.EDU>
451  * Verbose item flags by -Bernd-
452  */
453 static void wiz_display_item(object_type *o_ptr)
454 {
455         int i, j = 13;
456         BIT_FLAGS flgs[TR_FLAG_SIZE];
457         char buf[256];
458         object_flags(o_ptr, flgs);
459
460         /* Clear the screen */
461         for (i = 1; i <= 23; i++) prt("", i, j - 2);
462
463         prt_alloc(o_ptr->tval, o_ptr->sval, 1, 0);
464
465         /* Describe fully */
466         object_desc(buf, o_ptr, OD_STORE);
467
468         prt(buf, 2, j);
469
470         prt(format("kind = %-5d  level = %-4d  tval = %-5d  sval = %-5d",
471                    o_ptr->k_idx, k_info[o_ptr->k_idx].level,
472                    o_ptr->tval, o_ptr->sval), 4, j);
473
474         prt(format("number = %-3d  wgt = %-6d  ac = %-5d    damage = %dd%d",
475                    o_ptr->number, o_ptr->weight,
476                    o_ptr->ac, o_ptr->dd, o_ptr->ds), 5, j);
477
478         prt(format("pval = %-5d  toac = %-5d  tohit = %-4d  todam = %-4d",
479                    o_ptr->pval, o_ptr->to_a, o_ptr->to_h, o_ptr->to_d), 6, j);
480
481         prt(format("name1 = %-4d  name2 = %-4d  cost = %ld",
482                    o_ptr->name1, o_ptr->name2, (long)object_value_real(o_ptr)), 7, j);
483
484         prt(format("ident = %04x  xtra1 = %-4d  xtra2 = %-4d  timeout = %-d",
485                    o_ptr->ident, o_ptr->xtra1, o_ptr->xtra2, o_ptr->timeout), 8, j);
486
487         prt(format("xtra3 = %-4d  xtra4 = %-4d  xtra5 = %-4d  cursed  = %-d",
488                    o_ptr->xtra3, o_ptr->xtra4, o_ptr->xtra5, o_ptr->curse_flags), 9, j);
489
490         prt("+------------FLAGS1------------+", 10, j);
491         prt("AFFECT........SLAY........BRAND.", 11, j);
492         prt("      mf      cvae      xsqpaefc", 12, j);
493         prt("siwdccsossidsahanvudotgddhuoclio", 13, j);
494         prt("tnieohtctrnipttmiinmrrnrrraiierl", 14, j);
495         prt("rtsxnarelcfgdkcpmldncltggpksdced", 15, j);
496         prt_binary(flgs[0], 16, j);
497
498         prt("+------------FLAGS2------------+", 17, j);
499         prt("SUST....IMMUN.RESIST............", 18, j);
500         prt("      reaefctrpsaefcpfldbc sn   ", 19, j);
501         prt("siwdcciaclioheatcliooeialoshtncd", 20, j);
502         prt("tnieohdsierlrfraierliatrnnnrhehi", 21, j);
503         prt("rtsxnaeydcedwlatdcedsrekdfddrxss", 22, j);
504         prt_binary(flgs[1], 23, j);
505
506         prt("+------------FLAGS3------------+", 10, j+32);
507         prt("fe cnn t      stdrmsiiii d ab   ", 11, j+32);
508         prt("aa aoomywhs lleeieihgggg rtgl   ", 12, j+32);
509         prt("uu utmacaih eielgggonnnnaaere   ", 13, j+32);
510         prt("rr reanurdo vtieeehtrrrrcilas   ", 14, j+32);
511         prt("aa algarnew ienpsntsaefctnevs   ", 15, j+32);
512         prt_binary(flgs[2], 16, j+32);
513
514         prt("+------------FLAGS4------------+", 17, j+32);
515         prt("KILL....ESP.........            ", 18, j+32);
516         prt("aeud tghaud tgdhegnu            ", 19, j+32);
517         prt("nvneoriunneoriruvoon            ", 20, j+32);
518         prt("iidmroamidmroagmionq            ", 21, j+32);
519         prt("mlenclnmmenclnnnldlu            ", 22, j+32);
520         prt_binary(flgs[3], 23, j+32);
521 }
522
523
524 /*!
525  * ベースアイテムの大項目IDの種別名をまとめる構造体 / A structure to hold a tval and its description
526  */
527 typedef struct tval_desc
528 {
529         int        tval; /*!< 大項目のID */
530         concptr       desc; /*!< 大項目名 */
531 } tval_desc;
532
533 /*!
534  * ベースアイテムの大項目IDの種別名定義 / A list of tvals and their textual names
535  */
536 static tval_desc tvals[] =
537 {
538         { TV_SWORD,             "Sword"                },
539         { TV_POLEARM,           "Polearm"              },
540         { TV_HAFTED,            "Hafted Weapon"        },
541         { TV_BOW,               "Bow"                  },
542         { TV_ARROW,             "Arrows"               },
543         { TV_BOLT,              "Bolts"                },
544         { TV_SHOT,              "Shots"                },
545         { TV_SHIELD,            "Shield"               },
546         { TV_CROWN,             "Crown"                },
547         { TV_HELM,              "Helm"                 },
548         { TV_GLOVES,            "Gloves"               },
549         { TV_BOOTS,             "Boots"                },
550         { TV_CLOAK,             "Cloak"                },
551         { TV_DRAG_ARMOR,        "Dragon Scale Mail"    },
552         { TV_HARD_ARMOR,        "Hard Armor"           },
553         { TV_SOFT_ARMOR,        "Soft Armor"           },
554         { TV_RING,              "Ring"                 },
555         { TV_AMULET,            "Amulet"               },
556         { TV_LITE,              "Lite"                 },
557         { TV_POTION,            "Potion"               },
558         { TV_SCROLL,            "Scroll"               },
559         { TV_WAND,              "Wand"                 },
560         { TV_STAFF,             "Staff"                },
561         { TV_ROD,               "Rod"                  },
562         { TV_LIFE_BOOK,         "Life Spellbook"       },
563         { TV_SORCERY_BOOK,      "Sorcery Spellbook"    },
564         { TV_NATURE_BOOK,       "Nature Spellbook"     },
565         { TV_CHAOS_BOOK,        "Chaos Spellbook"      },
566         { TV_DEATH_BOOK,        "Death Spellbook"      },
567         { TV_TRUMP_BOOK,        "Trump Spellbook"      },
568         { TV_ARCANE_BOOK,       "Arcane Spellbook"     },
569         { TV_CRAFT_BOOK,      "Craft Spellbook"},
570         { TV_DAEMON_BOOK,       "Daemon Spellbook"},
571         { TV_CRUSADE_BOOK,      "Crusade Spellbook"},
572         { TV_MUSIC_BOOK,        "Music Spellbook"      },
573         { TV_HISSATSU_BOOK,     "Book of Kendo" },
574         { TV_HEX_BOOK,          "Hex Spellbook"        },
575         { TV_PARCHMENT,         "Parchment" },
576         { TV_WHISTLE,           "Whistle"       },
577         { TV_SPIKE,             "Spikes"               },
578         { TV_DIGGING,           "Digger"               },
579         { TV_CHEST,             "Chest"                },
580         { TV_CAPTURE,           "Capture Ball"         },
581         { TV_CARD,              "Express Card"         },
582         { TV_FIGURINE,          "Magical Figurine"     },
583         { TV_STATUE,            "Statue"               },
584         { TV_CORPSE,            "Corpse"               },
585         { TV_FOOD,              "Food"                 },
586         { TV_FLASK,             "Flask"                },
587         { TV_JUNK,              "Junk"                 },
588         { TV_SKELETON,          "Skeleton"             },
589         { 0,                    NULL                   }
590 };
591
592
593 /*!
594  * @brief nameバッファ内からベースアイテム名を返す / Strip an "object name" into a buffer
595  * @param buf ベースアイテム格納先の参照ポインタ
596  * @param k_idx ベースアイテムID
597  * @return なし
598  */
599 void strip_name(char *buf, KIND_OBJECT_IDX k_idx)
600 {
601         char *t;
602
603         object_kind *k_ptr = &k_info[k_idx];
604
605         concptr str = (k_name + k_ptr->name);
606
607
608         /* Skip past leading characters */
609         while ((*str == ' ') || (*str == '&')) str++;
610
611         /* Copy useful chars */
612         for (t = buf; *str; str++)
613         {
614 #ifdef JP
615                 if (iskanji(*str)) {*t++ = *str++; *t++ = *str; continue;}
616 #endif
617                 if (*str != '~') *t++ = *str;
618         }
619
620         /* Terminate the new name */
621         *t = '\0';
622 }
623
624
625 /*!
626  * @brief ベースアイテムのウィザード生成のために大項目IDと小項目IDを取得する /
627  * Specify tval and sval (type and subtype of object) originally
628  * @return ベースアイテムID
629  * @details
630  * by RAK, heavily modified by -Bernd-
631  * This function returns the k_idx of an object type, or zero if failed
632  * List up to 50 choices in three columns
633  */
634 static KIND_OBJECT_IDX wiz_create_itemtype(void)
635 {
636         KIND_OBJECT_IDX i;
637         int num, max_num;
638         TERM_LEN col, row;
639         OBJECT_TYPE_VALUE tval;
640
641         concptr tval_desc;
642         char ch;
643
644         KIND_OBJECT_IDX choice[80];
645
646         char buf[160];
647
648         Term_clear();
649
650         /* Print all tval's and their descriptions */
651         for (num = 0; (num < 80) && tvals[num].tval; num++)
652         {
653                 row = 2 + (num % 20);
654                 col = 20 * (num / 20);
655                 ch = listsym[num];
656                 prt(format("[%c] %s", ch, tvals[num].desc), row, col);
657         }
658
659         /* Me need to know the maximal possible tval_index */
660         max_num = num;
661
662         /* Choose! */
663         if (!get_com("Get what type of object? ", &ch, FALSE)) return (0);
664
665         /* Analyze choice */
666         for (num = 0; num < max_num; num++)
667         {
668                 if (listsym[num] == ch) break;
669         }
670
671         /* Bail out if choice is illegal */
672         if ((num < 0) || (num >= max_num)) return (0);
673
674         /* Base object type chosen, fill in tval */
675         tval = tvals[num].tval;
676         tval_desc = tvals[num].desc;
677
678
679         /*** And now we go for k_idx ***/
680         Term_clear();
681
682         /* We have to search the whole itemlist. */
683         for (num = 0, i = 1; (num < 80) && (i < max_k_idx); i++)
684         {
685                 object_kind *k_ptr = &k_info[i];
686
687                 /* Analyze matching items */
688                 if (k_ptr->tval == tval)
689                 {
690                         /* Prepare it */
691                         row = 2 + (num % 20);
692                         col = 20 * (num / 20);
693                         ch = listsym[num];
694                         strcpy(buf,"                    ");
695
696                         /* Acquire the "name" of object "i" */
697                         strip_name(buf, i);
698
699                         /* Print it */
700                         prt(format("[%c] %s", ch, buf), row, col);
701
702                         /* Remember the object index */
703                         choice[num++] = i;
704                 }
705         }
706
707         /* Me need to know the maximal possible remembered object_index */
708         max_num = num;
709
710         /* Choose! */
711         if (!get_com(format("What Kind of %s? ", tval_desc), &ch, FALSE)) return (0);
712
713         /* Analyze choice */
714         for (num = 0; num < max_num; num++)
715         {
716                 if (listsym[num] == ch) break;
717         }
718
719         /* Bail out if choice is "illegal" */
720         if ((num < 0) || (num >= max_num)) return (0);
721
722         /* And return successful */
723         return (choice[num]);
724 }
725
726
727 /*!
728  * @briefアイテムの基礎能力値を調整する / Tweak an item
729  * @param o_ptr 調整するアイテムの参照ポインタ
730  * @return なし
731  */
732 static void wiz_tweak_item(object_type *o_ptr)
733 {
734         concptr p;
735         char tmp_val[80];
736
737         /* Hack -- leave artifacts alone */
738         if (object_is_artifact(o_ptr)) return;
739
740         p = "Enter new 'pval' setting: ";
741         sprintf(tmp_val, "%d", o_ptr->pval);
742         if (!get_string(p, tmp_val, 5)) return;
743         o_ptr->pval = (s16b)atoi(tmp_val);
744         wiz_display_item(o_ptr);
745
746         p = "Enter new 'to_a' setting: ";
747         sprintf(tmp_val, "%d", o_ptr->to_a);
748         if (!get_string(p, tmp_val, 5)) return;
749         o_ptr->to_a = (s16b)atoi(tmp_val);
750         wiz_display_item(o_ptr);
751
752         p = "Enter new 'to_h' setting: ";
753         sprintf(tmp_val, "%d", o_ptr->to_h);
754         if (!get_string(p, tmp_val, 5)) return;
755         o_ptr->to_h = (s16b)atoi(tmp_val);
756         wiz_display_item(o_ptr);
757
758         p = "Enter new 'to_d' setting: ";
759         sprintf(tmp_val, "%d", (int)o_ptr->to_d);
760         if (!get_string(p, tmp_val, 5)) return;
761         o_ptr->to_d = (s16b)atoi(tmp_val);
762         wiz_display_item(o_ptr);
763 }
764
765
766 /*!
767  * @brief アイテムの質を選択して再生成する /
768  * Apply magic to an item or current_world_ptr->game_turn it into an artifact. -Bernd-
769  * @param o_ptr 再生成の対象となるアイテム情報の参照ポインタ
770  * @return なし
771  */
772 static void wiz_reroll_item(object_type *o_ptr)
773 {
774         object_type forge;
775         object_type *q_ptr;
776
777         char ch;
778
779         bool changed = FALSE;
780
781
782         /* Hack -- leave artifacts alone */
783         if (object_is_artifact(o_ptr)) return;
784
785         q_ptr = &forge;
786
787         /* Copy the object */
788         object_copy(q_ptr, o_ptr);
789
790
791         /* Main loop. Ask for magification and artifactification */
792         while (TRUE)
793         {
794                 /* Display full item debug information */
795                 wiz_display_item(q_ptr);
796
797                 /* Ask wizard what to do. */
798                 if (!get_com("[a]ccept, [w]orthless, [c]ursed, [n]ormal, [g]ood, [e]xcellent, [s]pecial? ", &ch, FALSE))
799                 {
800                         /* Preserve wizard-generated artifacts */
801                         if (object_is_fixed_artifact(q_ptr))
802                         {
803                                 a_info[q_ptr->name1].cur_num = 0;
804                                 q_ptr->name1 = 0;
805                         }
806
807                         changed = FALSE;
808                         break;
809                 }
810
811                 /* Create/change it! */
812                 if (ch == 'A' || ch == 'a')
813                 {
814                         changed = TRUE;
815                         break;
816                 }
817
818                 /* Preserve wizard-generated artifacts */
819                 if (object_is_fixed_artifact(q_ptr))
820                 {
821                         a_info[q_ptr->name1].cur_num = 0;
822                         q_ptr->name1 = 0;
823                 }
824
825                 switch(ch)
826                 {
827                         /* Apply bad magic, but first clear object */
828                         case 'w': case 'W':
829                         {
830                                 object_prep(q_ptr, o_ptr->k_idx);
831                                 apply_magic(q_ptr, current_floor_ptr->dun_level, AM_NO_FIXED_ART | AM_GOOD | AM_GREAT | AM_CURSED);
832                                 break;
833                         }
834                         /* Apply bad magic, but first clear object */
835                         case 'c': case 'C':
836                         {
837                                 object_prep(q_ptr, o_ptr->k_idx);
838                                 apply_magic(q_ptr, current_floor_ptr->dun_level, AM_NO_FIXED_ART | AM_GOOD | AM_CURSED);
839                                 break;
840                         }
841                         /* Apply normal magic, but first clear object */
842                         case 'n': case 'N':
843                         {
844                                 object_prep(q_ptr, o_ptr->k_idx);
845                                 apply_magic(q_ptr, current_floor_ptr->dun_level, AM_NO_FIXED_ART);
846                                 break;
847                         }
848                         /* Apply good magic, but first clear object */
849                         case 'g': case 'G':
850                         {
851                                 object_prep(q_ptr, o_ptr->k_idx);
852                                 apply_magic(q_ptr, current_floor_ptr->dun_level, AM_NO_FIXED_ART | AM_GOOD);
853                                 break;
854                         }
855                         /* Apply great magic, but first clear object */
856                         case 'e': case 'E':
857                         {
858                                 object_prep(q_ptr, o_ptr->k_idx);
859                                 apply_magic(q_ptr, current_floor_ptr->dun_level, AM_NO_FIXED_ART | AM_GOOD | AM_GREAT);
860                                 break;
861                         }
862                         /* Apply special magic, but first clear object */
863                         case 's': case 'S':
864                         {
865                                 object_prep(q_ptr, o_ptr->k_idx);
866                                 apply_magic(q_ptr, current_floor_ptr->dun_level, AM_GOOD | AM_GREAT | AM_SPECIAL);
867
868                                 /* Failed to create artifact; make a random one */
869                                 if (!object_is_artifact(q_ptr)) create_artifact(q_ptr, FALSE);
870                                 break;
871                         }
872                 }
873                 q_ptr->iy = o_ptr->iy;
874                 q_ptr->ix = o_ptr->ix;
875                 q_ptr->next_o_idx = o_ptr->next_o_idx;
876                 q_ptr->marked = o_ptr->marked;
877         }
878
879
880         /* Notice change */
881         if (changed)
882         {
883                 /* Apply changes */
884                 object_copy(o_ptr, q_ptr);
885                 p_ptr->update |= (PU_BONUS);
886                 p_ptr->update |= (PU_COMBINE | PU_REORDER);
887
888                 p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_SPELL | PW_PLAYER);
889         }
890 }
891
892
893
894 /*!
895  * @brief 検査対象のアイテムを基準とした生成テストを行う /
896  * Try to create an item again. Output some statistics.    -Bernd-
897  * @param o_ptr 生成テストの基準となるアイテム情報の参照ポインタ
898  * @return なし
899  * The statistics are correct now.  We acquire a clean grid, and then
900  * repeatedly place an object in this grid, copying it into an item
901  * holder, and then deleting the object.  We fiddle with the artifact
902  * counter flags to prevent weirdness.  We use the items to collect
903  * statistics on item creation relative to the initial item.
904  */
905 static void wiz_statistics(object_type *o_ptr)
906 {
907         u32b i, matches, better, worse, other, correct;
908
909         u32b test_roll = 1000000;
910
911         char ch;
912         concptr quality;
913
914         BIT_FLAGS mode;
915
916         object_type forge;
917         object_type     *q_ptr;
918
919         concptr q = "Rolls: %ld  Correct: %ld  Matches: %ld  Better: %ld  Worse: %ld  Other: %ld";
920
921         concptr p = "Enter number of items to roll: ";
922         char tmp_val[80];
923
924
925         /* Mega-Hack -- allow multiple artifacts */
926         if (object_is_fixed_artifact(o_ptr)) a_info[o_ptr->name1].cur_num = 0;
927
928
929         /* Interact */
930         while (TRUE)
931         {
932                 concptr pmt = "Roll for [n]ormal, [g]ood, or [e]xcellent treasure? ";
933
934                 /* Display item */
935                 wiz_display_item(o_ptr);
936
937                 /* Get choices */
938                 if (!get_com(pmt, &ch, FALSE)) break;
939
940                 if (ch == 'n' || ch == 'N')
941                 {
942                         mode = 0L;
943                         quality = "normal";
944                 }
945                 else if (ch == 'g' || ch == 'G')
946                 {
947                         mode = AM_GOOD;
948                         quality = "good";
949                 }
950                 else if (ch == 'e' || ch == 'E')
951                 {
952                         mode = AM_GOOD | AM_GREAT;
953                         quality = "excellent";
954                 }
955                 else
956                 {
957                         break;
958                 }
959
960                 sprintf(tmp_val, "%ld", (long int)test_roll);
961                 if (get_string(p, tmp_val, 10)) test_roll = atol(tmp_val);
962                 test_roll = MAX(1, test_roll);
963
964                 /* Let us know what we are doing */
965                 msg_format("Creating a lot of %s items. Base level = %d.",
966                                           quality, current_floor_ptr->dun_level);
967                 msg_print(NULL);
968
969                 /* Set counters to zero */
970                 correct = matches = better = worse = other = 0;
971
972                 /* Let's rock and roll */
973                 for (i = 0; i <= test_roll; i++)
974                 {
975                         /* Output every few rolls */
976                         if ((i < 100) || (i % 100 == 0))
977                         {
978                                 /* Do not wait */
979                                 inkey_scan = TRUE;
980
981                                 /* Allow interupt */
982                                 if (inkey())
983                                 {
984                                         flush();
985                                         break; // stop rolling
986                                 }
987
988                                 /* Dump the stats */
989                                 prt(format(q, i, correct, matches, better, worse, other), 0, 0);
990                                 Term_fresh();
991                         }
992                         q_ptr = &forge;
993                         object_wipe(q_ptr);
994
995                         /* Create an object */
996                         make_object(q_ptr, mode);
997
998
999                         /* Mega-Hack -- allow multiple artifacts */
1000                         if (object_is_fixed_artifact(q_ptr)) a_info[q_ptr->name1].cur_num = 0;
1001
1002
1003                         /* Test for the same tval and sval. */
1004                         if ((o_ptr->tval) != (q_ptr->tval)) continue;
1005                         if ((o_ptr->sval) != (q_ptr->sval)) continue;
1006
1007                         /* One more correct item */
1008                         correct++;
1009
1010                         /* Check for match */
1011                         if ((q_ptr->pval == o_ptr->pval) &&
1012                                  (q_ptr->to_a == o_ptr->to_a) &&
1013                                  (q_ptr->to_h == o_ptr->to_h) &&
1014                                  (q_ptr->to_d == o_ptr->to_d) &&
1015                                  (q_ptr->name1 == o_ptr->name1))
1016                         {
1017                                 matches++;
1018                         }
1019
1020                         /* Check for better */
1021                         else if ((q_ptr->pval >= o_ptr->pval) &&
1022                                                 (q_ptr->to_a >= o_ptr->to_a) &&
1023                                                 (q_ptr->to_h >= o_ptr->to_h) &&
1024                                                 (q_ptr->to_d >= o_ptr->to_d))
1025                         {
1026                                 better++;
1027                         }
1028
1029                         /* Check for worse */
1030                         else if ((q_ptr->pval <= o_ptr->pval) &&
1031                                                 (q_ptr->to_a <= o_ptr->to_a) &&
1032                                                 (q_ptr->to_h <= o_ptr->to_h) &&
1033                                                 (q_ptr->to_d <= o_ptr->to_d))
1034                         {
1035                                 worse++;
1036                         }
1037
1038                         /* Assume different */
1039                         else
1040                         {
1041                                 other++;
1042                         }
1043                 }
1044
1045                 /* Final dump */
1046                 msg_format(q, i, correct, matches, better, worse, other);
1047                 msg_print(NULL);
1048         }
1049
1050
1051         /* Hack -- Normally only make a single artifact */
1052         if (object_is_fixed_artifact(o_ptr)) a_info[o_ptr->name1].cur_num = 1;
1053 }
1054
1055
1056 /*!
1057  * @brief 検査対象のアイテムの数を変更する /
1058  * Change the quantity of a the item
1059  * @param o_ptr 変更するアイテム情報構造体の参照ポインタ
1060  * @return なし
1061  */
1062 static void wiz_quantity_item(object_type *o_ptr)
1063 {
1064         int         tmp_int, tmp_qnt;
1065
1066         char        tmp_val[100];
1067
1068
1069         /* Never duplicate artifacts */
1070         if (object_is_artifact(o_ptr)) return;
1071
1072         /* Store old quantity. -LM- */
1073         tmp_qnt = o_ptr->number;
1074
1075         /* Default */
1076         sprintf(tmp_val, "%d", (int)o_ptr->number);
1077
1078         /* Query */
1079         if (get_string("Quantity: ", tmp_val, 2))
1080         {
1081                 /* Extract */
1082                 tmp_int = atoi(tmp_val);
1083
1084                 /* Paranoia */
1085                 if (tmp_int < 1) tmp_int = 1;
1086                 if (tmp_int > 99) tmp_int = 99;
1087
1088                 /* Accept modifications */
1089                 o_ptr->number = (byte_hack)tmp_int;
1090         }
1091
1092         if (o_ptr->tval == TV_ROD)
1093         {
1094                 o_ptr->pval = o_ptr->pval * o_ptr->number / tmp_qnt;
1095         }
1096 }
1097
1098 /*!
1099  * @brief 青魔導師の魔法を全て習得済みにする /
1100  * debug command for blue mage
1101  * @return なし
1102  */
1103 static void do_cmd_wiz_blue_mage(void)
1104 {
1105         int i = 0;
1106         int j = 0;
1107         BIT_FLAGS f4 = 0L, f5 = 0L, f6 = 0L;
1108
1109         for (j = 1; j < A_MAX; j++)
1110         {
1111                 set_rf_masks(&f4, &f5, &f6, j);
1112
1113                 for (i = 0; i < 32; i++)
1114                 {
1115                         if ((0x00000001 << i) & f4) p_ptr->magic_num2[i] = 1;
1116                 }
1117                 for (; i < 64; i++)
1118                 {
1119                         if ((0x00000001 << (i - 32)) & f5) p_ptr->magic_num2[i] = 1;
1120                 }
1121                 for (; i < 96; i++)
1122                 {
1123                         if ((0x00000001 << (i - 64)) & f6) p_ptr->magic_num2[i] = 1;
1124                 }
1125         }
1126 }
1127
1128
1129 /*!
1130  * @brief アイテム検査のメインルーチン /
1131  * Play with an item. Options include:
1132  * @return なし
1133  * @details 
1134  *   - Output statistics (via wiz_roll_item)<br>
1135  *   - Reroll item (via wiz_reroll_item)<br>
1136  *   - Change properties (via wiz_tweak_item)<br>
1137  *   - Change the number of items (via wiz_quantity_item)<br>
1138  */
1139 static void do_cmd_wiz_play(void)
1140 {
1141         OBJECT_IDX item;
1142         object_type     forge;
1143         object_type *q_ptr;
1144         object_type *o_ptr;
1145         char ch;
1146         bool changed;
1147         concptr q, s;
1148
1149         q = "Play with which object? ";
1150         s = "You have nothing to play with.";
1151
1152         o_ptr = choose_object(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR | IGNORE_BOTHHAND_SLOT));
1153
1154         if (!o_ptr) return;
1155         
1156         /* The item was not changed */
1157         changed = FALSE;
1158
1159         screen_save();
1160
1161         q_ptr = &forge;
1162         object_copy(q_ptr, o_ptr);
1163
1164
1165         /* The main loop */
1166         while (TRUE)
1167         {
1168                 /* Display the item */
1169                 wiz_display_item(q_ptr);
1170
1171                 /* Get choice */
1172                 if (!get_com("[a]ccept [s]tatistics [r]eroll [t]weak [q]uantity? ", &ch, FALSE))
1173                 {
1174                         changed = FALSE;
1175                         break;
1176                 }
1177
1178                 if (ch == 'A' || ch == 'a')
1179                 {
1180                         changed = TRUE;
1181                         break;
1182                 }
1183
1184                 if (ch == 's' || ch == 'S')
1185                 {
1186                         wiz_statistics(q_ptr);
1187                 }
1188
1189                 if (ch == 'r' || ch == 'r')
1190                 {
1191                         wiz_reroll_item(q_ptr);
1192                 }
1193
1194                 if (ch == 't' || ch == 'T')
1195                 {
1196                         wiz_tweak_item(q_ptr);
1197                 }
1198
1199                 if (ch == 'q' || ch == 'Q')
1200                 {
1201                         wiz_quantity_item(q_ptr);
1202                 }
1203         }
1204
1205         screen_load();
1206
1207
1208         /* Accept change */
1209         if (changed)
1210         {
1211                 msg_print("Changes accepted.");
1212
1213                 /* Recalcurate object's weight */
1214                 if (item >= 0)
1215                 {
1216                         p_ptr->total_weight += (q_ptr->weight * q_ptr->number)
1217                                 - (o_ptr->weight * o_ptr->number);
1218                 }
1219
1220                 /* Change */
1221                 object_copy(o_ptr, q_ptr);
1222
1223                 p_ptr->update |= (PU_BONUS);
1224                 p_ptr->update |= (PU_COMBINE | PU_REORDER);
1225
1226                 p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_SPELL | PW_PLAYER);
1227         }
1228
1229         /* Ignore change */
1230         else
1231         {
1232                 msg_print("Changes ignored.");
1233         }
1234 }
1235
1236
1237 /*!
1238  * @brief 任意のベースアイテム生成のメインルーチン /
1239  * Wizard routine for creating objects          -RAK-
1240  * @return なし
1241  * @details
1242  * Heavily modified to allow magification and artifactification  -Bernd-
1243  *
1244  * Note that wizards cannot create objects on top of other objects.
1245  *
1246  * Hack -- this routine always makes a "dungeon object", and applies
1247  * magic to it, and attempts to decline cursed items.
1248  */
1249 static void wiz_create_item(void)
1250 {
1251         object_type     forge;
1252         object_type *q_ptr;
1253
1254         OBJECT_IDX k_idx;
1255         screen_save();
1256
1257         /* Get object base type */
1258         k_idx = wiz_create_itemtype();
1259
1260         screen_load();
1261
1262         /* Return if failed */
1263         if (!k_idx) return;
1264
1265         if (k_info[k_idx].gen_flags & TRG_INSTA_ART)
1266         {
1267                 ARTIFACT_IDX i;
1268
1269                 /* Artifactify */
1270                 for (i = 1; i < max_a_idx; i++)
1271                 {
1272                         /* Ignore incorrect tval */
1273                         if (a_info[i].tval != k_info[k_idx].tval) continue;
1274
1275                         /* Ignore incorrect sval */
1276                         if (a_info[i].sval != k_info[k_idx].sval) continue;
1277
1278                         /* Create this artifact */
1279                         (void)create_named_art(i, p_ptr->y, p_ptr->x);
1280
1281                         /* All done */
1282                         msg_print("Allocated(INSTA_ART).");
1283
1284                         return;
1285                 }
1286         }
1287         q_ptr = &forge;
1288         object_prep(q_ptr, k_idx);
1289
1290         apply_magic(q_ptr, current_floor_ptr->dun_level, AM_NO_FIXED_ART);
1291
1292         /* Drop the object from heaven */
1293         (void)drop_near(q_ptr, -1, p_ptr->y, p_ptr->x);
1294
1295         /* All done */
1296         msg_print("Allocated.");
1297 }
1298
1299
1300 /*!
1301  * @brief プレイヤーを完全回復する /
1302  * Cure everything instantly
1303  * @return なし
1304  */
1305 static void do_cmd_wiz_cure_all(void)
1306 {
1307         (void)life_stream(FALSE, FALSE);
1308         (void)restore_mana(TRUE);
1309         (void)set_food(PY_FOOD_MAX - 1);
1310 }
1311
1312
1313 /*!
1314  * @brief 任意のダンジョン及び階層に飛ぶ /
1315  * Go to any level
1316  * @return なし
1317  */
1318 static void do_cmd_wiz_jump(void)
1319 {
1320         /* Ask for level */
1321         if (command_arg <= 0)
1322         {
1323                 char    ppp[80];
1324                 char    tmp_val[160];
1325                 DUNGEON_IDX tmp_dungeon_type;
1326
1327                 /* Prompt */
1328                 sprintf(ppp, "Jump which dungeon : ");
1329
1330                 /* Default */
1331                 sprintf(tmp_val, "%d", p_ptr->dungeon_idx);
1332
1333                 /* Ask for a level */
1334                 if (!get_string(ppp, tmp_val, 2)) return;
1335
1336                 tmp_dungeon_type = (DUNGEON_IDX)atoi(tmp_val);
1337                 if (!d_info[tmp_dungeon_type].maxdepth || (tmp_dungeon_type > max_d_idx)) tmp_dungeon_type = DUNGEON_ANGBAND;
1338
1339                 /* Prompt */
1340                 sprintf(ppp, "Jump to level (0, %d-%d): ",
1341                         (int)d_info[tmp_dungeon_type].mindepth, (int)d_info[tmp_dungeon_type].maxdepth);
1342
1343                 /* Default */
1344                 sprintf(tmp_val, "%d", (int)current_floor_ptr->dun_level);
1345
1346                 /* Ask for a level */
1347                 if (!get_string(ppp, tmp_val, 10)) return;
1348
1349                 /* Extract request */
1350                 command_arg = (COMMAND_ARG)atoi(tmp_val);
1351
1352                 p_ptr->dungeon_idx = tmp_dungeon_type;
1353         }
1354
1355         /* Paranoia */
1356         if (command_arg < d_info[p_ptr->dungeon_idx].mindepth) command_arg = 0;
1357         if (command_arg > d_info[p_ptr->dungeon_idx].maxdepth) command_arg = (COMMAND_ARG)d_info[p_ptr->dungeon_idx].maxdepth;
1358
1359         /* Accept request */
1360         msg_format("You jump to dungeon level %d.", command_arg);
1361
1362         if (autosave_l) do_cmd_save_game(TRUE);
1363
1364         /* Change level */
1365         current_floor_ptr->dun_level = command_arg;
1366
1367         prepare_change_floor_mode(CFM_RAND_PLACE);
1368
1369         if (!current_floor_ptr->dun_level) p_ptr->dungeon_idx = 0;
1370         p_ptr->inside_arena = FALSE;
1371         p_ptr->wild_mode = FALSE;
1372
1373         leave_quest_check();
1374
1375         if (record_stair) do_cmd_write_nikki(NIKKI_WIZ_TELE,0,NULL);
1376
1377         p_ptr->inside_quest = 0;
1378         free_turn(p_ptr);
1379
1380         /* Prevent energy_need from being too lower than 0 */
1381         p_ptr->energy_need = 0;
1382
1383         /*
1384          * Clear all saved floors
1385          * and create a first saved floor
1386          */
1387         prepare_change_floor_mode(CFM_FIRST_FLOOR);
1388         p_ptr->leaving = TRUE;
1389 }
1390
1391
1392 /*!
1393  * @brief 全ベースアイテムを鑑定済みにする /
1394  * Become aware of a lot of objects
1395  * @return なし
1396  */
1397 static void do_cmd_wiz_learn(void)
1398 {
1399         KIND_OBJECT_IDX i;
1400
1401         object_type forge;
1402         object_type *q_ptr;
1403
1404         /* Scan every object */
1405         for (i = 1; i < max_k_idx; i++)
1406         {
1407                 object_kind *k_ptr = &k_info[i];
1408
1409                 /* Induce awareness */
1410                 if (k_ptr->level <= command_arg)
1411                 {
1412                         q_ptr = &forge;
1413                         object_prep(q_ptr, i);
1414                         object_aware(q_ptr);
1415                 }
1416         }
1417 }
1418
1419
1420 /*!
1421  * @brief 現在のフロアに合ったモンスターをランダムに召喚する /
1422  * Summon some creatures
1423  * @param num 生成処理回数
1424  * @return なし
1425  */
1426 static void do_cmd_wiz_summon(int num)
1427 {
1428         int i;
1429         for (i = 0; i < num; i++)
1430         {
1431                 (void)summon_specific(0, p_ptr->y, p_ptr->x, current_floor_ptr->dun_level, 0, (PM_ALLOW_GROUP | PM_ALLOW_UNIQUE), '\0');
1432         }
1433 }
1434
1435
1436
1437 /*!
1438  * @brief モンスターを種族IDを指定して敵対的に召喚する /
1439  * Summon a creature of the specified type
1440  * @param r_idx モンスター種族ID
1441  * @return なし
1442  * @details
1443  * This function is rather dangerous
1444  */
1445 static void do_cmd_wiz_named(MONRACE_IDX r_idx)
1446 {
1447         (void)summon_named_creature(0, p_ptr->y, p_ptr->x, r_idx, (PM_ALLOW_SLEEP | PM_ALLOW_GROUP));
1448 }
1449
1450
1451 /*!
1452  * @brief モンスターを種族IDを指定してペット召喚する /
1453  * Summon a creature of the specified type
1454  * @param r_idx モンスター種族ID
1455  * @return なし
1456  * @details
1457  * This function is rather dangerous
1458  */
1459 static void do_cmd_wiz_named_friendly(MONRACE_IDX r_idx)
1460 {
1461         (void)summon_named_creature(0, p_ptr->y, p_ptr->x, r_idx, (PM_ALLOW_SLEEP | PM_ALLOW_GROUP | PM_FORCE_PET));
1462 }
1463
1464
1465
1466 /*!
1467  * @brief プレイヤー近辺の全モンスターを消去する /
1468  * Hack -- Delete all nearby monsters
1469  * @return なし
1470  */
1471 static void do_cmd_wiz_zap(void)
1472 {
1473         MONSTER_IDX i;
1474
1475         /* Genocide everyone nearby */
1476         for (i = 1; i < m_max; i++)
1477         {
1478                 monster_type *m_ptr = &current_floor_ptr->m_list[i];
1479                 if (!monster_is_valid(m_ptr)) continue;
1480
1481                 /* Skip the mount */
1482                 if (i == p_ptr->riding) continue;
1483
1484                 /* Delete nearby monsters */
1485                 if (m_ptr->cdis <= MAX_SIGHT)
1486                 {
1487                         if (record_named_pet && is_pet(m_ptr) && m_ptr->nickname)
1488                         {
1489                                 GAME_TEXT m_name[MAX_NLEN];
1490
1491                                 monster_desc(m_name, m_ptr, MD_INDEF_VISIBLE);
1492                                 do_cmd_write_nikki(NIKKI_NAMED_PET, RECORD_NAMED_PET_WIZ_ZAP, m_name);
1493                         }
1494
1495                         delete_monster_idx(i);
1496                 }
1497         }
1498 }
1499
1500
1501 /*!
1502  * @brief フロアに存在する全モンスターを消去する /
1503  * Hack -- Delete all monsters
1504  * @return なし
1505  */
1506 static void do_cmd_wiz_zap_all(void)
1507 {
1508         MONSTER_IDX i;
1509
1510         /* Genocide everyone */
1511         for (i = 1; i < m_max; i++)
1512         {
1513                 monster_type *m_ptr = &current_floor_ptr->m_list[i];
1514                 if (!monster_is_valid(m_ptr)) continue;
1515
1516                 /* Skip the mount */
1517                 if (i == p_ptr->riding) continue;
1518
1519                 if (record_named_pet && is_pet(m_ptr) && m_ptr->nickname)
1520                 {
1521                         GAME_TEXT m_name[MAX_NLEN];
1522
1523                         monster_desc(m_name, m_ptr, MD_INDEF_VISIBLE);
1524                         do_cmd_write_nikki(NIKKI_NAMED_PET, RECORD_NAMED_PET_WIZ_ZAP, m_name);
1525                 }
1526
1527                 /* Delete this monster */
1528                 delete_monster_idx(i);
1529         }
1530 }
1531
1532
1533 /*!
1534  * @brief 指定された地点の地形IDを変更する /
1535  * Create desired feature
1536  * @return なし
1537  */
1538 static void do_cmd_wiz_create_feature(void)
1539 {
1540         static int   prev_feat = 0;
1541         static int   prev_mimic = 0;
1542         grid_type    *g_ptr;
1543         feature_type *f_ptr;
1544         char         tmp_val[160];
1545         IDX          tmp_feat, tmp_mimic;
1546         POSITION y, x;
1547
1548         if (!tgt_pt(&x, &y)) return;
1549
1550         g_ptr = &current_floor_ptr->grid_array[y][x];
1551
1552         /* Default */
1553         sprintf(tmp_val, "%d", prev_feat);
1554
1555         /* Query */
1556         if (!get_string(_("地形: ", "Feature: "), tmp_val, 3)) return;
1557
1558         /* Extract */
1559         tmp_feat = (IDX)atoi(tmp_val);
1560         if (tmp_feat < 0) tmp_feat = 0;
1561         else if (tmp_feat >= max_f_idx) tmp_feat = max_f_idx - 1;
1562
1563         /* Default */
1564         sprintf(tmp_val, "%d", prev_mimic);
1565
1566         /* Query */
1567         if (!get_string(_("地形 (mimic): ", "Feature (mimic): "), tmp_val, 3)) return;
1568
1569         /* Extract */
1570         tmp_mimic = (IDX)atoi(tmp_val);
1571         if (tmp_mimic < 0) tmp_mimic = 0;
1572         else if (tmp_mimic >= max_f_idx) tmp_mimic = max_f_idx - 1;
1573
1574         cave_set_feat(y, x, tmp_feat);
1575         g_ptr->mimic = (s16b)tmp_mimic;
1576
1577         f_ptr = &f_info[get_feat_mimic(g_ptr)];
1578
1579         if (have_flag(f_ptr->flags, FF_GLYPH) ||
1580             have_flag(f_ptr->flags, FF_MINOR_GLYPH))
1581                 g_ptr->info |= (CAVE_OBJECT);
1582         else if (have_flag(f_ptr->flags, FF_MIRROR))
1583                 g_ptr->info |= (CAVE_GLOW | CAVE_OBJECT);
1584
1585         note_spot(y, x);
1586         lite_spot(y, x);
1587         p_ptr->update |= (PU_FLOW);
1588
1589         prev_feat = tmp_feat;
1590         prev_mimic = tmp_mimic;
1591 }
1592
1593
1594 #define NUM_O_SET 8
1595 #define NUM_O_BIT 32
1596
1597 /*!
1598  * @brief 現在のオプション設定をダンプ出力する /
1599  * Hack -- Dump option bits usage
1600  * @return なし
1601  */
1602 static void do_cmd_dump_options(void)
1603 {
1604         int  i, j;
1605         FILE *fff;
1606         char buf[1024];
1607         int  **exist;
1608
1609         /* Build the filename */
1610         path_build(buf, sizeof buf, ANGBAND_DIR_USER, "opt_info.txt");
1611
1612         /* File type is "TEXT" */
1613         FILE_TYPE(FILE_TYPE_TEXT);
1614
1615         /* Open the file */
1616         fff = my_fopen(buf, "a");
1617
1618         if (!fff)
1619         {
1620                 msg_format(_("ファイル %s を開けませんでした。", "Failed to open file %s."), buf);
1621                 msg_print(NULL);
1622                 return;
1623         }
1624
1625         /* Allocate the "exist" array (2-dimension) */
1626         C_MAKE(exist, NUM_O_SET, int *);
1627         C_MAKE(*exist, NUM_O_BIT * NUM_O_SET, int);
1628         for (i = 1; i < NUM_O_SET; i++) exist[i] = *exist + i * NUM_O_BIT;
1629
1630         /* Check for exist option bits */
1631         for (i = 0; option_info[i].o_desc; i++)
1632         {
1633                 const option_type *ot_ptr = &option_info[i];
1634                 if (ot_ptr->o_var) exist[ot_ptr->o_set][ot_ptr->o_bit] = i + 1;
1635         }
1636
1637         fprintf(fff, "[Option bits usage on Hengband %d.%d.%d]\n\n",
1638                 FAKE_VER_MAJOR - 10, FAKE_VER_MINOR, FAKE_VER_PATCH);
1639
1640         fputs("Set - Bit (Page) Option Name\n", fff);
1641         fputs("------------------------------------------------\n", fff);
1642         /* Dump option bits usage */
1643         for (i = 0; i < NUM_O_SET; i++)
1644         {
1645                 for (j = 0; j < NUM_O_BIT; j++)
1646                 {
1647                         if (exist[i][j])
1648                         {
1649                                 const option_type *ot_ptr = &option_info[exist[i][j] - 1];
1650                                 fprintf(fff, "  %d -  %02d (%4d) %s\n",
1651                                         i, j, ot_ptr->o_page, ot_ptr->o_text);
1652                         }
1653                         else
1654                         {
1655                                 fprintf(fff, "  %d -  %02d\n", i, j);
1656                         }
1657                 }
1658                 fputc('\n', fff);
1659         }
1660
1661         /* Free the "exist" array (2-dimension) */
1662         C_KILL(*exist, NUM_O_BIT * NUM_O_SET, int);
1663         C_KILL(exist, NUM_O_SET, int *);
1664         my_fclose(fff);
1665
1666         msg_format(_("オプションbit使用状況をファイル %s に書き出しました。", "Option bits usage dump saved to file %s."), buf);
1667 }
1668
1669
1670 #ifdef ALLOW_SPOILERS
1671
1672 /*
1673  * External function
1674  */
1675 extern void do_cmd_spoilers(void);
1676
1677 #endif /* ALLOW_SPOILERS */
1678
1679
1680
1681 /*
1682  * Hack -- declare external function
1683  */
1684 extern void do_cmd_debug(void);
1685
1686
1687
1688 /*!
1689  * @brief デバッグコマンドを選択する処理のメインルーチン /
1690  * Ask for and parse a "debug command"
1691  * The "command_arg" may have been set.
1692  * @return なし
1693  */
1694 void do_cmd_debug(void)
1695 {
1696         int     x, y;
1697         char    cmd;
1698
1699         /* Get a "debug command" */
1700         get_com("Debug Command: ", &cmd, FALSE);
1701
1702         /* Analyze the command */
1703         switch (cmd)
1704         {
1705         /* Nothing */
1706         case ESCAPE:
1707         case ' ':
1708         case '\n':
1709         case '\r':
1710                 break;
1711
1712 #ifdef ALLOW_SPOILERS
1713
1714         /* Hack -- Generate Spoilers */
1715         case '"':
1716                 do_cmd_spoilers();
1717                 break;
1718
1719 #endif /* ALLOW_SPOILERS */
1720
1721         /* Hack -- Help */
1722         case '?':
1723                 do_cmd_help();
1724                 break;
1725
1726         /* Cure all maladies */
1727         case 'a':
1728                 do_cmd_wiz_cure_all();
1729                 break;
1730
1731         /* Know alignment */
1732         case 'A':
1733                 msg_format("Your alignment is %d.", p_ptr->align);
1734                 break;
1735
1736         /* Teleport to target */
1737         case 'b':
1738                 do_cmd_wiz_bamf();
1739                 break;
1740
1741         case 'B':
1742                 battle_monsters();
1743                 break;
1744
1745         /* Create any object */
1746         case 'c':
1747                 wiz_create_item();
1748                 break;
1749
1750         /* Create a named artifact */
1751         case 'C':
1752                 wiz_create_named_art();
1753                 break;
1754
1755         /* Detect everything */
1756         case 'd':
1757                 detect_all(DETECT_RAD_ALL * 3);
1758                 break;
1759
1760         /* Dimension_door */
1761         case 'D':
1762                 wiz_dimension_door();
1763                 break;
1764
1765         /* Edit character */
1766         case 'e':
1767                 do_cmd_wiz_change();
1768                 break;
1769
1770         /* Blue Mage Only */
1771         case 'E':
1772                 if (p_ptr->pclass == CLASS_BLUE_MAGE)
1773                 {
1774                         do_cmd_wiz_blue_mage();
1775                 }
1776                 break;
1777
1778         /* View item info */
1779         case 'f':
1780                 identify_fully(FALSE);
1781                 break;
1782
1783         /* Create desired feature */
1784         case 'F':
1785                 do_cmd_wiz_create_feature();
1786                 break;
1787
1788         /* Good Objects */
1789         case 'g':
1790                 if (command_arg <= 0) command_arg = 1;
1791                 acquirement(p_ptr->y, p_ptr->x, command_arg, FALSE, FALSE, TRUE);
1792                 break;
1793
1794         /* Hitpoint rerating */
1795         case 'h':
1796                 roll_hitdice(p_ptr, SPOP_DISPLAY_MES | SPOP_DEBUG);
1797                 break;
1798
1799         case 'H':
1800                 do_cmd_summon_horde();
1801                 break;
1802
1803         /* Identify */
1804         case 'i':
1805                 (void)ident_spell(FALSE);
1806                 break;
1807
1808         /* Go up or down in the dungeon */
1809         case 'j':
1810                 do_cmd_wiz_jump();
1811                 break;
1812
1813         /* Self-Knowledge */
1814         case 'k':
1815                 self_knowledge();
1816                 break;
1817
1818         /* Learn about objects */
1819         case 'l':
1820                 do_cmd_wiz_learn();
1821                 break;
1822
1823         /* Magic Mapping */
1824         case 'm':
1825                 map_area(DETECT_RAD_ALL * 3);
1826                 break;
1827
1828         /* Mutation */
1829         case 'M':
1830                 (void)gain_mutation(p_ptr, command_arg);
1831                 break;
1832
1833         /* Reset Class */
1834         case 'R':
1835                 (void)do_cmd_wiz_reset_class();
1836                 break;
1837
1838         /* Specific reward */
1839         case 'r':
1840                 (void)gain_level_reward(command_arg);
1841                 break;
1842
1843         /* Summon _friendly_ named monster */
1844         case 'N':
1845                 do_cmd_wiz_named_friendly(command_arg);
1846                 break;
1847
1848         /* Summon Named Monster */
1849         case 'n':
1850                 do_cmd_wiz_named(command_arg);
1851                 break;
1852
1853         /* Dump option bits usage */
1854         case 'O':
1855                 do_cmd_dump_options();
1856                 break;
1857
1858         /* Object playing routines */
1859         case 'o':
1860                 do_cmd_wiz_play();
1861                 break;
1862
1863         /* Phase Door */
1864         case 'p':
1865                 teleport_player(10, 0L);
1866                 break;
1867
1868         /* Take a Quests */
1869         case 'Q':
1870                 {
1871                         char ppp[30];
1872                         char tmp_val[5];
1873                         int tmp_int;
1874                         sprintf(ppp, "QuestID (0-%d):", max_q_idx - 1);
1875                         sprintf(tmp_val, "%d", 0);
1876
1877                         if (!get_string(ppp, tmp_val, 3)) return;
1878                         tmp_int = atoi(tmp_val);
1879
1880                         if(tmp_int < 0) break;
1881                         if(tmp_int >= max_q_idx) break;
1882
1883                         p_ptr->inside_quest = (QUEST_IDX)tmp_int;
1884                         process_dungeon_file("q_info.txt", 0, 0, 0, 0);
1885                         quest[tmp_int].status = QUEST_STATUS_TAKEN;
1886                         p_ptr->inside_quest = 0;
1887                 }
1888                 break;
1889
1890         /* Complete a Quest -KMW- */
1891         case 'q':
1892                 if(p_ptr->inside_quest)
1893                 {
1894                         if (quest[p_ptr->inside_quest].status == QUEST_STATUS_TAKEN)
1895                         {
1896                                 complete_quest(p_ptr->inside_quest);
1897                                 break;
1898                         }
1899                 }
1900                 else
1901                 {
1902                         msg_print("No current quest");
1903                         msg_print(NULL);
1904                 }
1905                 break;
1906
1907         /* Make every dungeon square "known" to test streamers -KMW- */
1908         case 'u':
1909                 for (y = 0; y < current_floor_ptr->height; y++)
1910                 {
1911                         for (x = 0; x < current_floor_ptr->width; x++)
1912                         {
1913                                 current_floor_ptr->grid_array[y][x].info |= (CAVE_GLOW | CAVE_MARK);
1914                         }
1915                 }
1916                 wiz_lite(FALSE);
1917                 break;
1918
1919         /* Summon Random Monster(s) */
1920         case 's':
1921                 if (command_arg <= 0) command_arg = 1;
1922                 do_cmd_wiz_summon(command_arg);
1923                 break;
1924
1925         /* Special(Random Artifact) Objects */
1926         case 'S':
1927                 if (command_arg <= 0) command_arg = 1;
1928                 acquirement(p_ptr->y, p_ptr->x, command_arg, TRUE, TRUE, TRUE);
1929                 break;
1930
1931         /* Teleport */
1932         case 't':
1933                 teleport_player(100, 0L);
1934                 break;
1935
1936         /* Game Time Setting */
1937         case 'T':
1938                 set_gametime();
1939                 break;
1940
1941
1942         /* Very Good Objects */
1943         case 'v':
1944                 if (command_arg <= 0) command_arg = 1;
1945                 acquirement(p_ptr->y, p_ptr->x, command_arg, TRUE, FALSE, TRUE);
1946                 break;
1947
1948         /* Wizard Light the Level */
1949         case 'w':
1950                 wiz_lite((bool)(p_ptr->pclass == CLASS_NINJA));
1951                 break;
1952
1953         /* Increase Experience */
1954         case 'x':
1955                 gain_exp(command_arg ? command_arg : (p_ptr->exp + 1));
1956                 break;
1957
1958         /* Zap Monsters (Genocide) */
1959         case 'z':
1960                 do_cmd_wiz_zap();
1961                 break;
1962
1963         /* Zap Monsters (Omnicide) */
1964         case 'Z':
1965                 do_cmd_wiz_zap_all();
1966                 break;
1967
1968         /* Hack -- whatever I desire */
1969         case '_':
1970                 probing();
1971                 break;
1972
1973         /* For temporary test. */
1974         case 'X':
1975         {
1976                 INVENTORY_IDX i;
1977                 for(i = INVEN_TOTAL - 1; i >= 0; i--)
1978                 {
1979                         if(inventory[i].k_idx) inven_drop(i, 999);
1980                 }
1981                 player_outfit();
1982                 break;
1983         }
1984
1985         case 'V':
1986                 do_cmd_wiz_reset_class();
1987                 break;
1988
1989         /* Not a Wizard Command */
1990         default:
1991                 msg_print("That is not a valid debug command.");
1992                 break;
1993         }
1994 }
1995
1996 void cheat_death(player_type *creature_ptr)
1997 {
1998         /* Mark social class, reset age, if needed */
1999         if (creature_ptr->sc) creature_ptr->sc = creature_ptr->age = 0;
2000
2001         /* Increase age */
2002         creature_ptr->age++;
2003
2004         /* Mark savefile */
2005         creature_ptr->noscore |= 0x0001;
2006
2007         msg_print(_("ウィザードモードに念を送り、死を欺いた。", "You invoke wizard mode and cheat death."));
2008         msg_print(NULL);
2009
2010         (void)life_stream(FALSE, FALSE);
2011
2012         if (creature_ptr->pclass == CLASS_MAGIC_EATER)
2013         {
2014                 int magic_idx;
2015                 for (magic_idx = 0; magic_idx < EATER_EXT * 2; magic_idx++)
2016                 {
2017                         creature_ptr->magic_num1[magic_idx] = creature_ptr->magic_num2[magic_idx] * EATER_CHARGE;
2018                 }
2019                 for (; magic_idx < EATER_EXT * 3; magic_idx++)
2020                 {
2021                         creature_ptr->magic_num1[magic_idx] = 0;
2022                 }
2023         }
2024
2025         /* Restore spell points */
2026         creature_ptr->csp = creature_ptr->msp;
2027         creature_ptr->csp_frac = 0;
2028
2029         /* Hack -- cancel recall */
2030         if (creature_ptr->word_recall)
2031         {
2032                 msg_print(_("張りつめた大気が流れ去った...", "A tension leaves the air around you..."));
2033                 msg_print(NULL);
2034
2035                 /* Hack -- Prevent recall */
2036                 creature_ptr->word_recall = 0;
2037                 creature_ptr->redraw |= (PR_STATUS);
2038         }
2039
2040         /* Hack -- cancel alter */
2041         if (creature_ptr->alter_reality)
2042         {
2043                 /* Hack -- Prevent alter */
2044                 creature_ptr->alter_reality = 0;
2045                 creature_ptr->redraw |= (PR_STATUS);
2046         }
2047
2048         /* Note cause of death */
2049         (void)strcpy(creature_ptr->died_from, _("死の欺き", "Cheating death"));
2050
2051         /* Do not die */
2052         creature_ptr->is_dead = FALSE;
2053
2054         /* Hack -- Prevent starvation */
2055         (void)set_food(PY_FOOD_MAX - 1);
2056
2057         current_floor_ptr->dun_level = 0;
2058         creature_ptr->inside_arena = FALSE;
2059         creature_ptr->inside_battle = FALSE;
2060         leaving_quest = 0;
2061         creature_ptr->inside_quest = 0;
2062         if (p_ptr->dungeon_idx) creature_ptr->recall_dungeon = p_ptr->dungeon_idx;
2063         p_ptr->dungeon_idx = 0;
2064         if (lite_town || vanilla_town)
2065         {
2066                 creature_ptr->wilderness_y = 1;
2067                 creature_ptr->wilderness_x = 1;
2068                 if (vanilla_town)
2069                 {
2070                         creature_ptr->oldpy = 10;
2071                         creature_ptr->oldpx = 34;
2072                 }
2073                 else
2074                 {
2075                         creature_ptr->oldpy = 33;
2076                         creature_ptr->oldpx = 131;
2077                 }
2078         }
2079         else
2080         {
2081                 creature_ptr->wilderness_y = 48;
2082                 creature_ptr->wilderness_x = 5;
2083                 creature_ptr->oldpy = 33;
2084                 creature_ptr->oldpx = 131;
2085         }
2086         creature_ptr->wild_mode = FALSE;
2087         creature_ptr->leaving = TRUE;
2088
2089         do_cmd_write_nikki(NIKKI_BUNSHOU, 1,
2090                 _("                            しかし、生き返った。",
2091                         "                            but revived."));
2092
2093         /* Prepare next floor */
2094         leave_floor();
2095         wipe_m_list();
2096
2097 }
2098
2099
2100 #else
2101
2102 #ifdef MACINTOSH
2103 static int i = 0;
2104 #endif
2105
2106 #endif
2107