OSDN Git Service

[Refactor] #37353 monster_living() の引数修正。 / Type replacement of monster_living()...
[hengband/hengband.git] / src / xtra2.c
index 55a44ed..b227e5f 100644 (file)
@@ -12,6 +12,9 @@
 
 
 #include "angband.h"
+#include "cmd-pet.h"
+#include "object-curse.h"
+#include "monster-hook.h"
 
 #define REWARD_CHANCE 10
 
@@ -27,7 +30,7 @@ void check_experience(void)
        bool level_mutation = FALSE;
        bool level_inc_stat = FALSE;
        bool android = (p_ptr->prace == RACE_ANDROID ? TRUE : FALSE);
-       int  old_lev = p_ptr->lev;
+       PLAYER_LEVEL old_lev = p_ptr->lev;
 
        /* Hack -- lower limit */
        if (p_ptr->exp < 0) p_ptr->exp = 0;
@@ -47,8 +50,6 @@ void check_experience(void)
 
        /* Redraw experience */
        p_ptr->redraw |= (PR_EXP);
-
-       /* Handle stuff */
        handle_stuff();
 
 
@@ -58,17 +59,9 @@ void check_experience(void)
        {
                /* Lose a level */
                p_ptr->lev--;
-
-               /* Update some stuff */
                p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
-
-               /* Redraw some stuff */
                p_ptr->redraw |= (PR_LEV | PR_TITLE);
-
-               /* Window stuff */
                p_ptr->window |= (PW_PLAYER);
-
-               /* Handle stuff */
                handle_stuff();
        }
 
@@ -99,30 +92,16 @@ void check_experience(void)
                        do_cmd_write_nikki(NIKKI_LEVELUP, p_ptr->lev, NULL);
                }
 
-               /* Sound */
                sound(SOUND_LEVEL);
 
-               /* Message */
-#ifdef JP
-msg_format("レベル %d にようこそ。", p_ptr->lev);
-#else
-               msg_format("Welcome to level %d.", p_ptr->lev);
-
-#endif
+               msg_format(_("レベル %d にようこそ。", "Welcome to level %d."), p_ptr->lev);
 
-               /* Update some stuff */
                p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
-
-               /* Redraw some stuff */
                p_ptr->redraw |= (PR_LEV | PR_TITLE | PR_EXP);
-
-               /* Window stuff */
                p_ptr->window |= (PW_PLAYER | PW_SPELL | PW_INVEN);
 
                /* HPとMPの上昇量を表示 */
                level_up = 1;
-
-               /* Handle stuff */
                handle_stuff();
 
                level_up = 0;
@@ -203,16 +182,9 @@ msg_format("レベル %d にようこそ。", p_ptr->lev);
                        level_reward = FALSE;
                }
 
-               /* Update some stuff */
                p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
-
-               /* Redraw some stuff */
                p_ptr->redraw |= (PR_LEV | PR_TITLE);
-
-               /* Window stuff */
                p_ptr->window |= (PW_PLAYER | PW_SPELL);
-
-               /* Handle stuff */
                handle_stuff();
        }
 
@@ -228,19 +200,19 @@ msg_format("レベル %d にようこそ。", p_ptr->lev);
  * @details
  * Hack -- Return the "automatic coin type" of a monster race
  * Used to allocate proper treasure when "Creeping coins" die
- * XXX XXX XXX Note the use of actual "monster names"
+ * Note the use of actual "monster names"
  */
