OSDN Git Service

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