OSDN Git Service

[Refactor] #37353 メッセージ整理。
[hengband/hengband.git] / src / cmd-item.c
index 198418c..f762723 100644 (file)
@@ -206,7 +206,6 @@ void do_cmd_wield(void)
        /* Restrict the choices */
        item_tester_hook = item_tester_hook_wear;
 
-       /* Get an item */
        q = _("どれを装備しますか? ", "Wear/Wield which item? ");
        s = _("装備可能なアイテムがない。", "You have nothing you can wear or wield.");
 
@@ -328,7 +327,6 @@ void do_cmd_wield(void)
                /* Describe it */
                object_desc(o_name, &inventory[slot], (OD_OMIT_PREFIX | OD_NAME_ONLY));
 
-               /* Message */
 #ifdef JP
                msg_format("%s%sは呪われているようだ。",
                           describe_use(slot) , o_name );
@@ -402,7 +400,6 @@ void do_cmd_wield(void)
                autopick_alter_item(item, FALSE);
        }
 
-       /* Take a turn */
        p_ptr->energy_use = 100;
 
        /* Get local object */
@@ -493,7 +490,6 @@ void do_cmd_wield(void)
        /* Describe the result */
        object_desc(o_name, o_ptr, 0);
 
-       /* Message */
        msg_format(act, o_name, index_to_label(slot));
 
 
@@ -526,7 +522,6 @@ void do_cmd_wield(void)
 
        p_ptr->redraw |= (PR_EQUIPPY);
 
-       /* Window stuff */
        p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER);
 
        calc_android_exp();
@@ -537,7 +532,7 @@ void do_cmd_wield(void)
  * @param item 持ち替えを行いたい装備部位ID
  * @return なし
  */
