OSDN Git Service

[Refactor] #37353 コメント整理 / Refactor comments.
[hengband/hengband.git] / src / object1.c
1 /*!
2  * @file object1.c
3  * @brief オブジェクトの実装 / Object code, part 1
4  * @date 2014/01/10
5  * @author
6  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke\n
7  *\n
8  * This software may be copied and distributed for educational, research,\n
9  * and not for profit purposes provided that this copyright and statement\n
10  * are included in all such copies.  Other copyrights may also apply.\n
11  * 2014 Deskull rearranged comment for Doxygen.\n
12  */
13
14 #include "angband.h"
15
16 #if defined(MACINTOSH) || defined(MACH_O_CARBON)
17 #ifdef verify
18 #undef verify
19 #endif
20 #endif
21
22 /*!
23  * @brief オブジェクト、地形の表示シンボルなど初期化する / Reset the "visual" lists
24  * @return なし
25  * This involves resetting various things to their "default" state.\n
26  *\n
27  * If the "prefs" flag is TRUE, then we will also load the appropriate\n
28  * "user pref file" based on the current setting of the "use_graphics"\n
29  * flag.  This is useful for switching "graphics" on/off.\n
30  *\n
31  * The features, objects, and monsters, should all be encoded in the\n
32  * relevant "font.pref" and/or "graf.prf" files.  \n
33  *\n
34  * The "prefs" parameter is no longer meaningful.  \n
35  */
36 void reset_visuals(void)
37 {
38         int i, j;
39
40         /* Extract some info about terrain features */
41         for (i = 0; i < max_f_idx; i++)
42         {
43                 feature_type *f_ptr = &f_info[i];
44
45                 /* Assume we will use the underlying values */
46                 for (j = 0; j < F_LIT_MAX; j++)
47                 {
48                         f_ptr->x_attr[j] = f_ptr->d_attr[j];
49                         f_ptr->x_char[j] = f_ptr->d_char[j];
50                 }
51         }
52
53         /* Extract default attr/char code for objects */
54         for (i = 0; i < max_k_idx; i++)
55         {
56                 object_kind *k_ptr = &k_info[i];
57
58                 /* Default attr/char */
59                 k_ptr->x_attr = k_ptr->d_attr;
60                 k_ptr->x_char = k_ptr->d_char;
61         }
62
63         /* Extract default attr/char code for monsters */
64         for (i = 0; i < max_r_idx; i++)
65         {
66                 monster_race *r_ptr = &r_info[i];
67
68                 /* Default attr/char */
69                 r_ptr->x_attr = r_ptr->d_attr;
70                 r_ptr->x_char = r_ptr->d_char;
71         }
72
73         if (use_graphics)
74         {
75                 char buf[1024];
76
77                 /* Process "graf.prf" */
78                 process_pref_file("graf.prf");
79
80                 /* Access the "character" pref file */
81                 sprintf(buf, "graf-%s.prf", player_base);
82
83                 /* Process "graf-<playername>.prf" */
84                 process_pref_file(buf);
85         }
86
87         /* Normal symbols */
88         else
89         {
90                 char buf[1024];
91
92                 /* Process "font.prf" */
93                 process_pref_file("font.prf");
94
95                 /* Access the "character" pref file */
96                 sprintf(buf, "font-%s.prf", player_base);
97
98                 /* Process "font-<playername>.prf" */
99                 process_pref_file(buf);
100         }
101 }
102
103 /*!
104  * @brief オブジェクトのフラグ類を配列に与える
105  * Obtain the "flags" for an item
106  * @param o_ptr フラグ取得元のオブジェクト構造体ポインタ
107  * @param flgs フラグ情報を受け取る配列
108  * @return なし
109  */
110 void object_flags(object_type *o_ptr, BIT_FLAGS flgs[TR_FLAG_SIZE])
111 {
112         object_kind *k_ptr = &k_info[o_ptr->k_idx];
113         int i;
114
115         /* Base object */
116         for (i = 0; i < TR_FLAG_SIZE; i++)
117                 flgs[i] = k_ptr->flags[i];
118
119         /* Artifact */
120         if (object_is_fixed_artifact(o_ptr))
121         {
122                 artifact_type *a_ptr = &a_info[o_ptr->name1];
123
124                 for (i = 0; i < TR_FLAG_SIZE; i++)
125                         flgs[i] = a_ptr->flags[i];
126         }
127
128         /* Ego-item */
129         if (object_is_ego(o_ptr))
130         {
131                 ego_item_type *e_ptr = &e_info[o_ptr->name2];
132
133                 for (i = 0; i < TR_FLAG_SIZE; i++)
134                         flgs[i] |= e_ptr->flags[i];
135
136                 if ((o_ptr->name2 == EGO_LITE_AURA_FIRE) && !o_ptr->xtra4 && (o_ptr->sval <= SV_LITE_LANTERN))
137                 {
138                         remove_flag(flgs, TR_SH_FIRE);
139                 }
140                 else if ((o_ptr->name2 == EGO_LITE_INFRA) && !o_ptr->xtra4 && (o_ptr->sval <= SV_LITE_LANTERN))
141                 {
142                         remove_flag(flgs, TR_INFRA);
143                 }
144                 else if ((o_ptr->name2 == EGO_LITE_EYE) && !o_ptr->xtra4 && (o_ptr->sval <= SV_LITE_LANTERN))
145                 {
146                         remove_flag(flgs, TR_RES_BLIND);
147                         remove_flag(flgs, TR_SEE_INVIS);
148                 }
149         }
150
151         /* Random artifact ! */
152         for (i = 0; i < TR_FLAG_SIZE; i++)
153                 flgs[i] |= o_ptr->art_flags[i];
154
155         if (object_is_smith(o_ptr))
156         {
157                 int add = o_ptr->xtra3 - 1;
158
159                 if (add < TR_FLAG_MAX)
160                 {
161                         add_flag(flgs, add);
162                 }
163                 else if (add == ESSENCE_TMP_RES_ACID)
164                 {
165                         add_flag(flgs, TR_RES_ACID);
166                         add_flag(flgs, TR_ACTIVATE);
167                 }
168                 else if (add == ESSENCE_TMP_RES_ELEC)
169                 {
170                         add_flag(flgs, TR_RES_ELEC);
171                         add_flag(flgs, TR_ACTIVATE);
172                 }
173                 else if (add == ESSENCE_TMP_RES_FIRE)
174                 {
175                         add_flag(flgs, TR_RES_FIRE);
176                         add_flag(flgs, TR_ACTIVATE);
177                 }
178                 else if (add == ESSENCE_TMP_RES_COLD)
179                 {
180                         add_flag(flgs, TR_RES_COLD);
181                         add_flag(flgs, TR_ACTIVATE);
182                 }
183                 else if (add == ESSENCE_SH_FIRE)
184                 {
185                         add_flag(flgs, TR_RES_FIRE);
186                         add_flag(flgs, TR_SH_FIRE);
187                 }
188                 else if (add == ESSENCE_SH_ELEC)
189                 {
190                         add_flag(flgs, TR_RES_ELEC);
191                         add_flag(flgs, TR_SH_ELEC);
192                 }
193                 else if (add == ESSENCE_SH_COLD)
194                 {
195                         add_flag(flgs, TR_RES_COLD);
196                         add_flag(flgs, TR_SH_COLD);
197                 }
198                 else if (add == ESSENCE_RESISTANCE)
199                 {
200                         add_flag(flgs, TR_RES_ACID);
201                         add_flag(flgs, TR_RES_ELEC);
202                         add_flag(flgs, TR_RES_FIRE);
203                         add_flag(flgs, TR_RES_COLD);
204                 }
205                 else if (add == TR_IMPACT)
206                 {
207                         add_flag(flgs, TR_ACTIVATE);
208                 }
209         }
210 }
211
212 /*!
213  * @brief オブジェクトの明示されているフラグ類を取得する
214  * Obtain the "flags" for an item which are known to the player
215  * @param o_ptr フラグ取得元のオブジェクト構造体ポインタ
216  * @param flgs フラグ情報を受け取る配列
217  * @return なし
218  */
219 void object_flags_known(object_type *o_ptr, BIT_FLAGS flgs[TR_FLAG_SIZE])
220 {
221         bool spoil = FALSE;
222         int i;
223
224         object_kind *k_ptr = &k_info[o_ptr->k_idx];
225
226         /* Clear */
227         for (i = 0; i < TR_FLAG_SIZE; i++)
228                 flgs[i] = 0;
229
230         if (!object_is_aware(o_ptr)) return;
231
232         /* Base object */
233         for (i = 0; i < TR_FLAG_SIZE; i++)
234                 flgs[i] = k_ptr->flags[i];
235
236         /* Must be identified */
237         if (!object_is_known(o_ptr)) return;
238
239         /* Ego-item (known basic flags) */
240         if (object_is_ego(o_ptr))
241         {
242                 ego_item_type *e_ptr = &e_info[o_ptr->name2];
243
244                 for (i = 0; i < TR_FLAG_SIZE; i++)
245                         flgs[i] |= e_ptr->flags[i];
246
247                 if ((o_ptr->name2 == EGO_LITE_AURA_FIRE) && !o_ptr->xtra4 && (o_ptr->sval <= SV_LITE_LANTERN))
248                 {
249                         remove_flag(flgs, TR_SH_FIRE);
250                 }
251                 else if ((o_ptr->name2 == EGO_LITE_INFRA) && !o_ptr->xtra4 && (o_ptr->sval <= SV_LITE_LANTERN))
252                 {
253                         remove_flag(flgs, TR_INFRA);
254                 }
255                 else if ((o_ptr->name2 == EGO_LITE_EYE) && !o_ptr->xtra4 && (o_ptr->sval <= SV_LITE_LANTERN))
256                 {
257                         remove_flag(flgs, TR_RES_BLIND);
258                         remove_flag(flgs, TR_SEE_INVIS);
259                 }
260         }
261
262
263 #ifdef SPOIL_ARTIFACTS
264         /* Full knowledge for some artifacts */
265         if (object_is_artifact(o_ptr)) spoil = TRUE;
266 #endif /* SPOIL_ARTIFACTS */
267
268 #ifdef SPOIL_EGO_ITEMS
269         /* Full knowledge for some ego-items */
270         if (object_is_ego(o_ptr)) spoil = TRUE;
271 #endif /* SPOIL_EGO_ITEMS */
272
273         /* Need full knowledge or spoilers */
274         if (spoil || (o_ptr->ident & IDENT_MENTAL))
275         {
276                 /* Artifact */
277                 if (object_is_fixed_artifact(o_ptr))
278                 {
279                         artifact_type *a_ptr = &a_info[o_ptr->name1];
280
281                         for (i = 0; i < TR_FLAG_SIZE; i++)
282                                 flgs[i] = a_ptr->flags[i];
283                 }
284
285                 /* Random artifact ! */
286                 for (i = 0; i < TR_FLAG_SIZE; i++)
287                         flgs[i] |= o_ptr->art_flags[i];
288         }
289
290         if (object_is_smith(o_ptr))
291         {
292                 int add = o_ptr->xtra3 - 1;
293
294                 if (add < TR_FLAG_MAX)
295                 {
296                         add_flag(flgs, add);
297                 }
298                 else if (add == ESSENCE_TMP_RES_ACID)
299                 {
300                         add_flag(flgs, TR_RES_ACID);
301                 }
302                 else if (add == ESSENCE_TMP_RES_ELEC)
303                 {
304                         add_flag(flgs, TR_RES_ELEC);
305                 }
306                 else if (add == ESSENCE_TMP_RES_FIRE)
307                 {
308                         add_flag(flgs, TR_RES_FIRE);
309                 }
310                 else if (add == ESSENCE_TMP_RES_COLD)
311                 {
312                         add_flag(flgs, TR_RES_COLD);
313                 }
314                 else if (add == ESSENCE_SH_FIRE)
315                 {
316                         add_flag(flgs, TR_RES_FIRE);
317                         add_flag(flgs, TR_SH_FIRE);
318                 }
319                 else if (add == ESSENCE_SH_ELEC)
320                 {
321                         add_flag(flgs, TR_RES_ELEC);
322                         add_flag(flgs, TR_SH_ELEC);
323                 }
324                 else if (add == ESSENCE_SH_COLD)
325                 {
326                         add_flag(flgs, TR_RES_COLD);
327                         add_flag(flgs, TR_SH_COLD);
328                 }
329                 else if (add == ESSENCE_RESISTANCE)
330                 {
331                         add_flag(flgs, TR_RES_ACID);
332                         add_flag(flgs, TR_RES_ELEC);
333                         add_flag(flgs, TR_RES_FIRE);
334                         add_flag(flgs, TR_RES_COLD);
335                 }
336         }
337 }
338
339 /*!
340  * @brief オブジェクトの発動効果名称を返す(サブルーチン/ブレス)
341  * @param o_ptr 名称を取得する元のオブジェクト構造体参照ポインタ
342  * @return cptr 発動名称を返す文字列ポインタ
343  */
344 static cptr item_activation_dragon_breath(object_type *o_ptr)
345 {
346         static char desc[256];
347         BIT_FLAGS flgs[TR_FLAG_SIZE]; /* for resistance flags */
348         int i, n = 0;
349
350         object_flags(o_ptr, flgs);
351         strcpy(desc, _("", "breath "));
352
353         for (i = 0; dragonbreath_info[i].flag != 0; i++)
354         {
355                 if (have_flag(flgs, dragonbreath_info[i].flag))
356                 {
357                         if (n > 0) strcat(desc, _("、", ", "));
358                         strcat(desc, dragonbreath_info[i].name);
359                         n++;
360                 }
361         }
362
363         strcat(desc, _("のブレス(250)", ""));
364
365         return (desc);
366 }
367
368 /*!
369  * @brief オブジェクトの発動効果名称を返す(サブルーチン/汎用)
370  * @param o_ptr 名称を取得する元のオブジェクト構造体参照ポインタ
371  * @return cptr 発動名称を返す文字列ポインタ
372  */
373 static cptr item_activation_aux(object_type *o_ptr)
374 {
375         static char activation_detail[256];
376         cptr desc;
377         char timeout[32];
378         int constant, dice;
379         const activation_type* const act_ptr = find_activation_info(o_ptr);
380
381         if (!act_ptr) return _("未定義", "something undefined");
382
383         desc = act_ptr->desc;
384
385         /* Overwrite description if it is special */
386         switch (act_ptr->index) {
387         case ACT_BR_FIRE:
388                 if ((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_FLAMES))
389                         desc = _("火炎のブレス (200) と火への耐性", "breath of fire (200) and resist fire");
390                 break;
391         case ACT_BR_COLD:
392                 if ((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_ICE))
393                         desc = _("冷気のブレス (200) と冷気への耐性", "breath of cold (200) and resist cold");
394                 break;
395         case ACT_BR_DRAGON:
396                 desc = item_activation_dragon_breath(o_ptr);
397                 break;
398         case ACT_AGGRAVATE:
399                 if (o_ptr->name1 == ART_HYOUSIGI)
400                         desc = _("拍子木を打ちならす", "beat wooden clappers");
401                 break;
402         case ACT_RESIST_ACID:
403                 if (((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_ACID)) || (o_ptr->name2 == EGO_BRAND_ACID))
404                         desc = _("アシッド・ボール (100) と酸への耐性", "ball of acid (100) and resist acid");
405                 break;
406         case ACT_RESIST_FIRE:
407                 if (((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_FLAMES)) || (o_ptr->name2 == EGO_BRAND_FIRE))
408                         desc = _("ファイア・ボール (100) と火への耐性", "ball of fire (100) and resist fire");
409                 break;
410         case ACT_RESIST_COLD:
411                 if (((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_ICE)) || (o_ptr->name2 == EGO_BRAND_COLD))
412                         desc = _("アイス・ボール (100) と冷気への耐性", "ball of cold (100) and resist cold");
413                 break;
414         case ACT_RESIST_ELEC:
415                 if (((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_ELEC)) || (o_ptr->name2 == EGO_BRAND_ELEC))
416                         desc = _("サンダー・ボール (100) と電撃への耐性", "ball of elec (100) and resist elec");
417                 break;
418         case ACT_RESIST_POIS:
419                 if (o_ptr->name2 == EGO_BRAND_POIS)
420                         desc = _("悪臭雲 (100) と毒への耐性", "ball of poison (100) and resist elec");
421                 break;
422         }
423
424         /* Timeout description */
425         constant = act_ptr->timeout.constant;
426         dice = act_ptr->timeout.dice;
427         if (constant == 0 && dice == 0) {
428                 /* We can activate it every turn */
429                 strcpy(timeout, _("いつでも", "every turn"));
430         } else if (constant < 0) {
431                 /* Activations that have special timeout */
432                 switch (act_ptr->index) {
433                 case ACT_BR_FIRE:
434                         sprintf(timeout, _("%d ターン毎", "every %d turns"),
435                                 ((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_FLAMES)) ? 200 : 250);
436                         break;
437                 case ACT_BR_COLD:
438                         sprintf(timeout, _("%d ターン毎", "every %d turns"),
439                                 ((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_ICE)) ? 200 : 250);
440                         break;
441                 case ACT_TERROR:
442                         strcpy(timeout, _("3*(レベル+10) ターン毎", "every 3 * (level+10) turns"));
443                         break;
444                 case ACT_MURAMASA:
445                         strcpy(timeout, _("確率50%で壊れる", "(destroyed 50%)"));
446                         break;
447                 default:
448                         strcpy(timeout, "undefined");
449                         break;
450                 }
451         } else {
452                 /* Normal timeout activations */
453                 char constant_str[16], dice_str[16];
454                 sprintf(constant_str, "%d", constant);
455                 sprintf(dice_str, "d%d", dice);
456                 sprintf(timeout, _("%s%s%s ターン毎", "every %s%s%s turns"),
457                         (constant > 0) ? constant_str : "",
458                         (constant > 0 && dice > 0) ? "+" : "",
459                         (dice > 0) ? dice_str : "");
460         }
461
462         /* Build detail activate description */
463         sprintf(activation_detail, _("%s : %s", "%s %s"), desc, timeout);
464
465         return activation_detail;
466 }
467
468 /*!
469  * @brief オブジェクトの発動効果名称を返す(メインルーチン) /
470  * Determine the "Activation" (if any) for an artifact Return a string, or NULL for "no activation"
471  * @param o_ptr 名称を取得する元のオブジェクト構造体参照ポインタ
472  * @return cptr 発動名称を返す文字列ポインタ
473  */
474 cptr item_activation(object_type *o_ptr)
475 {
476         BIT_FLAGS flgs[TR_FLAG_SIZE];
477
478         /* Extract the flags */
479         object_flags(o_ptr, flgs);
480
481         /* Require activation ability */
482         if (!(have_flag(flgs, TR_ACTIVATE))) return (_("なし", "nothing"));
483
484         /* Get an explain of an activation */
485         if (activation_index(o_ptr))
486         {
487                 return item_activation_aux(o_ptr);
488         }
489
490         /* Special items */
491         if (o_ptr->tval == TV_WHISTLE)
492         {
493                 return _("ペット呼び寄せ : 100+d100ターン毎", "call pet every 100+d100 turns");
494         }
495
496         if (o_ptr->tval == TV_CAPTURE)
497         {
498                 return _("モンスターを捕える、又は解放する。", "captures or releases a monster.");
499         }
500
501         return _("何も起きない", "Nothing");
502 }
503
504
505 /*!
506  * @brief オブジェクトの*鑑定*内容を詳述して表示する /
507  * Describe a "fully identified" item
508  * @param o_ptr *鑑定*情報を取得する元のオブジェクト構造体参照ポインタ
509  * @param mode 表示オプション
510  * @return 特筆すべき情報が一つでもあった場合TRUE、一つもなく表示がキャンセルされた場合FALSEを返す。
511  */
512 bool screen_object(object_type *o_ptr, BIT_FLAGS mode)
513 {
514         int i = 0, j, k;
515
516         BIT_FLAGS flgs[TR_FLAG_SIZE];
517
518         char temp[70 * 20];
519         cptr            info[128];
520         char o_name[MAX_NLEN];
521         int wid, hgt;
522         POSITION rad;
523         char desc[256];
524
525         int trivial_info = 0;
526
527         /* Extract the flags */
528         object_flags(o_ptr, flgs);
529
530         /* Extract the description */
531         {
532                 roff_to_buf(o_ptr->name1 ? (a_text + a_info[o_ptr->name1].text) :
533                             (k_text + k_info[o_ptr->k_idx].text),
534                             77 - 15, temp, sizeof(temp));
535                 for (j = 0; temp[j]; j += 1 + strlen(&temp[j]))
536                 { info[i] = &temp[j]; i++;}
537         }
538
539         if (object_is_equipment(o_ptr))
540         {
541                 /* Descriptions of a basic equipment is just a flavor */
542                 trivial_info = i;
543         }
544
545         /* Mega-Hack -- describe activation */
546         if (have_flag(flgs, TR_ACTIVATE))
547         {
548                 info[i++] = _("始動したときの効果...", "It can be activated for...");
549                 info[i++] = item_activation(o_ptr);
550                 info[i++] = _("...ただし装備していなければならない。", "...if it is being worn.");
551         }
552
553         /* Figurines, a hack */
554         if (o_ptr->tval == TV_FIGURINE)
555         {
556                 info[i++] = _("それは投げた時ペットに変化する。", "It will transform into a pet when thrown.");
557         }
558
559         /* Figurines, a hack */
560         if (o_ptr->name1 == ART_STONEMASK)
561         {
562                 info[i++] = _("それを装備した者は吸血鬼になる。", "It makes you turn into a vampire permanently.");
563         }
564
565         if ((o_ptr->tval == TV_SWORD) && (o_ptr->sval == SV_DOKUBARI))
566         {
567                 info[i++] = _("それは相手を一撃で倒すことがある。", "It will attempt to kill a monster instantly.");
568         }
569
570         if ((o_ptr->tval == TV_POLEARM) && (o_ptr->sval == SV_DEATH_SCYTHE))
571         {
572                 info[i++] = _("それは自分自身に攻撃が返ってくることがある。", "It causes you to strike yourself sometimes.");
573                 info[i++] = _("それは無敵のバリアを切り裂く。", "It always penetrates invulnerability barriers.");
574         }
575
576         if (o_ptr->name2 == EGO_2WEAPON)
577         {
578                 info[i++] = _("それは二刀流での命中率を向上させる。", "It affects your ability to hit when you are wielding two weapons.");
579         }
580
581         if (have_flag(flgs, TR_EASY_SPELL))
582         {
583                 info[i++] = _("それは魔法の難易度を下げる。", "It affects your ability to cast spells.");
584         }
585
586         if (o_ptr->name2 == EGO_AMU_FOOL)
587         {
588                 info[i++] = _("それは魔法の難易度を上げる。", "It interferes with casting spells.");
589         }
590
591         if (o_ptr->name2 == EGO_RING_THROW)
592         {
593                 info[i++] = _("それは物を強く投げることを可能にする。", "It provides great strength when you throw an item.");
594         }
595
596         if (o_ptr->name2 == EGO_AMU_NAIVETY)
597         {
598                 info[i++] = _("それは魔法抵抗力を下げる。", "It decreases your magic resistance.");
599         }
600
601         if (o_ptr->tval == TV_STATUE)
602         {
603                 monster_race *r_ptr = &r_info[o_ptr->pval];
604
605                 if (o_ptr->pval == MON_BULLGATES)
606                         info[i++] = _("それは部屋に飾ると恥ずかしい。", "It is shameful.");
607                 else if ( r_ptr->flags2 & (RF2_ELDRITCH_HORROR))
608                         info[i++] = _("それは部屋に飾ると恐い。", "It is fearful.");
609                 else
610                         info[i++] = _("それは部屋に飾ると楽しい。", "It is cheerful.");
611         }
612         
613         /* Hack -- describe lite's */
614         
615         if (o_ptr->name2 == EGO_LITE_DARKNESS) info[i++] = _("それは全く光らない。", "It provides no light.");
616         
617         rad = 0;
618         if (have_flag(flgs, TR_LITE_1) && o_ptr->name2 != EGO_LITE_DARKNESS)  rad += 1;
619         if (have_flag(flgs, TR_LITE_2) && o_ptr->name2 != EGO_LITE_DARKNESS)  rad += 2;
620         if (have_flag(flgs, TR_LITE_3) && o_ptr->name2 != EGO_LITE_DARKNESS)  rad += 3;
621         if (have_flag(flgs, TR_LITE_M1)) rad -= 1;
622         if (have_flag(flgs, TR_LITE_M2)) rad -= 2;
623         if (have_flag(flgs, TR_LITE_M3)) rad -= 3;
624         
625         if(o_ptr->name2 == EGO_LITE_SHINE) rad++;
626                 
627         if (have_flag(flgs, TR_LITE_FUEL) && o_ptr->name2 != EGO_LITE_DARKNESS)
628         {
629                 if(rad > 0) sprintf(desc, _("それは燃料補給によって明かり(半径 %d)を授ける。", "It provides light (radius %d) when fueled."), (int)rad);   
630         }
631         else
632         {
633                 if(rad > 0) sprintf(desc, _("それは永遠なる明かり(半径 %d)を授ける。", "It provides light (radius %d) forever."), (int)rad);
634                 if(rad < 0) sprintf(desc, _("それは明かりの半径を狭める(半径に-%d)。", "It decreases radius of light source by %d."), (int)-rad);
635         }
636         
637         if(rad != 0) info[i++] = desc;
638
639         
640         if (o_ptr->name2 == EGO_LITE_LONG)
641         {
642                 info[i++] = _("それは長いターン明かりを授ける。", "It provides light for much longer time.");
643         }
644
645         /* And then describe it fully */
646
647         if (have_flag(flgs, TR_RIDING))
648         {
649                 if ((o_ptr->tval == TV_POLEARM) && ((o_ptr->sval == SV_LANCE) || (o_ptr->sval == SV_HEAVY_LANCE)))
650                         info[i++] = _("それは乗馬中は非常に使いやすい。", "It is made for use while riding.");
651                 else
652                 {
653                         info[i++] = _("それは乗馬中でも使いやすい。", "It is suitable for use while riding.");
654                         /* This information is not important enough */
655                         trivial_info++;
656                 }
657         }
658         if (have_flag(flgs, TR_STR))
659         {
660                 info[i++] = _("それは腕力に影響を及ぼす。", "It affects your strength.");
661         }
662         if (have_flag(flgs, TR_INT))
663         {
664                 info[i++] = _("それは知能に影響を及ぼす。", "It affects your intelligence.");
665         }
666         if (have_flag(flgs, TR_WIS))
667         {
668                 info[i++] = _("それは賢さに影響を及ぼす。", "It affects your wisdom.");
669         }
670         if (have_flag(flgs, TR_DEX))
671         {
672                 info[i++] = _("それは器用さに影響を及ぼす。", "It affects your dexterity.");
673         }
674         if (have_flag(flgs, TR_CON))
675         {
676                 info[i++] = _("それは耐久力に影響を及ぼす。", "It affects your constitution.");
677         }
678         if (have_flag(flgs, TR_CHR))
679         {
680                 info[i++] = _("それは魅力に影響を及ぼす。", "It affects your charisma.");
681         }
682
683         if (have_flag(flgs, TR_MAGIC_MASTERY))
684         {
685                 info[i++] = _("それは魔法道具使用能力に影響を及ぼす。", "It affects your ability to use magic devices.");
686
687         }
688         if (have_flag(flgs, TR_STEALTH))
689         {
690                 info[i++] = _("それは隠密行動能力に影響を及ぼす。", "It affects your stealth.");
691         }
692         if (have_flag(flgs, TR_SEARCH))
693         {
694                 info[i++] = _("それは探索能力に影響を及ぼす。", "It affects your searching.");
695         }
696         if (have_flag(flgs, TR_INFRA))
697         {
698                 info[i++] = _("それは赤外線視力に影響を及ぼす。", "It affects your infravision.");
699         }
700         if (have_flag(flgs, TR_TUNNEL))
701         {
702                 info[i++] = _("それは採掘能力に影響を及ぼす。", "It affects your ability to tunnel.");
703         }
704         if (have_flag(flgs, TR_SPEED))
705         {
706                 info[i++] = _("それはスピードに影響を及ぼす。", "It affects your speed.");
707         }
708         if (have_flag(flgs, TR_BLOWS))
709         {
710                 info[i++] = _("それは打撃回数に影響を及ぼす。", "It affects your attack speed.");
711         }
712
713         if (have_flag(flgs, TR_BRAND_ACID))
714         {
715                 info[i++] = _("それは酸によって大きなダメージを与える。", "It does extra damage from acid.");
716         }
717         if (have_flag(flgs, TR_BRAND_ELEC))
718         {
719                 info[i++] = _("それは電撃によって大きなダメージを与える。", "It does extra damage from electricity.");
720         }
721         if (have_flag(flgs, TR_BRAND_FIRE))
722         {
723                 info[i++] = _("それは火炎によって大きなダメージを与える。", "It does extra damage from fire.");
724         }
725         if (have_flag(flgs, TR_BRAND_COLD))
726         {
727                 info[i++] = _("それは冷気によって大きなダメージを与える。", "It does extra damage from frost.");
728         }
729
730         if (have_flag(flgs, TR_BRAND_POIS))
731         {
732                 info[i++] = _("それは敵を毒する。", "It poisons your foes.");
733         }
734
735         if (have_flag(flgs, TR_CHAOTIC))
736         {
737                 info[i++] = _("それはカオス的な効果を及ぼす。", "It produces chaotic effects.");
738         }
739
740         if (have_flag(flgs, TR_VAMPIRIC))
741         {
742                 info[i++] = _("それは敵から生命力を吸収する。", "It drains life from your foes.");
743         }
744
745         if (have_flag(flgs, TR_IMPACT))
746         {
747                 info[i++] = _("それは地震を起こすことができる。", "It can cause earthquakes.");
748         }
749
750         if (have_flag(flgs, TR_VORPAL))
751         {
752                 info[i++] = _("それは非常に切れ味が鋭く敵を切断することができる。", "It is very sharp and can cut your foes.");
753         }
754
755         if (have_flag(flgs, TR_KILL_DRAGON))
756         {
757                 info[i++] = _("それはドラゴンにとっての天敵である。", "It is a great bane of dragons.");
758         }
759         else if (have_flag(flgs, TR_SLAY_DRAGON))
760         {
761                 info[i++] = _("それはドラゴンに対して特に恐るべき力を発揮する。", "It is especially deadly against dragons.");
762         }
763
764         if (have_flag(flgs, TR_KILL_ORC))
765         {
766                 info[i++] = _("それはオークにとっての天敵である。", "It is a great bane of orcs.");
767         }
768         if (have_flag(flgs, TR_SLAY_ORC))
769         {
770                 info[i++] = _("それはオークに対して特に恐るべき力を発揮する。", "It is especially deadly against orcs.");
771         }
772
773         if (have_flag(flgs, TR_KILL_TROLL))
774         {
775                 info[i++] = _("それはトロルにとっての天敵である。", "It is a great bane of trolls.");
776         }
777         if (have_flag(flgs, TR_SLAY_TROLL))
778         {
779                 info[i++] = _("それはトロルに対して特に恐るべき力を発揮する。", "It is especially deadly against trolls.");
780         }
781
782         if (have_flag(flgs, TR_KILL_GIANT))
783         {
784                 info[i++] = _("それは巨人にとっての天敵である。", "It is a great bane of giants.");
785         }
786         else if (have_flag(flgs, TR_SLAY_GIANT))
787         {
788                 info[i++] = _("それはジャイアントに対して特に恐るべき力を発揮する。", "It is especially deadly against giants.");
789         }
790
791         if (have_flag(flgs, TR_KILL_DEMON))
792         {
793                 info[i++] = _("それはデーモンにとっての天敵である。", "It is a great bane of demons.");
794         }
795         if (have_flag(flgs, TR_SLAY_DEMON))
796         {
797                 info[i++] = _("それはデーモンに対して聖なる力を発揮する。", "It strikes at demons with holy wrath.");
798         }
799
800         if (have_flag(flgs, TR_KILL_UNDEAD))
801         {
802                 info[i++] = _("それはアンデッドにとっての天敵である。", "It is a great bane of undead.");
803         }
804         if (have_flag(flgs, TR_SLAY_UNDEAD))
805         {
806                 info[i++] = _("それはアンデッドに対して聖なる力を発揮する。", "It strikes at undead with holy wrath.");
807         }
808
809         if (have_flag(flgs, TR_KILL_EVIL))
810         {
811                 info[i++] = _("それは邪悪なる存在にとっての天敵である。", "It is a great bane of evil monsters.");
812         }
813         if (have_flag(flgs, TR_SLAY_EVIL))
814         {
815                 info[i++] = _("それは邪悪なる存在に対して聖なる力で攻撃する。", "It fights against evil with holy fury.");
816         }
817
818         if (have_flag(flgs, TR_KILL_ANIMAL))
819         {
820                 info[i++] = _("それは自然界の動物にとっての天敵である。", "It is a great bane of natural creatures.");
821         }
822         if (have_flag(flgs, TR_SLAY_ANIMAL))
823         {
824                 info[i++] = _("それは自然界の動物に対して特に恐るべき力を発揮する。", "It is especially deadly against natural creatures.");
825         }
826
827         if (have_flag(flgs, TR_KILL_HUMAN))
828         {
829                 info[i++] = _("それは人間にとっての天敵である。", "It is a great bane of humans.");
830         }
831         if (have_flag(flgs, TR_SLAY_HUMAN))
832         {
833                 info[i++] = _("それは人間に対して特に恐るべき力を発揮する。", "It is especially deadly against humans.");
834         }
835
836         if (have_flag(flgs, TR_FORCE_WEAPON))
837         {
838                 info[i++] = _("それは使用者の魔力を使って攻撃する。", "It powerfully strikes at a monster using your mana.");
839         }
840         if (have_flag(flgs, TR_DEC_MANA))
841         {
842                 info[i++] = _("それは魔力の消費を押さえる。", "It decreases your mana consumption.");
843         }
844         if (have_flag(flgs, TR_SUST_STR))
845         {
846                 info[i++] = _("それはあなたの腕力を維持する。", "It sustains your strength.");
847         }
848         if (have_flag(flgs, TR_SUST_INT))
849         {
850                 info[i++] = _("それはあなたの知能を維持する。", "It sustains your intelligence.");
851         }
852         if (have_flag(flgs, TR_SUST_WIS))
853         {
854                 info[i++] = _("それはあなたの賢さを維持する。", "It sustains your wisdom.");
855         }
856         if (have_flag(flgs, TR_SUST_DEX))
857         {
858                 info[i++] = _("それはあなたの器用さを維持する。", "It sustains your dexterity.");
859         }
860         if (have_flag(flgs, TR_SUST_CON))
861         {
862                 info[i++] = _("それはあなたの耐久力を維持する。", "It sustains your constitution.");
863         }
864         if (have_flag(flgs, TR_SUST_CHR))
865         {
866                 info[i++] = _("それはあなたの魅力を維持する。", "It sustains your charisma.");
867         }
868
869         if (have_flag(flgs, TR_IM_ACID))
870         {
871                 info[i++] = _("それは酸に対する完全な免疫を授ける。", "It provides immunity to acid.");
872         }
873         if (have_flag(flgs, TR_IM_ELEC))
874         {
875                 info[i++] = _("それは電撃に対する完全な免疫を授ける。", "It provides immunity to electricity.");
876         }
877         if (have_flag(flgs, TR_IM_FIRE))
878         {
879                 info[i++] = _("それは火に対する完全な免疫を授ける。", "It provides immunity to fire.");
880         }
881         if (have_flag(flgs, TR_IM_COLD))
882         {
883                 info[i++] = _("それは寒さに対する完全な免疫を授ける。", "It provides immunity to cold.");
884         }
885
886         if (have_flag(flgs, TR_THROW))
887         {
888                 info[i++] = _("それは敵に投げて大きなダメージを与えることができる。", "It is perfectly balanced for throwing.");
889         }
890
891         if (have_flag(flgs, TR_FREE_ACT))
892         {
893                 info[i++] = _("それは麻痺に対する完全な免疫を授ける。", "It provides immunity to paralysis.");
894         }
895         if (have_flag(flgs, TR_HOLD_EXP))
896         {
897                 info[i++] = _("それは経験値吸収に対する耐性を授ける。", "It provides resistance to experience draining.");
898         }
899         if (have_flag(flgs, TR_RES_FEAR))
900         {
901                 info[i++] = _("それは恐怖への完全な耐性を授ける。", "It makes you completely fearless.");
902         }
903         if (have_flag(flgs, TR_RES_ACID))
904         {
905                 info[i++] = _("それは酸への耐性を授ける。", "It provides resistance to acid.");
906         }
907         if (have_flag(flgs, TR_RES_ELEC))
908         {
909                 info[i++] = _("それは電撃への耐性を授ける。", "It provides resistance to electricity.");
910         }
911         if (have_flag(flgs, TR_RES_FIRE))
912         {
913                 info[i++] = _("それは火への耐性を授ける。", "It provides resistance to fire.");
914         }
915         if (have_flag(flgs, TR_RES_COLD))
916         {
917                 info[i++] = _("それは寒さへの耐性を授ける。", "It provides resistance to cold.");
918         }
919         if (have_flag(flgs, TR_RES_POIS))
920         {
921                 info[i++] = _("それは毒への耐性を授ける。", "It provides resistance to poison.");
922         }
923
924         if (have_flag(flgs, TR_RES_LITE))
925         {
926                 info[i++] = _("それは閃光への耐性を授ける。", "It provides resistance to light.");
927         }
928         if (have_flag(flgs, TR_RES_DARK))
929         {
930                 info[i++] = _("それは暗黒への耐性を授ける。", "It provides resistance to dark.");
931         }
932
933         if (have_flag(flgs, TR_RES_BLIND))
934         {
935                 info[i++] = _("それは盲目への耐性を授ける。", "It provides resistance to blindness.");
936         }
937         if (have_flag(flgs, TR_RES_CONF))
938         {
939                 info[i++] = _("それは混乱への耐性を授ける。", "It provides resistance to confusion.");
940         }
941         if (have_flag(flgs, TR_RES_SOUND))
942         {
943                 info[i++] = _("それは轟音への耐性を授ける。", "It provides resistance to sound.");
944         }
945         if (have_flag(flgs, TR_RES_SHARDS))
946         {
947                 info[i++] = _("それは破片への耐性を授ける。", "It provides resistance to shards.");
948         }
949
950         if (have_flag(flgs, TR_RES_NETHER))
951         {
952                 info[i++] = _("それは地獄への耐性を授ける。", "It provides resistance to nether.");
953         }
954         if (have_flag(flgs, TR_RES_NEXUS))
955         {
956                 info[i++] = _("それは因果混乱への耐性を授ける。", "It provides resistance to nexus.");
957         }
958         if (have_flag(flgs, TR_RES_CHAOS))
959         {
960                 info[i++] = _("それはカオスへの耐性を授ける。", "It provides resistance to chaos.");
961         }
962         if (have_flag(flgs, TR_RES_DISEN))
963         {
964                 info[i++] = _("それは劣化への耐性を授ける。", "It provides resistance to disenchantment.");
965         }
966
967         if (have_flag(flgs, TR_LEVITATION))
968         {
969                 info[i++] = _("それは宙に浮くことを可能にする。", "It allows you to levitate.");
970         }
971                 
972         if (have_flag(flgs, TR_SEE_INVIS))
973         {
974                 info[i++] = _("それは透明なモンスターを見ることを可能にする。", "It allows you to see invisible monsters.");
975         }
976         if (have_flag(flgs, TR_TELEPATHY))
977         {
978                 info[i++] = _("それはテレパシー能力を授ける。", "It gives telepathic powers.");
979         }
980         if (have_flag(flgs, TR_ESP_ANIMAL))
981         {
982                 info[i++] = _("それは自然界の生物を感知する。", "It senses natural creatures.");
983         }
984         if (have_flag(flgs, TR_ESP_UNDEAD))
985         {
986                 info[i++] = _("それはアンデッドを感知する。", "It senses undead.");
987         }
988         if (have_flag(flgs, TR_ESP_DEMON))
989         {
990                 info[i++] = _("それは悪魔を感知する。", "It senses demons.");
991         }
992         if (have_flag(flgs, TR_ESP_ORC))
993         {
994                 info[i++] = _("それはオークを感知する。", "It senses orcs.");
995         }
996         if (have_flag(flgs, TR_ESP_TROLL))
997         {
998                 info[i++] = _("それはトロルを感知する。", "It senses trolls.");
999         }
1000         if (have_flag(flgs, TR_ESP_GIANT))
1001         {
1002                 info[i++] = _("それは巨人を感知する。", "It senses giants.");
1003         }
1004         if (have_flag(flgs, TR_ESP_DRAGON))
1005         {
1006                 info[i++] = _("それはドラゴンを感知する。", "It senses dragons.");
1007         }
1008         if (have_flag(flgs, TR_ESP_HUMAN))
1009         {
1010                 info[i++] = _("それは人間を感知する。", "It senses humans.");
1011         }
1012         if (have_flag(flgs, TR_ESP_EVIL))
1013         {
1014                 info[i++] = _("それは邪悪な存在を感知する。", "It senses evil creatures.");
1015         }
1016         if (have_flag(flgs, TR_ESP_GOOD))
1017         {
1018                 info[i++] = _("それは善良な存在を感知する。", "It senses good creatures.");
1019         }
1020         if (have_flag(flgs, TR_ESP_NONLIVING))
1021         {
1022                 info[i++] = _("それは活動する無生物体を感知する。", "It senses non-living creatures.");
1023         }
1024         if (have_flag(flgs, TR_ESP_UNIQUE))
1025         {
1026                 info[i++] = _("それは特別な強敵を感知する。", "It senses unique monsters.");
1027         }
1028         if (have_flag(flgs, TR_SLOW_DIGEST))
1029         {
1030                 info[i++] = _("それはあなたの新陳代謝を遅くする。", "It slows your metabolism.");
1031         }
1032         if (have_flag(flgs, TR_REGEN))
1033         {
1034                 info[i++] = _("それは体力回復力を強化する。", "It speeds your regenerative powers.");
1035         }
1036         if (have_flag(flgs, TR_WARNING))
1037         {
1038                 info[i++] = _("それは危険に対して警告を発する。", "It warns you of danger");
1039         }
1040         if (have_flag(flgs, TR_REFLECT))
1041         {
1042                 info[i++] = _("それは矢の呪文を反射する。", "It reflects bolt spells.");
1043         }
1044         if (have_flag(flgs, TR_SH_FIRE))
1045         {
1046                 info[i++] = _("それは炎のバリアを張る。", "It produces a fiery sheath.");
1047         }
1048         if (have_flag(flgs, TR_SH_ELEC))
1049         {
1050                 info[i++] = _("それは電気のバリアを張る。", "It produces an electric sheath.");
1051         }
1052         if (have_flag(flgs, TR_SH_COLD))
1053         {
1054                 info[i++] = _("それは冷気のバリアを張る。", "It produces a sheath of coldness.");
1055         }
1056         if (have_flag(flgs, TR_NO_MAGIC))
1057         {
1058                 info[i++] = _("それは反魔法バリアを張る。", "It produces an anti-magic shell.");
1059         }
1060         if (have_flag(flgs, TR_NO_TELE))
1061         {
1062                 info[i++] = _("それはテレポートを邪魔する。", "It prevents teleportation.");
1063         }
1064         if (have_flag(flgs, TR_XTRA_MIGHT))
1065         {
1066                 info[i++] = _("それは矢/ボルト/弾をより強力に発射することができる。", "It fires missiles with extra might.");
1067         }
1068         if (have_flag(flgs, TR_XTRA_SHOTS))
1069         {
1070                 info[i++] = _("それは矢/ボルト/弾を非常に早く発射することができる。", "It fires missiles excessively fast.");
1071         }
1072
1073         if (have_flag(flgs, TR_BLESSED))
1074         {
1075                 info[i++] = _("それは神に祝福されている。", "It has been blessed by the gods.");
1076         }
1077
1078         if (object_is_cursed(o_ptr))
1079         {
1080                 if (o_ptr->curse_flags & TRC_PERMA_CURSE)
1081                 {
1082                         info[i++] = _("それは永遠の呪いがかけられている。", "It is permanently cursed.");
1083                 }
1084                 else if (o_ptr->curse_flags & TRC_HEAVY_CURSE)
1085                 {
1086                         info[i++] = _("それは強力な呪いがかけられている。", "It is heavily cursed.");
1087                 }
1088                 else
1089                 {
1090                         info[i++] = _("それは呪われている。", "It is cursed.");
1091
1092                         /*
1093                          * It's a trivial infomation since there is
1094                          * fake inscription {cursed}
1095                          */
1096                         trivial_info++;
1097                 }
1098         }
1099
1100         if ((have_flag(flgs, TR_TY_CURSE)) || (o_ptr->curse_flags & TRC_TY_CURSE))
1101         {
1102                 info[i++] = _("それは太古の禍々しい怨念が宿っている。", "It carries an ancient foul curse.");
1103         }
1104         if ((have_flag(flgs, TR_AGGRAVATE)) || (o_ptr->curse_flags & TRC_AGGRAVATE))
1105         {
1106                 info[i++] = _("それは付近のモンスターを怒らせる。", "It aggravates nearby creatures.");
1107         }
1108         if ((have_flag(flgs, TR_DRAIN_EXP)) || (o_ptr->curse_flags & TRC_DRAIN_EXP))
1109         {
1110                 info[i++] = _("それは経験値を吸い取る。", "It drains experience.");
1111         }
1112         if (o_ptr->curse_flags & TRC_SLOW_REGEN)
1113         {
1114                 info[i++] = _("それは回復力を弱める。", "It slows your regenerative powers.");
1115         }
1116         if ((o_ptr->curse_flags & TRC_ADD_L_CURSE) || have_flag(flgs, TR_ADD_L_CURSE))
1117         {
1118                 info[i++] = _("それは弱い呪いを増やす。","It adds weak curses.");
1119         }
1120         if ((o_ptr->curse_flags & TRC_ADD_H_CURSE) || have_flag(flgs, TR_ADD_H_CURSE))
1121         {
1122                 info[i++] = _("それは強力な呪いを増やす。","It adds heavy curses.");
1123         }
1124         if ((have_flag(flgs, TR_CALL_ANIMAL)) || (o_ptr->curse_flags & TRC_CALL_ANIMAL))
1125         {
1126                 info[i++] = _("それは動物を呼び寄せる。", "It attracts animals.");
1127         }
1128         if ((have_flag(flgs, TR_CALL_DEMON)) || (o_ptr->curse_flags & TRC_CALL_DEMON))
1129         {
1130                 info[i++] = _("それは悪魔を呼び寄せる。", "It attracts demons.");
1131         }
1132         if ((have_flag(flgs, TR_CALL_DRAGON)) || (o_ptr->curse_flags & TRC_CALL_DRAGON))
1133         {
1134                 info[i++] = _("それはドラゴンを呼び寄せる。", "It attracts dragons.");
1135         }
1136         if ((have_flag(flgs, TR_CALL_UNDEAD)) || (o_ptr->curse_flags & TRC_CALL_UNDEAD))
1137         {
1138                 info[i++] = _("それは死霊を呼び寄せる。", "It attracts undeads.");
1139         }
1140         if ((have_flag(flgs, TR_COWARDICE)) ||  (o_ptr->curse_flags & TRC_COWARDICE))
1141         {
1142                 info[i++] = _("それは恐怖感を引き起こす。", "It makes you subject to cowardice.");
1143         }
1144         if ((have_flag(flgs, TR_TELEPORT)) || (o_ptr->curse_flags & TRC_TELEPORT))
1145         {
1146                 info[i++] = _("それはランダムなテレポートを引き起こす。", "It induces random teleportation.");
1147         }
1148         if ((have_flag(flgs, TR_LOW_MELEE)) || o_ptr->curse_flags & TRC_LOW_MELEE)
1149         {
1150                 info[i++] = _("それは攻撃を外しやすい。", "It causes you to miss blows.");
1151         }
1152         if ((have_flag(flgs, TR_LOW_AC)) || (o_ptr->curse_flags & TRC_LOW_AC))
1153         {
1154                 info[i++] = _("それは攻撃を受けやすい。", "It helps your enemies' blows.");
1155         }
1156         if ((have_flag(flgs, TR_LOW_MAGIC)) || (o_ptr->curse_flags & TRC_LOW_MAGIC))
1157         {
1158                 info[i++] = _("それは魔法を唱えにくくする。", "It encumbers you while spellcasting.");
1159         }
1160         if ((have_flag(flgs, TR_FAST_DIGEST)) || (o_ptr->curse_flags & TRC_FAST_DIGEST))
1161         {
1162                 info[i++] = _("それはあなたの新陳代謝を速くする。", "It speeds your metabolism.");
1163         }
1164         if ((have_flag(flgs, TR_DRAIN_HP)) || (o_ptr->curse_flags & TRC_DRAIN_HP))
1165         {
1166                 info[i++] = _("それはあなたの体力を吸い取る。", "It drains you.");
1167         }
1168         if ((have_flag(flgs, TR_DRAIN_MANA)) || (o_ptr->curse_flags & TRC_DRAIN_MANA))
1169         {
1170                 info[i++] = _("それはあなたの魔力を吸い取る。", "It drains your mana.");
1171         }
1172
1173         /* Describe about this kind of object instead of THIS fake object */
1174         if (mode & SCROBJ_FAKE_OBJECT)
1175         {
1176                 switch (o_ptr->tval)
1177                 {
1178                 case TV_RING:
1179                         switch (o_ptr->sval)
1180                         {
1181                         case SV_RING_LORDLY:
1182                                 info[i++] = _("それは幾つかのランダムな耐性を授ける。", "It provides some random resistances.");
1183                                 break;
1184                         case SV_RING_WARNING:
1185                                 info[i++] = _("それはひとつの低級なESPを授ける事がある。", "It may provide a low rank ESP.");
1186                                 break;
1187                         }
1188                         break;
1189
1190                 case TV_AMULET:
1191                         switch (o_ptr->sval)
1192                         {
1193                         case SV_AMULET_RESISTANCE:
1194                                 info[i++] = _("それは毒への耐性を授ける事がある。", "It may provides resistance to poison.");
1195                                 info[i++] = _("それはランダムな耐性を授ける事がある。", "It may provide a random resistances.");
1196                                 break;
1197                         case SV_AMULET_THE_MAGI:
1198                                 info[i++] = _("それは最大で3つまでの低級なESPを授ける。", "It provides up to three low rank ESPs.");
1199                                 break;
1200                         }
1201                         break;
1202                 }
1203         }
1204
1205         if (have_flag(flgs, TR_IGNORE_ACID) &&
1206             have_flag(flgs, TR_IGNORE_ELEC) &&
1207             have_flag(flgs, TR_IGNORE_FIRE) &&
1208             have_flag(flgs, TR_IGNORE_COLD))
1209         {
1210                 info[i++] = _("それは酸・電撃・火炎・冷気では傷つかない。", "It cannot be harmed by the elements.");
1211         }
1212         else
1213         {
1214                 if (have_flag(flgs, TR_IGNORE_ACID))
1215                 {
1216                         info[i++] = _("それは酸では傷つかない。", "It cannot be harmed by acid.");
1217                 }
1218                 if (have_flag(flgs, TR_IGNORE_ELEC))
1219                 {
1220                         info[i++] = _("それは電撃では傷つかない。", "It cannot be harmed by electricity.");
1221                 }
1222                 if (have_flag(flgs, TR_IGNORE_FIRE))
1223                 {
1224                         info[i++] = _("それは火炎では傷つかない。", "It cannot be harmed by fire.");
1225                 }
1226                 if (have_flag(flgs, TR_IGNORE_COLD))
1227                 {
1228                         info[i++] = _("それは冷気では傷つかない。", "It cannot be harmed by cold.");
1229                 }
1230         }
1231
1232         if (mode & SCROBJ_FORCE_DETAIL) trivial_info = 0;
1233
1234         /* No relevant informations */
1235         if (i <= trivial_info) return (FALSE);
1236
1237         /* Save the screen */
1238         screen_save();
1239
1240         Term_get_size(&wid, &hgt);
1241
1242         /* Display Item name */
1243         if (!(mode & SCROBJ_FAKE_OBJECT))
1244                 object_desc(o_name, o_ptr, 0);
1245         else
1246                 object_desc(o_name, o_ptr, (OD_NAME_ONLY | OD_STORE));
1247
1248         prt(o_name, 0, 0);
1249
1250         /* Erase the screen */
1251         for (k = 1; k < hgt; k++) prt("", k, 13);
1252
1253         /* Label the information */
1254         if ((o_ptr->tval == TV_STATUE) && (o_ptr->sval == SV_PHOTO))
1255         {
1256                 monster_race *r_ptr = &r_info[o_ptr->pval];
1257                 int namelen = strlen(r_name + r_ptr->name);
1258                 prt(format("%s: '", r_name + r_ptr->name), 1, 15);
1259                 Term_queue_bigchar(18 + namelen, 1, r_ptr->x_attr, r_ptr->x_char, 0, 0);
1260                 prt("'", 1, (use_bigtile ? 20 : 19) + namelen);
1261         }
1262         else
1263         {
1264                 prt(_("     アイテムの能力:", "     Item Attributes:"), 1, 15);
1265         }
1266
1267         /* We will print on top of the map (column 13) */
1268         for (k = 2, j = 0; j < i; j++)
1269         {
1270                 /* Show the info */
1271                 prt(info[j], k++, 15);
1272
1273                 /* Every 20 entries (lines 2 to 21), start over */
1274                 if ((k == hgt - 2) && (j+1 < i))
1275                 {
1276                         prt(_("-- 続く --", "-- more --"), k, 15);
1277                         inkey();
1278                         for (; k > 2; k--) prt("", k, 15);
1279                 }
1280         }
1281
1282         /* Wait for it */
1283         prt(_("[何かキーを押すとゲームに戻ります]", "[Press any key to continue]"), k, 15);
1284
1285         inkey();
1286
1287         /* Restore the screen */
1288         screen_load();
1289
1290         /* Gave knowledge */
1291         return (TRUE);
1292 }
1293
1294
1295
1296 /*!
1297  * @brief オブジェクト選択時の選択アルファベットラベルを返す /
1298  * Convert an inventory index into a one character label
1299  * @param i プレイヤーの所持/装備オブジェクトID
1300  * @return 対応するアルファベット
1301  * @details Note that the label does NOT distinguish inven/equip.
1302  */
1303 char index_to_label(int i)
1304 {
1305         /* Indexes for "inven" are easy */
1306         if (i < INVEN_RARM) return (I2A(i));
1307
1308         /* Indexes for "equip" are offset */
1309         return (I2A(i - INVEN_RARM));
1310 }
1311
1312 /*!
1313  * @brief 選択アルファベットラベルからプレイヤーの所持オブジェクトIDを返す /
1314  * Convert a label into the index of an item in the "inven"
1315  * @return 対応するID。該当スロットにオブジェクトが存在しなかった場合-1を返す / Return "-1" if the label does not indicate a real item
1316  * @details Note that the label does NOT distinguish inven/equip.
1317  */
1318 INVENTORY_IDX label_to_inven(int c)
1319 {
1320         INVENTORY_IDX i;
1321
1322         /* Convert */
1323         i = (INVENTORY_IDX)(islower(c) ? A2I(c) : -1);
1324
1325         /* Verify the index */
1326         if ((i < 0) || (i > INVEN_PACK)) return (-1);
1327
1328         /* Empty slots can never be chosen */
1329         if (!inventory[i].k_idx) return (-1);
1330
1331         /* Return the index */
1332         return (i);
1333 }
1334
1335
1336 /*! See cmd5.c */
1337 extern bool select_ring_slot;
1338
1339
1340 /*!
1341  * @brief プレイヤーの所持/装備オブジェクトIDが指輪枠かを返す /
1342  * @param i プレイヤーの所持/装備オブジェクトID
1343  * @return 指輪枠ならばTRUEを返す。
1344  */
1345 static bool is_ring_slot(int i)
1346 {
1347         return (i == INVEN_RIGHT) || (i == INVEN_LEFT);
1348 }
1349
1350
1351 /*!
1352  * @brief 選択アルファベットラベルからプレイヤーの装備オブジェクトIDを返す /
1353  * Convert a label into the index of a item in the "equip"
1354  * @return 対応するID。該当スロットにオブジェクトが存在しなかった場合-1を返す / Return "-1" if the label does not indicate a real item
1355  */
1356 INVENTORY_IDX label_to_equip(int c)
1357 {
1358         INVENTORY_IDX i;
1359
1360         /* Convert */
1361         i = (INVENTORY_IDX)(islower(c) ? A2I(c) : -1) + INVEN_RARM;
1362
1363         /* Verify the index */
1364         if ((i < INVEN_RARM) || (i >= INVEN_TOTAL)) return (-1);
1365
1366         if (select_ring_slot) return is_ring_slot(i) ? i : -1;
1367
1368         /* Empty slots can never be chosen */
1369         if (!inventory[i].k_idx) return (-1);
1370
1371         /* Return the index */
1372         return (i);
1373 }
1374
1375
1376
1377 /*!
1378  * @brief オブジェクトの該当装備部位IDを返す /
1379  * Determine which equipment slot (if any) an item likes
1380  * @param o_ptr 名称を取得する元のオブジェクト構造体参照ポインタ
1381  * @return 対応する装備部位ID
1382  */
1383 s16b wield_slot(object_type *o_ptr)
1384 {
1385         /* Slot for equipment */
1386         switch (o_ptr->tval)
1387         {
1388                 case TV_DIGGING:
1389                 case TV_HAFTED:
1390                 case TV_POLEARM:
1391                 case TV_SWORD:
1392                 {
1393                         if (!inventory[INVEN_RARM].k_idx) return (INVEN_RARM);
1394                         if (inventory[INVEN_LARM].k_idx) return (INVEN_RARM);
1395                         return (INVEN_LARM);
1396                 }
1397
1398                 case TV_CAPTURE:
1399                 case TV_CARD:
1400                 case TV_SHIELD:
1401                 {
1402                         if (!inventory[INVEN_LARM].k_idx) return (INVEN_LARM);
1403                         if (inventory[INVEN_RARM].k_idx) return (INVEN_LARM);
1404                         return (INVEN_RARM);
1405                 }
1406
1407                 case TV_BOW:
1408                 {
1409                         return (INVEN_BOW);
1410                 }
1411
1412                 case TV_RING:
1413                 {
1414                         /* Use the right hand first */
1415                         if (!inventory[INVEN_RIGHT].k_idx) return (INVEN_RIGHT);
1416
1417                         /* Use the left hand for swapping (by default) */
1418                         return (INVEN_LEFT);
1419                 }
1420
1421                 case TV_AMULET:
1422                 case TV_WHISTLE:
1423                 {
1424                         return (INVEN_NECK);
1425                 }
1426
1427                 case TV_LITE:
1428                 {
1429                         return (INVEN_LITE);
1430                 }
1431
1432                 case TV_DRAG_ARMOR:
1433                 case TV_HARD_ARMOR:
1434                 case TV_SOFT_ARMOR:
1435                 {
1436                         return (INVEN_BODY);
1437                 }
1438
1439                 case TV_CLOAK:
1440                 {
1441                         return (INVEN_OUTER);
1442                 }
1443
1444                 case TV_CROWN:
1445                 case TV_HELM:
1446                 {
1447                         return (INVEN_HEAD);
1448                 }
1449
1450                 case TV_GLOVES:
1451                 {
1452                         return (INVEN_HANDS);
1453                 }
1454
1455                 case TV_BOOTS:
1456                 {
1457                         return (INVEN_FEET);
1458                 }
1459         }
1460
1461         /* No slot available */
1462         return (-1);
1463 }
1464
1465 /*!
1466  * @brief 所持/装備オブジェクトIDの部位表現を返す /
1467  * Return a string mentioning how a given item is carried
1468  * @param i 部位表現を求めるプレイヤーの所持/装備オブジェクトID
1469  * @return 部位表現の文字列ポインタ
1470  */
1471 cptr mention_use(int i)
1472 {
1473         cptr p;
1474
1475         /* Examine the location */
1476         switch (i)
1477         {
1478 #ifdef JP
1479                 case INVEN_RARM:  p = p_ptr->heavy_wield[0] ? "運搬中" : ((p_ptr->ryoute && p_ptr->migite) ? " 両手" : (left_hander ? " 左手" : " 右手")); break;
1480 #else
1481                 case INVEN_RARM:  p = p_ptr->heavy_wield[0] ? "Just lifting" : (p_ptr->migite ? "Wielding" : "On arm"); break;
1482 #endif
1483
1484 #ifdef JP
1485                 case INVEN_LARM:  p = p_ptr->heavy_wield[1] ? "運搬中" : ((p_ptr->ryoute && p_ptr->hidarite) ? " 両手" : (left_hander ? " 右手" : " 左手")); break;
1486 #else
1487                 case INVEN_LARM:  p = p_ptr->heavy_wield[1] ? "Just lifting" : (p_ptr->hidarite ? "Wielding" : "On arm"); break;
1488 #endif
1489
1490 #ifdef JP
1491                 case INVEN_BOW:   p = (adj_str_hold[p_ptr->stat_ind[A_STR]] < inventory[i].weight / 10) ? "運搬中" : "射撃用"; break;
1492 #else
1493                 case INVEN_BOW:   p = (adj_str_hold[p_ptr->stat_ind[A_STR]] < inventory[i].weight / 10) ? "Just holding" : "Shooting"; break;
1494 #endif
1495
1496 #ifdef JP
1497                 case INVEN_RIGHT: p = (left_hander ? "左手指" : "右手指"); break;
1498 #else
1499                 case INVEN_RIGHT: p = (left_hander ? "On left hand" : "On right hand"); break;
1500 #endif
1501
1502 #ifdef JP
1503                 case INVEN_LEFT:  p = (left_hander ? "右手指" : "左手指"); break;
1504 #else
1505                 case INVEN_LEFT:  p = (left_hander ? "On right hand" : "On left hand"); break;
1506 #endif
1507
1508                 case INVEN_NECK:  p = _("  首", "Around neck"); break;
1509                 case INVEN_LITE:  p = _(" 光源", "Light source"); break;
1510                 case INVEN_BODY:  p = _("  体", "On body"); break;
1511                 case INVEN_OUTER: p = _("体の上", "About body"); break;
1512                 case INVEN_HEAD:  p = _("  頭", "On head"); break;
1513                 case INVEN_HANDS: p = _("  手", "On hands"); break;
1514                 case INVEN_FEET:  p = _("  足", "On feet"); break;
1515                 default:          p = _("ザック", "In pack"); break;
1516         }
1517
1518         /* Return the result */
1519         return p;
1520 }
1521
1522
1523 /*!
1524  * @brief 所持/装備オブジェクトIDの現在の扱い方の状態表現を返す /
1525  * Return a string describing how a given item is being worn.
1526  * @param i 状態表現を求めるプレイヤーの所持/装備オブジェクトID
1527  * @return 状態表現内容の文字列ポインタ
1528  * @details
1529  * Currently, only used for items in the equipment, not inventory.
1530  */
1531 cptr describe_use(int i)
1532 {
1533         cptr p;
1534
1535         switch (i)
1536         {
1537 #ifdef JP
1538                 case INVEN_RARM:  p = p_ptr->heavy_wield[0] ? "運搬中の" : ((p_ptr->ryoute && p_ptr->migite) ? "両手に装備している" : (left_hander ? "左手に装備している" : "右手に装備している")); break;
1539 #else
1540                 case INVEN_RARM:  p = p_ptr->heavy_wield[0] ? "just lifting" : (p_ptr->migite ? "attacking monsters with" : "wearing on your arm"); break;
1541 #endif
1542
1543 #ifdef JP
1544                 case INVEN_LARM:  p = p_ptr->heavy_wield[1] ? "運搬中の" : ((p_ptr->ryoute && p_ptr->hidarite) ? "両手に装備している" : (left_hander ? "右手に装備している" : "左手に装備している")); break;
1545 #else
1546                 case INVEN_LARM:  p = p_ptr->heavy_wield[1] ? "just lifting" : (p_ptr->hidarite ? "attacking monsters with" : "wearing on your arm"); break;
1547 #endif
1548
1549 #ifdef JP
1550                 case INVEN_BOW:   p = (adj_str_hold[p_ptr->stat_ind[A_STR]] < inventory[i].weight / 10) ? "持つだけで精一杯の" : "射撃用に装備している"; break;
1551 #else
1552                 case INVEN_BOW:   p = (adj_str_hold[p_ptr->stat_ind[A_STR]] < inventory[i].weight / 10) ? "just holding" : "shooting missiles with"; break;
1553 #endif
1554
1555 #ifdef JP
1556                 case INVEN_RIGHT: p = (left_hander ? "左手の指にはめている" : "右手の指にはめている"); break;
1557 #else
1558                 case INVEN_RIGHT: p = (left_hander ? "wearing on your left hand" : "wearing on your right hand"); break;
1559 #endif
1560
1561 #ifdef JP
1562                 case INVEN_LEFT:  p = (left_hander ? "右手の指にはめている" : "左手の指にはめている"); break;
1563 #else
1564                 case INVEN_LEFT:  p = (left_hander ? "wearing on your right hand" : "wearing on your left hand"); break;
1565 #endif
1566
1567                 case INVEN_NECK:  p = _("首にかけている", "wearing around your neck"); break;
1568                 case INVEN_LITE:  p = _("光源にしている", "using to light the way"); break;
1569                 case INVEN_BODY:  p = _("体に着ている", "wearing on your body"); break;
1570                 case INVEN_OUTER: p = _("身にまとっている", "wearing on your back"); break;
1571                 case INVEN_HEAD:  p = _("頭にかぶっている", "wearing on your head"); break;
1572                 case INVEN_HANDS: p = _("手につけている", "wearing on your hands"); break;
1573                 case INVEN_FEET:  p = _("足にはいている", "wearing on your feet"); break;
1574                 default:          p = _("ザックに入っている", "carrying in your pack"); break;
1575         }
1576
1577         /* Return the result */
1578         return p;
1579 }
1580
1581
1582 /*!
1583  * @brief tval/sval指定のベースアイテムがプレイヤーの使用可能な魔法書かどうかを返す /
1584  * Hack: Check if a spellbook is one of the realms we can use. -- TY
1585  * @param book_tval ベースアイテムのtval
1586  * @param book_sval ベースアイテムのsval
1587  * @return 使用可能な魔法書ならばTRUEを返す。
1588  */
1589
1590 bool check_book_realm(const OBJECT_TYPE_VALUE book_tval, const OBJECT_SUBTYPE_VALUE book_sval)
1591 {
1592         if (book_tval < TV_LIFE_BOOK) return FALSE;
1593         if (p_ptr->pclass == CLASS_SORCERER)
1594         {
1595                 return is_magic(tval2realm(book_tval));
1596         }
1597         else if (p_ptr->pclass == CLASS_RED_MAGE)
1598         {
1599                 if (is_magic(tval2realm(book_tval)))
1600                         return ((book_tval == TV_ARCANE_BOOK) || (book_sval < 2));
1601         }
1602         return (REALM1_BOOK == book_tval || REALM2_BOOK == book_tval);
1603 }
1604
1605 /*!
1606  * @brief アイテムがitem_tester_hookグローバル関数ポインタの条件を満たしているかを返す汎用関数
1607  * Check an item against the item tester info
1608  * @param o_ptr 判定を行いたいオブジェクト構造体参照ポインタ
1609  * @return item_tester_hookの参照先、その他いくつかの例外に応じてTRUE/FALSEを返す。
1610  */
1611 bool item_tester_okay(object_type *o_ptr)
1612 {
1613         /* Hack -- allow listing empty slots */
1614         if (item_tester_full) return (TRUE);
1615
1616         /* Require an item */
1617         if (!o_ptr->k_idx) return (FALSE);
1618
1619         /* Hack -- ignore "gold" */
1620         if (o_ptr->tval == TV_GOLD)
1621         {
1622                 /* See xtra2.c */
1623                 extern bool show_gold_on_floor;
1624
1625                 if (!show_gold_on_floor) return (FALSE);
1626         }
1627
1628         /* Check the tval */
1629         if (item_tester_tval)
1630         {
1631                 /* Is it a spellbook? If so, we need a hack -- TY */
1632                 if ((item_tester_tval <= TV_DEATH_BOOK) &&
1633                         (item_tester_tval >= TV_LIFE_BOOK))
1634                         return check_book_realm(o_ptr->tval, o_ptr->sval);
1635                 else
1636                         if (item_tester_tval != o_ptr->tval) return (FALSE);
1637         }
1638
1639         /* Check the hook */
1640         if (item_tester_hook)
1641         {
1642                 if (!(*item_tester_hook)(o_ptr)) return (FALSE);
1643         }
1644
1645         /* Assume okay */
1646         return (TRUE);
1647 }
1648
1649
1650 /*!
1651  * @brief 所持アイテム一覧を表示する /
1652  * Choice window "shadow" of the "show_inven()" function
1653  * @return なし
1654  */
1655 void display_inven(void)
1656 {
1657         register        int i, n, z = 0;
1658         object_type     *o_ptr;
1659         TERM_COLOR      attr = TERM_WHITE;
1660         char            tmp_val[80];
1661         char            o_name[MAX_NLEN];
1662         int             wid, hgt;
1663
1664         Term_get_size(&wid, &hgt);
1665
1666         /* Find the "final" slot */
1667         for (i = 0; i < INVEN_PACK; i++)
1668         {
1669                 o_ptr = &inventory[i];
1670
1671                 /* Skip non-objects */
1672                 if (!o_ptr->k_idx) continue;
1673
1674                 /* Track */
1675                 z = i + 1;
1676         }
1677
1678         /* Display the pack */
1679         for (i = 0; i < z; i++)
1680         {
1681                 /* Examine the item */
1682                 o_ptr = &inventory[i];
1683
1684                 /* Start with an empty "index" */
1685                 tmp_val[0] = tmp_val[1] = tmp_val[2] = ' ';
1686
1687                 /* Is this item "acceptable"? */
1688                 if (item_tester_okay(o_ptr))
1689                 {
1690                         /* Prepare an "index" */
1691                         tmp_val[0] = index_to_label(i);
1692
1693                         /* Bracket the "index" --(-- */
1694                         tmp_val[1] = ')';
1695                 }
1696
1697                 /* Display the index (or blank space) */
1698                 Term_putstr(0, i, 3, TERM_WHITE, tmp_val);
1699
1700                 /* Obtain an item description */
1701                 object_desc(o_name, o_ptr, 0);
1702
1703                 /* Obtain the length of the description */
1704                 n = strlen(o_name);
1705
1706                 /* Get a color */
1707                 attr = tval_to_attr[o_ptr->tval % 128];
1708
1709                 /* Grey out charging items */
1710                 if (o_ptr->timeout)
1711                 {
1712                         attr = TERM_L_DARK;
1713                 }
1714
1715                 /* Display the entry itself */
1716                 Term_putstr(3, i, n, attr, o_name);
1717
1718                 /* Erase the rest of the line */
1719                 Term_erase(3+n, i, 255);
1720
1721                 /* Display the weight if needed */
1722                 if (show_weights)
1723                 {
1724                         int wgt = o_ptr->weight * o_ptr->number;
1725 #ifdef JP
1726                         sprintf(tmp_val, "%3d.%1d kg", lbtokg1(wgt),lbtokg2(wgt) );
1727 #else
1728                         sprintf(tmp_val, "%3d.%1d lb", wgt / 10, wgt % 10);
1729 #endif
1730
1731                         prt(tmp_val, i, wid - 9);
1732                 }
1733         }
1734
1735         /* Erase the rest of the window */
1736         for (i = z; i < hgt; i++)
1737         {
1738                 /* Erase the line */
1739                 Term_erase(0, i, 255);
1740         }
1741 }
1742
1743
1744
1745 /*!
1746  * @brief 装備アイテム一覧を表示する /
1747  * Choice window "shadow" of the "show_equip()" function
1748  * @return なし
1749  */
1750 void display_equip(void)
1751 {
1752         register        int i, n;
1753         object_type     *o_ptr;
1754         TERM_COLOR      attr = TERM_WHITE;
1755         char            tmp_val[80];
1756         char            o_name[MAX_NLEN];
1757         int             wid, hgt;
1758
1759         Term_get_size(&wid, &hgt);
1760
1761         /* Display the equipment */
1762         for (i = INVEN_RARM; i < INVEN_TOTAL; i++)
1763         {
1764                 /* Examine the item */
1765                 o_ptr = &inventory[i];
1766
1767                 /* Start with an empty "index" */
1768                 tmp_val[0] = tmp_val[1] = tmp_val[2] = ' ';
1769
1770                 /* Is this item "acceptable"? */
1771                 if (select_ring_slot ? is_ring_slot(i) : item_tester_okay(o_ptr))
1772                 {
1773                         /* Prepare an "index" */
1774                         tmp_val[0] = index_to_label(i);
1775
1776                         /* Bracket the "index" --(-- */
1777                         tmp_val[1] = ')';
1778                 }
1779
1780                 /* Display the index (or blank space) */
1781                 Term_putstr(0, i - INVEN_RARM, 3, TERM_WHITE, tmp_val);
1782
1783                 /* Obtain an item description */
1784                 if ((((i == INVEN_RARM) && p_ptr->hidarite) || ((i == INVEN_LARM) && p_ptr->migite)) && p_ptr->ryoute)
1785                 {
1786                         strcpy(o_name, _("(武器を両手持ち)", "(wielding with two-hands)"));
1787                         attr = TERM_WHITE;
1788                 }
1789                 else
1790                 {
1791                         object_desc(o_name, o_ptr, 0);
1792                         attr = tval_to_attr[o_ptr->tval % 128];
1793                 }
1794
1795                 /* Obtain the length of the description */
1796                 n = strlen(o_name);
1797
1798                 /* Grey out charging items */
1799                 if (o_ptr->timeout)
1800                 {
1801                         attr = TERM_L_DARK;
1802                 }
1803
1804                 /* Display the entry itself */
1805                 Term_putstr(3, i - INVEN_RARM, n, attr, o_name);
1806
1807                 /* Erase the rest of the line */
1808                 Term_erase(3+n, i - INVEN_RARM, 255);
1809
1810                 /* Display the weight (if needed) */
1811                 if (show_weights)
1812                 {
1813                         int wgt = o_ptr->weight * o_ptr->number;
1814 #ifdef JP
1815                         sprintf(tmp_val, "%3d.%1d kg", lbtokg1(wgt) , lbtokg2(wgt));
1816 #else
1817                         sprintf(tmp_val, "%3d.%1d lb", wgt / 10, wgt % 10);
1818 #endif
1819
1820                         prt(tmp_val, i - INVEN_RARM, wid - (show_labels ? 28 : 9));
1821                 }
1822
1823                 /* Display the slot description (if needed) */
1824                 if (show_labels)
1825                 {
1826                         Term_putstr(wid - 20, i - INVEN_RARM, -1, TERM_WHITE, " <-- ");
1827                         prt(mention_use(i), i - INVEN_RARM, wid - 15);
1828                 }
1829         }
1830
1831         /* Erase the rest of the window */
1832         for (i = INVEN_TOTAL - INVEN_RARM; i < hgt; i++)
1833         {
1834                 /* Clear that line */
1835                 Term_erase(0, i, 255);
1836         }
1837 }
1838
1839
1840 /*!
1841  * @brief 所持/装備オブジェクトに選択タグを与える/タグに該当するオブジェクトがあるかを返す /
1842  * Find the "first" inventory object with the given "tag".
1843  * @param cp 対応するタグIDを与える参照ポインタ
1844  * @param tag 該当するオブジェクトがあるかを調べたいタグ
1845  * @param mode 所持、装備の切り替え
1846  * @return タグに該当するオブジェクトがあるならTRUEを返す
1847  * @details
1848  * A "tag" is a numeral "n" appearing as "@n" anywhere in the\n
1849  * inscription of an object.  Alphabetical characters don't work as a\n
1850  * tag in this form.\n
1851  *\n
1852  * Also, the tag "@xn" will work as well, where "n" is a any tag-char,\n
1853  * and "x" is the "current" command_cmd code.\n
1854  */
1855 static bool get_tag(COMMAND_CODE *cp, char tag, BIT_FLAGS mode)
1856 {
1857         COMMAND_CODE i;
1858         COMMAND_CODE start, end;
1859         cptr s;
1860
1861         /* Extract index from mode */
1862         switch (mode)
1863         {
1864         case USE_EQUIP:
1865                 start = INVEN_RARM;
1866                 end = INVEN_TOTAL - 1;
1867                 break;
1868
1869         case USE_INVEN:
1870                 start = 0;
1871                 end = INVEN_PACK - 1;
1872                 break;
1873
1874         default:
1875                 return FALSE;
1876         }
1877
1878         /**** Find a tag in the form of {@x#} (allow alphabet tag) ***/
1879
1880         /* Check every inventory object */
1881         for (i = start; i <= end; i++)
1882         {
1883                 object_type *o_ptr = &inventory[i];
1884
1885                 /* Skip non-objects */
1886                 if (!o_ptr->k_idx) continue;
1887
1888                 /* Skip empty inscriptions */
1889                 if (!o_ptr->inscription) continue;
1890
1891                 /* Skip non-choice */
1892                 if (!item_tester_okay(o_ptr)) continue;
1893
1894                 /* Find a '@' */
1895                 s = my_strchr(quark_str(o_ptr->inscription), '@');
1896
1897                 /* Process all tags */
1898                 while (s)
1899                 {
1900                         /* Check the special tags */
1901                         if ((s[1] == command_cmd) && (s[2] == tag))
1902                         {
1903                                 /* Save the actual inventory ID */
1904                                 *cp = i;
1905
1906                                 /* Success */
1907                                 return (TRUE);
1908                         }
1909
1910                         /* Find another '@' */
1911                         s = my_strchr(s + 1, '@');
1912                 }
1913         }
1914
1915
1916         /**** Find a tag in the form of {@#} (allows only numerals)  ***/
1917
1918         /* Don't allow {@#} with '#' being alphabet */
1919         if (tag < '0' || '9' < tag)
1920         {
1921                 /* No such tag */
1922                 return FALSE;
1923         }
1924
1925         /* Check every object */
1926         for (i = start; i <= end; i++)
1927         {
1928                 object_type *o_ptr = &inventory[i];
1929
1930                 /* Skip non-objects */
1931                 if (!o_ptr->k_idx) continue;
1932
1933                 /* Skip empty inscriptions */
1934                 if (!o_ptr->inscription) continue;
1935
1936                 /* Skip non-choice */
1937                 if (!item_tester_okay(o_ptr)) continue;
1938
1939                 /* Find a '@' */
1940                 s = my_strchr(quark_str(o_ptr->inscription), '@');
1941
1942                 /* Process all tags */
1943                 while (s)
1944                 {
1945                         /* Check the normal tags */
1946                         if (s[1] == tag)
1947                         {
1948                                 /* Save the actual inventory ID */
1949                                 *cp = i;
1950
1951                                 /* Success */
1952                                 return (TRUE);
1953                         }
1954
1955                         /* Find another '@' */
1956                         s = my_strchr(s + 1, '@');
1957                 }
1958         }
1959
1960         /* No such tag */
1961         return (FALSE);
1962 }
1963
1964
1965 /*!
1966  * @brief 床オブジェクトに選択タグを与える/タグに該当するオブジェクトがあるかを返す /
1967  * Find the "first" inventory object with the given "tag".
1968  * @param cp 対応するタグIDを与える参照ポインタ
1969  * @param tag 該当するオブジェクトがあるかを調べたいタグ
1970  * @param floor_list 床上アイテムの配列
1971  * @param floor_num  床上アイテムの配列ID
1972  * @return タグに該当するオブジェクトがあるならTRUEを返す
1973  * @details
1974  * A "tag" is a numeral "n" appearing as "@n" anywhere in the\n
1975  * inscription of an object.  Alphabetical characters don't work as a\n
1976  * tag in this form.\n
1977  *\n
1978  * Also, the tag "@xn" will work as well, where "n" is a any tag-char,\n
1979  * and "x" is the "current" command_cmd code.\n
1980  */
1981 static bool get_tag_floor(COMMAND_CODE *cp, char tag, FLOOR_IDX floor_list[], ITEM_NUMBER floor_num)
1982 {
1983         COMMAND_CODE i;
1984         cptr s;
1985
1986         /**** Find a tag in the form of {@x#} (allow alphabet tag) ***/
1987
1988         /* Check every object in the grid */
1989         for (i = 0; i < floor_num && i < 23; i++)
1990         {
1991                 object_type *o_ptr = &o_list[floor_list[i]];
1992
1993                 /* Skip empty inscriptions */
1994                 if (!o_ptr->inscription) continue;
1995
1996                 /* Find a '@' */
1997                 s = my_strchr(quark_str(o_ptr->inscription), '@');
1998
1999                 /* Process all tags */
2000                 while (s)
2001                 {
2002                         /* Check the special tags */
2003                         if ((s[1] == command_cmd) && (s[2] == tag))
2004                         {
2005                                 /* Save the actual floor object ID */
2006                                 *cp = i;
2007
2008                                 /* Success */
2009                                 return (TRUE);
2010                         }
2011
2012                         /* Find another '@' */
2013                         s = my_strchr(s + 1, '@');
2014                 }
2015         }
2016
2017
2018         /**** Find a tag in the form of {@#} (allows only numerals)  ***/
2019
2020         /* Don't allow {@#} with '#' being alphabet */
2021         if (tag < '0' || '9' < tag)
2022         {
2023                 /* No such tag */
2024                 return FALSE;
2025         }
2026
2027         /* Check every object in the grid */
2028         for (i = 0; i < floor_num && i < 23; i++)
2029         {
2030                 object_type *o_ptr = &o_list[floor_list[i]];
2031
2032                 /* Skip empty inscriptions */
2033                 if (!o_ptr->inscription) continue;
2034
2035                 /* Find a '@' */
2036                 s = my_strchr(quark_str(o_ptr->inscription), '@');
2037
2038                 /* Process all tags */
2039                 while (s)
2040                 {
2041                         /* Check the normal tags */
2042                         if (s[1] == tag)
2043                         {
2044                                 /* Save the floor object ID */
2045                                 *cp = i;
2046
2047                                 /* Success */
2048                                 return (TRUE);
2049                         }
2050
2051                         /* Find another '@' */
2052                         s = my_strchr(s + 1, '@');
2053                 }
2054         }
2055
2056         /* No such tag */
2057         return (FALSE);
2058 }
2059
2060
2061 /*!
2062  * @brief タグIDにあわせてタグアルファベットのリストを返す /
2063  * Move around label characters with correspond tags
2064  * @param label ラベルリストを取得する文字列参照ポインタ
2065  * @param mode 所持品リストか装備品リストかの切り替え
2066  * @return なし
2067  */
2068 static void prepare_label_string(char *label, BIT_FLAGS mode)
2069 {
2070         cptr alphabet_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
2071         int  offset = (mode == USE_EQUIP) ? INVEN_RARM : 0;
2072         int  i;
2073
2074         /* Prepare normal labels */
2075         strcpy(label, alphabet_chars);
2076
2077         /* Move each label */
2078         for (i = 0; i < 52; i++)
2079         {
2080                 COMMAND_CODE index;
2081                 char c = alphabet_chars[i];
2082
2083                 /* Find a tag with this label */
2084                 if (get_tag(&index, c, mode))
2085                 {
2086                         /* Delete the overwritten label */
2087                         if (label[i] == c) label[i] = ' ';
2088
2089                         /* Move the label to the place of corresponding tag */
2090                         label[index - offset] = c;
2091                 }
2092         }
2093 }
2094
2095
2096 /*!
2097  * @brief タグIDにあわせてタグアルファベットのリストを返す(床上アイテム用) /
2098  * Move around label characters with correspond tags (floor version)
2099  * @param label ラベルリストを取得する文字列参照ポインタ
2100  * @param floor_list 床上アイテムの配列
2101  * @param floor_num  床上アイテムの配列ID
2102  * @return なし
2103  */
2104 /*
2105  */
2106 static void prepare_label_string_floor(char *label, FLOOR_IDX floor_list[], ITEM_NUMBER floor_num)
2107 {
2108         cptr alphabet_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
2109         int  i;
2110
2111         /* Prepare normal labels */
2112         strcpy(label, alphabet_chars);
2113
2114         /* Move each label */
2115         for (i = 0; i < 52; i++)
2116         {
2117                 COMMAND_CODE index;
2118                 char c = alphabet_chars[i];
2119
2120                 /* Find a tag with this label */
2121                 if (get_tag_floor(&index, c, floor_list, floor_num))
2122                 {
2123                         /* Delete the overwritten label */
2124                         if (label[i] == c) label[i] = ' ';
2125
2126                         /* Move the label to the place of corresponding tag */
2127                         label[index] = c;
2128                 }
2129         }
2130 }
2131
2132
2133 /*!
2134  * @brief 所持アイテムの表示を行う /
2135  * Display the inventory.
2136  * @param target_item アイテムの選択処理を行うか否か。
2137  * @return 選択したアイテムのタグ
2138  * @details
2139  * Hack -- do not display "trailing" empty slots
2140  */
2141 COMMAND_CODE show_inven(int target_item)
2142 {
2143         COMMAND_CODE i;
2144         int j, k, l, z = 0;
2145         int             col, cur_col, len;
2146         object_type     *o_ptr;
2147         char            o_name[MAX_NLEN];
2148         char            tmp_val[80];
2149         COMMAND_CODE    out_index[23];
2150         TERM_COLOR      out_color[23];
2151         char            out_desc[23][MAX_NLEN];
2152         COMMAND_CODE target_item_label = 0;
2153         TERM_LEN wid, hgt;
2154         char            inven_label[52 + 1];
2155
2156         /* Starting column */
2157         col = command_gap;
2158
2159         Term_get_size(&wid, &hgt);
2160
2161         /* Default "max-length" */
2162         len = wid - col - 1;
2163
2164
2165         /* Find the "final" slot */
2166         for (i = 0; i < INVEN_PACK; i++)
2167         {
2168                 o_ptr = &inventory[i];
2169
2170                 /* Skip non-objects */
2171                 if (!o_ptr->k_idx) continue;
2172
2173                 /* Track */
2174                 z = i + 1;
2175         }
2176
2177         prepare_label_string(inven_label, USE_INVEN);
2178
2179         /* Display the inventory */
2180         for (k = 0, i = 0; i < z; i++)
2181         {
2182                 o_ptr = &inventory[i];
2183
2184                 /* Is this item acceptable? */
2185                 if (!item_tester_okay(o_ptr)) continue;
2186
2187                 /* Describe the object */
2188                 object_desc(o_name, o_ptr, 0);
2189
2190                 /* Save the object index, color, and description */
2191                 out_index[k] = i;
2192                 out_color[k] = tval_to_attr[o_ptr->tval % 128];
2193
2194                 /* Grey out charging items */
2195                 if (o_ptr->timeout)
2196                 {
2197                         out_color[k] = TERM_L_DARK;
2198                 }
2199
2200                 (void)strcpy(out_desc[k], o_name);
2201
2202                 /* Find the predicted "line length" */
2203                 l = strlen(out_desc[k]) + 5;
2204
2205                 /* Be sure to account for the weight */
2206                 if (show_weights) l += 9;
2207
2208                 /* Account for icon if displayed */
2209                 if (show_item_graph)
2210                 {
2211                         l += 2;
2212                         if (use_bigtile) l++;
2213                 }
2214
2215                 /* Maintain the maximum length */
2216                 if (l > len) len = l;
2217
2218                 /* Advance to next "line" */
2219                 k++;
2220         }
2221
2222         /* Find the column to start in */
2223         col = (len > wid - 4) ? 0 : (wid - len - 1);
2224
2225         /* Output each entry */
2226         for (j = 0; j < k; j++)
2227         {
2228                 /* Get the index */
2229                 i = out_index[j];
2230
2231                 /* Get the item */
2232                 o_ptr = &inventory[i];
2233
2234                 /* Clear the line */
2235                 prt("", j + 1, col ? col - 2 : col);
2236
2237                 if (use_menu && target_item)
2238                 {
2239                         if (j == (target_item-1))
2240                         {
2241                                 strcpy(tmp_val, _("》", "> "));
2242                                 target_item_label = i;
2243                         }
2244                         else strcpy(tmp_val, "  ");
2245                 }
2246                 else if (i <= INVEN_PACK)
2247                 {
2248                         /* Prepare an index --(-- */
2249                         sprintf(tmp_val, "%c)", inven_label[i]);
2250                 }
2251                 else
2252                 {
2253                         /* Prepare an index --(-- */
2254                         sprintf(tmp_val, "%c)", index_to_label(i));
2255                 }
2256
2257                 /* Clear the line with the (possibly indented) index */
2258                 put_str(tmp_val, j + 1, col);
2259
2260                 cur_col = col + 3;
2261
2262                 /* Display graphics for object, if desired */
2263                 if (show_item_graph)
2264                 {
2265                         byte  a = object_attr(o_ptr);
2266                         char c = object_char(o_ptr);
2267                         Term_queue_bigchar(cur_col, j + 1, a, c, 0, 0);
2268                         if (use_bigtile) cur_col++;
2269
2270                         cur_col += 2;
2271                 }
2272
2273
2274                 /* Display the entry itself */
2275                 c_put_str(out_color[j], out_desc[j], j + 1, cur_col);
2276
2277                 /* Display the weight if needed */
2278                 if (show_weights)
2279                 {
2280                         int wgt = o_ptr->weight * o_ptr->number;
2281 #ifdef JP
2282                         (void)sprintf(tmp_val, "%3d.%1d kg", lbtokg1(wgt) , lbtokg2(wgt) );
2283 #else
2284                         (void)sprintf(tmp_val, "%3d.%1d lb", wgt / 10, wgt % 10);
2285 #endif
2286
2287                         prt(tmp_val, j + 1, wid - 9);
2288                 }
2289         }
2290
2291         /* Make a "shadow" below the list (only if needed) */
2292         if (j && (j < 23)) prt("", j + 1, col ? col - 2 : col);
2293
2294         /* Save the new column */
2295         command_gap = col;
2296
2297         return target_item_label;
2298 }
2299
2300
2301 /*!
2302  * @brief 装備アイテムの表示を行う /
2303  * Display the equipment.
2304  * @param target_item アイテムの選択処理を行うか否か。
2305  * @return 選択したアイテムのタグ
2306  */
2307 COMMAND_CODE show_equip(int target_item)
2308 {
2309         COMMAND_CODE i;
2310         int j, k, l;
2311         int             col, cur_col, len;
2312         object_type     *o_ptr;
2313         char            tmp_val[80];
2314         char            o_name[MAX_NLEN];
2315         COMMAND_CODE    out_index[23];
2316         TERM_COLOR      out_color[23];
2317         char            out_desc[23][MAX_NLEN];
2318         COMMAND_CODE target_item_label = 0;
2319         TERM_LEN wid, hgt;
2320         char            equip_label[52 + 1];
2321
2322         /* Starting column */
2323         col = command_gap;
2324
2325         Term_get_size(&wid, &hgt);
2326
2327         /* Maximal length */
2328         len = wid - col - 1;
2329
2330
2331         /* Scan the equipment list */
2332         for (k = 0, i = INVEN_RARM; i < INVEN_TOTAL; i++)
2333         {
2334                 o_ptr = &inventory[i];
2335
2336                 /* Is this item acceptable? */
2337                 if (!(select_ring_slot ? is_ring_slot(i) : item_tester_okay(o_ptr)) &&
2338                     (!((((i == INVEN_RARM) && p_ptr->hidarite) || ((i == INVEN_LARM) && p_ptr->migite)) && p_ptr->ryoute) ||
2339                      item_tester_no_ryoute)) continue;
2340
2341                 /* Description */
2342                 object_desc(o_name, o_ptr, 0);
2343
2344                 if ((((i == INVEN_RARM) && p_ptr->hidarite) || ((i == INVEN_LARM) && p_ptr->migite)) && p_ptr->ryoute)
2345                 {
2346                         (void)strcpy(out_desc[k],_("(武器を両手持ち)", "(wielding with two-hands)"));
2347                         out_color[k] = TERM_WHITE;
2348                 }
2349                 else
2350                 {
2351                         (void)strcpy(out_desc[k], o_name);
2352                         out_color[k] = tval_to_attr[o_ptr->tval % 128];
2353                 }
2354
2355                 out_index[k] = i;
2356                 /* Grey out charging items */
2357                 if (o_ptr->timeout)
2358                 {
2359                         out_color[k] = TERM_L_DARK;
2360                 }
2361
2362                 /* Extract the maximal length (see below) */
2363 #ifdef JP
2364                 l = strlen(out_desc[k]) + (2 + 1);
2365 #else
2366                 l = strlen(out_desc[k]) + (2 + 3);
2367 #endif
2368
2369
2370                 /* Increase length for labels (if needed) */
2371 #ifdef JP
2372                 if (show_labels) l += (7 + 2);
2373 #else
2374                 if (show_labels) l += (14 + 2);
2375 #endif
2376
2377
2378                 /* Increase length for weight (if needed) */
2379                 if (show_weights) l += 9;
2380
2381                 if (show_item_graph) l += 2;
2382
2383                 /* Maintain the max-length */
2384                 if (l > len) len = l;
2385
2386                 /* Advance the entry */
2387                 k++;
2388         }
2389
2390         /* Hack -- Find a column to start in */
2391 #ifdef JP
2392         col = (len > wid - 6) ? 0 : (wid - len - 1);
2393 #else
2394         col = (len > wid - 4) ? 0 : (wid - len - 1);
2395 #endif
2396
2397         prepare_label_string(equip_label, USE_EQUIP);
2398
2399         /* Output each entry */
2400         for (j = 0; j < k; j++)
2401         {
2402                 /* Get the index */
2403                 i = out_index[j];
2404
2405                 /* Get the item */
2406                 o_ptr = &inventory[i];
2407
2408                 /* Clear the line */
2409                 prt("", j + 1, col ? col - 2 : col);
2410
2411                 if (use_menu && target_item)
2412                 {
2413                         if (j == (target_item-1))
2414                         {
2415                                 strcpy(tmp_val, _("》", "> "));
2416                                 target_item_label = i;
2417                         }
2418                         else strcpy(tmp_val, "  ");
2419                 }
2420                 else if (i >= INVEN_RARM)
2421                 {
2422                         /* Prepare an index --(-- */
2423                         sprintf(tmp_val, "%c)", equip_label[i - INVEN_RARM]);
2424                 }
2425                 else /* Paranoia */
2426                 {
2427                         /* Prepare an index --(-- */
2428                         sprintf(tmp_val, "%c)", index_to_label(i));
2429                 }
2430
2431                 /* Clear the line with the (possibly indented) index */
2432                 put_str(tmp_val, j+1, col);
2433
2434                 cur_col = col + 3;
2435
2436                 /* Display graphics for object, if desired */
2437                 if (show_item_graph)
2438                 {
2439                         byte a = object_attr(o_ptr);
2440                         char c = object_char(o_ptr);
2441                         Term_queue_bigchar(cur_col, j + 1, a, c, 0, 0);
2442                         if (use_bigtile) cur_col++;
2443
2444                         cur_col += 2;
2445                 }
2446
2447                 /* Use labels */
2448                 if (show_labels)
2449                 {
2450                         /* Mention the use */
2451                         (void)sprintf(tmp_val, _("%-7s: ", "%-14s: "), mention_use(i));
2452
2453                         put_str(tmp_val, j+1, cur_col);
2454
2455                         /* Display the entry itself */
2456                         c_put_str(out_color[j], out_desc[j], j+1, _(cur_col + 9, cur_col + 16));
2457                 }
2458
2459                 /* No labels */
2460                 else
2461                 {
2462                         /* Display the entry itself */
2463                         c_put_str(out_color[j], out_desc[j], j+1, cur_col);
2464                 }
2465
2466                 /* Display the weight if needed */
2467                 if (show_weights)
2468                 {
2469                         int wgt = o_ptr->weight * o_ptr->number;
2470 #ifdef JP
2471                         (void)sprintf(tmp_val, "%3d.%1d kg", lbtokg1(wgt) , lbtokg2(wgt) );
2472 #else
2473                         (void)sprintf(tmp_val, "%3d.%d lb", wgt / 10, wgt % 10);
2474 #endif
2475
2476                         prt(tmp_val, j + 1, wid - 9);
2477                 }
2478         }
2479
2480         /* Make a "shadow" below the list (only if needed) */
2481         if (j && (j < 23)) prt("", j + 1, col ? col - 2 : col);
2482
2483         /* Save the new column */
2484         command_gap = col;
2485
2486         return target_item_label;
2487 }
2488
2489 /*!
2490  * @brief サブウィンドウに所持品、装備品リストの表示を行う /
2491  * Flip "inven" and "equip" in any sub-windows
2492  * @return なし
2493  */
2494 void toggle_inven_equip(void)
2495 {
2496         int j;
2497
2498         /* Scan windows */
2499         for (j = 0; j < 8; j++)
2500         {
2501                 /* Unused */
2502                 if (!angband_term[j]) continue;
2503
2504                 /* Flip inven to equip */
2505                 if (window_flag[j] & (PW_INVEN))
2506                 {
2507                         /* Flip flags */
2508                         window_flag[j] &= ~(PW_INVEN);
2509                         window_flag[j] |= (PW_EQUIP);
2510
2511                         p_ptr->window |= (PW_EQUIP);
2512                 }
2513
2514                 /* Flip inven to equip */
2515                 else if (window_flag[j] & (PW_EQUIP))
2516                 {
2517                         /* Flip flags */
2518                         window_flag[j] &= ~(PW_EQUIP);
2519                         window_flag[j] |= (PW_INVEN);
2520
2521                         p_ptr->window |= (PW_INVEN);
2522                 }
2523         }
2524 }
2525
2526 /*!
2527  * @brief 選択したアイテムの確認処理の補助 /
2528  * Verify the choice of an item.
2529  * @param prompt メッセージ表示の一部
2530  * @param item 選択アイテムID
2531  * @return 確認がYesならTRUEを返す。
2532  * @details The item can be negative to mean "item on floor".
2533  */
2534 static bool verify(cptr prompt, INVENTORY_IDX item)
2535 {
2536         char        o_name[MAX_NLEN];
2537         char        out_val[MAX_NLEN+20];
2538         object_type *o_ptr;
2539
2540
2541         /* Inventory */
2542         if (item >= 0)
2543         {
2544                 o_ptr = &inventory[item];
2545         }
2546
2547         /* Floor */
2548         else
2549         {
2550                 o_ptr = &o_list[0 - item];
2551         }
2552
2553         /* Describe */
2554         object_desc(o_name, o_ptr, 0);
2555
2556         /* Prompt */
2557         (void)sprintf(out_val, _("%s%sですか? ", "%s %s? "), prompt, o_name);
2558
2559         /* Query */
2560         return (get_check(out_val));
2561 }
2562
2563
2564 /*!
2565  * @brief 選択したアイテムの確認処理のメインルーチン /
2566  * @param item 選択アイテムID
2567  * @return 確認がYesならTRUEを返す。
2568  * @details The item can be negative to mean "item on floor".
2569  * Hack -- allow user to "prevent" certain choices
2570  */
2571 static bool get_item_allow(INVENTORY_IDX item)
2572 {
2573         cptr s;
2574
2575         object_type *o_ptr;
2576
2577         if (!command_cmd) return TRUE; /* command_cmd is no longer effective */
2578
2579         /* Inventory */
2580         if (item >= 0)
2581         {
2582                 o_ptr = &inventory[item];
2583         }
2584
2585         /* Floor */
2586         else
2587         {
2588                 o_ptr = &o_list[0 - item];
2589         }
2590
2591         /* No inscription */
2592         if (!o_ptr->inscription) return (TRUE);
2593
2594         /* Find a '!' */
2595         s = my_strchr(quark_str(o_ptr->inscription), '!');
2596
2597         /* Process preventions */
2598         while (s)
2599         {
2600                 /* Check the "restriction" */
2601                 if ((s[1] == command_cmd) || (s[1] == '*'))
2602                 {
2603                         /* Verify the choice */
2604                         if (!verify(_("本当に", "Really try"), item)) return (FALSE);
2605                 }
2606
2607                 /* Find another '!' */
2608                 s = my_strchr(s + 1, '!');
2609         }
2610
2611         /* Allow it */
2612         return (TRUE);
2613 }
2614
2615
2616 /*!
2617  * @brief プレイヤーの所持/装備オブジェクトが正規のものかを返す /
2618  * Auxiliary function for "get_item()" -- test an index
2619  * @param i 選択アイテムID
2620  * @return 正規のIDならばTRUEを返す。
2621  */
2622 static bool get_item_okay(OBJECT_IDX i)
2623 {
2624         /* Illegal items */
2625         if ((i < 0) || (i >= INVEN_TOTAL)) return (FALSE);
2626
2627         if (select_ring_slot) return is_ring_slot(i);
2628
2629         /* Verify the item */
2630         if (!item_tester_okay(&inventory[i])) return (FALSE);
2631
2632         /* Assume okay */
2633         return (TRUE);
2634 }
2635
2636 /*!
2637  * @brief プレイヤーがオブジェクトを拾うことができる状態かを返す /
2638  * Determine whether get_item() can get some item or not
2639  * @return アイテムを拾えるならばTRUEを返す。
2640  * @details assuming mode = (USE_EQUIP | USE_INVEN | USE_FLOOR).
2641  */
2642 bool can_get_item(void)
2643 {
2644         int j;
2645         OBJECT_IDX floor_list[23];
2646         ITEM_NUMBER floor_num = 0;
2647
2648         for (j = 0; j < INVEN_TOTAL; j++)
2649                 if (item_tester_okay(&inventory[j]))
2650                         return TRUE;
2651
2652         floor_num = scan_floor(floor_list, p_ptr->y, p_ptr->x, 0x03);
2653         if (floor_num)
2654                 return TRUE;
2655
2656         return FALSE;
2657 }
2658
2659 /*!
2660  * @brief オブジェクト選択の汎用関数 /
2661  * Let the user select an item, save its "index"
2662  * @param cp 選択したオブジェクトのIDを返す。
2663  * @param pmt 選択目的のメッセージ
2664  * @param str 選択できるオブジェクトがない場合のキャンセルメッセージ
2665  * @param mode オプションフラグ
2666  * @return プレイヤーによりアイテムが選択されたならTRUEを返す。/
2667  * Return TRUE only if an acceptable item was chosen by the user.\n
2668  * @details
2669  * The selected item must satisfy the "item_tester_hook()" function,\n
2670  * if that hook is set, and the "item_tester_tval", if that value is set.\n
2671  *\n
2672  * All "item_tester" restrictions are cleared before this function returns.\n
2673  *\n
2674  * The user is allowed to choose acceptable items from the equipment,\n
2675  * inventory, or floor, respectively, if the proper flag was given,\n
2676  * and there are any acceptable items in that location.\n
2677  *\n
2678  * The equipment or inventory are displayed (even if no acceptable\n
2679  * items are in that location) if the proper flag was given.\n
2680  *\n
2681  * If there are no acceptable items available anywhere, and "str" is\n
2682  * not NULL, then it will be used as the text of a warning message\n
2683  * before the function returns.\n
2684  *\n
2685  * Note that the user must press "-" to specify the item on the floor,\n
2686  * and there is no way to "examine" the item on the floor, while the\n
2687  * use of "capital" letters will "examine" an inventory/equipment item,\n
2688  * and prompt for its use.\n
2689  *\n
2690  * If a legal item is selected from the inventory, we save it in "cp"\n
2691  * directly (0 to 35), and return TRUE.\n
2692  *\n
2693  * If a legal item is selected from the floor, we save it in "cp" as\n
2694  * a negative (-1 to -511), and return TRUE.\n
2695  *\n
2696  * If no item is available, we do nothing to "cp", and we display a\n
2697  * warning message, using "str" if available, and return FALSE.\n
2698  *\n
2699  * If no item is selected, we do nothing to "cp", and return FALSE.\n
2700  *\n
2701  * Global "p_ptr->command_new" is used when viewing the inventory or equipment\n
2702  * to allow the user to enter a command while viewing those screens, and\n
2703  * also to induce "auto-enter" of stores, and other such stuff.\n
2704  *\n
2705  * Global "p_ptr->command_see" may be set before calling this function to start\n
2706  * out in "browse" mode.  It is cleared before this function returns.\n
2707  *\n
2708  * Global "p_ptr->command_wrk" is used to choose between equip/inven listings.\n
2709  * If it is TRUE then we are viewing inventory, else equipment.\n
2710  *\n
2711  * We always erase the prompt when we are done, leaving a blank line,\n
2712  * or a warning message, if appropriate, if no items are available.\n
2713  */
2714 bool get_item(OBJECT_IDX *cp, cptr pmt, cptr str, BIT_FLAGS mode)
2715 {
2716         OBJECT_IDX this_o_idx, next_o_idx = 0;
2717
2718         char which = ' ';
2719
2720         int j;
2721         OBJECT_IDX k;
2722         OBJECT_IDX i1, i2;
2723         OBJECT_IDX e1, e2;
2724
2725         bool done, item;
2726
2727         bool oops = FALSE;
2728
2729         bool equip = FALSE;
2730         bool inven = FALSE;
2731         bool floor = FALSE;
2732
2733         bool allow_floor = FALSE;
2734
2735         bool toggle = FALSE;
2736
2737         char tmp_val[160];
2738         char out_val[160];
2739
2740         /* See cmd5.c */
2741         extern bool select_the_force;
2742
2743         int menu_line = (use_menu ? 1 : 0);
2744         int max_inven = 0;
2745         int max_equip = 0;
2746
2747         static char prev_tag = '\0';
2748         char cur_tag = '\0';
2749
2750         if (easy_floor || use_menu) return get_item_floor(cp, pmt, str, mode);
2751
2752         /* Extract args */
2753         if (mode & USE_EQUIP) equip = TRUE;
2754         if (mode & USE_INVEN) inven = TRUE;
2755         if (mode & USE_FLOOR) floor = TRUE;
2756
2757         /* Get the item index */
2758         if (repeat_pull(cp))
2759         {
2760                 /* the_force */
2761                 if (select_the_force && (*cp == INVEN_FORCE))
2762                 {
2763                         item_tester_tval = 0;
2764                         item_tester_hook = NULL;
2765                         command_cmd = 0; /* Hack -- command_cmd is no longer effective */
2766                         return (TRUE);
2767                 }
2768
2769                 /* Floor item? */
2770                 else if (floor && (*cp < 0))
2771                 {
2772                         object_type *o_ptr;
2773
2774                         /* Special index */
2775                         k = 0 - (*cp);
2776
2777                         /* Acquire object */
2778                         o_ptr = &o_list[k];
2779
2780                         /* Validate the item */
2781                         if (item_tester_okay(o_ptr))
2782                         {
2783                                 /* Forget restrictions */
2784                                 item_tester_tval = 0;
2785                                 item_tester_hook = NULL;
2786                                 command_cmd = 0; /* Hack -- command_cmd is no longer effective */
2787
2788                                 /* Success */
2789                                 return TRUE;
2790                         }
2791                 }
2792
2793                 else if ((inven && (*cp >= 0) && (*cp < INVEN_PACK)) ||
2794                          (equip && (*cp >= INVEN_RARM) && (*cp < INVEN_TOTAL)))
2795                 {
2796                         if (prev_tag && command_cmd)
2797                         {
2798                                 /* Look up the tag and validate the item */
2799                                 if (!get_tag(&k, prev_tag, (*cp >= INVEN_RARM) ? USE_EQUIP : USE_INVEN)) /* Reject */;
2800                                 else if ((k < INVEN_RARM) ? !inven : !equip) /* Reject */;
2801                                 else if (!get_item_okay(k)) /* Reject */;
2802                                 else
2803                                 {
2804                                         /* Accept that choice */
2805                                         (*cp) = k;
2806
2807                                         /* Forget restrictions */
2808                                         item_tester_tval = 0;
2809                                         item_tester_hook = NULL;
2810                                         command_cmd = 0; /* Hack -- command_cmd is no longer effective */
2811
2812                                         /* Success */
2813                                         return TRUE;
2814                                 }
2815
2816                                 prev_tag = '\0'; /* prev_tag is no longer effective */
2817                         }
2818
2819                         /* Verify the item */
2820                         else if (get_item_okay(*cp))
2821                         {
2822                                 /* Forget restrictions */
2823                                 item_tester_tval = 0;
2824                                 item_tester_hook = NULL;
2825                                 command_cmd = 0; /* Hack -- command_cmd is no longer effective */
2826
2827                                 /* Success */
2828                                 return TRUE;
2829                         }
2830                 }
2831         }
2832
2833
2834         /* Paranoia */
2835         msg_print(NULL);
2836
2837
2838         /* Not done */
2839         done = FALSE;
2840
2841         /* No item selected */
2842         item = FALSE;
2843
2844
2845         /* Full inventory */
2846         i1 = 0;
2847         i2 = INVEN_PACK - 1;
2848
2849         /* Forbid inventory */
2850         if (!inven) i2 = -1;
2851         else if (use_menu)
2852         {
2853                 for (j = 0; j < INVEN_PACK; j++)
2854                         if (item_tester_okay(&inventory[j])) max_inven++;
2855         }
2856
2857         /* Restrict inventory indexes */
2858         while ((i1 <= i2) && (!get_item_okay(i1))) i1++;
2859         while ((i1 <= i2) && (!get_item_okay(i2))) i2--;
2860
2861
2862         /* Full equipment */
2863         e1 = INVEN_RARM;
2864         e2 = INVEN_TOTAL - 1;
2865
2866         /* Forbid equipment */
2867         if (!equip) e2 = -1;
2868         else if (use_menu)
2869         {
2870                 for (j = INVEN_RARM; j < INVEN_TOTAL; j++)
2871                         if (select_ring_slot ? is_ring_slot(j) : item_tester_okay(&inventory[j])) max_equip++;
2872                 if (p_ptr->ryoute && !item_tester_no_ryoute) max_equip++;
2873         }
2874
2875         /* Restrict equipment indexes */
2876         while ((e1 <= e2) && (!get_item_okay(e1))) e1++;
2877         while ((e1 <= e2) && (!get_item_okay(e2))) e2--;
2878
2879         if (equip && p_ptr->ryoute && !item_tester_no_ryoute)
2880         {
2881                 if (p_ptr->migite)
2882                 {
2883                         if (e2 < INVEN_LARM) e2 = INVEN_LARM;
2884                 }
2885                 else if (p_ptr->hidarite) e1 = INVEN_RARM;
2886         }
2887
2888
2889         /* Restrict floor usage */
2890         if (floor)
2891         {
2892                 /* Scan all objects in the grid */
2893                 for (this_o_idx = cave[p_ptr->y][p_ptr->x].o_idx; this_o_idx; this_o_idx = next_o_idx)
2894                 {
2895                         object_type *o_ptr;
2896
2897                         /* Acquire object */
2898                         o_ptr = &o_list[this_o_idx];
2899
2900                         /* Acquire next object */
2901                         next_o_idx = o_ptr->next_o_idx;
2902
2903                         /* Accept the item on the floor if legal */
2904                         if (item_tester_okay(o_ptr) && (o_ptr->marked & OM_FOUND)) allow_floor = TRUE;
2905                 }
2906         }
2907
2908         /* Require at least one legal choice */
2909         if (!allow_floor && (i1 > i2) && (e1 > e2))
2910         {
2911                 /* Cancel p_ptr->command_see */
2912                 command_see = FALSE;
2913
2914                 oops = TRUE;
2915
2916                 done = TRUE;
2917
2918                 if (select_the_force) {
2919                     *cp = INVEN_FORCE;
2920                     item = TRUE;
2921                 }
2922         }
2923
2924         /* Analyze choices */
2925         else
2926         {
2927                 /* Hack -- Start on equipment if requested */
2928                 if (command_see && command_wrk && equip)
2929                 {
2930                         command_wrk = TRUE;
2931                 }
2932
2933                 /* Use inventory if allowed */
2934                 else if (inven)
2935                 {
2936                         command_wrk = FALSE;
2937                 }
2938
2939                 /* Use equipment if allowed */
2940                 else if (equip)
2941                 {
2942                         command_wrk = TRUE;
2943                 }
2944
2945                 /* Use inventory for floor */
2946                 else
2947                 {
2948                         command_wrk = FALSE;
2949                 }
2950         }
2951
2952
2953         /*
2954          * 追加オプション(always_show_list)が設定されている場合は常に一覧を表示する
2955          */
2956         if ((always_show_list == TRUE) || use_menu) command_see = TRUE;
2957
2958         /* Hack -- start out in "display" mode */
2959         if (command_see)
2960         {
2961                 /* Save screen */
2962                 screen_save();
2963         }
2964
2965
2966         /* Repeat until done */
2967         while (!done)
2968         {
2969                 COMMAND_CODE get_item_label = 0;
2970
2971                 /* Show choices */
2972                 int ni = 0;
2973                 int ne = 0;
2974
2975                 /* Scan windows */
2976                 for (j = 0; j < 8; j++)
2977                 {
2978                         /* Unused */
2979                         if (!angband_term[j]) continue;
2980
2981                         /* Count windows displaying inven */
2982                         if (window_flag[j] & (PW_INVEN)) ni++;
2983
2984                         /* Count windows displaying equip */
2985                         if (window_flag[j] & (PW_EQUIP)) ne++;
2986                 }
2987
2988                 /* Toggle if needed */
2989                 if ((command_wrk && ni && !ne) ||
2990                     (!command_wrk && !ni && ne))
2991                 {
2992                         /* Toggle */
2993                         toggle_inven_equip();
2994
2995                         /* Track toggles */
2996                         toggle = !toggle;
2997                 }
2998
2999                 /* Update */
3000                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
3001
3002                 /* Redraw windows */
3003                 window_stuff();
3004
3005
3006                 /* Inventory screen */
3007                 if (!command_wrk)
3008                 {
3009                         /* Redraw if needed */
3010                         if (command_see) get_item_label = show_inven(menu_line);
3011                 }
3012
3013                 /* Equipment screen */
3014                 else
3015                 {
3016                         /* Redraw if needed */
3017                         if (command_see) get_item_label = show_equip(menu_line);
3018                 }
3019
3020                 /* Viewing inventory */
3021                 if (!command_wrk)
3022                 {
3023                         /* Begin the prompt */
3024                         sprintf(out_val, _("持ち物:", "Inven:"));
3025
3026                         /* Some legal items */
3027                         if ((i1 <= i2) && !use_menu)
3028                         {
3029                                 /* Build the prompt */
3030                                 sprintf(tmp_val, _("%c-%c,'(',')',", " %c-%c,'(',')',"),
3031                                         index_to_label(i1), index_to_label(i2));
3032
3033                                 /* Append */
3034                                 strcat(out_val, tmp_val);
3035                         }
3036
3037                         /* Indicate ability to "view" */
3038                         if (!command_see && !use_menu) strcat(out_val, _(" '*'一覧,", " * to see,"));
3039
3040                         /* Append */
3041 #ifdef JP
3042                         if (equip) strcat(out_val, format(" %s 装備品,", use_menu ? "'4'or'6'" : "'/'"));
3043 #else
3044                         if (equip) strcat(out_val, format(" %s for Equip,", use_menu ? "4 or 6" : "/"));
3045 #endif
3046                 }
3047
3048                 /* Viewing equipment */
3049                 else
3050                 {
3051                         /* Begin the prompt */
3052                         sprintf(out_val, _("装備品:", "Equip:"));
3053
3054                         /* Some legal items */
3055                         if ((e1 <= e2) && !use_menu)
3056                         {
3057                                 /* Build the prompt */
3058                                 sprintf(tmp_val, _("%c-%c,'(',')',", " %c-%c,'(',')',"),
3059                                         index_to_label(e1), index_to_label(e2));
3060
3061                                 /* Append */
3062                                 strcat(out_val, tmp_val);
3063                         }
3064
3065                         /* Indicate ability to "view" */
3066                         if (!command_see && !use_menu) strcat(out_val, _(" '*'一覧,", " * to see,"));
3067
3068                         /* Append */
3069 #ifdef JP
3070                         if (inven) strcat(out_val, format(" %s 持ち物,", use_menu ? "'4'or'6'" : "'/'"));
3071 #else
3072                         if (inven) strcat(out_val, format(" %s for Inven,", use_menu ? "4 or 6" : "'/'"));
3073 #endif
3074                 }
3075
3076                 /* Indicate legality of the "floor" item */
3077                 if (allow_floor) strcat(out_val, _(" '-'床上,", " - for floor,"));
3078                 if (select_the_force) strcat(out_val, _(" 'w'練気術,", " w for the Force,"));
3079
3080                 /* Finish the prompt */
3081                 strcat(out_val, " ESC");
3082
3083                 /* Build the prompt */
3084                 sprintf(tmp_val, "(%s) %s", out_val, pmt);
3085
3086                 /* Show the prompt */
3087                 prt(tmp_val, 0, 0);
3088
3089                 /* Get a key */
3090                 which = inkey();
3091
3092                 if (use_menu)
3093                 {
3094                 int max_line = (command_wrk ? max_equip : max_inven);
3095                 switch (which)
3096                 {
3097                         case ESCAPE:
3098                         case 'z':
3099                         case 'Z':
3100                         case '0':
3101                         {
3102                                 done = TRUE;
3103                                 break;
3104                         }
3105
3106                         case '8':
3107                         case 'k':
3108                         case 'K':
3109                         {
3110                                 menu_line += (max_line - 1);
3111                                 break;
3112                         }
3113
3114                         case '2':
3115                         case 'j':
3116                         case 'J':
3117                         {
3118                                 menu_line++;
3119                                 break;
3120                         }
3121
3122                         case '4':
3123                         case '6':
3124                         case 'h':
3125                         case 'H':
3126                         case 'l':
3127                         case 'L':
3128                         {
3129                                 /* Verify legality */
3130                                 if (!inven || !equip)
3131                                 {
3132                                         bell();
3133                                         break;
3134                                 }
3135
3136                                 /* Hack -- Fix screen */
3137                                 if (command_see)
3138                                 {
3139                                         /* Load screen */
3140                                         screen_load();
3141
3142                                         /* Save screen */
3143                                         screen_save();
3144                                 }
3145
3146                                 /* Switch inven/equip */
3147                                 command_wrk = !command_wrk;
3148                                 max_line = (command_wrk ? max_equip : max_inven);
3149                                 if (menu_line > max_line) menu_line = max_line;
3150
3151                                 /* Need to redraw */
3152                                 break;
3153                         }
3154
3155                         case 'x':
3156                         case 'X':
3157                         case '\r':
3158                         case '\n':
3159                         {
3160                                 if (command_wrk == USE_FLOOR)
3161                                 {
3162                                         /* Special index */
3163                                         (*cp) = -get_item_label;
3164                                 }
3165                                 else
3166                                 {
3167                                         /* Validate the item */
3168                                         if (!get_item_okay(get_item_label))
3169                                         {
3170                                                 bell();
3171                                                 break;
3172                                         }
3173
3174                                         /* Allow player to "refuse" certain actions */
3175                                         if (!get_item_allow(get_item_label))
3176                                         {
3177                                                 done = TRUE;
3178                                                 break;
3179                                         }
3180
3181                                         /* Accept that choice */
3182                                         (*cp) = get_item_label;
3183                                 }
3184
3185                                 item = TRUE;
3186                                 done = TRUE;
3187                                 break;
3188                         }
3189                         case 'w':
3190                         {
3191                                 if (select_the_force) {
3192                                         *cp = INVEN_FORCE;
3193                                         item = TRUE;
3194                                         done = TRUE;
3195                                         break;
3196                                 }
3197                         }
3198                 }
3199                 if (menu_line > max_line) menu_line -= max_line;
3200                 }
3201                 else
3202                 {
3203                 /* Parse it */
3204                 switch (which)
3205                 {
3206                         case ESCAPE:
3207                         {
3208                                 done = TRUE;
3209                                 break;
3210                         }
3211
3212                         case '*':
3213                         case '?':
3214                         case ' ':
3215                         {
3216                                 /* Hide the list */
3217                                 if (command_see)
3218                                 {
3219                                         /* Flip flag */
3220                                         command_see = FALSE;
3221
3222                                         /* Load screen */
3223                                         screen_load();
3224                                 }
3225
3226                                 /* Show the list */
3227                                 else
3228                                 {
3229                                         /* Save screen */
3230                                         screen_save();
3231
3232                                         /* Flip flag */
3233                                         command_see = TRUE;
3234                                 }
3235                                 break;
3236                         }
3237
3238                         case '/':
3239                         {
3240                                 /* Verify legality */
3241                                 if (!inven || !equip)
3242                                 {
3243                                         bell();
3244                                         break;
3245                                 }
3246
3247                                 /* Hack -- Fix screen */
3248                                 if (command_see)
3249                                 {
3250                                         /* Load screen */
3251                                         screen_load();
3252
3253                                         /* Save screen */
3254                                         screen_save();
3255                                 }
3256
3257                                 /* Switch inven/equip */
3258                                 command_wrk = !command_wrk;
3259
3260                                 /* Need to redraw */
3261                                 break;
3262                         }
3263
3264                         case '-':
3265                         {
3266                                 /* Use floor item */
3267                                 if (allow_floor)
3268                                 {
3269                                         /* Scan all objects in the grid */
3270                                         for (this_o_idx = cave[p_ptr->y][p_ptr->x].o_idx; this_o_idx; this_o_idx = next_o_idx)
3271                                         {
3272                                                 object_type *o_ptr;
3273
3274                                                 /* Acquire object */
3275                                                 o_ptr = &o_list[this_o_idx];
3276
3277                                                 /* Acquire next object */
3278                                                 next_o_idx = o_ptr->next_o_idx;
3279
3280                                                 /* Validate the item */
3281                                                 if (!item_tester_okay(o_ptr)) continue;
3282
3283                                                 /* Special index */
3284                                                 k = 0 - this_o_idx;
3285
3286                                                 /* Verify the item (if required) */
3287                                                 if (other_query_flag && !verify(_("本当に", "Try"), k)) continue;
3288
3289                                                 /* Allow player to "refuse" certain actions */
3290                                                 if (!get_item_allow(k)) continue;
3291
3292                                                 /* Accept that choice */
3293                                                 (*cp) = k;
3294                                                 item = TRUE;
3295                                                 done = TRUE;
3296                                                 break;
3297                                         }
3298
3299                                         /* Outer break */
3300                                         if (done) break;
3301                                 }
3302
3303                                 bell();
3304                                 break;
3305                         }
3306
3307                         case '0':
3308                         case '1': case '2': case '3':
3309                         case '4': case '5': case '6':
3310                         case '7': case '8': case '9':
3311                         {
3312                                 /* Look up the tag */
3313                                 if (!get_tag(&k, which, command_wrk ? USE_EQUIP : USE_INVEN))
3314                                 {
3315                                         bell();
3316                                         break;
3317                                 }
3318
3319                                 /* Hack -- Validate the item */
3320                                 if ((k < INVEN_RARM) ? !inven : !equip)
3321                                 {
3322                                         bell();
3323                                         break;
3324                                 }
3325
3326                                 /* Validate the item */
3327                                 if (!get_item_okay(k))
3328                                 {
3329                                         bell();
3330                                         break;
3331                                 }
3332
3333                                 /* Allow player to "refuse" certain actions */
3334                                 if (!get_item_allow(k))
3335                                 {
3336                                         done = TRUE;
3337                                         break;
3338                                 }
3339
3340                                 /* Accept that choice */
3341                                 (*cp) = k;
3342                                 item = TRUE;
3343                                 done = TRUE;
3344                                 cur_tag = which;
3345                                 break;
3346                         }
3347
3348 #if 0
3349                         case '\n':
3350                         case '\r':
3351                         {
3352                                 /* Choose "default" inventory item */
3353                                 if (!command_wrk)
3354                                 {
3355                                         k = ((i1 == i2) ? i1 : -1);
3356                                 }
3357
3358                                 /* Choose "default" equipment item */
3359                                 else
3360                                 {
3361                                         k = ((e1 == e2) ? e1 : -1);
3362                                 }
3363
3364                                 /* Validate the item */
3365                                 if (!get_item_okay(k))
3366                                 {
3367                                         bell();
3368                                         break;
3369                                 }
3370
3371                                 /* Allow player to "refuse" certain actions */
3372                                 if (!get_item_allow(k))
3373                                 {
3374                                         done = TRUE;
3375                                         break;
3376                                 }
3377
3378                                 /* Accept that choice */
3379                                 (*cp) = k;
3380                                 item = TRUE;
3381                                 done = TRUE;
3382                                 break;
3383                         }
3384 #endif
3385
3386                         case 'w':
3387                         {
3388                                 if (select_the_force) {
3389                                         *cp = INVEN_FORCE;
3390                                         item = TRUE;
3391                                         done = TRUE;
3392                                         break;
3393                                 }
3394
3395                                 /* Fall through */
3396                         }
3397
3398                         default:
3399                         {
3400                                 int ver;
3401                                 bool not_found = FALSE;
3402
3403                                 /* Look up the alphabetical tag */
3404                                 if (!get_tag(&k, which, command_wrk ? USE_EQUIP : USE_INVEN))
3405                                 {
3406                                         not_found = TRUE;
3407                                 }
3408
3409                                 /* Hack -- Validate the item */
3410                                 else if ((k < INVEN_RARM) ? !inven : !equip)
3411                                 {
3412                                         not_found = TRUE;
3413                                 }
3414
3415                                 /* Validate the item */
3416                                 else if (!get_item_okay(k))
3417                                 {
3418                                         not_found = TRUE;
3419                                 }
3420
3421                                 if (!not_found)
3422                                 {
3423                                         /* Accept that choice */
3424                                         (*cp) = k;
3425                                         item = TRUE;
3426                                         done = TRUE;
3427                                         cur_tag = which;
3428                                         break;
3429                                 }
3430
3431                                 /* Extract "query" setting */
3432                                 ver = isupper(which);
3433                                 which = (char)tolower(which);
3434
3435                                 /* Convert letter to inventory index */
3436                                 if (!command_wrk)
3437                                 {
3438                                         if (which == '(') k = i1;
3439                                         else if (which == ')') k = i2;
3440                                         else k = label_to_inven(which);
3441                                 }
3442
3443                                 /* Convert letter to equipment index */
3444                                 else
3445                                 {
3446                                         if (which == '(') k = e1;
3447                                         else if (which == ')') k = e2;
3448                                         else k = label_to_equip(which);
3449                                 }
3450
3451                                 /* Validate the item */
3452                                 if (!get_item_okay(k))
3453                                 {
3454                                         bell();
3455                                         break;
3456                                 }
3457
3458                                 /* Verify the item */
3459                                 if (ver && !verify(_("本当に", "Try"), k))
3460                                 {
3461                                         done = TRUE;
3462                                         break;
3463                                 }
3464
3465                                 /* Allow player to "refuse" certain actions */
3466                                 if (!get_item_allow(k))
3467                                 {
3468                                         done = TRUE;
3469                                         break;
3470                                 }
3471
3472                                 /* Accept that choice */
3473                                 (*cp) = k;
3474                                 item = TRUE;
3475                                 done = TRUE;
3476                                 break;
3477                         }
3478                 }
3479                 }
3480         }
3481
3482
3483         /* Fix the screen if necessary */
3484         if (command_see)
3485         {
3486                 /* Load screen */
3487                 screen_load();
3488
3489                 /* Hack -- Cancel "display" */
3490                 command_see = FALSE;
3491         }
3492
3493
3494         /* Forget the item_tester_tval restriction */
3495         item_tester_tval = 0;
3496
3497         item_tester_no_ryoute = FALSE;
3498
3499         /* Forget the item_tester_hook restriction */
3500         item_tester_hook = NULL;
3501
3502
3503         /* Clean up  'show choices' */
3504         /* Toggle again if needed */
3505         if (toggle) toggle_inven_equip();
3506
3507         /* Update */
3508         p_ptr->window |= (PW_INVEN | PW_EQUIP);
3509
3510         window_stuff();
3511
3512
3513         /* Clear the prompt line */
3514         prt("", 0, 0);
3515
3516         /* Warning if needed */
3517         if (oops && str) msg_print(str);
3518
3519         if (item)
3520         {
3521                 repeat_push(*cp);
3522                 if (command_cmd) prev_tag = cur_tag;
3523                 command_cmd = 0; /* Hack -- command_cmd is no longer effective */
3524         }
3525         return (item);
3526 }
3527
3528 /*!
3529  * @brief 床下に落ちているオブジェクトの数を返す / scan_floor
3530  * @param items オブジェクトのIDリストを返すための配列参照ポインタ
3531  * @param y 走査するフロアのY座標
3532  * @param x 走査するフロアのX座標
3533  * @param mode オプションフラグ
3534  * @return 対象のマスに落ちているアイテム数
3535  * @details
3536  * Return a list of o_list[] indexes of items at the given cave
3537  * location. Valid flags are:
3538  *
3539  *              mode & 0x01 -- Item tester
3540  *              mode & 0x02 -- Marked items only
3541  *              mode & 0x04 -- Stop after first
3542  */
3543 ITEM_NUMBER scan_floor(OBJECT_IDX *items, POSITION y, POSITION x, BIT_FLAGS mode)
3544 {
3545         OBJECT_IDX this_o_idx, next_o_idx;
3546
3547         ITEM_NUMBER num = 0;
3548
3549         /* Sanity */
3550         if (!in_bounds(y, x)) return 0;
3551
3552         /* Scan all objects in the grid */
3553         for (this_o_idx = cave[y][x].o_idx; this_o_idx; this_o_idx = next_o_idx)
3554         {
3555                 object_type *o_ptr;
3556
3557                 /* Acquire object */
3558                 o_ptr = &o_list[this_o_idx];
3559
3560                 /* Acquire next object */
3561                 next_o_idx = o_ptr->next_o_idx;
3562
3563                 /* Item tester */
3564                 if ((mode & 0x01) && !item_tester_okay(o_ptr)) continue;
3565
3566                 /* Marked */
3567                 if ((mode & 0x02) && !(o_ptr->marked & OM_FOUND)) continue;
3568
3569                 /* Accept this item */
3570                 /* XXX Hack -- Enforce limit */
3571                 if (num < 23)
3572                         items[num] = this_o_idx;
3573
3574                 num++;
3575
3576                 /* Only one */
3577                 if (mode & 0x04) break;
3578         }
3579         return num;
3580 }
3581
3582
3583 /*!
3584  * @brief 床下に落ちているアイテムの一覧を返す / Display a list of the items on the floor at the given location.
3585  * @param target_item カーソルの初期値
3586  * @param y 走査するフロアのY座標
3587  * @param x 走査するフロアのX座標
3588  * @param min_width 表示の長さ
3589  * @return 選択したアイテムの添え字
3590  * @details
3591  */
3592 COMMAND_CODE show_floor(int target_item, POSITION y, POSITION x, TERM_LEN *min_width)
3593 {
3594         COMMAND_CODE i, m;
3595         int j, k, l;
3596         int col, len;
3597
3598         object_type *o_ptr;
3599
3600         char o_name[MAX_NLEN];
3601         char tmp_val[80];
3602
3603         COMMAND_CODE out_index[23];
3604         TERM_COLOR out_color[23];
3605         char out_desc[23][MAX_NLEN];
3606         COMMAND_CODE target_item_label = 0;
3607
3608         OBJECT_IDX floor_list[23];
3609         ITEM_NUMBER floor_num;
3610         TERM_LEN wid, hgt;
3611         char floor_label[52 + 1];
3612
3613         bool dont_need_to_show_weights = TRUE;
3614
3615         Term_get_size(&wid, &hgt);
3616
3617         /* Default length */
3618         len = MAX((*min_width), 20);
3619
3620
3621         /* Scan for objects in the grid, using item_tester_okay() */
3622         floor_num = scan_floor(floor_list, y, x, 0x03);
3623
3624         /* Display the floor objects */
3625         for (k = 0, i = 0; i < floor_num && i < 23; i++)
3626         {
3627                 o_ptr = &o_list[floor_list[i]];
3628
3629                 /* Describe the object */
3630                 object_desc(o_name, o_ptr, 0);
3631
3632                 /* Save the index */
3633                 out_index[k] = i;
3634
3635                 /* Acquire inventory color */
3636                 out_color[k] = tval_to_attr[o_ptr->tval & 0x7F];
3637
3638                 /* Save the object description */
3639                 strcpy(out_desc[k], o_name);
3640
3641                 /* Find the predicted "line length" */
3642                 l = strlen(out_desc[k]) + 5;
3643
3644                 /* Be sure to account for the weight */
3645                 if (show_weights) l += 9;
3646
3647                 if (o_ptr->tval != TV_GOLD) dont_need_to_show_weights = FALSE;
3648
3649                 /* Maintain the maximum length */
3650                 if (l > len) len = l;
3651
3652                 /* Advance to next "line" */
3653                 k++;
3654         }
3655
3656         if (show_weights && dont_need_to_show_weights) len -= 9;
3657
3658         /* Save width */
3659         *min_width = len;
3660
3661         /* Find the column to start in */
3662         col = (len > wid - 4) ? 0 : (wid - len - 1);
3663
3664         prepare_label_string_floor(floor_label, floor_list, floor_num);
3665
3666         /* Output each entry */
3667         for (j = 0; j < k; j++)
3668         {
3669                 /* Get the index */
3670                 m = floor_list[out_index[j]];
3671
3672                 /* Get the item */
3673                 o_ptr = &o_list[m];
3674
3675                 /* Clear the line */
3676                 prt("", j + 1, col ? col - 2 : col);
3677
3678                 if (use_menu && target_item)
3679                 {
3680                         if (j == (target_item-1))
3681                         {
3682                                 strcpy(tmp_val, _("》", "> "));
3683                                 target_item_label = m;
3684                         }
3685                         else strcpy(tmp_val, "   ");
3686                 }
3687                 else
3688                 {
3689                         /* Prepare an index --(-- */
3690                         sprintf(tmp_val, "%c)", floor_label[j]);
3691                 }
3692
3693                 /* Clear the line with the (possibly indented) index */
3694                 put_str(tmp_val, j + 1, col);
3695
3696                 /* Display the entry itself */
3697                 c_put_str(out_color[j], out_desc[j], j + 1, col + 3);
3698
3699                 /* Display the weight if needed */
3700                 if (show_weights && (o_ptr->tval != TV_GOLD))
3701                 {
3702                         int wgt = o_ptr->weight * o_ptr->number;
3703 #ifdef JP
3704                         sprintf(tmp_val, "%3d.%1d kg", lbtokg1(wgt) , lbtokg2(wgt) );
3705 #else
3706                         sprintf(tmp_val, "%3d.%1d lb", wgt / 10, wgt % 10);
3707 #endif
3708
3709                         prt(tmp_val, j + 1, wid - 9);
3710                 }
3711         }
3712
3713         /* Make a "shadow" below the list (only if needed) */
3714         if (j && (j < 23)) prt("", j + 1, col ? col - 2 : col);
3715
3716         return target_item_label;
3717 }
3718
3719 /*!
3720  * @brief オブジェクト選択の汎用関数(床上アイテム用) /
3721  * Let the user select an item, save its "index"
3722  * @param cp 選択したオブジェクトのIDを返す。
3723  * @param pmt 選択目的のメッセージ
3724  * @param str 選択できるオブジェクトがない場合のキャンセルメッセージ
3725  * @param mode オプションフラグ
3726  * @return プレイヤーによりアイテムが選択されたならTRUEを返す。/
3727  */
3728 bool get_item_floor(COMMAND_CODE *cp, cptr pmt, cptr str, BIT_FLAGS mode)
3729 {
3730         char n1 = ' ', n2 = ' ', which = ' ';
3731
3732         int j;
3733         COMMAND_CODE i1, i2;
3734         COMMAND_CODE e1, e2;
3735         COMMAND_CODE k;
3736
3737         bool done, item;
3738
3739         bool oops = FALSE;
3740
3741         /* Extract args */
3742         bool equip = (mode & USE_EQUIP) ? TRUE : FALSE;
3743         bool inven = (mode & USE_INVEN) ? TRUE : FALSE;
3744         bool floor = (mode & USE_FLOOR) ? TRUE : FALSE;
3745
3746         bool allow_equip = FALSE;
3747         bool allow_inven = FALSE;
3748         bool allow_floor = FALSE;
3749
3750         bool toggle = FALSE;
3751
3752         char tmp_val[160];
3753         char out_val[160];
3754
3755         ITEM_NUMBER floor_num;
3756         OBJECT_IDX floor_list[23];
3757         int floor_top = 0;
3758         TERM_LEN min_width = 0;
3759
3760         extern bool select_the_force;
3761
3762         int menu_line = (use_menu ? 1 : 0);
3763         int max_inven = 0;
3764         int max_equip = 0;
3765
3766         static char prev_tag = '\0';
3767         char cur_tag = '\0';
3768
3769         /* Get the item index */
3770         if (repeat_pull(cp))
3771         {
3772                 /* the_force */
3773                 if (select_the_force && (*cp == INVEN_FORCE))
3774                 {
3775                         item_tester_tval = 0;
3776                         item_tester_hook = NULL;
3777                         command_cmd = 0; /* Hack -- command_cmd is no longer effective */
3778                         return (TRUE);
3779                 }
3780
3781                 /* Floor item? */
3782                 else if (floor && (*cp < 0))
3783                 {
3784                         if (prev_tag && command_cmd)
3785                         {
3786                                 /* Scan all objects in the grid */
3787                                 floor_num = scan_floor(floor_list, p_ptr->y, p_ptr->x, 0x03);
3788
3789                                 /* Look up the tag */
3790                                 if (get_tag_floor(&k, prev_tag, floor_list, floor_num))
3791                                 {
3792                                         /* Accept that choice */
3793                                         (*cp) = 0 - floor_list[k];
3794
3795                                         /* Forget restrictions */
3796                                         item_tester_tval = 0;
3797                                         item_tester_hook = NULL;
3798                                         command_cmd = 0; /* Hack -- command_cmd is no longer effective */
3799
3800                                         /* Success */
3801                                         return TRUE;
3802                                 }
3803
3804                                 prev_tag = '\0'; /* prev_tag is no longer effective */
3805                         }
3806
3807                         /* Validate the item */
3808                         else if (item_tester_okay(&o_list[0 - (*cp)]))
3809                         {
3810                                 /* Forget restrictions */
3811                                 item_tester_tval = 0;
3812                                 item_tester_hook = NULL;
3813                                 command_cmd = 0; /* Hack -- command_cmd is no longer effective */
3814
3815                                 /* Success */
3816                                 return TRUE;
3817                         }
3818                 }
3819
3820                 else if ((inven && (*cp >= 0) && (*cp < INVEN_PACK)) ||
3821                          (equip && (*cp >= INVEN_RARM) && (*cp < INVEN_TOTAL)))
3822                 {
3823                         if (prev_tag && command_cmd)
3824                         {
3825                                 /* Look up the tag and validate the item */
3826                                 if (!get_tag(&k, prev_tag, (*cp >= INVEN_RARM) ? USE_EQUIP : USE_INVEN)) /* Reject */;
3827                                 else if ((k < INVEN_RARM) ? !inven : !equip) /* Reject */;
3828                                 else if (!get_item_okay(k)) /* Reject */;
3829                                 else
3830                                 {
3831                                         /* Accept that choice */
3832                                         (*cp) = k;
3833
3834                                         /* Forget restrictions */
3835                                         item_tester_tval = 0;
3836                                         item_tester_hook = NULL;
3837                                         command_cmd = 0; /* Hack -- command_cmd is no longer effective */
3838
3839                                         /* Success */
3840                                         return TRUE;
3841                                 }
3842
3843                                 prev_tag = '\0'; /* prev_tag is no longer effective */
3844                         }
3845
3846                         /* Verify the item */
3847                         else if (get_item_okay(*cp))
3848                         {
3849                                 /* Forget restrictions */
3850                                 item_tester_tval = 0;
3851                                 item_tester_hook = NULL;
3852                                 command_cmd = 0; /* Hack -- command_cmd is no longer effective */
3853
3854                                 /* Success */
3855                                 return TRUE;
3856                         }
3857                 }
3858         }
3859
3860
3861         /* Paranoia */
3862         msg_print(NULL);
3863
3864
3865         /* Not done */
3866         done = FALSE;
3867
3868         /* No item selected */
3869         item = FALSE;
3870
3871
3872         /* Full inventory */
3873         i1 = 0;
3874         i2 = INVEN_PACK - 1;
3875
3876         /* Forbid inventory */
3877         if (!inven) i2 = -1;
3878         else if (use_menu)
3879         {
3880                 for (j = 0; j < INVEN_PACK; j++)
3881                         if (item_tester_okay(&inventory[j])) max_inven++;
3882         }
3883
3884         /* Restrict inventory indexes */
3885         while ((i1 <= i2) && (!get_item_okay(i1))) i1++;
3886         while ((i1 <= i2) && (!get_item_okay(i2))) i2--;
3887
3888
3889         /* Full equipment */
3890         e1 = INVEN_RARM;
3891         e2 = INVEN_TOTAL - 1;
3892
3893         /* Forbid equipment */
3894         if (!equip) e2 = -1;
3895         else if (use_menu)
3896         {
3897                 for (j = INVEN_RARM; j < INVEN_TOTAL; j++)
3898                         if (select_ring_slot ? is_ring_slot(j) : item_tester_okay(&inventory[j])) max_equip++;
3899                 if (p_ptr->ryoute && !item_tester_no_ryoute) max_equip++;
3900         }
3901
3902         /* Restrict equipment indexes */
3903         while ((e1 <= e2) && (!get_item_okay(e1))) e1++;
3904         while ((e1 <= e2) && (!get_item_okay(e2))) e2--;
3905
3906         if (equip && p_ptr->ryoute && !item_tester_no_ryoute)
3907         {
3908                 if (p_ptr->migite)
3909                 {
3910                         if (e2 < INVEN_LARM) e2 = INVEN_LARM;
3911                 }
3912                 else if (p_ptr->hidarite) e1 = INVEN_RARM;
3913         }
3914
3915
3916         /* Count "okay" floor items */
3917         floor_num = 0;
3918
3919         /* Restrict floor usage */
3920         if (floor)
3921         {
3922                 /* Scan all objects in the grid */
3923                 floor_num = scan_floor(floor_list, p_ptr->y, p_ptr->x, 0x03);
3924         }
3925
3926         /* Accept inventory */
3927         if (i1 <= i2) allow_inven = TRUE;
3928
3929         /* Accept equipment */
3930         if (e1 <= e2) allow_equip = TRUE;
3931
3932         /* Accept floor */
3933         if (floor_num) allow_floor = TRUE;
3934
3935         /* Require at least one legal choice */
3936         if (!allow_inven && !allow_equip && !allow_floor)
3937         {
3938                 /* Cancel p_ptr->command_see */
3939                 command_see = FALSE;
3940
3941                 oops = TRUE;
3942
3943                 done = TRUE;
3944
3945                 if (select_the_force) {
3946                     *cp = INVEN_FORCE;
3947                     item = TRUE;
3948                 }
3949         }
3950
3951         /* Analyze choices */
3952         else
3953         {
3954                 /* Hack -- Start on equipment if requested */
3955                 if (command_see && (command_wrk == (USE_EQUIP))
3956                         && allow_equip)
3957                 {
3958                         command_wrk = (USE_EQUIP);
3959                 }
3960
3961                 /* Use inventory if allowed */
3962                 else if (allow_inven)
3963                 {
3964                         command_wrk = (USE_INVEN);
3965                 }
3966
3967                 /* Use equipment if allowed */
3968                 else if (allow_equip)
3969                 {
3970                         command_wrk = (USE_EQUIP);
3971                 }
3972
3973                 /* Use floor if allowed */
3974                 else if (allow_floor)
3975                 {
3976                         command_wrk = (USE_FLOOR);
3977                 }
3978         }
3979
3980         /*
3981          * 追加オプション(always_show_list)が設定されている場合は常に一覧を表示する
3982          */
3983         if ((always_show_list == TRUE) || use_menu) command_see = TRUE;
3984
3985         /* Hack -- start out in "display" mode */
3986         if (command_see)
3987         {
3988                 /* Save screen */
3989                 screen_save();
3990         }
3991
3992         /* Repeat until done */
3993         while (!done)
3994         {
3995                 COMMAND_CODE get_item_label = 0;
3996
3997                 /* Show choices */
3998                 int ni = 0;
3999                 int ne = 0;
4000
4001                 /* Scan windows */
4002                 for (j = 0; j < 8; j++)
4003                 {
4004                         /* Unused */
4005                         if (!angband_term[j]) continue;
4006
4007                         /* Count windows displaying inven */
4008                         if (window_flag[j] & (PW_INVEN)) ni++;
4009
4010                         /* Count windows displaying equip */
4011                         if (window_flag[j] & (PW_EQUIP)) ne++;
4012                 }
4013
4014                 /* Toggle if needed */
4015                 if ((command_wrk == (USE_EQUIP) && ni && !ne) ||
4016                     (command_wrk == (USE_INVEN) && !ni && ne))
4017                 {
4018                         /* Toggle */
4019                         toggle_inven_equip();
4020
4021                         /* Track toggles */
4022                         toggle = !toggle;
4023                 }
4024
4025                 /* Update */
4026                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
4027
4028                 /* Redraw windows */
4029                 window_stuff();
4030
4031                 /* Inventory screen */
4032                 if (command_wrk == (USE_INVEN))
4033                 {
4034                         /* Extract the legal requests */
4035                         n1 = I2A(i1);
4036                         n2 = I2A(i2);
4037
4038                         /* Redraw if needed */
4039                         if (command_see) get_item_label = show_inven(menu_line);
4040                 }
4041
4042                 /* Equipment screen */
4043                 else if (command_wrk == (USE_EQUIP))
4044                 {
4045                         /* Extract the legal requests */
4046                         n1 = I2A(e1 - INVEN_RARM);
4047                         n2 = I2A(e2 - INVEN_RARM);
4048
4049                         /* Redraw if needed */
4050                         if (command_see) get_item_label = show_equip(menu_line);
4051                 }
4052
4053                 /* Floor screen */
4054                 else if (command_wrk == (USE_FLOOR))
4055                 {
4056                         j = floor_top;
4057                         k = MIN(floor_top + 23, floor_num) - 1;
4058
4059                         /* Extract the legal requests */
4060                         n1 = I2A(j - floor_top);
4061                         n2 = I2A(k - floor_top);
4062
4063                         /* Redraw if needed */
4064                         if (command_see) get_item_label = show_floor(menu_line, p_ptr->y, p_ptr->x, &min_width);
4065                 }
4066
4067                 /* Viewing inventory */
4068                 if (command_wrk == (USE_INVEN))
4069                 {
4070                         /* Begin the prompt */
4071                         sprintf(out_val, _("持ち物:", "Inven:"));
4072
4073                         if (!use_menu)
4074                         {
4075                                 /* Build the prompt */
4076                                 sprintf(tmp_val, _("%c-%c,'(',')',", " %c-%c,'(',')',"),
4077                                         index_to_label(i1), index_to_label(i2));
4078
4079                                 /* Append */
4080                                 strcat(out_val, tmp_val);
4081                         }
4082
4083                         /* Indicate ability to "view" */
4084                         if (!command_see && !use_menu) strcat(out_val, _(" '*'一覧,", " * to see,"));
4085
4086                         /* Append */
4087                         if (allow_equip)
4088                         {
4089 #ifdef JP
4090                                 if (!use_menu)
4091                                         strcat(out_val, " '/' 装備品,");
4092                                 else if (allow_floor)
4093                                         strcat(out_val, " '6' 装備品,");
4094                                 else
4095                                         strcat(out_val, " '4'or'6' 装備品,");
4096 #else
4097                                 if (!use_menu)
4098                                         strcat(out_val, " / for Equip,");
4099                                 else if (allow_floor)
4100                                         strcat(out_val, " 6 for Equip,");
4101                                 else
4102                                         strcat(out_val, " 4 or 6 for Equip,");
4103 #endif
4104                         }
4105
4106                         /* Append */
4107                         if (allow_floor)
4108                         {
4109 #ifdef JP
4110                                 if (!use_menu)
4111                                         strcat(out_val, " '-'床上,");
4112                                 else if (allow_equip)
4113                                         strcat(out_val, " '4' 床上,");
4114                                 else
4115                                         strcat(out_val, " '4'or'6' 床上,");
4116 #else
4117                                 if (!use_menu)
4118                                         strcat(out_val, " - for floor,");
4119                                 else if (allow_equip)
4120                                         strcat(out_val, " 4 for floor,");
4121                                 else
4122                                         strcat(out_val, " 4 or 6 for floor,");
4123 #endif
4124                         }
4125                 }
4126
4127                 /* Viewing equipment */
4128                 else if (command_wrk == (USE_EQUIP))
4129                 {
4130                         /* Begin the prompt */
4131                         sprintf(out_val, _("装備品:", "Equip:"));
4132
4133                         if (!use_menu)
4134                         {
4135                                 /* Build the prompt */
4136                                 sprintf(tmp_val, _("%c-%c,'(',')',", " %c-%c,'(',')',"),
4137                                         index_to_label(e1), index_to_label(e2));
4138
4139                                 /* Append */
4140                                 strcat(out_val, tmp_val);
4141                         }
4142
4143                         /* Indicate ability to "view" */
4144                         if (!command_see && !use_menu) strcat(out_val, _(" '*'一覧,", " * to see,"));
4145
4146                         /* Append */
4147                         if (allow_inven)
4148                         {
4149 #ifdef JP
4150                                 if (!use_menu)
4151                                         strcat(out_val, " '/' 持ち物,");
4152                                 else if (allow_floor)
4153                                         strcat(out_val, " '4' 持ち物,");
4154                                 else
4155                                         strcat(out_val, " '4'or'6' 持ち物,");
4156 #else
4157                                 if (!use_menu)
4158                                         strcat(out_val, " / for Inven,");
4159                                 else if (allow_floor)
4160                                         strcat(out_val, " 4 for Inven,");
4161                                 else
4162                                         strcat(out_val, " 4 or 6 for Inven,");
4163 #endif
4164                         }
4165
4166                         /* Append */
4167                         if (allow_floor)
4168                         {
4169 #ifdef JP
4170                                 if (!use_menu)
4171                                         strcat(out_val, " '-'床上,");
4172                                 else if (allow_inven)
4173                                         strcat(out_val, " '6' 床上,");
4174                                 else
4175                                         strcat(out_val, " '4'or'6' 床上,");
4176 #else
4177                                 if (!use_menu)
4178                                         strcat(out_val, " - for floor,");
4179                                 else if (allow_inven)
4180                                         strcat(out_val, " 6 for floor,");
4181                                 else
4182                                         strcat(out_val, " 4 or 6 for floor,");
4183 #endif
4184                         }
4185                 }
4186
4187                 /* Viewing floor */
4188                 else if (command_wrk == (USE_FLOOR))
4189                 {
4190                         /* Begin the prompt */
4191                         sprintf(out_val, _("床上:", "Floor:"));
4192
4193                         if (!use_menu)
4194                         {
4195                                 /* Build the prompt */
4196                                 sprintf(tmp_val, _("%c-%c,'(',')',", " %c-%c,'(',')',"), n1, n2);
4197
4198                                 /* Append */
4199                                 strcat(out_val, tmp_val);
4200                         }
4201
4202                         /* Indicate ability to "view" */
4203                         if (!command_see && !use_menu) strcat(out_val, _(" '*'一覧,", " * to see,"));
4204
4205                         if (use_menu)
4206                         {
4207                                 if (allow_inven && allow_equip)
4208                                 {
4209                                         strcat(out_val, _(" '4' 装備品, '6' 持ち物,", " 4 for Equip, 6 for Inven,"));
4210                                 }
4211                                 else if (allow_inven)
4212                                 {
4213                                         strcat(out_val, _(" '4'or'6' 持ち物,", " 4 or 6 for Inven,"));
4214                                 }
4215                                 else if (allow_equip)
4216                                 {
4217                                         strcat(out_val, _(" '4'or'6' 装備品,", " 4 or 6 for Equip,"));
4218                                 }
4219                         }
4220                         /* Append */
4221                         else if (allow_inven)
4222                         {
4223                                 strcat(out_val, _(" '/' 持ち物,", " / for Inven,"));
4224                         }
4225                         else if (allow_equip)
4226                         {
4227                                 strcat(out_val, _(" '/'装備品,", " / for Equip,"));
4228                         }
4229
4230                         /* Append */
4231                         if (command_see && !use_menu)
4232                         {
4233                                 strcat(out_val, _(" Enter 次,", " Enter for scroll down,"));
4234                         }
4235                 }
4236
4237                 /* Append */
4238                 if (select_the_force) strcat(out_val, _(" 'w'練気術,", " w for the Force,"));
4239
4240                 /* Finish the prompt */
4241                 strcat(out_val, " ESC");
4242
4243                 /* Build the prompt */
4244                 sprintf(tmp_val, "(%s) %s", out_val, pmt);
4245
4246                 /* Show the prompt */
4247                 prt(tmp_val, 0, 0);
4248
4249                 /* Get a key */
4250                 which = inkey();
4251
4252                 if (use_menu)
4253                 {
4254                 int max_line = 1;
4255                 if (command_wrk == USE_INVEN) max_line = max_inven;
4256                 else if (command_wrk == USE_EQUIP) max_line = max_equip;
4257                 else if (command_wrk == USE_FLOOR) max_line = MIN(23, floor_num);
4258                 switch (which)
4259                 {
4260                         case ESCAPE:
4261                         case 'z':
4262                         case 'Z':
4263                         case '0':
4264                         {
4265                                 done = TRUE;
4266                                 break;
4267                         }
4268
4269                         case '8':
4270                         case 'k':
4271                         case 'K':
4272                         {
4273                                 menu_line += (max_line - 1);
4274                                 break;
4275                         }
4276
4277                         case '2':
4278                         case 'j':
4279                         case 'J':
4280                         {
4281                                 menu_line++;
4282                                 break;
4283                         }
4284
4285                         case '4':
4286                         case 'h':
4287                         case 'H':
4288                         {
4289                                 /* Verify legality */
4290                                 if (command_wrk == (USE_INVEN))
4291                                 {
4292                                         if (allow_floor) command_wrk = USE_FLOOR;
4293                                         else if (allow_equip) command_wrk = USE_EQUIP;
4294                                         else
4295                                         {
4296                                                 bell();
4297                                                 break;
4298                                         }
4299                                 }
4300                                 else if (command_wrk == (USE_EQUIP))
4301                                 {
4302                                         if (allow_inven) command_wrk = USE_INVEN;
4303                                         else if (allow_floor) command_wrk = USE_FLOOR;
4304                                         else
4305                                         {
4306                                                 bell();
4307                                                 break;
4308                                         }
4309                                 }
4310                                 else if (command_wrk == (USE_FLOOR))
4311                                 {
4312                                         if (allow_equip) command_wrk = USE_EQUIP;
4313                                         else if (allow_inven) command_wrk = USE_INVEN;
4314                                         else
4315                                         {
4316                                                 bell();
4317                                                 break;
4318                                         }
4319                                 }
4320                                 else
4321                                 {
4322                                         bell();
4323                                         break;
4324                                 }
4325
4326                                 /* Hack -- Fix screen */
4327                                 if (command_see)
4328                                 {
4329                                         /* Load screen */
4330                                         screen_load();
4331
4332                                         /* Save screen */
4333                                         screen_save();
4334                                 }
4335
4336                                 /* Switch inven/equip */
4337                                 if (command_wrk == USE_INVEN) max_line = max_inven;
4338                                 else if (command_wrk == USE_EQUIP) max_line = max_equip;
4339                                 else if (command_wrk == USE_FLOOR) max_line = MIN(23, floor_num);
4340                                 if (menu_line > max_line) menu_line = max_line;
4341
4342                                 /* Need to redraw */
4343                                 break;
4344                         }
4345
4346                         case '6':
4347                         case 'l':
4348                         case 'L':
4349                         {
4350                                 /* Verify legality */
4351                                 if (command_wrk == (USE_INVEN))
4352                                 {
4353                                         if (allow_equip) command_wrk = USE_EQUIP;
4354                                         else if (allow_floor) command_wrk = USE_FLOOR;
4355                                         else
4356                                         {
4357                                                 bell();
4358                                                 break;
4359                                         }
4360                                 }
4361                                 else if (command_wrk == (USE_EQUIP))
4362                                 {
4363                                         if (allow_floor) command_wrk = USE_FLOOR;
4364                                         else if (allow_inven) command_wrk = USE_INVEN;
4365                                         else
4366                                         {
4367                                                 bell();
4368                                                 break;
4369                                         }
4370                                 }
4371                                 else if (command_wrk == (USE_FLOOR))
4372                                 {
4373                                         if (allow_inven) command_wrk = USE_INVEN;
4374                                         else if (allow_equip) command_wrk = USE_EQUIP;
4375                                         else
4376                                         {
4377                                                 bell();
4378                                                 break;
4379                                         }
4380                                 }
4381                                 else
4382                                 {
4383                                         bell();
4384                                         break;
4385                                 }
4386
4387                                 /* Hack -- Fix screen */
4388                                 if (command_see)
4389                                 {
4390                                         /* Load screen */
4391                                         screen_load();
4392
4393                                         /* Save screen */
4394                                         screen_save();
4395                                 }
4396
4397                                 /* Switch inven/equip */
4398                                 if (command_wrk == USE_INVEN) max_line = max_inven;
4399                                 else if (command_wrk == USE_EQUIP) max_line = max_equip;
4400                                 else if (command_wrk == USE_FLOOR) max_line = MIN(23, floor_num);
4401                                 if (menu_line > max_line) menu_line = max_line;
4402
4403                                 /* Need to redraw */
4404                                 break;
4405                         }
4406
4407                         case 'x':
4408                         case 'X':
4409                         case '\r':
4410                         case '\n':
4411                         {
4412                                 if (command_wrk == USE_FLOOR)
4413                                 {
4414                                         /* Special index */
4415                                         (*cp) = -get_item_label;
4416                                 }
4417                                 else
4418                                 {
4419                                         /* Validate the item */
4420                                         if (!get_item_okay(get_item_label))
4421                                         {
4422                                                 bell();
4423                                                 break;
4424                                         }
4425
4426                                         /* Allow player to "refuse" certain actions */
4427                                         if (!get_item_allow(get_item_label))
4428                                         {
4429                                                 done = TRUE;
4430                                                 break;
4431                                         }
4432
4433                                         /* Accept that choice */
4434                                         (*cp) = get_item_label;
4435                                 }
4436
4437                                 item = TRUE;
4438                                 done = TRUE;
4439                                 break;
4440                         }
4441                         case 'w':
4442                         {
4443                                 if (select_the_force) {
4444                                         *cp = INVEN_FORCE;
4445                                         item = TRUE;
4446                                         done = TRUE;
4447                                         break;
4448                                 }
4449                         }
4450                 }
4451                 if (menu_line > max_line) menu_line -= max_line;
4452                 }
4453                 else
4454                 {
4455                 /* Parse it */
4456                 switch (which)
4457                 {
4458                         case ESCAPE:
4459                         {
4460                                 done = TRUE;
4461                                 break;
4462                         }
4463
4464                         case '*':
4465                         case '?':
4466                         case ' ':
4467                         {
4468                                 /* Hide the list */
4469                                 if (command_see)
4470                                 {
4471                                         /* Flip flag */
4472                                         command_see = FALSE;
4473
4474                                         /* Load screen */
4475                                         screen_load();
4476                                 }
4477
4478                                 /* Show the list */
4479                                 else
4480                                 {
4481                                         /* Save screen */
4482                                         screen_save();
4483
4484                                         /* Flip flag */
4485                                         command_see = TRUE;
4486                                 }
4487                                 break;
4488                         }
4489
4490                         case '\n':
4491                         case '\r':
4492                         case '+':
4493                         {
4494                                 int i;
4495                                 OBJECT_IDX o_idx;
4496                                 cave_type *c_ptr = &cave[p_ptr->y][p_ptr->x];
4497
4498                                 if (command_wrk != (USE_FLOOR)) break;
4499
4500                                 /* Get the object being moved. */
4501                                 o_idx = c_ptr->o_idx;
4502
4503                                 /* Only rotate a pile of two or more objects. */
4504                                 if (!(o_idx && o_list[o_idx].next_o_idx)) break;
4505
4506                                 /* Remove the first object from the list. */
4507                                 excise_object_idx(o_idx);
4508
4509                                 /* Find end of the list. */
4510                                 i = c_ptr->o_idx;
4511                                 while (o_list[i].next_o_idx)
4512                                         i = o_list[i].next_o_idx;
4513
4514                                 /* Add after the last object. */
4515                                 o_list[i].next_o_idx = o_idx;
4516
4517                                 /* Re-scan floor list */ 
4518                                 floor_num = scan_floor(floor_list, p_ptr->y, p_ptr->x, 0x03);
4519
4520                                 /* Hack -- Fix screen */
4521                                 if (command_see)
4522                                 {
4523                                         /* Load screen */
4524                                         screen_load();
4525
4526                                         /* Save screen */
4527                                         screen_save();
4528                                 }
4529
4530                                 break;
4531                         }
4532
4533                         case '/':
4534                         {
4535                                 if (command_wrk == (USE_INVEN))
4536                                 {
4537                                         if (!allow_equip)
4538                                         {
4539                                                 bell();
4540                                                 break;
4541                                         }
4542                                         command_wrk = (USE_EQUIP);
4543                                 }
4544                                 else if (command_wrk == (USE_EQUIP))
4545                                 {
4546                                         if (!allow_inven)
4547                                         {
4548                                                 bell();
4549                                                 break;
4550                                         }
4551                                         command_wrk = (USE_INVEN);
4552                                 }
4553                                 else if (command_wrk == (USE_FLOOR))
4554                                 {
4555                                         if (allow_inven)
4556                                         {
4557                                                 command_wrk = (USE_INVEN);
4558                                         }
4559                                         else if (allow_equip)
4560                                         {
4561                                                 command_wrk = (USE_EQUIP);
4562                                         }
4563                                         else
4564                                         {
4565                                                 bell();
4566                                                 break;
4567                                         }
4568                                 }
4569
4570                                 /* Hack -- Fix screen */
4571                                 if (command_see)
4572                                 {
4573                                         /* Load screen */
4574                                         screen_load();
4575
4576                                         /* Save screen */
4577                                         screen_save();
4578                                 }
4579
4580                                 /* Need to redraw */
4581                                 break;
4582                         }
4583
4584                         case '-':
4585                         {
4586                                 if (!allow_floor)
4587                                 {
4588                                         bell();
4589                                         break;
4590                                 }
4591
4592                                 /*
4593                                  * If we are already examining the floor, and there
4594                                  * is only one item, we will always select it.
4595                                  * If we aren't examining the floor and there is only
4596                                  * one item, we will select it if floor_query_flag
4597                                  * is FALSE.
4598                                  */
4599                                 if (floor_num == 1)
4600                                 {
4601                                         if ((command_wrk == (USE_FLOOR)) || (!carry_query_flag))
4602                                         {
4603                                                 /* Special index */
4604                                                 k = 0 - floor_list[0];
4605
4606                                                 /* Allow player to "refuse" certain actions */
4607                                                 if (!get_item_allow(k))
4608                                                 {
4609                                                         done = TRUE;
4610                                                         break;
4611                                                 }
4612
4613                                                 /* Accept that choice */
4614                                                 (*cp) = k;
4615                                                 item = TRUE;
4616                                                 done = TRUE;
4617
4618                                                 break;
4619                                         }
4620                                 }
4621
4622                                 /* Hack -- Fix screen */
4623                                 if (command_see)
4624                                 {
4625                                         /* Load screen */
4626                                         screen_load();
4627
4628                                         /* Save screen */
4629                                         screen_save();
4630                                 }
4631
4632                                 command_wrk = (USE_FLOOR);
4633
4634                                 break;
4635                         }
4636
4637                         case '0':
4638                         case '1': case '2': case '3':
4639                         case '4': case '5': case '6':
4640                         case '7': case '8': case '9':
4641                         {
4642                                 if (command_wrk != USE_FLOOR)
4643                                 {
4644                                         /* Look up the tag */
4645                                         if (!get_tag(&k, which, command_wrk))
4646                                         {
4647                                                 bell();
4648                                                 break;
4649                                         }
4650
4651                                         /* Hack -- Validate the item */
4652                                         if ((k < INVEN_RARM) ? !inven : !equip)
4653                                         {
4654                                                 bell();
4655                                                 break;
4656                                         }
4657
4658                                         /* Validate the item */
4659                                         if (!get_item_okay(k))
4660                                         {
4661                                                 bell();
4662                                                 break;
4663                                         }
4664                                 }
4665                                 else
4666                                 {
4667                                         /* Look up the alphabetical tag */
4668                                         if (get_tag_floor(&k, which, floor_list, floor_num))
4669                                         {
4670                                                 /* Special index */
4671                                                 k = 0 - floor_list[k];
4672                                         }
4673                                         else
4674                                         {
4675                                                 bell();
4676                                                 break;
4677                                         }
4678                                 }
4679
4680                                 /* Allow player to "refuse" certain actions */
4681                                 if (!get_item_allow(k))
4682                                 {
4683                                         done = TRUE;
4684                                         break;
4685                                 }
4686
4687                                 /* Accept that choice */
4688                                 (*cp) = k;
4689                                 item = TRUE;
4690                                 done = TRUE;
4691                                 cur_tag = which;
4692                                 break;
4693                         }
4694
4695 #if 0
4696                         case '\n':
4697                         case '\r':
4698                         {
4699                                 /* Choose "default" inventory item */
4700                                 if (command_wrk == (USE_INVEN))
4701                                 {
4702                                         k = ((i1 == i2) ? i1 : -1);
4703                                 }
4704
4705                                 /* Choose "default" equipment item */
4706                                 else if (command_wrk == (USE_EQUIP))
4707                                 {
4708                                         k = ((e1 == e2) ? e1 : -1);
4709                                 }
4710
4711                                 /* Choose "default" floor item */
4712                                 else if (command_wrk == (USE_FLOOR))
4713                                 {
4714                                         if (floor_num == 1)
4715                                         {
4716                                                 /* Special index */
4717                                                 k = 0 - floor_list[0];
4718
4719                                                 /* Allow player to "refuse" certain actions */
4720                                                 if (!get_item_allow(k))
4721                                                 {
4722                                                         done = TRUE;
4723                                                         break;
4724                                                 }
4725
4726                                                 /* Accept that choice */
4727                                                 (*cp) = k;
4728                                                 item = TRUE;
4729                                                 done = TRUE;
4730                                         }
4731                                         break;
4732                                 }
4733
4734                                 /* Validate the item */
4735                                 if (!get_item_okay(k))
4736                                 {
4737                                         bell();
4738                                         break;
4739                                 }
4740
4741                                 /* Allow player to "refuse" certain actions */
4742                                 if (!get_item_allow(k))
4743                                 {
4744                                         done = TRUE;
4745                                         break;
4746                                 }
4747
4748                                 /* Accept that choice */
4749                                 (*cp) = k;
4750                                 item = TRUE;
4751                                 done = TRUE;
4752                                 break;
4753                         }
4754 #endif
4755
4756                         case 'w':
4757                         {
4758                                 if (select_the_force) {
4759                                         *cp = INVEN_FORCE;
4760                                         item = TRUE;
4761                                         done = TRUE;
4762                                         break;
4763                                 }
4764
4765                                 /* Fall through */
4766                         }
4767
4768                         default:
4769                         {
4770                                 int ver;
4771
4772                                 if (command_wrk != USE_FLOOR)
4773                                 {
4774                                         bool not_found = FALSE;
4775
4776                                         /* Look up the alphabetical tag */
4777                                         if (!get_tag(&k, which, command_wrk))
4778                                         {
4779                                                 not_found = TRUE;
4780                                         }
4781
4782                                         /* Hack -- Validate the item */
4783                                         else if ((k < INVEN_RARM) ? !inven : !equip)
4784                                         {
4785                                                 not_found = TRUE;
4786                                         }
4787
4788                                         /* Validate the item */
4789                                         else if (!get_item_okay(k))
4790                                         {
4791                                                 not_found = TRUE;
4792                                         }
4793
4794                                         if (!not_found)
4795                                         {
4796                                                 /* Accept that choice */
4797                                                 (*cp) = k;
4798                                                 item = TRUE;
4799                                                 done = TRUE;
4800                                                 cur_tag = which;
4801                                                 break;
4802                                         }
4803                                 }
4804                                 else
4805                                 {
4806                                         /* Look up the alphabetical tag */
4807                                         if (get_tag_floor(&k, which, floor_list, floor_num))
4808                                         {
4809                                                 /* Special index */
4810                                                 k = 0 - floor_list[k];
4811
4812                                                 /* Accept that choice */
4813                                                 (*cp) = k;
4814                                                 item = TRUE;
4815                                                 done = TRUE;
4816                                                 cur_tag = which;
4817                                                 break;
4818                                         }
4819                                 }
4820
4821                                 /* Extract "query" setting */
4822                                 ver = isupper(which);
4823                                 which = (char)tolower(which);
4824
4825                                 /* Convert letter to inventory index */
4826                                 if (command_wrk == (USE_INVEN))
4827                                 {
4828                                         if (which == '(') k = i1;
4829                                         else if (which == ')') k = i2;
4830                                         else k = label_to_inven(which);
4831                                 }
4832
4833                                 /* Convert letter to equipment index */
4834                                 else if (command_wrk == (USE_EQUIP))
4835                                 {
4836                                         if (which == '(') k = e1;
4837                                         else if (which == ')') k = e2;
4838                                         else k = label_to_equip(which);
4839                                 }
4840
4841                                 /* Convert letter to floor index */
4842                                 else if (command_wrk == USE_FLOOR)
4843                                 {
4844                                         if (which == '(') k = 0;
4845                                         else if (which == ')') k = floor_num - 1;
4846                                         else k = islower(which) ? A2I(which) : -1;
4847                                         if (k < 0 || k >= floor_num || k >= 23)
4848                                         {
4849                                                 bell();
4850                                                 break;
4851                                         }
4852
4853                                         /* Special index */
4854                                         k = 0 - floor_list[k];
4855                                 }
4856
4857                                 /* Validate the item */
4858                                 if ((command_wrk != USE_FLOOR) && !get_item_okay(k))
4859                                 {
4860                                         bell();
4861                                         break;
4862                                 }
4863
4864                                 /* Verify the item */
4865                                 if (ver && !verify(_("本当に", "Try"), k))
4866                                 {
4867                                         done = TRUE;
4868                                         break;
4869                                 }
4870
4871                                 /* Allow player to "refuse" certain actions */
4872                                 if (!get_item_allow(k))
4873                                 {
4874                                         done = TRUE;
4875                                         break;
4876                                 }
4877
4878                                 /* Accept that choice */
4879                                 (*cp) = k;
4880                                 item = TRUE;
4881                                 done = TRUE;
4882                                 break;
4883                         }
4884                 }
4885                 }
4886         }
4887
4888         /* Fix the screen if necessary */
4889         if (command_see)
4890         {
4891                 /* Load screen */
4892                 screen_load();
4893
4894                 /* Hack -- Cancel "display" */
4895                 command_see = FALSE;
4896         }
4897
4898
4899         /* Forget the item_tester_tval restriction */
4900         item_tester_tval = 0;
4901
4902         /* Forget the item_tester_hook restriction */
4903         item_tester_hook = NULL;
4904
4905
4906         /* Clean up  'show choices' */
4907         /* Toggle again if needed */
4908         if (toggle) toggle_inven_equip();
4909
4910         /* Update */
4911         p_ptr->window |= (PW_INVEN | PW_EQUIP);
4912
4913         window_stuff();
4914
4915
4916         /* Clear the prompt line */
4917         prt("", 0, 0);
4918
4919         /* Warning if needed */
4920         if (oops && str) msg_print(str);
4921
4922         if (item)
4923         {
4924                 repeat_push(*cp);
4925                 if (command_cmd) prev_tag = cur_tag;
4926                 command_cmd = 0; /* Hack -- command_cmd is no longer effective */
4927         }
4928         return (item);
4929 }
4930
4931 /*!
4932  * @brief 床上のアイテムを拾う選択用サブルーチン 
4933  * @return プレイヤーによりアイテムが選択されたならTRUEを返す。
4934  */
4935 static bool py_pickup_floor_aux(void)
4936 {
4937         OBJECT_IDX this_o_idx;
4938
4939         cptr q, s;
4940
4941         OBJECT_IDX item;
4942
4943         /* Restrict the choices */
4944         item_tester_hook = inven_carry_okay;
4945
4946         /* Get an object */
4947         q = _("どれを拾いますか?", "Get which item? ");
4948         s = _("もうザックには床にあるどのアイテムも入らない。", "You no longer have any room for the objects on the floor.");
4949
4950         if (get_item(&item, q, s, (USE_FLOOR)))
4951         {
4952                 this_o_idx = 0 - item;
4953         }
4954         else
4955         {
4956                 return (FALSE);
4957         }
4958
4959         /* Pick up the object */
4960         py_pickup_aux(this_o_idx);
4961
4962         return (TRUE);
4963 }
4964
4965 /*!
4966  * @brief 床上のアイテムを拾うメイン処理
4967  * @param pickup FALSEなら金銭の自動拾いのみを行う/ FALSE then only gold will be picked up
4968  * @return なし
4969  * @details
4970  * This is called by py_pickup() when easy_floor is TRUE.
4971  */
4972 void py_pickup_floor(bool pickup)
4973 {
4974         OBJECT_IDX this_o_idx, next_o_idx = 0;
4975
4976         char o_name[MAX_NLEN];
4977         object_type *o_ptr;
4978
4979         int floor_num = 0;
4980         OBJECT_IDX floor_o_idx = 0;
4981
4982         int can_pickup = 0;
4983
4984         /* Scan the pile of objects */
4985         for (this_o_idx = cave[p_ptr->y][p_ptr->x].o_idx; this_o_idx; this_o_idx = next_o_idx)
4986         {
4987                 /* Access the object */
4988                 o_ptr = &o_list[this_o_idx];
4989
4990                 /* Describe the object */
4991                 object_desc(o_name, o_ptr, 0);
4992
4993                 /* Access the next object */
4994                 next_o_idx = o_ptr->next_o_idx;
4995
4996                 /* Hack -- disturb */
4997                 disturb(FALSE, FALSE);
4998
4999                 /* Pick up gold */
5000                 if (o_ptr->tval == TV_GOLD)
5001                 {
5002 #ifdef JP
5003                         msg_format(" $%ld の価値がある%sを見つけた。",
5004                                 (long)o_ptr->pval, o_name);
5005 #else
5006                         msg_format("You have found %ld gold pieces worth of %s.",
5007                                 (long)o_ptr->pval, o_name);
5008 #endif
5009
5010                         /* Collect the gold */
5011                         p_ptr->au += o_ptr->pval;
5012
5013                         /* Redraw gold */
5014                         p_ptr->redraw |= (PR_GOLD);
5015
5016                         p_ptr->window |= (PW_PLAYER);
5017
5018                         /* Delete the gold */
5019                         delete_object_idx(this_o_idx);
5020
5021                         /* Check the next object */
5022                         continue;
5023                 }
5024                 else if (o_ptr->marked & OM_NOMSG)
5025                 {
5026                         /* If 0 or 1 non-NOMSG items are in the pile, the NOMSG ones are
5027                          * ignored. Otherwise, they are included in the prompt. */
5028                         o_ptr->marked &= ~(OM_NOMSG);
5029                         continue;
5030                 }
5031
5032                 /* Count non-gold objects that can be picked up. */
5033                 if (inven_carry_okay(o_ptr))
5034                 {
5035                         can_pickup++;
5036                 }
5037
5038                 /* Count non-gold objects */
5039                 floor_num++;
5040
5041                 /* Remember this index */
5042                 floor_o_idx = this_o_idx;
5043         }
5044
5045         /* There are no non-gold objects */
5046         if (!floor_num)
5047                 return;
5048
5049         /* Mention the number of objects */
5050         if (!pickup)
5051         {
5052                 /* One object */
5053                 if (floor_num == 1)
5054                 {
5055                         /* Access the object */
5056                         o_ptr = &o_list[floor_o_idx];
5057
5058 #ifdef ALLOW_EASY_SENSE
5059
5060                         /* Option: Make object sensing easy */
5061                         if (easy_sense)
5062                         {
5063                                 /* Sense the object */
5064                                 (void) sense_object(o_ptr);
5065                         }
5066
5067 #endif /* ALLOW_EASY_SENSE */
5068
5069                         /* Describe the object */
5070                         object_desc(o_name, o_ptr, 0);
5071
5072                         msg_format(_("%sがある。", "You see %s."), o_name);
5073                 }
5074
5075                 /* Multiple objects */
5076                 else
5077                 {
5078                         msg_format(_("%d 個のアイテムの山がある。", "You see a pile of %d items."), floor_num);
5079                 }
5080
5081                 return;
5082         }
5083
5084         /* The player has no room for anything on the floor. */
5085         if (!can_pickup)
5086         {
5087                 /* One object */
5088                 if (floor_num == 1)
5089                 {
5090                         /* Access the object */
5091                         o_ptr = &o_list[floor_o_idx];
5092
5093 #ifdef ALLOW_EASY_SENSE
5094
5095                         /* Option: Make object sensing easy */
5096                         if (easy_sense)
5097                         {
5098                                 /* Sense the object */
5099                                 (void) sense_object(o_ptr);
5100                         }
5101
5102 #endif /* ALLOW_EASY_SENSE */
5103
5104                         /* Describe the object */
5105                         object_desc(o_name, o_ptr, 0);
5106
5107                         msg_format(_("ザックには%sを入れる隙間がない。", "You have no room for %s."), o_name);
5108                 }
5109
5110                 /* Multiple objects */
5111                 else
5112                 {
5113                         msg_print(_("ザックには床にあるどのアイテムも入らない。", "You have no room for any of the objects on the floor."));
5114
5115                 }
5116
5117                 return;
5118         }
5119
5120         /* One object */
5121         if (floor_num == 1)
5122         {
5123                 /* Hack -- query every object */
5124                 if (carry_query_flag)
5125                 {
5126                         char out_val[MAX_NLEN+20];
5127
5128                         /* Access the object */
5129                         o_ptr = &o_list[floor_o_idx];
5130
5131 #ifdef ALLOW_EASY_SENSE
5132
5133                         /* Option: Make object sensing easy */
5134                         if (easy_sense)
5135                         {
5136                                 /* Sense the object */
5137                                 (void) sense_object(o_ptr);
5138                         }
5139
5140 #endif /* ALLOW_EASY_SENSE */
5141
5142                         /* Describe the object */
5143                         object_desc(o_name, o_ptr, 0);
5144
5145                         /* Build a prompt */
5146                         (void) sprintf(out_val, _("%sを拾いますか? ", "Pick up %s? "), o_name);
5147
5148                         /* Ask the user to confirm */
5149                         if (!get_check(out_val))
5150                         {
5151                                 return;
5152                         }
5153                 }
5154
5155                 /* Access the object */
5156                 o_ptr = &o_list[floor_o_idx];
5157
5158 #ifdef ALLOW_EASY_SENSE
5159
5160                 /* Option: Make object sensing easy */
5161                 if (easy_sense)
5162                 {
5163                         /* Sense the object */
5164                         (void) sense_object(o_ptr);
5165                 }
5166
5167 #endif /* ALLOW_EASY_SENSE */
5168
5169                 /* Pick up the object */
5170                 py_pickup_aux(floor_o_idx);
5171         }
5172
5173         /* Allow the user to choose an object */
5174         else
5175         {
5176                 while (can_pickup--)
5177                 {
5178                         if (!py_pickup_floor_aux()) break;
5179                 }
5180         }
5181 }