OSDN Git Service

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