-static int get_coin_type(int r_idx)
+static int get_coin_type(MONRACE_IDX r_idx)
 {
        /* Analyze monsters */
        switch (r_idx)
        {
-       case MON_COPPER_COINS: return 2;
-       case MON_SILVER_COINS: return 5;
-       case MON_GOLD_COINS: return 10;
-       case MON_MITHRIL_COINS:
-       case MON_MITHRIL_GOLEM: return 16;
-       case MON_ADAMANT_COINS: return 17;
+               case MON_COPPER_COINS: return 2;
+               case MON_SILVER_COINS: return 5;
+               case MON_GOLD_COINS: return 10;
+               case MON_MITHRIL_COINS:
+               case MON_MITHRIL_GOLEM: return 16;
+               case MON_ADAMANT_COINS: return 17;
        }
 
        /* Assume nothing */
@@ -254,7 +226,7 @@ static int get_coin_type(int r_idx)
  * @param k_idx 判定したいオブジェクトのベースアイテムID
  * @return オブジェクトがクロークならばTRUEを返す
  */
-static bool kind_is_cloak(int k_idx)
+static bool kind_is_cloak(KIND_OBJECT_IDX k_idx)
 {
        object_kind *k_ptr = &k_info[k_idx];
 
@@ -275,7 +247,7 @@ static bool kind_is_cloak(int k_idx)
  * @param k_idx 判定したいオブジェクトのベースアイテムID
  * @return オブジェクトが竿状武器ならばTRUEを返す
  */
-static bool kind_is_polearm(int k_idx)
+static bool kind_is_polearm(KIND_OBJECT_IDX k_idx)
 {
        object_kind *k_ptr = &k_info[k_idx];
 
@@ -296,7 +268,7 @@ static bool kind_is_polearm(int k_idx)
  * @param k_idx 判定したいオブジェクトのベースアイテムID
  * @return オブジェクトが剣ならばTRUEを返す
  */
-static bool kind_is_sword(int k_idx)
+static bool kind_is_sword(KIND_OBJECT_IDX k_idx)
 {
        object_kind *k_ptr = &k_info[k_idx];
 
@@ -317,7 +289,7 @@ static bool kind_is_sword(int k_idx)
  * @param k_idx 判定したいオブジェクトのベースアイテムID
  * @return オブジェクトが魔法書ならばTRUEを返す
  */
-static bool kind_is_book(int k_idx)
+static bool kind_is_book(KIND_OBJECT_IDX k_idx)
 {
        object_kind *k_ptr = &k_info[k_idx];
 
@@ -338,7 +310,7 @@ static bool kind_is_book(int k_idx)
  * @param k_idx 判定したいオブジェクトのベースアイテムID
  * @return オブジェクトがベースアイテム時点でGOODなアイテムならばTRUEを返す
  */
-static bool kind_is_good_book(int k_idx)
+static bool kind_is_good_book(KIND_OBJECT_IDX k_idx)
 {
        object_kind *k_ptr = &k_info[k_idx];
 
@@ -359,7 +331,7 @@ static bool kind_is_good_book(int k_idx)
  * @param k_idx 判定したいオブジェクトのベースアイテムID
  * @return オブジェクトが鎧ならばTRUEを返す
  */
-static bool kind_is_armor(int k_idx)
+static bool kind_is_armor(KIND_OBJECT_IDX k_idx)
 {
        object_kind *k_ptr = &k_info[k_idx];
 
@@ -380,7 +352,7 @@ static bool kind_is_armor(int k_idx)
  * @param k_idx 判定したいオブジェクトのベースアイテムID
  * @return オブジェクトが打撃武器ならばTRUEを返す
  */
-static bool kind_is_hafted(int k_idx)
+static bool kind_is_hafted(KIND_OBJECT_IDX k_idx)
 {
        object_kind *k_ptr = &k_info[k_idx];
 
@@ -399,7 +371,7 @@ static bool kind_is_hafted(int k_idx)
  * @param quest_num 達成状態にしたいクエストのID
  * @return なし
  */
-void complete_quest(int quest_num)
+void complete_quest(QUEST_IDX quest_num)
 {
        quest_type* const q_ptr = &quest[quest_num];
 
@@ -430,20 +402,20 @@ void complete_quest(int quest_num)
  * @brief 現在フロアに残っている敵モンスターの数を返す /
  * @return 現在の敵モンスターの数
  */
-static int count_all_hostile_monsters(void)
+static MONSTER_NUMBER count_all_hostile_monsters(void)
 {
-       int x, y;
-       int number_mon = 0;
+       POSITION x, y;
+       MONSTER_NUMBER number_mon = 0;
 
        for (x = 0; x < cur_wid; ++ x)
        {
                for (y = 0; y < cur_hgt; ++ y)
                {
-                       int m_idx = cave[y][x].m_idx;
+                       MONSTER_IDX m_idx = cave[y][x].m_idx;
 
                        if (m_idx > 0 && is_hostile(&m_list[m_idx]))
                        {
-                               ++ number_mon;
+                               ++number_mon;
                        }
                }
        }
@@ -459,9 +431,8 @@ static int count_all_hostile_monsters(void)
  */
 void check_quest_completion(monster_type *m_ptr)
 {
-       int y, x;
-
-       int quest_num;
+       POSITION y, x;
+       QUEST_IDX quest_num;
 
        bool create_stairs = FALSE;
        bool reward = FALSE;
@@ -474,14 +445,14 @@ void check_quest_completion(monster_type *m_ptr)
        x = m_ptr->fx;
 
        /* Inside a quest */
-       quest_num = p_ptr->inside_quest;                
+       quest_num = p_ptr->inside_quest;
 
        /* Search for an active quest on this dungeon level */
        if (!quest_num)
        {
-               int i;
+               QUEST_IDX i;
 
-               for (i = max_quests - 1; i > 0; i--)
+               for (i = max_q_idx - 1; i > 0; i--)
                {
                        quest_type* const q_ptr = &quest[i];
                        
@@ -624,7 +595,7 @@ void check_quest_completion(monster_type *m_ptr)
        /* Create a magical staircase */
        if (create_stairs)
        {
-               int ny, nx;
+               POSITION ny, nx;
 
                /* Stagger around */
                while (cave_perma_bold(y, x) || cave[y][x].o_idx || (cave[y][x].info & CAVE_OBJECT) )
@@ -655,10 +626,7 @@ void check_quest_completion(monster_type *m_ptr)
 
                for (i = 0; i < (dun_level / 15)+1; i++)
                {
-                       /* Get local object */
                        o_ptr = &forge;
-
-                       /* Wipe the object */
                        object_wipe(o_ptr);
 
                        /* Make a great object */
@@ -678,13 +646,13 @@ void check_quest_completion(monster_type *m_ptr)
  */
 void check_find_art_quest_completion(object_type *o_ptr)
 {
-       int i;
+       QUEST_IDX i;
        /* Check if completed a quest */
-       for (i = 0; i < max_quests; i++)
+       for (i = 0; i < max_q_idx; i++)
        {
-               if ((quest[i].type == QUEST_TYPE_FIND_ARTIFACT) &&
-                   (quest[i].status == QUEST_STATUS_TAKEN) &&
-                          (quest[i].k_idx == o_ptr->name1))
+               if((quest[i].type == QUEST_TYPE_FIND_ARTIFACT) &&
+                       (quest[i].status == QUEST_STATUS_TAKEN) &&
+                       (quest[i].k_idx == o_ptr->name1))
                {
                        complete_quest(i);
                }
@@ -698,10 +666,11 @@ void check_find_art_quest_completion(object_type *o_ptr)
  * @param r_ptr 撃破されたモンスターの種族情報を持つ構造体の参照ポインタ
  * @return 撃破されたモンスターの述語
  */
-cptr extract_note_dies(monster_race *r_ptr)
+cptr extract_note_dies(MONRACE_IDX r_idx)
 {
+       monster_race *r_ptr = &r_info[r_idx];
        /* Some monsters get "destroyed" */
-       if (!monster_living(r_ptr))
+       if (!monster_living(r_idx))
        {
                int i;
 
@@ -737,17 +706,16 @@ cptr extract_note_dies(monster_race *r_ptr)
  * it drops all of its objects, which may disappear in crowded rooms.
  * </pre>
  */
-void monster_death(int m_idx, bool drop_item)
+void monster_death(MONSTER_IDX m_idx, bool drop_item)
 {
-       int i, j, y, x;
+       int i, j;
+       POSITION y, x;
 
        int dump_item = 0;
        int dump_gold = 0;
-
        int number = 0;
 
        monster_type *m_ptr = &m_list[m_idx];
-
        monster_race *r_ptr = &r_info[m_ptr->r_idx];
 
        bool visible = ((m_ptr->ml && !p_ptr->image) || (r_ptr->flags1 & RF1_UNIQUE));
@@ -792,11 +760,11 @@ void monster_death(int m_idx, bool drop_item)
        {
                if (r_ptr->blow[i].method == RBM_EXPLODE)
                {
-                       int flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
-                       int typ = mbe_info[r_ptr->blow[i].effect].explode_type;
-                       int d_dice = r_ptr->blow[i].d_dice;
-                       int d_side = r_ptr->blow[i].d_side;
-                       int damage = damroll(d_dice, d_side);
+                       BIT_FLAGS flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
+                       EFFECT_ID typ = mbe_info[r_ptr->blow[i].effect].explode_type;
+                       DICE_NUMBER d_dice = r_ptr->blow[i].d_dice;
+                       DICE_SID d_side = r_ptr->blow[i].d_side;
+                       HIT_POINT damage = damroll(d_dice, d_side);
 
                        project(m_idx, 3, y, x, damage, typ, flg, -1);
                        break;
@@ -828,12 +796,10 @@ void monster_death(int m_idx, bool drop_item)
 
                if (arena_info[p_ptr->arena_number].tval)
                {
-                       /* Get local object */
                        q_ptr = &forge;
 
                        /* Prepare to make a prize */
                        object_prep(q_ptr, lookup_kind(arena_info[p_ptr->arena_number].tval, arena_info[p_ptr->arena_number].sval));
-
                        apply_magic(q_ptr, object_level, AM_NO_FIXED_ART);
 
                        /* Drop it in the dungeon */
@@ -891,8 +857,6 @@ void monster_death(int m_idx, bool drop_item)
                                if (!one_in_(5)) corpse = TRUE;
                        }
                }
-
-               /* Get local object */
                q_ptr = &forge;
 
                /* Prepare to make an object */
@@ -924,7 +888,7 @@ void monster_death(int m_idx, bool drop_item)
                        {
                                int wy = y, wx = x;
                                bool pet = is_pet(m_ptr);
-                               u32b mode = 0L;
+                               BIT_FLAGS mode = 0L;
 
                                if (pet) mode |= PM_FORCE_PET;
 
@@ -944,7 +908,6 @@ void monster_death(int m_idx, bool drop_item)
                /* Bloodletters of Khorne may drop a blade of chaos */
                if (drop_chosen_item && (randint1(100) < 15))
                {
-                       /* Get local object */
                        q_ptr = &forge;
 
                        /* Prepare to make a Blade of Chaos */
@@ -960,10 +923,7 @@ void monster_death(int m_idx, bool drop_item)
        case MON_RAAL:
                if (drop_chosen_item && (dun_level > 9))
                {
-                       /* Get local object */
                        q_ptr = &forge;
-
-                       /* Wipe the object */
                        object_wipe(q_ptr);
 
                        /* Activate restriction */
@@ -989,7 +949,7 @@ void monster_death(int m_idx, bool drop_item)
                {
                        if (!one_in_(7))
                        {
-                               int wy = y, wx = x;
+                               POSITION wy = y, wx = x;
                                int attempts = 100;
                                bool pet = is_pet(m_ptr);
 
@@ -1001,7 +961,7 @@ void monster_death(int m_idx, bool drop_item)
 
                                if (attempts > 0)
                                {
-                                       u32b mode = 0L;
+                                       BIT_FLAGS mode = 0L;
                                        if (pet) mode |= PM_FORCE_PET;
 
                                        if (summon_specific((pet ? -1 : m_idx), wy, wx, 100, SUMMON_DAWN, mode))
@@ -1017,7 +977,7 @@ void monster_death(int m_idx, bool drop_item)
        case MON_UNMAKER:
                /* One more ultra-hack: An Unmaker goes out with a big bang! */
                {
-                       int flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
+                       BIT_FLAGS flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
                        (void)project(m_idx, 6, y, x, 100, GF_CHAOS, flg, -1);
                }
                break;
@@ -1028,7 +988,7 @@ void monster_death(int m_idx, bool drop_item)
                /* Reward for "lazy" player */
                if (p_ptr->pseikaku == SEIKAKU_NAMAKE)
                {
-                       int a_idx = 0;
+                       ARTIFACT_IDX a_idx = 0;
                        artifact_type *a_ptr = NULL;
 
                        if (!drop_chosen_item) break;
@@ -1066,8 +1026,6 @@ void monster_death(int m_idx, bool drop_item)
 
        case MON_SERPENT:
                if (!drop_chosen_item) break;
-
-               /* Get local object */
                q_ptr = &forge;
 
                /* Mega-Hack -- Prepare to make "Grond" */
@@ -1081,8 +1039,6 @@ void monster_death(int m_idx, bool drop_item)
 
                /* Drop it in the dungeon */
                (void)drop_near(q_ptr, -1, y, x);
-
-               /* Get local object */
                q_ptr = &forge;
 
                /* Mega-Hack -- Prepare to make "Chaos" */
@@ -1101,7 +1057,6 @@ void monster_death(int m_idx, bool drop_item)
        case MON_B_DEATH_SWORD:
                if (drop_chosen_item)
                {
-                       /* Get local object */
                        q_ptr = &forge;
 
                        /* Prepare to make a broken sword */
@@ -1117,7 +1072,6 @@ void monster_death(int m_idx, bool drop_item)
                if (drop_chosen_item && ((m_ptr->r_idx == MON_A_GOLD) ||
                     ((m_ptr->r_idx == MON_A_SILVER) && (r_ptr->r_akills % 5 == 0))))
                {
-                       /* Get local object */
                        q_ptr = &forge;
 
                        /* Prepare to make a Can of Toys */
@@ -1132,7 +1086,7 @@ void monster_death(int m_idx, bool drop_item)
 
        case MON_ROLENTO:
                {
-                       int flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
+                       BIT_FLAGS flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
                        (void)project(m_idx, 3, y, x, damroll(20, 10), GF_FIRE, flg, -1);
                }
                break;
@@ -1145,10 +1099,7 @@ void monster_death(int m_idx, bool drop_item)
                case '(':
                        if (dun_level > 0)
                        {
-                               /* Get local object */
                                q_ptr = &forge;
-
-                               /* Wipe the object */
                                object_wipe(q_ptr);
 
                                /* Activate restriction */
@@ -1165,10 +1116,7 @@ void monster_death(int m_idx, bool drop_item)
                case '/':
                        if (dun_level > 4)
                        {
-                               /* Get local object */
                                q_ptr = &forge;
-
-                               /* Wipe the object */
                                object_wipe(q_ptr);
 
                                /* Activate restriction */
@@ -1185,10 +1133,7 @@ void monster_death(int m_idx, bool drop_item)
                case '[':
                        if (dun_level > 19)
                        {
-                               /* Get local object */
                                q_ptr = &forge;
-
-                               /* Wipe the object */
                                object_wipe(q_ptr);
 
                                /* Activate restriction */
@@ -1205,10 +1150,7 @@ void monster_death(int m_idx, bool drop_item)
                case '\\':
                        if (dun_level > 4)
                        {
-                               /* Get local object */
                                q_ptr = &forge;
-
-                               /* Wipe the object */
                                object_wipe(q_ptr);
 
                                /* Activate restriction */
@@ -1225,10 +1167,7 @@ void monster_death(int m_idx, bool drop_item)
                case '|':
                        if (m_ptr->r_idx != MON_STORMBRINGER)
                        {
-                               /* Get local object */
                                q_ptr = &forge;
-
-                               /* Wipe the object */
                                object_wipe(q_ptr);
 
                                /* Activate restriction */
@@ -1248,7 +1187,7 @@ void monster_death(int m_idx, bool drop_item)
        /* Mega-Hack -- drop fixed items */
        if (drop_chosen_item)
        {
-               int a_idx = 0;
+               ARTIFACT_IDX a_idx = 0;
                int chance = 0;
 
                for(i = 0; i < 4; i++)
@@ -1278,7 +1217,7 @@ void monster_death(int m_idx, bool drop_item)
 
                if ((r_ptr->flags7 & RF7_GUARDIAN) && (d_info[dungeon_type].final_guardian == m_ptr->r_idx))
                {
-                       int k_idx = d_info[dungeon_type].final_object ? d_info[dungeon_type].final_object
+                       KIND_OBJECT_IDX k_idx = d_info[dungeon_type].final_object ? d_info[dungeon_type].final_object
                                : lookup_kind(TV_SCROLL, SV_SCROLL_ACQUIREMENT);
 
                        if (d_info[dungeon_type].final_artifact)
@@ -1305,7 +1244,6 @@ void monster_death(int m_idx, bool drop_item)
 
                        if (k_idx)
                        {
-                               /* Get local object */
                                q_ptr = &forge;
 
                                /* Prepare to make a reward */
@@ -1347,10 +1285,7 @@ void monster_death(int m_idx, bool drop_item)
        /* Drop some objects */
        for (j = 0; j < number; j++)
        {
-               /* Get local object */
                q_ptr = &forge;
-
-               /* Wipe the object */
                object_wipe(q_ptr);
 
                /* Make Gold */
@@ -1359,7 +1294,6 @@ void monster_death(int m_idx, bool drop_item)
                        /* Make some gold */
                        if (!make_gold(q_ptr)) continue;
 
-                       /* XXX XXX XXX */
                        dump_gold++;
                }
 
@@ -1369,7 +1303,6 @@ void monster_death(int m_idx, bool drop_item)
                        /* Make an object */
                        if (!make_object(q_ptr, mo_mode)) continue;
 
-                       /* XXX XXX XXX */
                        dump_item++;
                }
 
@@ -1436,7 +1369,7 @@ void monster_death(int m_idx, bool drop_item)
  * "type" is not yet used and should be 0.
  * </pre>
  */
-int mon_damage_mod(monster_type *m_ptr, int dam, bool is_psy_spear)
+HIT_POINT mon_damage_mod(monster_type *m_ptr, HIT_POINT dam, bool is_psy_spear)
 {
        monster_race    *r_ptr = &r_info[m_ptr->r_idx];
 
@@ -1478,7 +1411,7 @@ int mon_damage_mod(monster_type *m_ptr, int dam, bool is_psy_spear)
  * experience point of a monster later.
  * </pre>
  */
-static void get_exp_from_mon(int dam, monster_type *m_ptr)
+static void get_exp_from_mon(HIT_POINT dam, monster_type *m_ptr)
 {
        monster_race *r_ptr = &r_info[m_ptr->r_idx];
 
@@ -1527,7 +1460,7 @@ static void get_exp_from_mon(int dam, monster_type *m_ptr)
        }
        
        /* Special penalty for rest_and_shoot exp scum */
-       if ((m_ptr->dealt_damage > (u32b)m_ptr->max_maxhp) && (m_ptr->hp >= 0))
+       if ((m_ptr->dealt_damage > m_ptr->max_maxhp) && (m_ptr->hp >= 0))
        {
                int over_damage = m_ptr->dealt_damage / m_ptr->max_maxhp;
                if (over_damage > 32) over_damage = 32;
@@ -1570,25 +1503,23 @@ static void get_exp_from_mon(int dam, monster_type *m_ptr)
  * Made name, sex, and capitalization generic -BEN-
  * As always, the "ghost" processing is a total hack.
  * Hack -- we "delay" fear messages by passing around a "fear" flag.
- * XXX XXX XXX Consider decreasing monster experience over time, say,
+ * Consider decreasing monster experience over time, say,
  * by using "(m_exp * m_lev * (m_lev)) / (p_lev * (m_lev + n_killed))"
  * instead of simply "(m_exp * m_lev) / (p_lev)", to make the first
  * monster worth more than subsequent monsters.  This would also need
  * to induce changes in the monster recall code.
  * </pre>
  */
-bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
+bool mon_take_hit(MONSTER_IDX m_idx, HIT_POINT dam, bool *fear, cptr note)
 {
-       monster_type    *m_ptr = &m_list[m_idx];
-       monster_race    *r_ptr = &r_info[m_ptr->r_idx];
-
-       monster_type    exp_mon;
+       monster_type *m_ptr = &m_list[m_idx];
+       monster_race *r_ptr = &r_info[m_ptr->r_idx];
+       monster_type exp_mon;
 
        /* Innocent until proven otherwise */
-       bool        innocent = TRUE, thief = FALSE;
-       int         i;
-       int         expdam;
-       int                     dealt_damage;
+       bool innocent = TRUE, thief = FALSE;
+       int i;
+       HIT_POINT expdam;
 
        (void)COPY(&exp_mon, m_ptr, monster_type);
        
@@ -1603,7 +1534,6 @@ bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
        if (p_ptr->health_who == m_idx) p_ptr->redraw |= (PR_HEALTH);
        if (p_ptr->riding == m_idx) p_ptr->redraw |= (PR_UHEALTH);
 
-       /* Wake it up */
        (void)set_monster_csleep(m_idx, 0);
 
        /* Hack - Cancel any special player stealth magics. -LM- */
@@ -1615,18 +1545,14 @@ bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
        /* Genocided by chaos patron */
        if (!m_idx) return TRUE;
        
-       /* Remember dealt_damage before this attack*/
-       dealt_damage = m_ptr->dealt_damage;
-
-       /* Hurt it */
        m_ptr->hp -= dam;
-       
        m_ptr->dealt_damage += dam;
-       if(m_ptr->dealt_damage > (u32b)m_ptr->max_maxhp * 100) m_ptr->dealt_damage = m_ptr->max_maxhp * 100;
+
+       if(m_ptr->dealt_damage > m_ptr->max_maxhp * 100) m_ptr->dealt_damage = m_ptr->max_maxhp * 100;
+
        if (p_ptr->wizard)
        {
-               msg_format( _("合計%d/%dのダメージを与えた。","You do %d (out of %d) damage."),
-                                       m_ptr->dealt_damage, m_ptr->maxhp);
+               msg_format( _("合計%d/%dのダメージを与えた。","You do %d (out of %d) damage."), m_ptr->dealt_damage, m_ptr->maxhp);
        }
 
        /* It is dead now */
@@ -1725,13 +1651,13 @@ bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
 
                        /* Dump a message */
                        if (!get_rnd_line(_("mondeath_j.txt", "mondeath.txt"), m_ptr->r_idx, line_got))
-
+                       {
                                msg_format("%^s %s", m_name, line_got);
+                       }
 
 #ifdef WORLD_SCORE
                        if (m_ptr->r_idx == MON_SERPENT)
                        {
-                               /* Make screen dump */
                                screen_dump = make_screen_dump();
                        }
 #endif
@@ -1774,8 +1700,7 @@ bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
                        chg_virtue(V_COMPASSION, -1);
                }
 
-               if ((r_ptr->flags3 & RF3_GOOD) &&
-                       ((r_ptr->level) / 10 + (3 * dun_level) >= randint1(100)))
+               if ((r_ptr->flags3 & RF3_GOOD) && ((r_ptr->level) / 10 + (3 * dun_level) >= randint1(100)))
                        chg_virtue(V_UNLIFE, 1);
 
                if (r_ptr->d_char == 'A')
@@ -1832,8 +1757,7 @@ bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
                {
                        if (r_ptr->flags1 & RF1_UNIQUE)
                                chg_virtue(V_JUSTICE, 3);
-                       else if (1+((r_ptr->level) / 10 + (2 * dun_level))
-                               >= randint1(100))
+                       else if (1+((r_ptr->level) / 10 + (2 * dun_level)) >= randint1(100))
                                chg_virtue(V_JUSTICE, 1);
                }
                else if (innocent)
@@ -1849,11 +1773,7 @@ bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
                if ((r_ptr->flags1 & RF1_UNIQUE) && record_destroy_uniq)
                {
                        char note_buf[160];
-#ifdef JP
-                       sprintf(note_buf, "%s%s", r_name + r_ptr->name, (m_ptr->smart & SM_CLONED) ? "(クローン)" : "");
-#else
-                       sprintf(note_buf, "%s%s", r_name + r_ptr->name, (m_ptr->smart & SM_CLONED) ? "(Clone)" : "");
-#endif
+                       sprintf(note_buf, "%s%s", r_name + r_ptr->name, (m_ptr->smart & SM_CLONED) ? _("(クローン)", "(Clone)") : "");
                        do_cmd_write_nikki(NIKKI_UNIQUE, 0, note_buf);
                }
 
@@ -1881,7 +1801,7 @@ bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
                }
 
                /* Death by Physical attack -- non-living monster */
-               else if (!monster_living(r_ptr))
+               else if (!monster_living(m_ptr->r_idx))
                {
                        bool explode = FALSE;
 
@@ -1899,7 +1819,7 @@ bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
                                if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
                                        msg_format("せっかくだから%sを倒した。", m_name);
                                else
-msg_format("%sを倒した。", m_name);
+                               msg_format("%sを倒した。", m_name);
 #else
                                msg_format("You have destroyed %s.", m_name);
 #endif
@@ -1913,7 +1833,7 @@ msg_format("%sを倒した。", m_name);
                        if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
                                msg_format("せっかくだから%sを葬り去った。", m_name);
                        else
-msg_format("%sを葬り去った。", m_name);
+                               msg_format("%sを葬り去った。", m_name);
 #else
                                msg_format("You have slain %s.", m_name);
 #endif
@@ -1935,18 +1855,13 @@ msg_format("%sを葬り去った。", m_name);
                monster_death(m_idx, TRUE);
 
                /* Mega hack : replace IKETA to BIKETAL */
-               if ((m_ptr->r_idx == MON_IKETA) &&
-                   !(p_ptr->inside_arena || p_ptr->inside_battle))
+               if ((m_ptr->r_idx == MON_IKETA) && !(p_ptr->inside_arena || p_ptr->inside_battle))
                {
-                       int dummy_y = m_ptr->fy;
-                       int dummy_x = m_ptr->fx;
-                       u32b mode = 0L;
-
+                       POSITION dummy_y = m_ptr->fy;
+                       POSITION dummy_x = m_ptr->fx;
+                       BIT_FLAGS mode = 0L;
                        if (is_pet(m_ptr)) mode |= PM_FORCE_PET;
-
-                       /* Delete the monster */
                        delete_monster_idx(m_idx);
-
                        if (summon_named_creature(0, dummy_y, dummy_x, MON_BIKETAL, mode))
                        {
                                msg_print(_("「ハァッハッハッハ!!私がバイケタルだ!!」", "Uwa-hahaha!  *I* am Biketal!"));
@@ -1954,7 +1869,6 @@ msg_format("%sを葬り去った。", m_name);
                }
                else
                {
-                       /* Delete the monster */
                        delete_monster_idx(m_idx);
                }
 
@@ -1991,13 +1905,12 @@ msg_format("%sを葬り去った。", m_name);
                 * Run (sometimes) if at 10% or less of max hit points,
                 * or (usually) when hit for half its current hit points
                 */
-               if ((randint1(10) >= percentage) ||
-                   ((dam >= m_ptr->hp) && (randint0(100) < 80)))
+               if ((randint1(10) >= percentage) || ((dam >= m_ptr->hp) && (randint0(100) < 80)))
                {
                        /* Hack -- note fear */
                        (*fear) = TRUE;
 
-                       /* XXX XXX XXX Hack -- Add some timed fear */
+                       /* Hack -- Add some timed fear */
                        (void)set_monster_monfear(m_idx, (randint1(10) +
                                          (((dam >= m_ptr->hp) && (percentage > 7)) ?
                                           20 : ((11 - percentage) * 5))));
@@ -2006,22 +1919,6 @@ msg_format("%sを葬り去った。", m_name);
 
 #endif
 
-#if 0
-       if (p_ptr->riding && (p_ptr->riding == m_idx) && (dam > 0))
-       {
-               char m_name[80];
-
-               /* Extract monster name */
-               monster_desc(m_name, m_ptr, 0);
-
-               if (m_ptr->hp > m_ptr->maxhp/3) dam = (dam + 1) / 2;
-               if (rakuba((dam > 200) ? 200 : dam, FALSE))
-               {
-               msg_format(_("%^sに振り落とされた!", "%^s has thrown you off!"), m_name);
-               }
-       }
-#endif
-
        /* Not dead yet */
        return (FALSE);
 }
@@ -2034,7 +1931,7 @@ msg_format("%sを葬り去った。", m_name);
  * @param hgt_p コンソールの表示行数を返す
  * @return なし
  */
-void get_screen_size(int *wid_p, int *hgt_p)
+void get_screen_size(TERM_LEN *wid_p, TERM_LEN *hgt_p)
 {
        Term_get_size(wid_p, hgt_p);
        *hgt_p -= ROW_MAP + 2;
@@ -2052,7 +1949,6 @@ void panel_bounds_center(void)
 {
        int wid, hgt;
 
-       /* Get size */
        get_screen_size(&wid, &hgt);
 
        panel_row_max = panel_row_min + hgt - 1;
@@ -2082,7 +1978,6 @@ void resize_map(void)
                                
        verify_panel();
 
-       /* Update stuff */
        p_ptr->update |= (PU_TORCH | PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
 
        /* Forget lite/view */
@@ -2099,8 +1994,6 @@ void resize_map(void)
 
        /* Hack -- update */
        handle_stuff();
-       
-       /* Redraw */
        Term_redraw();
 
        /*
@@ -2123,16 +2016,11 @@ void redraw_window(void)
        /* Only if the dungeon exists */
        if (!character_dungeon) return;
 
-       /* Window stuff */
        p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_SPELL | PW_PLAYER);
-
-       /* Window stuff */
        p_ptr->window |= (PW_MESSAGE | PW_OVERHEAD | PW_DUNGEON | PW_MONSTER | PW_OBJECT);
 
        /* Hack -- update */
        handle_stuff();
-
-       /* Redraw */
        Term_redraw();
 }
 
@@ -2146,12 +2034,11 @@ void redraw_window(void)
  * Also used in do_cmd_locate
  * @return 実際に再描画が必要だった場合TRUEを返す
  */
-bool change_panel(int dy, int dx)
+bool change_panel(POSITION dy, POSITION dx)
 {
-       int y, x;
-       int wid, hgt;
+       POSITION y, x;
+       TERM_LEN wid, hgt;
 
-       /* Get size */
        get_screen_size(&wid, &hgt);
 
        /* Apply the motion */
@@ -2176,13 +2063,9 @@ bool change_panel(int dy, int dx)
                /* Recalculate the boundaries */
                panel_bounds_center();
 
-               /* Update stuff */
                p_ptr->update |= (PU_MONSTERS);
 
-               /* Redraw map */
                p_ptr->redraw |= (PR_MAP);
-
-               /* Handle stuff */
                handle_stuff();
 
                /* Success */
@@ -2203,12 +2086,11 @@ bool change_panel(int dy, int dx)
  * Also used in do_cmd_locate
  * @return 実際に再描画が必要だった場合TRUEを返す
  */
-bool change_panel_xy(int y, int x)
+static bool change_panel_xy(POSITION y, POSITION x)
 {
-       int dy = 0, dx = 0;
-       int wid, hgt;
+       POSITION dy = 0, dx = 0;
+       TERM_LEN wid, hgt;
 
-       /* Get size */
        get_screen_size(&wid, &hgt);
 
        if (y < panel_row_min) dy = -1;
@@ -2233,8 +2115,8 @@ bool change_panel_xy(int y, int x)
  */
 void verify_panel(void)
 {
-       int y = p_ptr->y;
-       int x = p_ptr->x;
+       POSITION y = p_ptr->y;
+       POSITION x = p_ptr->x;
        int wid, hgt;
 
        int prow_min;
@@ -2242,7 +2124,6 @@ void verify_panel(void)
        int max_prow_min;
        int max_pcol_min;
 
-       /* Get size */
        get_screen_size(&wid, &hgt);
 
        max_prow_min = cur_hgt - hgt;
@@ -2319,18 +2200,13 @@ void verify_panel(void)
        panel_col_min = pcol_min;
 
        /* Hack -- optional disturb on "panel change" */
-       if (disturb_panel && !center_player) disturb(0, 0);
+       if (disturb_panel && !center_player) disturb(FALSE, FALSE);
 
        /* Recalculate the boundaries */
        panel_bounds_center();
 
-       /* Update stuff */
        p_ptr->update |= (PU_MONSTERS);
-
-       /* Redraw map */
        p_ptr->redraw |= (PR_MAP);
-
-       /* Window stuff */
        p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
 }
 
@@ -2338,17 +2214,17 @@ void verify_panel(void)
 /*
  * Monster health description
  */
-cptr look_mon_desc(monster_type *m_ptr, u32b mode)
+cptr look_mon_desc(monster_type *m_ptr, BIT_FLAGS mode)
 {
        monster_race *ap_r_ptr = &r_info[m_ptr->ap_r_idx];
-       bool         living;
-       int          perc;
+       bool living;
+       int perc;
        cptr desc;
        cptr attitude;
        cptr clone;
 
        /* Determine if the monster is "living" */
-       living = monster_living(ap_r_ptr);
+       living = monster_living(m_ptr->ap_r_idx);
 
        /* Calculate a health "percentage" */
        perc = 100L * m_ptr->hp / m_ptr->maxhp;
@@ -2356,55 +2232,29 @@ cptr look_mon_desc(monster_type *m_ptr, u32b mode)
        /* Healthy monsters */
        if (m_ptr->hp >= m_ptr->maxhp)
        {
-               /* No damage */
-#ifdef JP
-               desc = living ? "無傷" : "無ダメージ";
-#else
-               desc = living ? "unhurt" : "undamaged";
-#endif
-
+               desc = living ? _("無傷", "unhurt") : _("無ダメージ", "undamaged");
        }
 
        else if (perc >= 60)
        {
-#ifdef JP
-               desc = living ? "軽傷" : "小ダメージ";
-#else
-               desc = living ? "somewhat wounded" : "somewhat damaged";
-#endif
-
+               desc = living ? _("軽傷", "somewhat wounded") : _("小ダメージ", "somewhat damaged");
        }
 
        else if (perc >= 25)
        {
-#ifdef JP
-               desc = living ? "負傷" : "中ダメージ";
-#else
-               desc = living ? "wounded" : "damaged";
-#endif
-
+               desc = living ? _("負傷", "wounded") : _("中ダメージ", "damaged");
        }
 
        else if (perc >= 10)
        {
-#ifdef JP
-               desc = living ? "重傷" : "大ダメージ";
-#else
-               desc = living ? "badly wounded" : "badly damaged";
-#endif
-
+               desc = living ? _("重傷", "badly wounded") : _("大ダメージ", "badly damaged");
        }
 
        else 
        {
-#ifdef JP
-               desc = living ? "半死半生" : "倒れかけ";
-#else
-               desc = living ? "almost dead" : "almost destroyed";
-#endif
+               desc = living ? _("半死半生", "almost dead") : _("倒れかけ", "almost destroyed");
        }
 
-
        /* Need attitude information? */
        if (!(mode & 0x01))
        {
@@ -2424,7 +2274,6 @@ cptr look_mon_desc(monster_type *m_ptr, u32b mode)
                attitude = _("", "");
        }
 
-
        /* Clone monster? */
        if (m_ptr->smart & SM_CLONED)
        {
@@ -2444,6 +2293,7 @@ cptr look_mon_desc(monster_type *m_ptr, u32b mode)
        {
                return format(_("レベル???, %s%s%s", "Level ???, %s%s%s"), desc, attitude, clone);
        }
+
 }
 
 
@@ -2530,7 +2380,7 @@ void ang_sort(vptr u, vptr v, int n)
  * Future versions may restrict the ability to target "trappers"
  * and "mimics", but the semantics is a little bit weird.
  */
-bool target_able(int m_idx)
+bool target_able(MONSTER_IDX m_idx)
 {
        monster_type *m_ptr = &m_list[m_idx];
 
@@ -2548,7 +2398,7 @@ bool target_able(int m_idx)
        /* Monster must be projectable */
        if (!projectable(p_ptr->y, p_ptr->x, m_ptr->fy, m_ptr->fx)) return (FALSE);
 
-       /* XXX XXX XXX Hack -- Never target trappers */
+       /* Hack -- Never target trappers */
        /* if (CLEAR_ATTR && (CLEAR_CHAR)) return (FALSE); */
 
        /* Assume okay */
@@ -2598,10 +2448,10 @@ bool target_okay(void)
  */
 static bool ang_sort_comp_distance(vptr u, vptr v, int a, int b)
 {
-       byte *x = (byte*)(u);
-       byte *y = (byte*)(v);
+       POSITION *x = (POSITION*)(u);
+       POSITION *y = (POSITION*)(v);
 
-       int da, db, kx, ky;
+       POSITION da, db, kx, ky;
 
        /* Absolute distance components */
        kx = x[a]; kx -= p_ptr->x; kx = ABS(kx);
@@ -2630,8 +2480,8 @@ static bool ang_sort_comp_distance(vptr u, vptr v, int a, int b)
  */
 static bool ang_sort_comp_importance(vptr u, vptr v, int a, int b)
 {
-       byte *x = (byte*)(u);
-       byte *y = (byte*)(v);
+       POSITION *x = (POSITION*)(u);
+       POSITION *y = (POSITION*)(v);
        cave_type *ca_ptr = &cave[y[a]][x[a]];
        cave_type *cb_ptr = &cave[y[b]][x[b]];
        monster_type *ma_ptr = &m_list[ca_ptr->m_idx];
@@ -2699,10 +2549,10 @@ static bool ang_sort_comp_importance(vptr u, vptr v, int a, int b)
  */
 static void ang_sort_swap_distance(vptr u, vptr v, int a, int b)
 {
-       byte *x = (byte*)(u);
-       byte *y = (byte*)(v);
+       POSITION *x = (POSITION*)(u);
+       POSITION *y = (POSITION*)(v);
 
-       byte temp;
+       POSITION temp;
 
        /* Swap "x" */
        temp = x[a];
@@ -2720,13 +2570,11 @@ static void ang_sort_swap_distance(vptr u, vptr v, int a, int b)
 /*
  * Hack -- help "select" a location (see below)
  */
-static s16b target_pick(int y1, int x1, int dy, int dx)
+static POSITION_IDX target_pick(POSITION y1, POSITION x1, POSITION dy, POSITION dx)
 {
-       int i, v;
-
-       int x2, y2, x3, y3, x4, y4;
-
-       int b_i = -1, b_v = 9999;
+       POSITION_IDX i, v;
+       POSITION x2, y2, x3, y3, x4, y4;
+       POSITION_IDX b_i = -1, b_v = 9999;
 
 
        /* Scan the locations */
@@ -2755,7 +2603,7 @@ static s16b target_pick(int y1, int x1, int dy, int dx)
                /* Approximate Double Distance */
                v = ((x4 > y4) ? (x4 + x4 + y4) : (y4 + y4 + x4));
 
-               /* XXX XXX XXX Penalize location */
+               /* Penalize location */
 
                /* Track best */
                if ((b_i >= 0) && (v >= b_v)) continue;
@@ -2763,8 +2611,6 @@ static s16b target_pick(int y1, int x1, int dy, int dx)
                /* Track best */
                b_i = i; b_v = v;
        }
-
-       /* Result */
        return (b_i);
 }
 
@@ -2772,11 +2618,10 @@ static s16b target_pick(int y1, int x1, int dy, int dx)
 /*
  * Hack -- determine if a given location is "interesting"
  */
-static bool target_set_accept(int y, int x)
+static bool target_set_accept(POSITION y, POSITION x)
 {
        cave_type *c_ptr;
-
-       s16b this_o_idx, next_o_idx = 0;
+       OBJECT_IDX this_o_idx, next_o_idx = 0;
 
        /* Bounds */
        if (!(in_bounds(y, x))) return (FALSE);
@@ -2784,11 +2629,9 @@ static bool target_set_accept(int y, int x)
        /* Player grid is always interesting */
        if (player_bold(y, x)) return (TRUE);
 
-
        /* Handle hallucination */
        if (p_ptr->image) return (FALSE);
 
-
        /* Examine the grid */
        c_ptr = &cave[y][x];
 
@@ -2805,8 +2648,6 @@ static bool target_set_accept(int y, int x)
        for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
        {
                object_type *o_ptr;
-
-               /* Acquire object */
                o_ptr = &o_list[this_o_idx];
 
                /* Acquire next object */
@@ -2826,7 +2667,6 @@ static bool target_set_accept(int y, int x)
                if (have_flag(f_info[get_feat_mimic(c_ptr)].flags, FF_NOTICE)) return TRUE;
        }
 
-       /* Nope */
        return (FALSE);
 }
 
@@ -2836,10 +2676,10 @@ static bool target_set_accept(int y, int x)
  *
  * Return the number of target_able monsters in the set.
  */
-static void target_set_prepare(int mode)
+static void target_set_prepare(BIT_FLAGS mode)
 {
-       int y, x;
-       int min_hgt, max_hgt, min_wid, max_wid;
+       POSITION y, x;
+       POSITION min_hgt, max_hgt, min_wid, max_wid;
 
        if (mode & TARGET_KILL)
        {
@@ -2904,7 +2744,7 @@ static void target_set_prepare(int mode)
 
        if (p_ptr->riding && target_pet && (temp_n > 1) && (mode & (TARGET_KILL)))
        {
-               byte tmp;
+               POSITION tmp;
 
                tmp = temp_y[0];
                temp_y[0] = temp_y[1];
@@ -2915,7 +2755,7 @@ static void target_set_prepare(int mode)
        }
 }
 
-void target_set_prepare_look(){
+void target_set_prepare_look(void){
        target_set_prepare(TARGET_LOOK);
 }
 
@@ -2994,23 +2834,22 @@ bool show_gold_on_floor = FALSE;
  * recall info and the health bar info to track that monster.
  *
  * Eventually, we may allow multiple objects per grid, or objects
- * and terrain features in the same grid. XXX XXX XXX
+ * and terrain features in the same grid. 
  *
  * This function must handle blindness/hallucination.
  */
-static int target_set_aux(int y, int x, int mode, cptr info)
+static char target_set_aux(POSITION y, POSITION x, BIT_FLAGS mode, cptr info)
 {
        cave_type *c_ptr = &cave[y][x];
-       s16b this_o_idx, next_o_idx = 0;
+       OBJECT_IDX this_o_idx, next_o_idx = 0;
        cptr s1 = "", s2 = "", s3 = "", x_info = "";
        bool boring = TRUE;
-       s16b feat;
+       FEAT_IDX feat;
        feature_type *f_ptr;
-       int query = '\001';
+       char query = '\001';
        char out_val[MAX_NLEN+80];
-
-#ifdef ALLOW_EASY_FLOOR
-       int floor_list[23], floor_num = 0;
+       OBJECT_IDX floor_list[23];
+       ITEM_NUMBER floor_num = 0;
 
        /* Scan all objects in the grid */
        if (easy_floor)
@@ -3023,8 +2862,6 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                }
        }
 
-#endif /* ALLOW_EASY_FLOOR */
-
        /* Hack -- under the player */
        if (player_bold(y, x))
        {
@@ -3088,8 +2925,6 @@ static int target_set_aux(int y, int x, int mode, cptr info)
 
                /* Hack -- health bar for this monster */
                health_track(c_ptr->m_idx);
-
-               /* Hack -- handle stuff */
                handle_stuff();
 
                /* Interact */
@@ -3179,8 +3014,6 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                        char o_name[MAX_NLEN];
 
                        object_type *o_ptr;
-
-                       /* Acquire object */
                        o_ptr = &o_list[this_o_idx];
 
                        /* Acquire next object */
@@ -3189,7 +3022,6 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                        /* Obtain an object description */
                        object_desc(o_name, o_ptr, 0);
 
-                       /* Describe the object */
 #ifdef JP
                        sprintf(out_val, "%s%s%s%s[%s]", s1, o_name, s2, s3, info);
 #else
@@ -3219,8 +3051,6 @@ static int target_set_aux(int y, int x, int mode, cptr info)
 #endif
        }
 
-
-#ifdef ALLOW_EASY_FLOOR
        if (floor_num)
        {
                int min_width = 0;
@@ -3232,20 +3062,14 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                                char o_name[MAX_NLEN];
 
                                object_type *o_ptr;
-
-                               /* Acquire object */
                                o_ptr = &o_list[floor_list[0]];
 
-                               /* Describe the object */
                                object_desc(o_name, o_ptr, 0);
 
-                               /* Message */
 #ifdef JP
-                               sprintf(out_val, "%s%s%s%s[%s]",
-                                       s1, o_name, s2, s3, info);
+                               sprintf(out_val, "%s%s%s%s[%s]", s1, o_name, s2, s3, info);
 #else
-                               sprintf(out_val, "%s%s%s%s [%s]",
-                                       s1, s2, s3, o_name, info);
+                               sprintf(out_val, "%s%s%s%s [%s]", s1, s2, s3, o_name, info);
 #endif
 
                                prt(out_val, 0, 0);
@@ -3263,11 +3087,9 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                        {
                                /* Display rough information about items */
 #ifdef JP
-                               sprintf(out_val, "%s %d個のアイテム%s%s ['x'で一覧, %s]",
-                                       s1, floor_num, s2, s3, info);
+                               sprintf(out_val, "%s %d個のアイテム%s%s ['x'で一覧, %s]", s1, (int)floor_num, s2, s3, info);
 #else
-                               sprintf(out_val, "%s%s%sa pile of %d items [x,%s]",
-                                       s1, s2, s3, floor_num, info);
+                               sprintf(out_val, "%s%s%sa pile of %d items [x,%s]", s1, s2, s3, (int)floor_num, info);
 #endif
 
                                prt(out_val, 0, 0);
@@ -3286,9 +3108,8 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                        /* Continue scrolling list if requested */
                        while (1)
                        {
-                               int i, o_idx;
-
-                               /* Save screen */
+                               int i;
+                               OBJECT_IDX o_idx;
                                screen_save();
 
                                /* Display */
@@ -3298,19 +3119,13 @@ static int target_set_aux(int y, int x, int mode, cptr info)
 
                                /* Prompt */
 #ifdef JP
-                               sprintf(out_val, "%s %d個のアイテム%s%s [Enterで次へ, %s]",
-                                       s1, floor_num, s2, s3, info);
+                               sprintf(out_val, "%s %d個のアイテム%s%s [Enterで次へ, %s]", s1, (int)floor_num, s2, s3, info);
 #else
-                               sprintf(out_val, "%s%s%sa pile of %d items [Enter,%s]",
-                                       s1, s2, s3, floor_num, info);
+                               sprintf(out_val, "%s%s%sa pile of %d items [Enter,%s]", s1, s2, s3, (int)floor_num, info);
 #endif
                                prt(out_val, 0, 0);
 
-
-                               /* Wait */
                                query = inkey();
-
-                               /* Load screen */
                                screen_load();
 
                                /* Exit unless 'Enter' */
@@ -3342,15 +3157,11 @@ static int target_set_aux(int y, int x, int mode, cptr info)
 
                /* NOTREACHED */
        }
-#endif /* ALLOW_EASY_FLOOR */
-
 
        /* Scan all objects in the grid */
        for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
        {
                object_type *o_ptr;
-
-               /* Acquire object */
                o_ptr = &o_list[this_o_idx];
 
                /* Acquire next object */
@@ -3367,7 +3178,6 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                        /* Obtain an object description */
                        object_desc(o_name, o_ptr, 0);
 
-                       /* Describe the object */
 #ifdef JP
                        sprintf(out_val, "%s%s%s%s[%s]", s1, o_name, s2, s3, info);
 #else
@@ -3423,7 +3233,7 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                if (have_flag(f_ptr->flags, FF_QUEST_ENTER))
                {
                        /* Set the quest number temporary */
-                       int old_quest = p_ptr->inside_quest;
+                       IDX old_quest = p_ptr->inside_quest;
                        int j;
 
                        /* Clear the text */
@@ -3510,9 +3320,9 @@ static int target_set_aux(int y, int x, int mode, cptr info)
                        if (c_ptr->mimic) sprintf(f_idx_str, "%d/%d", c_ptr->feat, c_ptr->mimic);
                        else sprintf(f_idx_str, "%d", c_ptr->feat);
 #ifdef JP
-                       sprintf(out_val, "%s%s%s%s[%s] %x %s %d %d %d (%d,%d) %d", s1, name, s2, s3, info, c_ptr->info, f_idx_str, c_ptr->dist, c_ptr->cost, c_ptr->when, y, x, travel.cost[y][x]);
+                       sprintf(out_val, "%s%s%s%s[%s] %x %s %d %d %d (%d,%d) %d", s1, name, s2, s3, info, (unsigned int)c_ptr->info, f_idx_str, c_ptr->dist, c_ptr->cost, c_ptr->when, (int)y, (int)x, travel.cost[y][x]);
 #else
-                       sprintf(out_val, "%s%s%s%s [%s] %x %s %d %d %d (%d,%d)", s1, s2, s3, name, info, c_ptr->info, f_idx_str, c_ptr->dist, c_ptr->cost, c_ptr->when, y, x);
+                       sprintf(out_val, "%s%s%s%s [%s] %x %s %d %d %d (%d,%d)", s1, s2, s3, name, info, c_ptr->info, f_idx_str, c_ptr->dist, c_ptr->cost, c_ptr->when, (int)y, (int)x);
 #endif
                }
                else
@@ -3545,10 +3355,10 @@ static int target_set_aux(int y, int x, int mode, cptr info)
  *
  * All locations must be on the current panel.  Consider the use of
  * "panel_bounds()" to allow "off-panel" targets, perhaps by using
- * some form of "scrolling" the map around the cursor.  XXX XXX XXX
+ * some form of "scrolling" the map around the cursor.  
  * That is, consider the possibility of "auto-scrolling" the screen
  * while the cursor moves around.  This may require changes in the
- * "update_mon()" code to allow "visibility" even if off panel, and
+ * "update_monster()" code to allow "visibility" even if off panel, and
  * may require dynamic recalculation of the "temp" grid set.
  *
  * Hack -- targeting/observing an "outer border grid" may induce
@@ -3579,27 +3389,22 @@ static int target_set_aux(int y, int x, int mode, cptr info)
  * This command will cancel any old target, even if used from
  * inside the "look" command.
  */
-bool target_set(int mode)
+bool target_set(BIT_FLAGS mode)
 {
        int             i, d, m, t, bd;
-       int             y = p_ptr->y;
-       int             x = p_ptr->x;
+       POSITION y = p_ptr->y;
+       POSITION x = p_ptr->x;
 
        bool    done = FALSE;
-
        bool    flag = TRUE;
-
        char    query;
-
        char    info[80];
-
        char    same_key;
 
        cave_type               *c_ptr;
 
        int wid, hgt;
        
-       /* Get size */
        get_screen_size(&wid, &hgt);
 
        /* Cancel target */
@@ -3652,6 +3457,15 @@ bool target_set(int mode)
                        {
                                strcpy(info, _("q止 p自 o現 +次 -前", "q,p,o,+,-,<dir>"));
                        }
+
+                       if (cheat_sight)
+                       {
+                               char cheatinfo[30];
+                               sprintf(cheatinfo, " LOS:%d, PROJECTABLE:%d",
+                                       los(p_ptr->y, p_ptr->x, y, x),
+                                       projectable(p_ptr->y, p_ptr->x, y, x));
+                               strcat(info, cheatinfo);
+                       }
                        
                        /* Describe and Prompt */
                        while (TRUE){
@@ -3727,16 +3541,11 @@ bool target_set(int mode)
                                        /* 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);
-
-                                       /* Handle stuff */
                                        handle_stuff();
 
                                        /* Recalculate interesting grids */
@@ -3781,8 +3590,8 @@ bool target_set(int mode)
                        if (d)
                        {
                                /* Modified to scroll to monster */
-                               int y2 = panel_row_min;
-                               int x2 = panel_col_min;
+                               POSITION y2 = panel_row_min;
+                               POSITION x2 = panel_col_min;
 
                                /* Find a new monster */
                                i = target_pick(temp_y[m], temp_x[m], ddy[d], ddx[d]);
@@ -3820,16 +3629,11 @@ bool target_set(int mode)
                                                panel_col_min = x2;
                                                panel_bounds_center();
 
-                                               /* Update stuff */
                                                p_ptr->update |= (PU_MONSTERS);
 
-                                               /* Redraw map */
                                                p_ptr->redraw |= (PR_MAP);
 
-                                               /* Window stuff */
                                                p_ptr->window |= (PW_OVERHEAD);
-
-                                               /* Handle stuff */
                                                handle_stuff();
 
                                                /* Recalculate interesting grids */
@@ -3891,8 +3695,17 @@ bool target_set(int mode)
                        /* Default prompt */
                        strcpy(info, _("q止 t決 p自 m近 +次 -前", "q,t,p,m,+,-,<dir>"));
 
+                       if (cheat_sight)
+                       {
+                               char cheatinfo[30];
+                               sprintf(cheatinfo, " LOS:%d, PROJECTABLE:%d",
+                                       los(p_ptr->y, p_ptr->x, y, x),
+                                       projectable(p_ptr->y, p_ptr->x, y, x));
+                               strcat(info, cheatinfo);
+                       }
+
                        /* Describe and Prompt (enable "TARGET_LOOK") */
-                       while (!(query = target_set_aux(y, x, mode | TARGET_LOOK, info)));
+                       while ((query = target_set_aux(y, x, mode | TARGET_LOOK, info)) == 0);
 
                        /* Cancel tracking */
                        /* health_track(0); */
@@ -3932,16 +3745,11 @@ bool target_set(int mode)
                                        /* 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);
-
-                                       /* Handle stuff */
                                        handle_stuff();
 
                                        /* Recalculate interesting grids */
@@ -4059,16 +3867,11 @@ bool target_set(int mode)
        /* 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);
-
-       /* Handle stuff */
        handle_stuff();
 
        /* Failure to set target */
@@ -4090,15 +3893,13 @@ bool target_set(int mode)
  *
  * Note that confusion over-rides any (explicit?) user choice.
  */
-bool get_aim_dir(int *dp)
+bool get_aim_dir(DIRECTION *dp)
 {
-       int             dir;
-
+       DIRECTION dir;
        char    command;
-
        cptr    p;
+       COMMAND_CODE code;
 
-       /* Initialize */
        (*dp) = 0;
 
        /* Global direction */
@@ -4107,21 +3908,18 @@ bool get_aim_dir(int *dp)
        /* Hack -- auto-target if requested */
        if (use_old_target && target_okay()) dir = 5;
 
-#ifdef ALLOW_REPEAT /* TNB */
-
-       if (repeat_pull(dp))
+       if (repeat_pull(&code))
        {
                /* Confusion? */
 
                /* Verify */
-               if (!(*dp == 5 && !target_okay()))
+               if (!(code == 5 && !target_okay()))
                {
 /*                     return (TRUE); */
-                       dir = *dp;
+                       dir = (DIRECTION)code;
                }
        }
-
-#endif /* ALLOW_REPEAT -- TNB */
+       *dp = (DIRECTION)code;
 
        /* Ask until satisfied */
        while (!dir)
@@ -4196,7 +3994,6 @@ bool get_aim_dir(int *dp)
        /* Check for confusion */
        if (p_ptr->confused)
        {
-               /* XXX XXX XXX */
                /* Random direction */
                dir = ddd[randint0(8)];
        }
@@ -4211,57 +4008,33 @@ bool get_aim_dir(int *dp)
        /* Save direction */
        (*dp) = dir;
 
-#ifdef ALLOW_REPEAT /* TNB */
-
 /*     repeat_push(dir); */
-       repeat_push(command_dir);
-
-#endif /* ALLOW_REPEAT -- TNB */
+       repeat_push((COMMAND_CODE)command_dir);
 
        /* A "valid" direction was entered */
        return (TRUE);
 }
 
 
-
-/*
- * Request a "movement" direction (1,2,3,4,6,7,8,9) from the user,
- * and place it into "command_dir", unless we already have one.
- *
- * This function should be used for all "repeatable" commands, such as
- * run, walk, open, close, bash, disarm, spike, tunnel, etc, as well
- * as all commands which must reference a grid adjacent to the player,
- * and which may not reference the grid under the player.  Note that,
- * for example, it is no longer possible to "disarm" or "open" chests
- * in the same grid as the player.
- *
- * Direction "5" is illegal and will (cleanly) abort the command.
- *
- * This function tracks and uses the "global direction", and uses
- * that as the "desired direction", to which "confusion" is applied.
- */
-bool get_rep_dir(int *dp, bool under)
+bool get_direction(DIRECTION *dp, bool allow_under, bool with_steed)
 {
-       int dir;
+       DIRECTION dir;
        cptr prompt;
+       COMMAND_CODE code;
 
-       /* Initialize */
        (*dp) = 0;
 
        /* Global direction */
        dir = command_dir;
 
-#ifdef ALLOW_REPEAT /* TNB */
-
-       if (repeat_pull(dp))
+       if (repeat_pull(&code))
        {
-               dir = *dp;
-/*             return (TRUE); */
+               dir = (DIRECTION)code;
+               /*              return (TRUE); */
        }
+       *dp = (DIRECTION)code;
 
-#endif /* ALLOW_REPEAT -- TNB */
-
-       if (under)
+       if (allow_under)
        {
                prompt = _("方向 ('.'足元, ESCで中断)? ", "Direction ('.' at feet, Escape to cancel)? ");
        }
@@ -4269,7 +4042,7 @@ bool get_rep_dir(int *dp, bool under)
        {
                prompt = _("方向 (ESCで中断)? ", "Direction (Escape to cancel)? ");
        }
-       
+
        /* Get a direction */
        while (!dir)
        {
@@ -4279,7 +4052,7 @@ bool get_rep_dir(int *dp, bool under)
                if (!get_com(prompt, &ch, TRUE)) break;
 
                /* Look down */
-               if ((under) && ((ch == '5') || (ch == '-') || (ch == '.')))
+               if ((allow_under) && ((ch == '5') || (ch == '-') || (ch == '.')))
                {
                        dir = 5;
                }
@@ -4288,13 +4061,12 @@ bool get_rep_dir(int *dp, bool under)
                        /* Look up the direction */
                        dir = get_keymap_dir(ch);
 
-                       /* Oops */
                        if (!dir) bell();
                }
        }
 
        /* Prevent weirdness */
-       if ((dir == 5) && (!under)) dir = 0;
+       if ((dir == 5) && (!allow_under)) dir = 0;
 
        /* Aborted */
        if (!dir) return (FALSE);
@@ -4312,7 +4084,7 @@ bool get_rep_dir(int *dp, bool under)
                        dir = ddd[randint0(8)];
                }
        }
-       else if (p_ptr->riding)
+       else if (p_ptr->riding && with_steed)
        {
                monster_type *m_ptr = &m_list[p_ptr->riding];
                monster_race *r_ptr = &r_info[m_ptr->r_idx];
@@ -4366,55 +4138,80 @@ bool get_rep_dir(int *dp, bool under)
        /* Save direction */
        (*dp) = dir;
 
-#ifdef ALLOW_REPEAT /* TNB */
-
-/*     repeat_push(dir); */
-       repeat_push(command_dir);
-
-#endif /* ALLOW_REPEAT -- TNB */
+       /*      repeat_push(dir); */
+       repeat_push((COMMAND_CODE)command_dir);
 
        /* Success */
        return (TRUE);
 }
 
-
-bool get_rep_dir2(int *dp)
+/*
+ * @brief 進行方向を指定する(騎乗対象の混乱の影響を受ける) / Request a "movement" direction (1,2,3,4,6,7,8,9) from the user,
+ * and place it into "command_dir", unless we already have one.
+ *
+ * This function should be used for all "repeatable" commands, such as
+ * run, walk, open, close, bash, disarm, spike, tunnel, etc, as well
+ * as all commands which must reference a grid adjacent to the player,
+ * and which may not reference the grid under the player.  Note that,
+ * for example, it is no longer possible to "disarm" or "open" chests
+ * in the same grid as the player.
+ *
+ * Direction "5" is illegal and will (cleanly) abort the command.
+ *
+ * This function tracks and uses the "global direction", and uses
+ * that as the "desired direction", to which "confusion" is applied.
+ */
+bool get_rep_dir(DIRECTION *dp, bool under)
 {
-       int dir;
+       DIRECTION dir;
+       cptr prompt;
+       COMMAND_CODE code;
 
-       /* Initialize */
        (*dp) = 0;
 
        /* Global direction */
        dir = command_dir;
 
-#ifdef ALLOW_REPEAT /* TNB */
-
-       if (repeat_pull(dp))
+       if (repeat_pull(&code))
        {
-               dir = *dp;
+               dir = (DIRECTION)code;
 /*             return (TRUE); */
        }
+       *dp = (DIRECTION)code;
 
-#endif /* ALLOW_REPEAT -- TNB */
-
+       if (under)
+       {
+               prompt = _("方向 ('.'足元, ESCで中断)? ", "Direction ('.' at feet, Escape to cancel)? ");
+       }
+       else
+       {
+               prompt = _("方向 (ESCで中断)? ", "Direction (Escape to cancel)? ");
+       }
+       
        /* Get a direction */
        while (!dir)
        {
                char ch;
 
                /* Get a command (or Cancel) */
-               if (!get_com(_("方向 (ESCで中断)? ", "Direction (Escape to cancel)? "), &ch, TRUE)) break;
+               if (!get_com(prompt, &ch, TRUE)) break;
 
-               /* Look up the direction */
-               dir = get_keymap_dir(ch);
+               /* Look down */
+               if ((under) && ((ch == '5') || (ch == '-') || (ch == '.')))
+               {
+                       dir = 5;
+               }
+               else
+               {
+                       /* Look up the direction */
+                       dir = get_keymap_dir(ch);
 
-               /* Oops */
-               if (!dir) bell();
+                       if (!dir) bell();
+               }
        }
 
        /* Prevent weirdness */
-       if (dir == 5) dir = 0;
+       if ((dir == 5) && (!under)) dir = 0;
 
        /* Aborted */
        if (!dir) return (FALSE);
@@ -4432,23 +4229,62 @@ bool get_rep_dir2(int *dp)
                        dir = ddd[randint0(8)];
                }
        }
+       else if (p_ptr->riding)
+       {
+               monster_type *m_ptr = &m_list[p_ptr->riding];
+               monster_race *r_ptr = &r_info[m_ptr->r_idx];
+
+               if (MON_CONFUSED(m_ptr))
+               {
+                       /* Standard confusion */
+                       if (randint0(100) < 75)
+                       {
+                               /* Random direction */
+                               dir = ddd[randint0(8)];
+                       }
+               }
+               else if ((r_ptr->flags1 & RF1_RAND_50) && (r_ptr->flags1 & RF1_RAND_25) && (randint0(100) < 50))
+               {
+                       /* Random direction */
+                       dir = ddd[randint0(8)];
+               }
+               else if ((r_ptr->flags1 & RF1_RAND_50) && (randint0(100) < 25))
+               {
+                       /* Random direction */
+                       dir = ddd[randint0(8)];
+               }
+       }
 
        /* Notice confusion */
        if (command_dir != dir)
        {
-               /* Warn the user */
-               msg_print(_("あなたは混乱している。", "You are confused."));
+               if (p_ptr->confused)
+               {
+                       /* Warn the user */
+                       msg_print(_("あなたは混乱している。", "You are confused."));
+               }
+               else
+               {
+                       char m_name[80];
+                       monster_type *m_ptr = &m_list[p_ptr->riding];
+
+                       monster_desc(m_name, m_ptr, 0);
+                       if (MON_CONFUSED(m_ptr))
+                       {
+                               msg_format(_("%sは混乱している。", "%^s is confusing."), m_name);
+                       }
+                       else
+                       {
+                               msg_format(_("%sは思い通りに動いてくれない。", "You cannot control %s."), m_name);
+                       }
+               }
        }
 
        /* Save direction */
        (*dp) = dir;
 
-#ifdef ALLOW_REPEAT /* TNB */
-
 /*     repeat_push(dir); */
-       repeat_push(command_dir);
-
-#endif /* ALLOW_REPEAT -- TNB */
+       repeat_push((COMMAND_CODE)command_dir);
 
        /* Success */
        return (TRUE);
@@ -4460,7 +4296,8 @@ void gain_level_reward(int chosen_reward)
        object_type forge;
        char        wrath_reason[32] = "";
        int         nasty_chance = 6;
-       int         dummy = 0, dummy2 = 0;
+       OBJECT_TYPE_VALUE dummy = 0;
+       OBJECT_SUBTYPE_VALUE dummy2 = 0;
        int         type, effect;
        cptr        reward = NULL;
        char o_name[MAX_NLEN];
@@ -4488,27 +4325,13 @@ void gain_level_reward(int chosen_reward)
        type--;
 
 
-#ifdef JP
-sprintf(wrath_reason, "%sの怒り",
-               chaos_patrons[p_ptr->chaos_patron]);
-#else
-       sprintf(wrath_reason, "the Wrath of %s",
-               chaos_patrons[p_ptr->chaos_patron]);
-#endif
-
+       sprintf(wrath_reason, _("%sの怒り", "the Wrath of %s"), chaos_patrons[p_ptr->chaos_patron]);
 
        effect = chaos_rewards[p_ptr->chaos_patron][type];
 
        if (one_in_(6) && !chosen_reward)
        {
-#ifdef JP
-msg_format("%^sは褒美としてあなたを突然変異させた。",
-                       chaos_patrons[p_ptr->chaos_patron]);
-#else
-               msg_format("%^s rewards you with a mutation!",
-                       chaos_patrons[p_ptr->chaos_patron]);
-#endif
-
+               msg_format(_("%^sは褒美としてあなたを突然変異させた。", "%^s rewards you with a mutation!"), chaos_patrons[p_ptr->chaos_patron]);
                (void)gain_random_mutation(0);
                reward = _("変異した。", "mutation");
        }
@@ -4516,29 +4339,19 @@ msg_format("%^sは褒美としてあなたを突然変異させた。",
        {
        switch (chosen_reward ? chosen_reward : effect)
        {
+
                case REW_POLY_SLF:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「汝、新たなる姿を必要とせり!」", "'Thou needst a new form, mortal!'"));
 
                        do_poly_self();
                        reward = _("変異した。", "polymorphing");
                        break;
+
                case REW_GAIN_EXP:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「汝は良く行いたり!続けよ!」", "'Well done, mortal! Lead on!'"));
 
                        if (p_ptr->prace == RACE_ANDROID)
@@ -4555,15 +4368,10 @@ msg_format("%sの声が響き渡った:",
                                reward = _("経験値を得た", "experience");
                        }
                        break;
+
                case REW_LOSE_EXP:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「下僕よ、汝それに値せず。」", "'Thou didst not deserve that, slave.'"));
 
                        if (p_ptr->prace == RACE_ANDROID)
@@ -4576,9 +4384,10 @@ msg_format("%sの声が響き渡った:",
                                reward = _("経験値を失った。", "losing experience");
                        }
                        break;
+
                case REW_GOOD_OBJ:
 #ifdef JP
-msg_format("%sの声がささやいた:",
+                       msg_format("%sの声がささやいた:",
                                chaos_patrons[p_ptr->chaos_patron]);
 #else
                        msg_format("The voice of %s whispers:",
@@ -4590,32 +4399,20 @@ msg_format("%sの声がささやいた:",
                        acquirement(p_ptr->y, p_ptr->x, 1, FALSE, FALSE, FALSE);
                        reward = _("上質なアイテムを手に入れた。", "a good item");
                        break;
+
                case REW_GREA_OBJ:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「我が与えし物を賢明に使うべし。」", "'Use my gift wisely.'"));
 
                        acquirement(p_ptr->y, p_ptr->x, 1, TRUE, FALSE, FALSE);
                        reward = _("高級品のアイテムを手に入れた。", "an excellent item");
                        break;
+
                case REW_CHAOS_WP:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「汝の行いは貴き剣に値せり。」", "'Thy deed hath earned thee a worthy blade.'"));
-
-                       /* Get local object */
                        q_ptr = &forge;
                        dummy = TV_SWORD;
                        switch (randint1(p_ptr->lev))
@@ -4715,41 +4512,30 @@ msg_format("%sの声が響き渡った:",
                        (void)drop_near(q_ptr, -1, p_ptr->y, p_ptr->x);
                        reward = _("(混沌)の武器を手に入れた。", "chaos weapon");
                        break;
+
                case REW_GOOD_OBS:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「汝の行いは貴き報いに値せり。」", "'Thy deed hath earned thee a worthy reward.'"));
 
                        acquirement(p_ptr->y, p_ptr->x, randint1(2) + 1, FALSE, FALSE, FALSE);
                        reward = _("上質なアイテムを手に入れた。", "good items");
                        break;
+
                case REW_GREA_OBS:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「下僕よ、汝の献身への我が惜しみ無き報いを見るがよい。」", "'Behold, mortal, how generously I reward thy loyalty.'"));
 
                        acquirement(p_ptr->y, p_ptr->x, randint1(2) + 1, TRUE, FALSE, FALSE);
                        reward = _("高級品のアイテムを手に入れた。", "excellent items");
                        break;
+
                case REW_TY_CURSE:
 #ifdef JP
-msg_format("%sの声が轟き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
+                       msg_format("%sの声が轟き渡った:", chaos_patrons[p_ptr->chaos_patron]);
 #else
-                       msg_format("The voice of %s thunders:",
-                               chaos_patrons[p_ptr->chaos_patron]);
+                       msg_format("The voice of %s thunders:", chaos_patrons[p_ptr->chaos_patron]);
 #endif
 
                        msg_print(_("「下僕よ、汝傲慢なり。」", "'Thou art growing arrogant, mortal.'"));
@@ -4757,15 +4543,10 @@ msg_format("%sの声が轟き渡った:",
                        (void)activate_ty_curse(FALSE, &count);
                        reward = _("禍々しい呪いをかけられた。", "cursing");
                        break;
+
                case REW_SUMMON_M:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「我が下僕たちよ、かの傲慢なる者を倒すべし!」", "'My pets, destroy the arrogant mortal!'"));
 
                        for (dummy = 0; dummy < randint1(5) + 1; dummy++)
@@ -4774,23 +4555,21 @@ msg_format("%sの声が響き渡った:",
                        }
                        reward = _("モンスターを召喚された。", "summoning hostile monsters");
                        break;
+
+
                case REW_H_SUMMON:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「汝、より強き敵を必要とせり!」", "'Thou needst worthier opponents!'"));
 
                        activate_hi_summon(p_ptr->y, p_ptr->x, FALSE);
                        reward = _("モンスターを召喚された。", "summoning many hostile monsters");
                        break;
+
+
                case REW_DO_HAVOC:
 #ifdef JP
-msg_format("%sの声が響き渡った:",
+                       msg_format("%sの声が響き渡った:",
                                chaos_patrons[p_ptr->chaos_patron]);
 #else
                        msg_format("The voice of %s booms out:",
@@ -4802,9 +4581,11 @@ msg_format("%sの声が響き渡った:",
                        call_chaos();
                        reward = _("カオスの力が渦巻いた。", "calling chaos");
                        break;
+
+
                case REW_GAIN_ABL:
 #ifdef JP
-msg_format("%sの声が鳴り響いた:",
+                       msg_format("%sの声が鳴り響いた:",
                                chaos_patrons[p_ptr->chaos_patron]);
 #else
                        msg_format("The voice of %s rings out:",
@@ -4819,9 +4600,11 @@ msg_format("%sの声が鳴り響いた:",
                                do_inc_stat(randint0(6));
                        reward = _("能力値が上がった。", "increasing a stat");
                        break;
+
+
                case REW_LOSE_ABL:
 #ifdef JP
-msg_format("%sの声が響き渡った:",
+                       msg_format("%sの声が響き渡った:",
                                chaos_patrons[p_ptr->chaos_patron]);
 #else
                        msg_format("The voice of %s booms out:",
@@ -4836,9 +4619,12 @@ msg_format("%sの声が響き渡った:",
                                (void)do_dec_stat(randint0(6));
                        reward = _("能力値が下がった。", "decreasing a stat");
                        break;
+
+
                case REW_RUIN_ABL:
+
 #ifdef JP
-msg_format("%sの声が轟き渡った:",
+                       msg_format("%sの声が轟き渡った:",
                                chaos_patrons[p_ptr->chaos_patron]);
 #else
                        msg_format("The voice of %s thunders:",
@@ -4854,21 +4640,18 @@ msg_format("%sの声が轟き渡った:",
                        }
                        reward = _("全能力値が下がった。", "decreasing all stats");
                        break;
+
                case REW_POLY_WND:
-                       msg_format(_("%sの力が触れるのを感じた。", "You feel the power of %s touch you."),
 
+                       msg_format(_("%sの力が触れるのを感じた。", "You feel the power of %s touch you."),
                                chaos_patrons[p_ptr->chaos_patron]);
                        do_poly_wounds();
                        reward = _("傷が変化した。", "polymorphing wounds");
                        break;
+
                case REW_AUGM_ABL:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
+
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
 
                        msg_print(_("「我がささやかなる賜物を受けとるがよい!」", "'Receive this modest gift from me!'"));
 
@@ -4878,56 +4661,30 @@ msg_format("%sの声が響き渡った:",
                        }
                        reward = _("全能力値が上がった。", "increasing all stats");
                        break;
+
                case REW_HURT_LOT:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「苦しむがよい、無能な愚か者よ!」", "'Suffer, pathetic fool!'"));
 
                        fire_ball(GF_DISINTEGRATE, 0, p_ptr->lev * 4, 4);
                        take_hit(DAMAGE_NOESCAPE, p_ptr->lev * 4, wrath_reason, -1);
                        reward = _("分解の球が発生した。", "generating disintegration ball");
                        break;
-          case REW_HEAL_FUL:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
-                       msg_print(_("「甦るがよい、我が下僕よ!」", "'Rise, my servant!'"));
+               case REW_HEAL_FUL:
 
-                       restore_level();
-                       (void)set_poisoned(0);
-                       (void)set_blind(0);
-                       (void)set_confused(0);
-                       (void)set_image(0);
-                       (void)set_stun(0);
-                       (void)set_cut(0);
-                       hp_player(5000);
-                       for (dummy = 0; dummy < 6; dummy++)
-                       {
-                               (void)do_res_stat(dummy);
-                       }
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
+                       (void)restore_level();
+                       (void)restore_all_status();
+                       (void)true_healing(5000);
                        reward = _("体力が回復した。", "healing");
                        break;
+
                case REW_CURSE_WP:
-                       if (!buki_motteruka(INVEN_RARM) && !buki_motteruka(INVEN_LARM)) break;
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       if (!buki_motteruka(INVEN_RARM) && !buki_motteruka(INVEN_LARM)) break;
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「汝、武器に頼ることなかれ。」", "'Thou reliest too much on thy weapon.'"));
 
                        dummy = INVEN_RARM;
@@ -4940,16 +4697,11 @@ msg_format("%sの声が響き渡った:",
                        (void)curse_weapon(FALSE, dummy);
                        reward = format(_("%sが破壊された。", "destroying %s"), o_name);
                        break;
+
                case REW_CURSE_AR:
-                       if (!inventory[INVEN_BODY].k_idx) break;
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       if (!inventory[INVEN_BODY].k_idx) break;
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「汝、防具に頼ることなかれ。」", "'Thou reliest too much on thine equipment.'"));
 
                        object_desc(o_name, &inventory[INVEN_BODY], OD_NAME_ONLY);
@@ -4957,14 +4709,8 @@ msg_format("%sの声が響き渡った:",
                        reward = format(_("%sが破壊された。", "destroying %s"), o_name);
                        break;
                case REW_PISS_OFF:
-#ifdef JP
-msg_format("%sの声がささやいた:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s whispers:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声がささやいた:", "The voice of %s whispers:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「我を怒りしめた罪を償うべし。」", "'Now thou shalt pay for annoying me.'"));
 
                        switch (randint1(4))
@@ -5008,10 +4754,10 @@ msg_format("%sの声がささやいた:",
                                        break;
                        }
                        break;
+
                case REW_WRATH:
-                       msg_format(_("%sの声が轟き渡った:", "The voice of %s thunders:"),
 
-                               chaos_patrons[p_ptr->chaos_patron]);
+                       msg_format(_("%sの声が轟き渡った:", "The voice of %s thunders:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「死ぬがよい、下僕よ!」", "'Die, mortal!'"));
 
                        take_hit(DAMAGE_LOSELIFE, p_ptr->lev * 4, wrath_reason, -1);
@@ -5036,70 +4782,46 @@ msg_format("%sの声がささやいた:",
                        }
                        if (one_in_(2)) (void)curse_armor();
                        break;
+
                case REW_DESTRUCT:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「死と破壊こそ我が喜びなり!」", "'Death and destruction! This pleaseth me!'"));
 
                        (void)destroy_area(p_ptr->y, p_ptr->x, 25, FALSE);
                        reward = _("ダンジョンが*破壊*された。", "*destruct*ing dungeon");
                        break;
+
                case REW_GENOCIDE:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「我、汝の敵を抹殺せん!」", "'Let me relieve thee of thine oppressors!'"));
-
                        (void)symbol_genocide(0, FALSE);
                        reward = _("モンスターが抹殺された。", "genociding monsters");
                        break;
+
                case REW_MASS_GEN:
-#ifdef JP
-msg_format("%sの声が響き渡った:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("The voice of %s booms out:",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの声が響き渡った:", "The voice of %s booms out:"), chaos_patrons[p_ptr->chaos_patron]);
                        msg_print(_("「我、汝の敵を抹殺せん!」", "'Let me relieve thee of thine oppressors!'"));
 
                        (void)mass_genocide(0, FALSE);
                        reward = _("モンスターが抹殺された。", "genociding nearby monsters");
                        break;
+
                case REW_DISPEL_C:
-#ifdef JP
-msg_format("%sの力が敵を攻撃するのを感じた!",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("You can feel the power of %s assault your enemies!",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sの力が敵を攻撃するのを感じた!", "You can feel the power of %s assault your enemies!"), chaos_patrons[p_ptr->chaos_patron]);
                        (void)dispel_monsters(p_ptr->lev * 4);
                        break;
+
                case REW_IGNORE:
-#ifdef JP
-msg_format("%sはあなたを無視した。",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#else
-                       msg_format("%s ignores you.",
-                               chaos_patrons[p_ptr->chaos_patron]);
-#endif
 
+                       msg_format(_("%sはあなたを無視した。", "%s ignores you."), chaos_patrons[p_ptr->chaos_patron]);
                        break;
+
                case REW_SER_DEMO:
+
                        msg_format(_("%sは褒美として悪魔の使いをよこした!", "%s rewards you with a demonic servant!"),chaos_patrons[p_ptr->chaos_patron]);
 
                        if (!summon_specific(-1, p_ptr->y, p_ptr->x, dun_level, SUMMON_DEMON, PM_FORCE_PET))
@@ -5108,6 +4830,7 @@ msg_format("%sはあなたを無視した。",
                                reward = _("悪魔がペットになった。", "a demonic servant");
 
                        break;
+
                case REW_SER_MONS:
                        msg_format(_("%sは褒美として使いをよこした!", "%s rewards you with a servant!"),chaos_patrons[p_ptr->chaos_patron]);
 
@@ -5117,6 +4840,7 @@ msg_format("%sはあなたを無視した。",
                                reward = _("モンスターがペットになった。", "a servant");
 
                        break;
+
                case REW_SER_UNDE:
                        msg_format(_("%sは褒美としてアンデッドの使いをよこした。", "%s rewards you with an undead servant!"),chaos_patrons[p_ptr->chaos_patron]);
 
@@ -5126,6 +4850,7 @@ msg_format("%sはあなたを無視した。",
                                reward = _("アンデッドがペットになった。", "an undead servant");
 
                        break;
+
                default:
                        msg_format(_("%sの声がどもった:", "The voice of %s stammers:"),
 
@@ -5145,7 +4870,7 @@ msg_format("%sはあなたを無視した。",
  * XAngband: determine if a given location is "interesting"
  * based on target_set_accept function.
  */
-static bool tgt_pt_accept(int y, int x)
+static bool tgt_pt_accept(POSITION y, POSITION x)
 {
        cave_type *c_ptr;
 
@@ -5173,7 +4898,6 @@ static bool tgt_pt_accept(int y, int x)
                if (cave_have_flag_grid(c_ptr, FF_QUEST_EXIT)) return (TRUE);
        }
 
-       /* Nope */
        return (FALSE);
 }
 
@@ -5184,7 +4908,7 @@ static bool tgt_pt_accept(int y, int x)
  */
 static void tgt_pt_prepare(void)
 {
-       int y, x;
+       POSITION y, x;
 
        /* Reset "temp" array */
        temp_n = 0;
@@ -5217,15 +4941,15 @@ static void tgt_pt_prepare(void)
 /*
  * old -- from PsiAngband.
  */
-bool tgt_pt(int *x_ptr, int *y_ptr)
+bool tgt_pt(POSITION *x_ptr, POSITION *y_ptr)
 {
        char ch = 0;
-       int d, x, y, n = 0;
+       int d, n = 0;
+       POSITION x, y;
        bool success = FALSE;
 
        int wid, hgt;
 
-       /* Get size */
        get_screen_size(&wid, &hgt);
 
        x = p_ptr->x;
@@ -5293,16 +5017,11 @@ bool tgt_pt(int *x_ptr, int *y_ptr)
                                        x = p_ptr->x;
                                        verify_panel(); /* Move cursor to player */
 
-                                       /* Update stuff */
                                        p_ptr->update |= (PU_MONSTERS);
 
-                                       /* Redraw map */
                                        p_ptr->redraw |= (PR_MAP);
 
-                                       /* Window stuff */
                                        p_ptr->window |= (PW_OVERHEAD);
-
-                                       /* Handle stuff */
                                        handle_stuff();
                                }
                                else    /* move cursor to next stair and change panel */
@@ -5384,16 +5103,11 @@ bool tgt_pt(int *x_ptr, int *y_ptr)
        /* 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);
-
-       /* Handle stuff */
        handle_stuff();
 
        *x_ptr = x;
@@ -5402,14 +5116,12 @@ bool tgt_pt(int *x_ptr, int *y_ptr)
 }
 
 
-bool get_hack_dir(int *dp)
+bool get_hack_dir(DIRECTION *dp)
 {
-       int             dir;
+       DIRECTION dir;
        cptr    p;
        char    command;
 
-
-       /* Initialize */
        (*dp) = 0;
 
        /* Global direction */
@@ -5486,7 +5198,6 @@ bool get_hack_dir(int *dp)
        /* Check for confusion */
        if (p_ptr->confused)
        {
-               /* XXX XXX XXX */
                /* Random direction */
                dir = ddd[randint0(8)];
        }
@@ -5529,12 +5240,14 @@ s16b gain_energy(void)
 }
 
 
-/*
- * Return bow energy 
+/*!
+ * @brief 射撃武器の攻撃に必要な基本消費エネルギーを返す/Return bow energy
+ * @param sval 射撃武器のアイテム副分類ID 
+ * @return 消費する基本エネルギー
  */
-s16b bow_energy(int sval)
+ENERGY bow_energy(OBJECT_SUBTYPE_VALUE sval)
 {
-       int energy = 100;
+       ENERGY energy = 10000;
 
        /* Analyze the launcher */
        switch (sval)
@@ -5589,7 +5302,7 @@ s16b bow_energy(int sval)
 /*
  * Return bow tmul
  */
-int bow_tmul(int sval)
+int bow_tmul(OBJECT_SUBTYPE_VALUE sval)
 {
        int tmul = 0;
 
@@ -5710,10 +5423,10 @@ int spell_exp_level(int spell_exp)
  * Display a rumor and apply its effects
  */
 
-int rumor_num(char *zz, int max_idx)
+IDX rumor_num(char *zz, IDX max_idx)
 {
        if (strcmp(zz, "*") == 0) return randint1(max_idx - 1);
-       return atoi(zz);
+       return (IDX)atoi(zz);
 }
 
 cptr rumor_bind_name(char *base, cptr fullname)
@@ -5736,7 +5449,7 @@ cptr rumor_bind_name(char *base, cptr fullname)
 
 void display_rumor(bool ex)
 {
-       bool err;
+       errr err;
        int section = 0;
        char Rumor[1024];
 
@@ -5762,7 +5475,7 @@ void display_rumor(bool ex)
                {
                        if (strcmp(zz[0], "ARTIFACT") == 0)
                        {
-                               int a_idx, k_idx;
+                               IDX a_idx, k_idx;
                                object_type forge;
                                object_type *q_ptr = &forge;
                                artifact_type *a_ptr;
@@ -5783,7 +5496,7 @@ void display_rumor(bool ex)
                        }
                        else if  (strcmp(zz[0], "MONSTER") == 0)
                        {
-                               int r_idx;
+                               MONRACE_IDX r_idx;
                                monster_race *r_ptr;
 
                                while(1)
@@ -5801,9 +5514,9 @@ void display_rumor(bool ex)
                                        r_ptr->r_sights++;
                                }
                        }
-                       else if  (strcmp(zz[0], "DUNGEON") == 0)
+                       else if (strcmp(zz[0], "DUNGEON") == 0)
                        {
-                               int d_idx;
+                               DUNGEON_IDX d_idx;
                                dungeon_info_type *d_ptr;
 
                                while (1)
@@ -5823,7 +5536,7 @@ void display_rumor(bool ex)
                        }
                        else if  (strcmp(zz[0], "TOWN") == 0)
                        {
-                               int t_idx;
+                               IDX t_idx;
                                s32b visit;
 
                                while(1)