-void kamaenaoshi(int item)
+void kamaenaoshi(INVENTORY_IDX item)
 {
        object_type *o_ptr, *new_o_ptr;
        char o_name[MAX_NLEN];
@@ -609,7 +604,6 @@ void do_cmd_takeoff(void)
 
        item_tester_no_ryoute = TRUE;
 
-       /* Get an item */
        q = _("どれを装備からはずしますか? ", "Take off which item? ");
        s = _("はずせる装備がない。", "You are not wearing anything to take off.");
 
@@ -633,7 +627,6 @@ void do_cmd_takeoff(void)
        {
                if ((o_ptr->curse_flags & TRC_PERMA_CURSE) || (p_ptr->pclass != CLASS_BERSERKER))
                {
-                       /* Oops */
                        msg_print(_("ふーむ、どうやら呪われているようだ。", "Hmmm, it seems to be cursed."));
 
                        /* Nope */
@@ -655,7 +648,6 @@ void do_cmd_takeoff(void)
                        /* Recalculate the bonuses */
                        p_ptr->update |= (PU_BONUS);
 
-                       /* Window stuff */
                        p_ptr->window |= (PW_EQUIP);
 
                        msg_print(_("呪いを打ち破った。", "You break the curse."));
@@ -698,7 +690,6 @@ void do_cmd_drop(void)
        }
 
        item_tester_no_ryoute = TRUE;
-       /* Get an item */
        q = _("どのアイテムを落としますか? ", "Drop which item? ");
        s = _("落とせるアイテムを持っていない。", "You have nothing to drop.");
 
@@ -720,7 +711,6 @@ void do_cmd_drop(void)
        /* Hack -- Cannot remove cursed items */
        if ((item >= INVEN_RARM) && object_is_cursed(o_ptr))
        {
-               /* Oops */
                msg_print(_("ふーむ、どうやら呪われているようだ。", "Hmmm, it seems to be cursed."));
                /* Nope */
                return;
@@ -811,7 +801,6 @@ void do_cmd_destroy(void)
        /* Hack -- force destruction */
        if (command_arg > 0) force = TRUE;
 
-       /* Get an item */
        q = _("どのアイテムを壊しますか? ", "Destroy which item? ");
        s = _("壊せるアイテムを持っていない。", "You have nothing to destroy.");
 
@@ -898,7 +887,6 @@ void do_cmd_destroy(void)
        object_desc(o_name, o_ptr, 0);
        o_ptr->number = old_number;
 
-       /* Take a turn */
        p_ptr->energy_use = 100;
 
        /* Artifacts cannot be destroyed */
@@ -906,15 +894,12 @@ void do_cmd_destroy(void)
        {
                p_ptr->energy_use = 0;
 
-               /* Message */
                msg_format(_("%sは破壊不可能だ。", "You cannot destroy %s."), o_name);
-               /* Done */
                return;
        }
 
        object_copy(q_ptr, o_ptr);
 
-       /* Message */
        msg_format(_("%sを壊した。", "You destroy %s."), o_name);
        sound(SOUND_DESTITEM);
 
@@ -1012,7 +997,6 @@ void do_cmd_observe(void)
 
        item_tester_no_ryoute = TRUE;
 
-       /* Get an item */
        q = _("どのアイテムを調べますか? ", "Examine which item? ");
        s = _("調べられるアイテムがない。", "You have nothing to examine.");
 
@@ -1062,7 +1046,6 @@ void do_cmd_uninscribe(void)
        cptr q, s;
 
        item_tester_no_ryoute = TRUE;
-       /* Get an item */
        q = _("どのアイテムの銘を消しますか? ", "Un-inscribe which item? ");
        s = _("銘を消せるアイテムがない。", "You have nothing to un-inscribe.");
 
@@ -1087,7 +1070,6 @@ void do_cmd_uninscribe(void)
                return;
        }
 
-       /* Message */
        msg_print(_("銘を消した。", "Inscription removed."));
 
        /* Remove the incription */
@@ -1096,7 +1078,6 @@ void do_cmd_uninscribe(void)
        /* Combine the pack */
        p_ptr->notice |= (PN_COMBINE);
 
-       /* Window stuff */
        p_ptr->window |= (PW_INVEN | PW_EQUIP);
 
        /* .や$の関係で, 再計算が必要なはず -- henkma */
@@ -1119,7 +1100,6 @@ void do_cmd_inscribe(void)
        cptr q, s;
 
        item_tester_no_ryoute = TRUE;
-       /* Get an item */
        q = _("どのアイテムに銘を刻みますか? ", "Inscribe which item? ");
        s = _("銘を刻めるアイテムがない。", "You have nothing to inscribe.");
 
@@ -1140,7 +1120,6 @@ void do_cmd_inscribe(void)
        /* Describe the activity */
        object_desc(o_name, o_ptr, OD_OMIT_INSCRIPTION);
 
-       /* Message */
        msg_format(_("%sに銘を刻む。", "Inscribing %s."), o_name);
        msg_print(NULL);
 
@@ -1163,7 +1142,6 @@ void do_cmd_inscribe(void)
                /* Combine the pack */
                p_ptr->notice |= (PN_COMBINE);
 
-               /* Window stuff */
                p_ptr->window |= (PW_INVEN | PW_EQUIP);
 
                /* .や$の関係で, 再計算が必要なはず -- henkma */
@@ -1211,7 +1189,6 @@ static void do_cmd_refill_lamp(void)
        /* Restrict the choices */
        item_tester_hook = item_tester_refill_lantern;
 
-       /* Get an item */
 #ifdef JP
        q = "どの油つぼから注ぎますか? ";
        s = "油つぼがない。";
@@ -1244,7 +1221,6 @@ static void do_cmd_refill_lamp(void)
        /* Refuel */
        j_ptr->xtra4 += o_ptr->xtra4;
 
-       /* Message */
        msg_print(_("ランプに油を注いだ。", "You fuel your lamp."));
 
        /* Comment */
@@ -1320,7 +1296,6 @@ static void do_cmd_refill_torch(void)
        /* Restrict the choices */
        item_tester_hook = item_tester_refill_torch;
 
-       /* Get an item */
 #ifdef JP
        q = "どの松明で明かりを強めますか? ";
        s = "他に松明がない。";
@@ -1353,7 +1328,6 @@ static void do_cmd_refill_torch(void)
        /* Refuel */
        j_ptr->xtra4 += o_ptr->xtra4 + 5;
 
-       /* Message */
        msg_print(_("松明を結合した。", "You combine the torches."));
 
        /* Comment */
@@ -1575,13 +1549,11 @@ void do_cmd_locate(void)
        /* Recenter the map around the player */
        verify_panel();
 
-       /* Update stuff */
        p_ptr->update |= (PU_MONSTERS);
 
        /* Redraw map */
        p_ptr->redraw |= (PR_MAP);
 
-       /* Window stuff */
        p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
 
        /* Handle stuff */
@@ -1711,7 +1683,7 @@ void ang_sort_swap_hook(vptr u, vptr v, int a, int b)
  *
  * The responses may be sorted in several ways, see below.
  *
- * Note that the player ghosts are ignored. XXX XXX XXX
+ * Note that the player ghosts are ignored. 
  * </pre>
  */
 void do_cmd_query_symbol(void)
@@ -1810,31 +1782,31 @@ void do_cmd_query_symbol(void)
                /* XTRA HACK WHATSEARCH */
                if (temp[0])
                {
-                 int xx;
-                 char temp2[80];
-  
-                 for (xx=0; temp[xx] && xx<80; xx++)
-                 {
+                       TERM_LEN xx;
+                       char temp2[80];
+
+                       for (xx = 0; temp[xx] && xx < 80; xx++)
+                       {
 #ifdef JP
-                   if (iskanji( temp[xx])) { xx++; continue; }
+                               if (iskanji(temp[xx])) { xx++; continue; }
 #endif
-                   if (isupper(temp[xx])) temp[xx] = (char)tolower(temp[xx]);
-                 }
-  
+                               if (isupper(temp[xx])) temp[xx] = (char)tolower(temp[xx]);
+                       }
+
 #ifdef JP
-                 strcpy(temp2, r_name+r_ptr->E_name);
+                       strcpy(temp2, r_name + r_ptr->E_name);
 #else
-                 strcpy(temp2, r_name+r_ptr->name);
+                       strcpy(temp2, r_name + r_ptr->name);
 #endif
-                 for (xx=0; temp2[xx] && xx<80; xx++)
-                   if (isupper(temp2[xx])) temp2[xx] = (char)tolower(temp2[xx]);
-  
+                       for (xx = 0; temp2[xx] && xx < 80; xx++)
+                               if (isupper(temp2[xx])) temp2[xx] = (char)tolower(temp2[xx]);
+
 #ifdef JP
-                 if (my_strstr(temp2, temp) || my_strstr(r_name + r_ptr->name, temp) )
+                       if (my_strstr(temp2, temp) || my_strstr(r_name + r_ptr->name, temp))
 #else
-                 if (my_strstr(temp2, temp))
+                       if (my_strstr(temp2, temp))
 #endif
-                         who[n++] = i;
+                               who[n++] = i;
                }
 
                /* Collect "appropriate" monsters */
@@ -1851,7 +1823,7 @@ void do_cmd_query_symbol(void)
        }
 
 
-       /* Prompt XXX XXX XXX */
+       /* Prompt */
        put_str(_("思い出を見ますか? (k:殺害順/y/n): ", "Recall details? (k/y/n): "), 0, _(36, 40));
 
 
@@ -2002,7 +1974,6 @@ void do_cmd_use(void)
        /* Prepare the hook */
        item_tester_hook = item_tester_hook_use;
 
-       /* Get an item */
        q = _("どれを使いますか?", "Use which item? ");
        s = _("使えるものがありません。", "You have nothing to use.");