OSDN Git Service

[Refactor] #37353 コメント整理 / Refactor comments.
[hengband/hengband.git] / src / cmd-item.c
1 /*!
2  *  @file cmd3.c
3  *  @brief プレイヤーのアイテムに関するコマンドの実装1 / Inventory commands
4  *  @date 2014/01/02
5  *  @author
6  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
7  *
8  * This software may be copied and distributed for educational, research,
9  * and not for profit purposes provided that this copyright and statement
10  * are included in all such copies.  Other copyrights may also apply.
11  */
12
13
14 #include "angband.h"
15 #include "selfinfo.h"
16 #include "cmd-activate.h"
17 #include "cmd-eat.h"
18 #include "cmd-quaff.h"
19 #include "cmd-read.h"
20 #include "cmd-usestaff.h"
21 #include "cmd-zaprod.h"
22 #include "cmd-zapwand.h"
23
24 #include "object-hook.h"
25
26
27 /*!
28  * @brief 持ち物一覧を表示するコマンドのメインルーチン / Display inventory
29  * @return なし 
30  */
31 void do_cmd_inven(void)
32 {
33         char out_val[160];
34
35
36         /* Note that we are in "inventory" mode */
37         command_wrk = FALSE;
38
39 #ifdef ALLOW_EASY_FLOOR
40
41         /* Note that we are in "inventory" mode */
42         if (easy_floor) command_wrk = (USE_INVEN);
43
44 #endif /* ALLOW_EASY_FLOOR */
45
46         /* Save screen */
47         screen_save();
48
49         /* Hack -- show empty slots */
50         item_tester_full = TRUE;
51
52         /* Display the inventory */
53         (void)show_inven(0);
54
55         /* Hack -- hide empty slots */
56         item_tester_full = FALSE;
57
58 #ifdef JP
59         sprintf(out_val, "持ち物: 合計 %3d.%1d kg (限界の%ld%%) コマンド: ",
60             (int)lbtokg1(p_ptr->total_weight) , (int)lbtokg2(p_ptr->total_weight) ,
61             (long int)((p_ptr->total_weight * 100) / weight_limit()));
62 #else
63         sprintf(out_val, "Inventory: carrying %d.%d pounds (%ld%% of capacity). Command: ",
64             (int)(p_ptr->total_weight / 10), (int)(p_ptr->total_weight % 10),
65             (p_ptr->total_weight * 100) / weight_limit());
66 #endif
67
68
69         /* Get a command */
70         prt(out_val, 0, 0);
71
72         /* Get a new command */
73         command_new = inkey();
74
75         /* Load screen */
76         screen_load();
77
78
79         /* Process "Escape" */
80         if (command_new == ESCAPE)
81         {
82                 int wid, hgt;
83
84                 /* Get size */
85                 Term_get_size(&wid, &hgt);
86
87                 /* Reset stuff */
88                 command_new = 0;
89                 command_gap = wid - 30;
90         }
91
92         /* Process normal keys */
93         else
94         {
95                 /* Hack -- Use "display" mode */
96                 command_see = TRUE;
97         }
98 }
99
100
101 /*!
102  * @brief 装備一覧を表示するコマンドのメインルーチン / Display equipment
103  * @return なし 
104  */
105 void do_cmd_equip(void)
106 {
107         char out_val[160];
108
109
110         /* Note that we are in "equipment" mode */
111         command_wrk = TRUE;
112
113 #ifdef ALLOW_EASY_FLOOR
114
115         /* Note that we are in "equipment" mode */
116         if (easy_floor) command_wrk = (USE_EQUIP);
117
118 #endif /* ALLOW_EASY_FLOOR  */
119
120         /* Save the screen */
121         screen_save();
122
123         /* Hack -- show empty slots */
124         item_tester_full = TRUE;
125
126         /* Display the equipment */
127         (void)show_equip(0);
128
129         /* Hack -- undo the hack above */
130         item_tester_full = FALSE;
131
132         /* Build a prompt */
133 #ifdef JP
134         sprintf(out_val, "装備: 合計 %3d.%1d kg (限界の%ld%%) コマンド: ",
135             (int)lbtokg1(p_ptr->total_weight) , (int)lbtokg2(p_ptr->total_weight) ,
136             (long int)((p_ptr->total_weight * 100) / weight_limit()));
137 #else
138         sprintf(out_val, "Equipment: carrying %d.%d pounds (%ld%% of capacity). Command: ",
139             (int)(p_ptr->total_weight / 10), (int)(p_ptr->total_weight % 10),
140             (long int)((p_ptr->total_weight * 100) / weight_limit()));
141 #endif
142
143
144         /* Get a command */
145         prt(out_val, 0, 0);
146
147         /* Get a new command */
148         command_new = inkey();
149
150         /* Restore the screen */
151         screen_load();
152
153
154         /* Process "Escape" */
155         if (command_new == ESCAPE)
156         {
157                 int wid, hgt;
158
159                 /* Get size */
160                 Term_get_size(&wid, &hgt);
161
162                 /* Reset stuff */
163                 command_new = 0;
164                 command_gap = wid - 30;
165         }
166
167         /* Process normal keys */
168         else
169         {
170                 /* Enter "display" mode */
171                 command_see = TRUE;
172         }
173 }
174
175
176
177
178 bool select_ring_slot = FALSE;
179
180 /*!
181  * @brief 装備するコマンドのメインルーチン / Wield or wear a single item from the pack or floor
182  * @return なし 
183  */
184 void do_cmd_wield(void)
185 {
186         OBJECT_IDX item, slot;
187
188         object_type forge;
189         object_type *q_ptr;
190
191         object_type *o_ptr;
192
193         cptr act;
194
195         char o_name[MAX_NLEN];
196
197         cptr q, s;
198
199         OBJECT_IDX need_switch_wielding = 0;
200
201         if (p_ptr->special_defense & KATA_MUSOU)
202         {
203                 set_action(ACTION_NONE);
204         }
205
206         /* Restrict the choices */
207         item_tester_hook = item_tester_hook_wear;
208
209         /* Get an item */
210         q = _("どれを装備しますか? ", "Wear/Wield which item? ");
211         s = _("装備可能なアイテムがない。", "You have nothing you can wear or wield.");
212
213         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
214
215         /* Get the item (in the pack) */
216         if (item >= 0)
217         {
218                 o_ptr = &inventory[item];
219         }
220
221         /* Get the item (on the floor) */
222         else
223         {
224                 o_ptr = &o_list[0 - item];
225         }
226
227
228         /* Check the slot */
229         slot = wield_slot(o_ptr);
230
231         switch (o_ptr->tval)
232         {
233         /* Shields and some misc. items */
234         case TV_CAPTURE:
235         case TV_SHIELD:
236         case TV_CARD:
237                 /* Dual wielding */
238                 if (buki_motteruka(INVEN_RARM) && buki_motteruka(INVEN_LARM))
239                 {
240                         /* Restrict the choices */
241                         item_tester_hook = item_tester_hook_melee_weapon;
242                         item_tester_no_ryoute = TRUE;
243
244                         /* Choose a weapon from the equipment only */
245                         q = _("どちらの武器と取り替えますか?", "Replace which weapon? ");
246                         s = _("おっと。", "Oops.");
247                         if (!get_item(&slot, q, s, (USE_EQUIP))) return;
248                         if (slot == INVEN_RARM) need_switch_wielding = INVEN_LARM;
249                 }
250
251                 else if (buki_motteruka(INVEN_LARM)) slot = INVEN_RARM;
252
253                 /* Both arms are already used by non-weapon */
254                 else if (inventory[INVEN_RARM].k_idx && !object_is_melee_weapon(&inventory[INVEN_RARM]) &&
255                          inventory[INVEN_LARM].k_idx && !object_is_melee_weapon(&inventory[INVEN_LARM]))
256                 {
257                         /* Restrict the choices */
258                         item_tester_hook = item_tester_hook_mochikae;
259
260                         /* Choose a hand */
261                         q = _("どちらの手に装備しますか?", "Equip which hand? ");
262                         s = _("おっと。", "Oops.");
263                         if (!get_item(&slot, q, s, (USE_EQUIP))) return;
264                 }
265                 break;
266
267         /* Melee weapons */
268         case TV_DIGGING:
269         case TV_HAFTED:
270         case TV_POLEARM:
271         case TV_SWORD:
272                 /* Asking for dual wielding */
273                 if (slot == INVEN_LARM)
274                 {
275                         if (!get_check(_("二刀流で戦いますか?", "Dual wielding? "))) slot = INVEN_RARM;
276                 }
277
278                 else if (!inventory[INVEN_RARM].k_idx && buki_motteruka(INVEN_LARM))
279                 {
280                         if (!get_check(_("二刀流で戦いますか?", "Dual wielding? "))) slot = INVEN_LARM;
281                 }
282
283                 /* Both arms are already used */
284                 else if (inventory[INVEN_LARM].k_idx && inventory[INVEN_RARM].k_idx)
285                 {
286                         /* Restrict the choices */
287                         item_tester_hook = item_tester_hook_mochikae;
288
289                         /* Choose a hand */
290                         q = _("どちらの手に装備しますか?", "Equip which hand? ");
291                         s = _("おっと。", "Oops.");
292                         
293                         if (!get_item(&slot, q, s, (USE_EQUIP))) return;
294                         if ((slot == INVEN_LARM) && !buki_motteruka(INVEN_RARM))
295                                 need_switch_wielding = INVEN_RARM;
296                 }
297                 break;
298
299         /* Rings */
300         case TV_RING:
301                 /* Choose a ring slot */
302                 if (inventory[INVEN_LEFT].k_idx && inventory[INVEN_RIGHT].k_idx)
303                 {
304                         q = _("どちらの指輪と取り替えますか?", "Replace which ring? ");
305                 }
306                 else
307                 {
308                         q = _("どちらの手に装備しますか?", "Equip which hand? ");
309                 }
310                 s = _("おっと。", "Oops.");
311
312                 /* Restrict the choices */
313                 select_ring_slot = TRUE;
314                 item_tester_no_ryoute = TRUE;
315
316                 if (!get_item(&slot, q, s, (USE_EQUIP)))
317                 {
318                         select_ring_slot = FALSE;
319                         return;
320                 }
321                 select_ring_slot = FALSE;
322                 break;
323         }
324
325         /* Prevent wielding into a cursed slot */
326         if (object_is_cursed(&inventory[slot]))
327         {
328                 /* Describe it */
329                 object_desc(o_name, &inventory[slot], (OD_OMIT_PREFIX | OD_NAME_ONLY));
330
331 #ifdef JP
332                 msg_format("%s%sは呪われているようだ。",
333                            describe_use(slot) , o_name );
334 #else
335                 msg_format("The %s you are %s appears to be cursed.",
336                            o_name, describe_use(slot));
337 #endif
338
339                 /* Cancel the command */
340                 return;
341         }
342
343         if (confirm_wear &&
344                 ((object_is_cursed(o_ptr) && object_is_known(o_ptr)) ||
345                 ((o_ptr->ident & IDENT_SENSE) &&
346                         (FEEL_BROKEN <= o_ptr->feeling) && (o_ptr->feeling <= FEEL_CURSED))))
347         {
348                 char dummy[MAX_NLEN+80];
349
350                 /* Describe it */
351                 object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
352                 sprintf(dummy, _("本当に%s{呪われている}を使いますか?", "Really use the %s {cursed}? "), o_name);
353
354                 if (!get_check(dummy)) return;
355         }
356
357         if ((o_ptr->name1 == ART_STONEMASK) && object_is_known(o_ptr) && (p_ptr->prace != RACE_VAMPIRE) && (p_ptr->prace != RACE_ANDROID))
358         {
359                 char dummy[MAX_NLEN+80];
360
361                 /* Describe it */
362                 object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
363
364 #ifdef JP
365                 sprintf(dummy, "%sを装備すると吸血鬼になります。よろしいですか?", o_name);
366 #else
367                 msg_format("%s will transforms you into a vampire permanently when equiped.", o_name);
368                 sprintf(dummy, "Do you become a vampire?");
369 #endif
370
371                 if (!get_check(dummy)) return;
372         }
373
374         if (need_switch_wielding && !object_is_cursed(&inventory[need_switch_wielding]))
375         {
376                 object_type *slot_o_ptr = &inventory[slot];
377                 object_type *switch_o_ptr = &inventory[need_switch_wielding];
378                 object_type object_tmp;
379                 object_type *otmp_ptr = &object_tmp;
380                 char switch_name[MAX_NLEN];
381
382                 object_desc(switch_name, switch_o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY));
383
384                 object_copy(otmp_ptr, switch_o_ptr);
385                 object_copy(switch_o_ptr, slot_o_ptr);
386                 object_copy(slot_o_ptr, otmp_ptr);
387                 
388                 msg_format(_("%sを%sに構えなおした。", "You wield %s at %s hand."), switch_name, 
389                                         (slot == INVEN_RARM) ? (left_hander ? _("左手", "left") : _("右手", "right")) : 
390                                                                                    (left_hander ? _("右手", "right") : _("左手", "left")));
391                 slot = need_switch_wielding;
392         }
393
394         check_find_art_quest_completion(o_ptr);
395
396         if (p_ptr->pseikaku == SEIKAKU_MUNCHKIN)
397         {
398                 identify_item(o_ptr);
399
400                 /* Auto-inscription */
401                 autopick_alter_item(item, FALSE);
402         }
403
404         p_ptr->energy_use = 100;
405
406         /* Get local object */
407         q_ptr = &forge;
408
409         /* Obtain local object */
410         object_copy(q_ptr, o_ptr);
411
412         /* Modify quantity */
413         q_ptr->number = 1;
414
415         /* Decrease the item (from the pack) */
416         if (item >= 0)
417         {
418                 inven_item_increase(item, -1);
419                 inven_item_optimize(item);
420         }
421
422         /* Decrease the item (from the floor) */
423         else
424         {
425                 floor_item_increase(0 - item, -1);
426                 floor_item_optimize(0 - item);
427         }
428
429         /* Access the wield slot */
430         o_ptr = &inventory[slot];
431
432         /* Take off existing item */
433         if (o_ptr->k_idx)
434         {
435                 /* Take off existing item */
436                 (void)inven_takeoff(slot, 255);
437         }
438
439         /* Wear the new stuff */
440         object_copy(o_ptr, q_ptr);
441
442         /* Player touches it */
443         o_ptr->marked |= OM_TOUCHED;
444
445         /* Increase the weight */
446         p_ptr->total_weight += q_ptr->weight;
447
448         /* Increment the equip counter by hand */
449         equip_cnt++;
450
451 #ifdef JP
452 #define STR_WIELD_RARM "%s(%c)を右手に装備した。"
453 #define STR_WIELD_LARM "%s(%c)を左手に装備した。"
454 #define STR_WIELD_ARMS "%s(%c)を両手で構えた。"
455 #else
456 #define STR_WIELD_RARM "You are wielding %s (%c) in your right hand."
457 #define STR_WIELD_LARM "You are wielding %s (%c) in your left hand."
458 #define STR_WIELD_ARMS "You are wielding %s (%c) with both hands."
459 #endif
460
461         /* Where is the item now */
462         switch (slot)
463         {
464         case INVEN_RARM:
465                 if (object_allow_two_hands_wielding(o_ptr) && (empty_hands(FALSE) == EMPTY_HAND_LARM) && CAN_TWO_HANDS_WIELDING())
466                         act = STR_WIELD_ARMS;
467                 else
468                         act = (left_hander ? STR_WIELD_LARM : STR_WIELD_RARM);
469                 break;
470
471         case INVEN_LARM:
472                 if (object_allow_two_hands_wielding(o_ptr) && (empty_hands(FALSE) == EMPTY_HAND_RARM) && CAN_TWO_HANDS_WIELDING())
473                         act = STR_WIELD_ARMS;
474                 else
475                         act = (left_hander ? STR_WIELD_RARM : STR_WIELD_LARM);
476                 break;
477
478         case INVEN_BOW:
479                 act = _("%s(%c)を射撃用に装備した。", "You are shooting with %s (%c).");
480                 break;
481
482         case INVEN_LITE:
483                 act = _("%s(%c)を光源にした。", "Your light source is %s (%c).");
484                 break;
485
486         default:
487                 act = _("%s(%c)を装備した。", "You are wearing %s (%c).");
488                 break;
489         }
490
491         /* Describe the result */
492         object_desc(o_name, o_ptr, 0);
493
494         msg_format(act, o_name, index_to_label(slot));
495
496
497         /* Cursed! */
498         if (object_is_cursed(o_ptr))
499         {
500                 /* Warn the player */
501                 msg_print(_("うわ! すさまじく冷たい!", "Oops! It feels deathly cold!"));
502                 chg_virtue(V_HARMONY, -1);
503
504                 /* Note the curse */
505                 o_ptr->ident |= (IDENT_SENSE);
506         }
507
508         /* The Stone Mask make the player turn into a vampire! */
509         if ((o_ptr->name1 == ART_STONEMASK) && (p_ptr->prace != RACE_VAMPIRE) && (p_ptr->prace != RACE_ANDROID))
510         {
511                 /* Turn into a vampire */
512                 change_race(RACE_VAMPIRE, "");
513         }
514
515         /* Recalculate bonuses */
516         p_ptr->update |= (PU_BONUS);
517
518         /* Recalculate torch */
519         p_ptr->update |= (PU_TORCH);
520
521         /* Recalculate mana */
522         p_ptr->update |= (PU_MANA);
523
524         p_ptr->redraw |= (PR_EQUIPPY);
525
526         /* Window stuff */
527         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
528
529         calc_android_exp();
530 }
531
532 /*!
533  * @brief 持ち替え処理
534  * @param item 持ち替えを行いたい装備部位ID
535  * @return なし
536  */
537 void kamaenaoshi(INVENTORY_IDX item)
538 {
539         object_type *o_ptr, *new_o_ptr;
540         char o_name[MAX_NLEN];
541
542         if (item == INVEN_RARM)
543         {
544                 if (buki_motteruka(INVEN_LARM))
545                 {
546                         o_ptr = &inventory[INVEN_LARM];
547                         object_desc(o_name, o_ptr, 0);
548
549                         if (!object_is_cursed(o_ptr))
550                         {
551                                 new_o_ptr = &inventory[INVEN_RARM];
552                                 object_copy(new_o_ptr, o_ptr);
553                                 p_ptr->total_weight += o_ptr->weight;
554                                 inven_item_increase(INVEN_LARM, -((int)o_ptr->number));
555                                 inven_item_optimize(INVEN_LARM);
556                                 if (object_allow_two_hands_wielding(o_ptr) && CAN_TWO_HANDS_WIELDING())
557                                         msg_format(_("%sを両手で構えた。", "You are wielding %s with both hands."), o_name);
558                                  else
559                                 msg_format(_("%sを%sで構えた。", "You are wielding %s in your %s hand."), o_name, 
560                                                         (left_hander ? _("左手", "left") : _("右手", "right")));
561                         }
562                         else
563                         {
564                                 if (object_allow_two_hands_wielding(o_ptr) && CAN_TWO_HANDS_WIELDING())
565                                         msg_format(_("%sを両手で構えた。", "You are wielding %s with both hands."), o_name);
566                         }
567                 }
568         }
569         else if (item == INVEN_LARM)
570         {
571                 o_ptr = &inventory[INVEN_RARM];
572                 if (o_ptr->k_idx) object_desc(o_name, o_ptr, 0);
573
574                 if (buki_motteruka(INVEN_RARM))
575                 {
576                         if (object_allow_two_hands_wielding(o_ptr) && CAN_TWO_HANDS_WIELDING())
577                                 msg_format(_("%sを両手で構えた。", "You are wielding %s with both hands."), o_name);
578                 }
579                 else if (!(empty_hands(FALSE) & EMPTY_HAND_RARM) && !object_is_cursed(o_ptr))
580                 {
581                         new_o_ptr = &inventory[INVEN_LARM];
582                         object_copy(new_o_ptr, o_ptr);
583                         p_ptr->total_weight += o_ptr->weight;
584                         inven_item_increase(INVEN_RARM, -((int)o_ptr->number));
585                         inven_item_optimize(INVEN_RARM);
586                         msg_format(_("%sを持ち替えた。", "You switched hand of %s."), o_name);
587                 }
588         }
589 }
590
591
592 /*!
593  * @brief 装備を外すコマンドのメインルーチン / Take off an item
594  * @return なし
595  */
596 void do_cmd_takeoff(void)
597 {
598         OBJECT_IDX item;
599         object_type *o_ptr;
600         cptr q, s;
601
602         if (p_ptr->special_defense & KATA_MUSOU)
603         {
604                 set_action(ACTION_NONE);
605         }
606
607         item_tester_no_ryoute = TRUE;
608
609         /* Get an item */
610         q = _("どれを装備からはずしますか? ", "Take off which item? ");
611         s = _("はずせる装備がない。", "You are not wearing anything to take off.");
612
613         if (!get_item(&item, q, s, (USE_EQUIP))) return;
614
615         /* Get the item (in the pack) */
616         if (item >= 0)
617         {
618                 o_ptr = &inventory[item];
619         }
620
621         /* Get the item (on the floor) */
622         else
623         {
624                 o_ptr = &o_list[0 - item];
625         }
626
627
628         /* Item is cursed */
629         if (object_is_cursed(o_ptr))
630         {
631                 if ((o_ptr->curse_flags & TRC_PERMA_CURSE) || (p_ptr->pclass != CLASS_BERSERKER))
632                 {
633                         /* Oops */
634                         msg_print(_("ふーむ、どうやら呪われているようだ。", "Hmmm, it seems to be cursed."));
635
636                         /* Nope */
637                         return;
638                 }
639
640                 if (((o_ptr->curse_flags & TRC_HEAVY_CURSE) && one_in_(7)) || one_in_(4))
641                 {
642                         msg_print(_("呪われた装備を力づくで剥がした!", "You teared a cursed equipment off by sheer strength!"));
643
644                         /* Hack -- Assume felt */
645                         o_ptr->ident |= (IDENT_SENSE);
646
647                         o_ptr->curse_flags = 0L;
648
649                         /* Take note */
650                         o_ptr->feeling = FEEL_NONE;
651
652                         /* Recalculate the bonuses */
653                         p_ptr->update |= (PU_BONUS);
654
655                         /* Window stuff */
656                         p_ptr->window |= (PW_EQUIP);
657
658                         msg_print(_("呪いを打ち破った。", "You break the curse."));
659                 }
660                 else
661                 {
662                         msg_print(_("装備を外せなかった。", "You couldn't remove the equipment."));
663                         p_ptr->energy_use = 50;
664                         return;
665                 }
666         }
667
668         /* Take a partial turn */
669         p_ptr->energy_use = 50;
670
671         /* Take off the item */
672         (void)inven_takeoff(item, 255);
673         kamaenaoshi(item);
674         calc_android_exp();
675         p_ptr->redraw |= (PR_EQUIPPY);
676 }
677
678
679 /*!
680  * @brief アイテムを落とすコマンドのメインルーチン / Drop an item
681  * @return なし
682  */
683 void do_cmd_drop(void)
684 {
685         OBJECT_IDX item;
686         int amt = 1;
687
688         object_type *o_ptr;
689
690         cptr q, s;
691
692         if (p_ptr->special_defense & KATA_MUSOU)
693         {
694                 set_action(ACTION_NONE);
695         }
696
697         item_tester_no_ryoute = TRUE;
698         /* Get an item */
699         q = _("どのアイテムを落としますか? ", "Drop which item? ");
700         s = _("落とせるアイテムを持っていない。", "You have nothing to drop.");
701
702         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN))) return;
703
704         /* Get the item (in the pack) */
705         if (item >= 0)
706         {
707                 o_ptr = &inventory[item];
708         }
709
710         /* Get the item (on the floor) */
711         else
712         {
713                 o_ptr = &o_list[0 - item];
714         }
715
716
717         /* Hack -- Cannot remove cursed items */
718         if ((item >= INVEN_RARM) && object_is_cursed(o_ptr))
719         {
720                 /* Oops */
721                 msg_print(_("ふーむ、どうやら呪われているようだ。", "Hmmm, it seems to be cursed."));
722                 /* Nope */
723                 return;
724         }
725
726
727         /* See how many items */
728         if (o_ptr->number > 1)
729         {
730                 /* Get a quantity */
731                 amt = get_quantity(NULL, o_ptr->number);
732
733                 /* Allow user abort */
734                 if (amt <= 0) return;
735         }
736
737
738         /* Take a partial turn */
739         p_ptr->energy_use = 50;
740
741         /* Drop (some of) the item */
742         inven_drop(item, amt);
743
744         if (item >= INVEN_RARM)
745         {
746                 kamaenaoshi(item);
747                 calc_android_exp();
748         }
749
750         p_ptr->redraw |= (PR_EQUIPPY);
751 }
752
753 /*!
754  * @brief オブジェクトが高位の魔法書かどうかを判定する
755  * @param o_ptr 判定したいオブジェクトの構造体参照ポインタ
756  * @return オブジェクトが高位の魔法書ならばTRUEを返す
757  */
758 static bool high_level_book(object_type *o_ptr)
759 {
760         if ((o_ptr->tval == TV_LIFE_BOOK) ||
761             (o_ptr->tval == TV_SORCERY_BOOK) ||
762             (o_ptr->tval == TV_NATURE_BOOK) ||
763             (o_ptr->tval == TV_CHAOS_BOOK) ||
764             (o_ptr->tval == TV_DEATH_BOOK) ||
765             (o_ptr->tval == TV_TRUMP_BOOK) ||
766             (o_ptr->tval == TV_CRAFT_BOOK) ||
767             (o_ptr->tval == TV_DAEMON_BOOK) ||
768             (o_ptr->tval == TV_CRUSADE_BOOK) ||
769             (o_ptr->tval == TV_MUSIC_BOOK) ||
770                 (o_ptr->tval == TV_HEX_BOOK))
771         {
772                 if (o_ptr->sval > 1)
773                         return TRUE;
774                 else
775                         return FALSE;
776         }
777
778         return FALSE;
779 }
780
781
782 /*!
783  * @brief アイテムを破壊するコマンドのメインルーチン / Destroy an item
784  * @return なし
785  */
786 void do_cmd_destroy(void)
787 {
788         OBJECT_IDX item;
789         QUANTITY amt = 1;
790         QUANTITY old_number;
791
792         bool force = FALSE;
793
794         object_type *o_ptr;
795         object_type forge;
796         object_type *q_ptr = &forge;
797
798         char o_name[MAX_NLEN];
799         char out_val[MAX_NLEN+40];
800
801         cptr q, s;
802
803         if (p_ptr->special_defense & KATA_MUSOU)
804         {
805                 set_action(ACTION_NONE);
806         }
807
808         /* Hack -- force destruction */
809         if (command_arg > 0) force = TRUE;
810
811         /* Get an item */
812         q = _("どのアイテムを壊しますか? ", "Destroy which item? ");
813         s = _("壊せるアイテムを持っていない。", "You have nothing to destroy.");
814
815         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
816
817         /* Get the item (in the pack) */
818         if (item >= 0)
819         {
820                 o_ptr = &inventory[item];
821         }
822
823         /* Get the item (on the floor) */
824         else
825         {
826                 o_ptr = &o_list[0 - item];
827         }
828
829         /* Verify unless quantity given beforehand */
830         if (!force && (confirm_destroy || (object_value(o_ptr) > 0)))
831         {
832                 object_desc(o_name, o_ptr, OD_OMIT_PREFIX);
833
834                 /* Make a verification */
835                 sprintf(out_val, _("本当に%sを壊しますか? [y/n/Auto]", "Really destroy %s? [y/n/Auto]"), o_name);
836                 msg_print(NULL);
837
838                 /* HACK : Add the line to message buffer */
839                 message_add(out_val);
840                 p_ptr->window |= (PW_MESSAGE);
841                 window_stuff();
842
843                 /* Get an acceptable answer */
844                 while (TRUE)
845                 {
846                         char i;
847
848                         /* Prompt */
849                         prt(out_val, 0, 0);
850
851                         i = inkey();
852
853                         /* Erase the prompt */
854                         prt("", 0, 0);
855
856
857                         if (i == 'y' || i == 'Y')
858                         {
859                                 break;
860                         }
861                         if (i == ESCAPE || i == 'n' || i == 'N')
862                         {
863                                 /* Cancel */
864                                 return;
865                         }
866                         if (i == 'A')
867                         {
868                                 /* Add an auto-destroy preference line */
869                                 if (autopick_autoregister(o_ptr))
870                                 {
871                                         /* Auto-destroy it */
872                                         autopick_alter_item(item, TRUE);
873                                 }
874
875                                 /* The object is already destroyed. */
876                                 return;
877                         }
878                 } /* while (TRUE) */
879         }
880
881         /* See how many items */
882         if (o_ptr->number > 1)
883         {
884                 /* Get a quantity */
885                 amt = get_quantity(NULL, o_ptr->number);
886
887                 /* Allow user abort */
888                 if (amt <= 0) return;
889         }
890
891
892         /* Describe the object */
893         old_number = o_ptr->number;
894         o_ptr->number = amt;
895         object_desc(o_name, o_ptr, 0);
896         o_ptr->number = old_number;
897
898         p_ptr->energy_use = 100;
899
900         /* Artifacts cannot be destroyed */
901         if (!can_player_destroy_object(o_ptr))
902         {
903                 p_ptr->energy_use = 0;
904
905                 msg_format(_("%sは破壊不可能だ。", "You cannot destroy %s."), o_name);
906                 return;
907         }
908
909         object_copy(q_ptr, o_ptr);
910
911         msg_format(_("%sを壊した。", "You destroy %s."), o_name);
912         sound(SOUND_DESTITEM);
913
914         /* Reduce the charges of rods/wands */
915         reduce_charges(o_ptr, amt);
916
917         /* Eliminate the item (from the pack) */
918         if (item >= 0)
919         {
920                 inven_item_increase(item, -amt);
921                 inven_item_describe(item);
922                 inven_item_optimize(item);
923         }
924
925         /* Eliminate the item (from the floor) */
926         else
927         {
928                 floor_item_increase(0 - item, -amt);
929                 floor_item_describe(0 - item);
930                 floor_item_optimize(0 - item);
931         }
932
933         if (high_level_book(q_ptr))
934         {
935                 bool gain_expr = FALSE;
936
937                 if (p_ptr->prace == RACE_ANDROID)
938                 {
939                 }
940                 else if ((p_ptr->pclass == CLASS_WARRIOR) || (p_ptr->pclass == CLASS_BERSERKER))
941                 {
942                         gain_expr = TRUE;
943                 }
944                 else if (p_ptr->pclass == CLASS_PALADIN)
945                 {
946                         if (is_good_realm(p_ptr->realm1))
947                         {
948                                 if (!is_good_realm(tval2realm(q_ptr->tval))) gain_expr = TRUE;
949                         }
950                         else
951                         {
952                                 if (is_good_realm(tval2realm(q_ptr->tval))) gain_expr = TRUE;
953                         }
954                 }
955
956                 if (gain_expr && (p_ptr->exp < PY_MAX_EXP))
957                 {
958                         s32b tester_exp = p_ptr->max_exp / 20;
959                         if (tester_exp > 10000) tester_exp = 10000;
960                         if (q_ptr->sval < 3) tester_exp /= 4;
961                         if (tester_exp<1) tester_exp = 1;
962
963                         msg_print(_("更に経験を積んだような気がする。", "You feel more experienced."));
964                         gain_exp(tester_exp * amt);
965                 }
966                 if (high_level_book(q_ptr) && q_ptr->tval == TV_LIFE_BOOK)
967                 {
968                         chg_virtue(V_UNLIFE, 1);
969                         chg_virtue(V_VITALITY, -1);
970                 }
971                 else if (high_level_book(q_ptr) && q_ptr->tval == TV_DEATH_BOOK)
972                 {
973                         chg_virtue(V_UNLIFE, -1);
974                         chg_virtue(V_VITALITY, 1);
975                 }
976         
977                 if (q_ptr->to_a || q_ptr->to_h || q_ptr->to_d)
978                         chg_virtue(V_ENCHANT, -1);
979         
980                 if (object_value_real(q_ptr) > 30000)
981                         chg_virtue(V_SACRIFICE, 2);
982         
983                 else if (object_value_real(q_ptr) > 10000)
984                         chg_virtue(V_SACRIFICE, 1);
985         }
986
987         if (q_ptr->to_a != 0 || q_ptr->to_d != 0 || q_ptr->to_h != 0)
988                 chg_virtue(V_HARMONY, 1);
989
990         if (item >= INVEN_RARM) calc_android_exp();
991 }
992
993
994 /*!
995  * @brief アイテムを調査するコマンドのメインルーチン / Observe an item which has been *identify*-ed
996  * @return なし
997  */
998 void do_cmd_observe(void)
999 {
1000         OBJECT_IDX item;
1001         object_type             *o_ptr;
1002         char            o_name[MAX_NLEN];
1003
1004         cptr q, s;
1005
1006         item_tester_no_ryoute = TRUE;
1007
1008         /* Get an item */
1009         q = _("どのアイテムを調べますか? ", "Examine which item? ");
1010         s = _("調べられるアイテムがない。", "You have nothing to examine.");
1011
1012         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return;
1013
1014         /* Get the item (in the pack) */
1015         if (item >= 0)
1016         {
1017                 o_ptr = &inventory[item];
1018         }
1019
1020         /* Get the item (on the floor) */
1021         else
1022         {
1023                 o_ptr = &o_list[0 - item];
1024         }
1025
1026
1027         /* Require full knowledge */
1028         if (!(o_ptr->ident & IDENT_MENTAL))
1029         {
1030                 msg_print(_("このアイテムについて特に知っていることはない。", "You have no special knowledge about that item."));
1031                 return;
1032         }
1033
1034
1035         /* Description */
1036         object_desc(o_name, o_ptr, 0);
1037
1038         /* Describe */
1039         msg_format(_("%sを調べている...", "Examining %s..."), o_name);
1040         /* Describe it fully */
1041         if (!screen_object(o_ptr, SCROBJ_FORCE_DETAIL)) msg_print(_("特に変わったところはないようだ。", "You see nothing special."));
1042 }
1043
1044
1045
1046 /*!
1047  * @brief アイテムの銘を消すコマンドのメインルーチン
1048  * Remove the inscription from an object XXX Mention item (when done)?
1049  * @return なし
1050  */
1051 void do_cmd_uninscribe(void)
1052 {
1053         OBJECT_IDX item;
1054         object_type *o_ptr;
1055         cptr q, s;
1056
1057         item_tester_no_ryoute = TRUE;
1058         /* Get an item */
1059         q = _("どのアイテムの銘を消しますか? ", "Un-inscribe which item? ");
1060         s = _("銘を消せるアイテムがない。", "You have nothing to un-inscribe.");
1061
1062         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return;
1063
1064         /* Get the item (in the pack) */
1065         if (item >= 0)
1066         {
1067                 o_ptr = &inventory[item];
1068         }
1069
1070         /* Get the item (on the floor) */
1071         else
1072         {
1073                 o_ptr = &o_list[0 - item];
1074         }
1075
1076         /* Nothing to remove */
1077         if (!o_ptr->inscription)
1078         {
1079                 msg_print(_("このアイテムには消すべき銘がない。", "That item had no inscription to remove."));
1080                 return;
1081         }
1082
1083         msg_print(_("銘を消した。", "Inscription removed."));
1084
1085         /* Remove the incription */
1086         o_ptr->inscription = 0;
1087
1088         /* Combine the pack */
1089         p_ptr->notice |= (PN_COMBINE);
1090
1091         /* Window stuff */
1092         p_ptr->window |= (PW_INVEN | PW_EQUIP);
1093
1094         /* .や$の関係で, 再計算が必要なはず -- henkma */
1095         p_ptr->update |= (PU_BONUS);
1096
1097 }
1098
1099
1100 /*!
1101  * @brief アイテムの銘を刻むコマンドのメインルーチン
1102  * Inscribe an object with a comment
1103  * @return なし
1104  */
1105 void do_cmd_inscribe(void)
1106 {
1107         OBJECT_IDX item;
1108         object_type             *o_ptr;
1109         char            o_name[MAX_NLEN];
1110         char            out_val[80];
1111         cptr q, s;
1112
1113         item_tester_no_ryoute = TRUE;
1114         /* Get an item */
1115         q = _("どのアイテムに銘を刻みますか? ", "Inscribe which item? ");
1116         s = _("銘を刻めるアイテムがない。", "You have nothing to inscribe.");
1117
1118         if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return;
1119
1120         /* Get the item (in the pack) */
1121         if (item >= 0)
1122         {
1123                 o_ptr = &inventory[item];
1124         }
1125
1126         /* Get the item (on the floor) */
1127         else
1128         {
1129                 o_ptr = &o_list[0 - item];
1130         }
1131
1132         /* Describe the activity */
1133         object_desc(o_name, o_ptr, OD_OMIT_INSCRIPTION);
1134
1135         msg_format(_("%sに銘を刻む。", "Inscribing %s."), o_name);
1136         msg_print(NULL);
1137
1138         /* Start with nothing */
1139         strcpy(out_val, "");
1140
1141         /* Use old inscription */
1142         if (o_ptr->inscription)
1143         {
1144                 /* Start with the old inscription */
1145                 strcpy(out_val, quark_str(o_ptr->inscription));
1146         }
1147
1148         /* Get a new inscription (possibly empty) */
1149         if (get_string(_("銘: ", "Inscription: "), out_val, 80))
1150         {
1151                 /* Save the inscription */
1152                 o_ptr->inscription = quark_add(out_val);
1153
1154                 /* Combine the pack */
1155                 p_ptr->notice |= (PN_COMBINE);
1156
1157                 /* Window stuff */
1158                 p_ptr->window |= (PW_INVEN | PW_EQUIP);
1159
1160                 /* .や$の関係で, 再計算が必要なはず -- henkma */
1161                 p_ptr->update |= (PU_BONUS);
1162         }
1163 }
1164
1165
1166
1167 /*!
1168  * @brief オブジェクトがランタンの燃料になるかどうかを判定する
1169  * An "item_tester_hook" for refilling lanterns
1170  * @param o_ptr 判定したいオブジェクトの構造体参照ポインタ
1171  * @return オブジェクトがランタンの燃料になるならばTRUEを返す
1172  */
1173 static bool item_tester_refill_lantern(object_type *o_ptr)
1174 {
1175         /* Flasks of oil are okay */
1176         if (o_ptr->tval == TV_FLASK) return (TRUE);
1177
1178         /* Laterns are okay */
1179         if ((o_ptr->tval == TV_LITE) &&
1180             (o_ptr->sval == SV_LITE_LANTERN)) return (TRUE);
1181
1182         /* Assume not okay */
1183         return (FALSE);
1184 }
1185
1186
1187 /*!
1188  * @brief ランタンに燃料を加えるコマンドのメインルーチン
1189  * Refill the players lamp (from the pack or floor)
1190  * @return なし
1191  */
1192 static void do_cmd_refill_lamp(void)
1193 {
1194         OBJECT_IDX item;
1195
1196         object_type *o_ptr;
1197         object_type *j_ptr;
1198
1199         cptr q, s;
1200
1201
1202         /* Restrict the choices */
1203         item_tester_hook = item_tester_refill_lantern;
1204
1205         /* Get an item */
1206 #ifdef JP
1207         q = "どの油つぼから注ぎますか? ";
1208         s = "油つぼがない。";
1209 #else
1210         q = "Refill with which flask? ";
1211         s = "You have no flasks of oil.";
1212 #endif
1213
1214         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
1215
1216         /* Get the item (in the pack) */
1217         if (item >= 0)
1218         {
1219                 o_ptr = &inventory[item];
1220         }
1221
1222         /* Get the item (on the floor) */
1223         else
1224         {
1225                 o_ptr = &o_list[0 - item];
1226         }
1227
1228
1229         /* Take a partial turn */
1230         p_ptr->energy_use = 50;
1231
1232         /* Access the lantern */
1233         j_ptr = &inventory[INVEN_LITE];
1234
1235         /* Refuel */
1236         j_ptr->xtra4 += o_ptr->xtra4;
1237
1238         msg_print(_("ランプに油を注いだ。", "You fuel your lamp."));
1239
1240         /* Comment */
1241         if ((o_ptr->name2 == EGO_LITE_DARKNESS) && (j_ptr->xtra4 > 0))
1242         {
1243                 j_ptr->xtra4 = 0;
1244                 msg_print(_("ランプが消えてしまった!", "Your lamp has gone out!"));
1245         }
1246         else if ((o_ptr->name2 == EGO_LITE_DARKNESS) || (j_ptr->name2 == EGO_LITE_DARKNESS))
1247         {
1248                 j_ptr->xtra4 = 0;
1249                 msg_print(_("しかしランプは全く光らない。", "Curiously, your lamp doesn't light."));
1250         }
1251         else if (j_ptr->xtra4 >= FUEL_LAMP)
1252         {
1253                 j_ptr->xtra4 = FUEL_LAMP;
1254                 msg_print(_("ランプの油は一杯だ。", "Your lamp is full."));
1255         }
1256
1257         /* Decrease the item (from the pack) */
1258         if (item >= 0)
1259         {
1260                 inven_item_increase(item, -1);
1261                 inven_item_describe(item);
1262                 inven_item_optimize(item);
1263         }
1264
1265         /* Decrease the item (from the floor) */
1266         else
1267         {
1268                 floor_item_increase(0 - item, -1);
1269                 floor_item_describe(0 - item);
1270                 floor_item_optimize(0 - item);
1271         }
1272
1273         /* Recalculate torch */
1274         p_ptr->update |= (PU_TORCH);
1275 }
1276
1277
1278 /*!
1279  * @brief オブジェクトが松明に束ねられるかどうかを判定する
1280  * An "item_tester_hook" for refilling torches
1281  * @param o_ptr 判定したいオブジェクトの構造体参照ポインタ
1282  * @return オブジェクトが松明に束ねられるならばTRUEを返す
1283  */
1284 static bool item_tester_refill_torch(object_type *o_ptr)
1285 {
1286         /* Torches are okay */
1287         if ((o_ptr->tval == TV_LITE) &&
1288             (o_ptr->sval == SV_LITE_TORCH)) return (TRUE);
1289
1290         /* Assume not okay */
1291         return (FALSE);
1292 }
1293
1294
1295 /*!
1296  * @brief 松明を束ねるコマンドのメインルーチン
1297  * Refuel the players torch (from the pack or floor)
1298  * @return なし
1299  */
1300 static void do_cmd_refill_torch(void)
1301 {
1302         OBJECT_IDX item;
1303
1304         object_type *o_ptr;
1305         object_type *j_ptr;
1306
1307         cptr q, s;
1308
1309
1310         /* Restrict the choices */
1311         item_tester_hook = item_tester_refill_torch;
1312
1313         /* Get an item */
1314 #ifdef JP
1315         q = "どの松明で明かりを強めますか? ";
1316         s = "他に松明がない。";
1317 #else
1318         q = "Refuel with which torch? ";
1319         s = "You have no extra torches.";
1320 #endif
1321
1322         if (!get_item(&item, q, s, (USE_INVEN | USE_FLOOR))) return;
1323
1324         /* Get the item (in the pack) */
1325         if (item >= 0)
1326         {
1327                 o_ptr = &inventory[item];
1328         }
1329
1330         /* Get the item (on the floor) */
1331         else
1332         {
1333                 o_ptr = &o_list[0 - item];
1334         }
1335
1336
1337         /* Take a partial turn */
1338         p_ptr->energy_use = 50;
1339
1340         /* Access the primary torch */
1341         j_ptr = &inventory[INVEN_LITE];
1342
1343         /* Refuel */
1344         j_ptr->xtra4 += o_ptr->xtra4 + 5;
1345
1346         msg_print(_("松明を結合した。", "You combine the torches."));
1347
1348         /* Comment */
1349         if ((o_ptr->name2 == EGO_LITE_DARKNESS) && (j_ptr->xtra4 > 0))
1350         {
1351                 j_ptr->xtra4 = 0;
1352                 msg_print(_("松明が消えてしまった!", "Your torch has gone out!"));
1353         }
1354         else if ((o_ptr->name2 == EGO_LITE_DARKNESS) || (j_ptr->name2 == EGO_LITE_DARKNESS))
1355         {
1356                 j_ptr->xtra4 = 0;
1357                 msg_print(_("しかし松明は全く光らない。", "Curiously, your torche don't light."));
1358         }
1359         /* Over-fuel message */
1360         else if (j_ptr->xtra4 >= FUEL_TORCH)
1361         {
1362                 j_ptr->xtra4 = FUEL_TORCH;
1363                 msg_print(_("松明の寿命は十分だ。", "Your torch is fully fueled."));
1364         }
1365
1366         /* Refuel message */
1367         else
1368         {
1369                 msg_print(_("松明はいっそう明るく輝いた。", "Your torch glows more brightly."));
1370         }
1371
1372         /* Decrease the item (from the pack) */
1373         if (item >= 0)
1374         {
1375                 inven_item_increase(item, -1);
1376                 inven_item_describe(item);
1377                 inven_item_optimize(item);
1378         }
1379
1380         /* Decrease the item (from the floor) */
1381         else
1382         {
1383                 floor_item_increase(0 - item, -1);
1384                 floor_item_describe(0 - item);
1385                 floor_item_optimize(0 - item);
1386         }
1387
1388         /* Recalculate torch */
1389         p_ptr->update |= (PU_TORCH);
1390 }
1391
1392
1393 /*!
1394  * @brief 燃料を補充するコマンドのメインルーチン
1395  * Refill the players lamp, or restock his torches
1396  * @return なし
1397  */
1398 void do_cmd_refill(void)
1399 {
1400         object_type *o_ptr;
1401
1402         /* Get the light */
1403         o_ptr = &inventory[INVEN_LITE];
1404
1405         if (p_ptr->special_defense & KATA_MUSOU)
1406         {
1407                 set_action(ACTION_NONE);
1408         }
1409
1410         /* It is nothing */
1411         if (o_ptr->tval != TV_LITE)
1412         {
1413                 msg_print(_("光源を装備していない。", "You are not wielding a light."));
1414         }
1415
1416         /* It's a lamp */
1417         else if (o_ptr->sval == SV_LITE_LANTERN)
1418         {
1419                 do_cmd_refill_lamp();
1420         }
1421
1422         /* It's a torch */
1423         else if (o_ptr->sval == SV_LITE_TORCH)
1424         {
1425                 do_cmd_refill_torch();
1426         }
1427
1428         /* No torch to refill */
1429         else
1430         {
1431                 msg_print(_("この光源は寿命を延ばせない。", "Your light cannot be refilled."));
1432         }
1433 }
1434
1435
1436 /*!
1437  * @brief ターゲットを設定するコマンドのメインルーチン
1438  * Target command
1439  * @return なし
1440  */
1441 void do_cmd_target(void)
1442 {
1443         /* Target set */
1444         if (target_set(TARGET_KILL))
1445         {
1446                 msg_print(_("ターゲット決定。", "Target Selected."));
1447         }
1448
1449         /* Target aborted */
1450         else
1451         {
1452                 msg_print(_("ターゲット解除。", "Target Aborted."));
1453         }
1454 }
1455
1456
1457
1458 /*!
1459  * @brief 周囲を見渡すコマンドのメインルーチン
1460  * Look command
1461  * @return なし
1462  */
1463 void do_cmd_look(void)
1464 {
1465         /*TEST*/
1466         p_ptr->window |= PW_MONSTER_LIST;
1467         window_stuff();
1468         /*TEST*/
1469
1470         /* Look around */
1471         if (target_set(TARGET_LOOK))
1472         {
1473                 msg_print(_("ターゲット決定。", "Target Selected."));
1474         }
1475 }
1476
1477
1478 /*!
1479  * @brief 位置を確認するコマンドのメインルーチン
1480  * Allow the player to examine other sectors on the map
1481  * @return なし
1482  */
1483 void do_cmd_locate(void)
1484 {
1485         int             dir, y1, x1, y2, x2;
1486
1487         char    tmp_val[80];
1488
1489         char    out_val[160];
1490
1491         int wid, hgt;
1492
1493         /* Get size */
1494         get_screen_size(&wid, &hgt);
1495
1496
1497         /* Start at current panel */
1498         y2 = y1 = panel_row_min;
1499         x2 = x1 = panel_col_min;
1500
1501         /* Show panels until done */
1502         while (1)
1503         {
1504                 /* Describe the location */
1505                 if ((y2 == y1) && (x2 == x1))
1506                 {
1507 #ifdef JP
1508                         strcpy(tmp_val, "真上");
1509 #else
1510                         tmp_val[0] = '\0';
1511 #endif
1512
1513                 }
1514                 else
1515                 {
1516 #ifdef JP
1517                         sprintf(tmp_val, "%s%s",
1518                                 ((y2 < y1) ? "北" : (y2 > y1) ? "南" : ""),
1519                                 ((x2 < x1) ? "西" : (x2 > x1) ? "東" : ""));
1520 #else
1521                         sprintf(tmp_val, "%s%s of",
1522                                 ((y2 < y1) ? " North" : (y2 > y1) ? " South" : ""),
1523                                 ((x2 < x1) ? " West" : (x2 > x1) ? " East" : ""));
1524 #endif
1525
1526                 }
1527
1528                 /* Prepare to ask which way to look */
1529                 sprintf(out_val, _("マップ位置 [%d(%02d),%d(%02d)] (プレイヤーの%s)  方向?", 
1530                                                "Map sector [%d(%02d),%d(%02d)], which is%s your sector.  Direction?"),
1531                         y2 / (hgt / 2), y2 % (hgt / 2),
1532                         x2 / (wid / 2), x2 % (wid / 2), tmp_val);
1533
1534                 /* Assume no direction */
1535                 dir = 0;
1536
1537                 /* Get a direction */
1538                 while (!dir)
1539                 {
1540                         char command;
1541
1542                         /* Get a command (or Cancel) */
1543                         if (!get_com(out_val, &command, TRUE)) break;
1544
1545                         /* Extract the action (if any) */
1546                         dir = get_keymap_dir(command);
1547
1548                         /* Error */
1549                         if (!dir) bell();
1550                 }
1551
1552                 /* No direction */
1553                 if (!dir) break;
1554
1555                 /* Apply the motion */
1556                 if (change_panel(ddy[dir], ddx[dir]))
1557                 {
1558                         y2 = panel_row_min;
1559                         x2 = panel_col_min;
1560                 }
1561         }
1562
1563
1564         /* Recenter the map around the player */
1565         verify_panel();
1566
1567         /* Update stuff */
1568         p_ptr->update |= (PU_MONSTERS);
1569
1570         /* Redraw map */
1571         p_ptr->redraw |= (PR_MAP);
1572
1573         /* Window stuff */
1574         p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
1575
1576         /* Handle stuff */
1577         handle_stuff();
1578 }
1579
1580
1581
1582 /*!
1583  * @brief モンスター種族情報を特定の基準によりソートするための比較処理
1584  * Sorting hook -- Comp function -- see below
1585  * @param u モンスター種族情報の入れるポインタ
1586  * @param v 条件基準ID
1587  * @param a 比較するモンスター種族のID1
1588  * @param b 比較するモンスター種族のID2
1589  * @return 2の方が大きければTRUEを返す
1590  * We use "u" to point to array of monster indexes,
1591  * and "v" to select the type of sorting to perform on "u".
1592  */
1593 bool ang_sort_comp_hook(vptr u, vptr v, int a, int b)
1594 {
1595         u16b *who = (u16b*)(u);
1596
1597         u16b *why = (u16b*)(v);
1598
1599         int w1 = who[a];
1600         int w2 = who[b];
1601
1602         int z1, z2;
1603
1604         /* Sort by player kills */
1605         if (*why >= 4)
1606         {
1607                 /* Extract player kills */
1608                 z1 = r_info[w1].r_pkills;
1609                 z2 = r_info[w2].r_pkills;
1610
1611                 /* Compare player kills */
1612                 if (z1 < z2) return (TRUE);
1613                 if (z1 > z2) return (FALSE);
1614         }
1615
1616
1617         /* Sort by total kills */
1618         if (*why >= 3)
1619         {
1620                 /* Extract total kills */
1621                 z1 = r_info[w1].r_tkills;
1622                 z2 = r_info[w2].r_tkills;
1623
1624                 /* Compare total kills */
1625                 if (z1 < z2) return (TRUE);
1626                 if (z1 > z2) return (FALSE);
1627         }
1628
1629
1630         /* Sort by monster level */
1631         if (*why >= 2)
1632         {
1633                 /* Extract levels */
1634                 z1 = r_info[w1].level;
1635                 z2 = r_info[w2].level;
1636
1637                 /* Compare levels */
1638                 if (z1 < z2) return (TRUE);
1639                 if (z1 > z2) return (FALSE);
1640         }
1641
1642
1643         /* Sort by monster experience */
1644         if (*why >= 1)
1645         {
1646                 /* Extract experience */
1647                 z1 = r_info[w1].mexp;
1648                 z2 = r_info[w2].mexp;
1649
1650                 /* Compare experience */
1651                 if (z1 < z2) return (TRUE);
1652                 if (z1 > z2) return (FALSE);
1653         }
1654
1655
1656         /* Compare indexes */
1657         return (w1 <= w2);
1658 }
1659
1660
1661 /*!
1662  * @brief モンスター種族情報を特定の基準によりソートするためのスワップ処理
1663  * Sorting hook -- Swap function -- see below
1664  * @param u モンスター種族情報の入れるポインタ
1665  * @param v 未使用
1666  * @param a スワップするモンスター種族のID1
1667  * @param b スワップするモンスター種族のID2
1668  * @return なし
1669  * @details
1670  * We use "u" to point to array of monster indexes,
1671  * and "v" to select the type of sorting to perform.
1672  */
1673 void ang_sort_swap_hook(vptr u, vptr v, int a, int b)
1674 {
1675         u16b *who = (u16b*)(u);
1676
1677         u16b holder;
1678
1679         /* Unused */
1680         (void)v;
1681
1682         /* Swap */
1683         holder = who[a];
1684         who[a] = who[b];
1685         who[b] = holder;
1686 }
1687
1688
1689
1690 /*!
1691  * @brief モンスターの思い出を見るコマンドのメインルーチン
1692  * Identify a character, allow recall of monsters
1693  * @return なし
1694  * @details
1695  * <pre>
1696  * Several "special" responses recall "multiple" monsters:
1697  *   ^A (all monsters)
1698  *   ^U (all unique monsters)
1699  *   ^N (all non-unique monsters)
1700  *
1701  * The responses may be sorted in several ways, see below.
1702  *
1703  * Note that the player ghosts are ignored. XXX XXX XXX
1704  * </pre>
1705  */
1706 void do_cmd_query_symbol(void)
1707 {
1708         IDX i;
1709         int n;
1710         MONRACE_IDX r_idx;
1711         char    sym, query;
1712         char    buf[128];
1713
1714         bool    all = FALSE;
1715         bool    uniq = FALSE;
1716         bool    norm = FALSE;
1717         bool    ride = FALSE;
1718         char    temp[80] = "";
1719
1720         bool    recall = FALSE;
1721
1722         u16b    why = 0;
1723         IDX     *who;
1724
1725         /* Get a character, or abort */
1726         if (!get_com(_("知りたい文字を入力して下さい(記号 or ^A全,^Uユ,^N非ユ,^R乗馬,^M名前): ", 
1727                                    "Enter character to be identified(^A:All,^U:Uniqs,^N:Non uniqs,^M:Name): "), &sym, FALSE)) return;
1728
1729         /* Find that character info, and describe it */
1730         for (i = 0; ident_info[i]; ++i)
1731         {
1732                 if (sym == ident_info[i][0]) break;
1733         }
1734
1735         /* Describe */
1736         if (sym == KTRL('A'))
1737         {
1738                 all = TRUE;
1739                 strcpy(buf, _("全モンスターのリスト", "Full monster list."));
1740         }
1741         else if (sym == KTRL('U'))
1742         {
1743                 all = uniq = TRUE;
1744                 strcpy(buf, _("ユニーク・モンスターのリスト", "Unique monster list."));
1745         }
1746         else if (sym == KTRL('N'))
1747         {
1748                 all = norm = TRUE;
1749                 strcpy(buf, _("ユニーク外モンスターのリスト", "Non-unique monster list."));
1750         }
1751         else if (sym == KTRL('R'))
1752         {
1753                 all = ride = TRUE;
1754                 strcpy(buf, _("乗馬可能モンスターのリスト", "Ridable monster list."));
1755         }
1756         /* XTRA HACK WHATSEARCH */
1757         else if (sym == KTRL('M'))
1758         {
1759                 all = TRUE;
1760                 if (!get_string(_("名前(英語の場合小文字で可)", "Enter name:"),temp, 70))
1761                 {
1762                         temp[0]=0;
1763                         return;
1764                 }
1765                 sprintf(buf, _("名前:%sにマッチ", "Monsters with a name \"%s\""),temp);
1766         }
1767         else if (ident_info[i])
1768         {
1769                 sprintf(buf, "%c - %s.", sym, ident_info[i] + 2);
1770         }
1771         else
1772         {
1773                 sprintf(buf, "%c - %s", sym, _("無効な文字", "Unknown Symbol"));
1774         }
1775
1776         /* Display the result */
1777         prt(buf, 0, 0);
1778
1779         /* Allocate the "who" array */
1780         C_MAKE(who, max_r_idx, IDX);
1781
1782         /* Collect matching monsters */
1783         for (n = 0, i = 1; i < max_r_idx; i++)
1784         {
1785                 monster_race *r_ptr = &r_info[i];
1786
1787                 /* Nothing to recall */
1788                 if (!cheat_know && !r_ptr->r_sights) continue;
1789
1790                 /* Require non-unique monsters if needed */
1791                 if (norm && (r_ptr->flags1 & (RF1_UNIQUE))) continue;
1792
1793                 /* Require unique monsters if needed */
1794                 if (uniq && !(r_ptr->flags1 & (RF1_UNIQUE))) continue;
1795
1796                 /* Require ridable monsters if needed */
1797                 if (ride && !(r_ptr->flags7 & (RF7_RIDING))) continue;
1798
1799                 /* XTRA HACK WHATSEARCH */
1800                 if (temp[0])
1801                 {
1802                         TERM_LEN xx;
1803                         char temp2[80];
1804
1805                         for (xx = 0; temp[xx] && xx < 80; xx++)
1806                         {
1807 #ifdef JP
1808                                 if (iskanji(temp[xx])) { xx++; continue; }
1809 #endif
1810                                 if (isupper(temp[xx])) temp[xx] = (char)tolower(temp[xx]);
1811                         }
1812
1813 #ifdef JP
1814                         strcpy(temp2, r_name + r_ptr->E_name);
1815 #else
1816                         strcpy(temp2, r_name + r_ptr->name);
1817 #endif
1818                         for (xx = 0; temp2[xx] && xx < 80; xx++)
1819                                 if (isupper(temp2[xx])) temp2[xx] = (char)tolower(temp2[xx]);
1820
1821 #ifdef JP
1822                         if (my_strstr(temp2, temp) || my_strstr(r_name + r_ptr->name, temp))
1823 #else
1824                         if (my_strstr(temp2, temp))
1825 #endif
1826                                 who[n++] = i;
1827                 }
1828
1829                 /* Collect "appropriate" monsters */
1830                 else if (all || (r_ptr->d_char == sym)) who[n++] = i;
1831         }
1832
1833         /* Nothing to recall */
1834         if (!n)
1835         {
1836                 /* Free the "who" array */
1837                 C_KILL(who, max_r_idx, IDX);
1838
1839                 return;
1840         }
1841
1842
1843         /* Prompt XXX XXX XXX */
1844         put_str(_("思い出を見ますか? (k:殺害順/y/n): ", "Recall details? (k/y/n): "), 0, _(36, 40));
1845
1846
1847         /* Query */
1848         query = inkey();
1849
1850         /* Restore */
1851         prt(buf, 0, 0);
1852
1853         why = 2;
1854
1855         /* Select the sort method */
1856         ang_sort_comp = ang_sort_comp_hook;
1857         ang_sort_swap = ang_sort_swap_hook;
1858
1859         /* Sort the array */
1860         ang_sort(who, &why, n);
1861
1862         /* Sort by kills (and level) */
1863         if (query == 'k')
1864         {
1865                 why = 4;
1866                 query = 'y';
1867         }
1868
1869         /* Catch "escape" */
1870         if (query != 'y')
1871         {
1872                 /* Free the "who" array */
1873                 C_KILL(who, max_r_idx, IDX);
1874
1875                 return;
1876         }
1877
1878         /* Sort if needed */
1879         if (why == 4)
1880         {
1881                 /* Select the sort method */
1882                 ang_sort_comp = ang_sort_comp_hook;
1883                 ang_sort_swap = ang_sort_swap_hook;
1884
1885                 /* Sort the array */
1886                 ang_sort(who, &why, n);
1887         }
1888
1889
1890         /* Start at the end */
1891         i = n - 1;
1892
1893         /* Scan the monster memory */
1894         while (1)
1895         {
1896                 /* Extract a race */
1897                 r_idx = who[i];
1898
1899                 /* Hack -- Auto-recall */
1900                 monster_race_track(r_idx);
1901
1902                 /* Hack -- Handle stuff */
1903                 handle_stuff();
1904
1905                 /* Interact */
1906                 while (1)
1907                 {
1908                         /* Recall */
1909                         if (recall)
1910                         {
1911                                 /* Save the screen */
1912                                 screen_save();
1913
1914                                 /* Recall on screen */
1915                                 screen_roff(who[i], 0);
1916                         }
1917
1918                         /* Hack -- Begin the prompt */
1919                         roff_top(r_idx);
1920
1921                         /* Hack -- Complete the prompt */
1922                         Term_addstr(-1, TERM_WHITE, _(" ['r'思い出, ESC]", " [(r)ecall, ESC]"));
1923
1924                         /* Command */
1925                         query = inkey();
1926
1927                         /* Unrecall */
1928                         if (recall)
1929                         {
1930                                 /* Restore */
1931                                 screen_load();
1932                         }
1933
1934                         /* Normal commands */
1935                         if (query != 'r') break;
1936
1937                         /* Toggle recall */
1938                         recall = !recall;
1939                 }
1940
1941                 /* Stop scanning */
1942                 if (query == ESCAPE) break;
1943
1944                 /* Move to "prev" monster */
1945                 if (query == '-')
1946                 {
1947                         if (++i == n)
1948                         {
1949                                 i = 0;
1950                                 if (!expand_list) break;
1951                         }
1952                 }
1953
1954                 /* Move to "next" monster */
1955                 else
1956                 {
1957                         if (i-- == 0)
1958                         {
1959                                 i = n - 1;
1960                                 if (!expand_list) break;
1961                         }
1962                 }
1963         }
1964
1965         /* Free the "who" array */
1966         C_KILL(who, max_r_idx, IDX);
1967
1968         /* Re-display the identity */
1969         prt(buf, 0, 0);
1970 }
1971
1972 /*!
1973  * @brief アイテムを汎用的に「使う」コマンドのメインルーチン /
1974  * Use an item
1975  * @return なし
1976  * @details
1977  * XXX - Add actions for other item types
1978  */
1979 void do_cmd_use(void)
1980 {
1981         OBJECT_IDX item;
1982         object_type *o_ptr;
1983         cptr        q, s;
1984
1985         if (p_ptr->special_defense & (KATA_MUSOU | KATA_KOUKIJIN))
1986         {
1987                 set_action(ACTION_NONE);
1988         }
1989
1990         item_tester_no_ryoute = TRUE;
1991         /* Prepare the hook */
1992         item_tester_hook = item_tester_hook_use;
1993
1994         /* Get an item */
1995         q = _("どれを使いますか?", "Use which item? ");
1996         s = _("使えるものがありません。", "You have nothing to use.");
1997
1998         if (!get_item(&item, q, s, (USE_INVEN | USE_EQUIP | USE_FLOOR))) return;
1999
2000         /* Get the item (in the pack) */
2001         if (item >= 0)
2002         {
2003                 o_ptr = &inventory[item];
2004         }
2005         /* Get the item (on the floor) */
2006         else
2007         {
2008                 o_ptr = &o_list[0 - item];
2009         }
2010
2011         switch (o_ptr->tval)
2012         {
2013                 /* Spike a door */
2014                 case TV_SPIKE:
2015                 {
2016                         do_cmd_spike();
2017                         break;
2018                 }
2019
2020                 /* Eat some food */
2021                 case TV_FOOD:
2022                 {
2023                         do_cmd_eat_food_aux(item);
2024                         break;
2025                 }
2026
2027                 /* Aim a wand */
2028                 case TV_WAND:
2029                 {
2030                         do_cmd_aim_wand_aux(item);
2031                         break;
2032                 }
2033
2034                 /* Use a staff */
2035                 case TV_STAFF:
2036                 {
2037                         do_cmd_use_staff_aux(item);
2038                         break;
2039                 }
2040
2041                 /* Zap a rod */
2042                 case TV_ROD:
2043                 {
2044                         do_cmd_zap_rod_aux(item);
2045                         break;
2046                 }
2047
2048                 /* Quaff a potion */
2049                 case TV_POTION:
2050                 {
2051                         do_cmd_quaff_potion_aux(item);
2052                         break;
2053                 }
2054
2055                 /* Read a scroll */
2056                 case TV_SCROLL:
2057                 {
2058                         /* Check some conditions */
2059                         if (p_ptr->blind)
2060                         {
2061                                 msg_print(_("目が見えない。", "You can't see anything."));
2062                                 return;
2063                         }
2064                         if (no_lite())
2065                         {
2066                                 msg_print(_("明かりがないので、暗くて読めない。", "You have no light to read by."));
2067                                 return;
2068                         }
2069                         if (p_ptr->confused)
2070                         {
2071                                 msg_print(_("混乱していて読めない!", "You are too confused!"));
2072                                 return;
2073                         }
2074
2075                   do_cmd_read_scroll_aux(item, TRUE);
2076                   break;
2077                 }
2078
2079                 /* Fire ammo */
2080                 case TV_SHOT:
2081                 case TV_ARROW:
2082                 case TV_BOLT:
2083                 {
2084                         do_cmd_fire_aux(item, &inventory[INVEN_BOW]);
2085                         break;
2086                 }
2087
2088                 /* Activate an artifact */
2089                 default:
2090                 {
2091                         do_cmd_activate_aux(item);
2092                         break;
2093                 }
2094         }
2095 }
2096