OSDN Git Service

In English description for "Vampire's Fang" change "to" to "on" to be more idiomatic.
[hengbandforosx/hengbandosx.git] / src / xtra2.c
index a8cc18c..33deb9f 100644 (file)
@@ -167,7 +167,6 @@ void verify_panel(void)
        /* Hack -- optional disturb on "panel change" */
        if (disturb_panel && !center_player) disturb(FALSE, FALSE);
 
-       /* Recalculate the boundaries */
        panel_bounds_center();
 
        p_ptr->update |= (PU_MONSTERS);
@@ -176,11 +175,8 @@ void verify_panel(void)
 }
 
 
-
-
 /*** Targeting Code ***/
 
-
 /*
  * Determine is a monster makes a reasonable target
  *
@@ -280,7 +276,6 @@ static POSITION_IDX target_pick(POSITION y1, POSITION x1, POSITION dy, POSITION
                if (dx && (x3 * dx <= 0)) continue;
                if (dy && (y3 * dy <= 0)) continue;
 
-               /* Absolute distance */
                x4 = ABS(x3);
                y4 = ABS(y3);
 
@@ -292,11 +287,7 @@ static POSITION_IDX target_pick(POSITION y1, POSITION x1, POSITION dy, POSITION
                v = ((x4 > y4) ? (x4 + x4 + y4) : (y4 + y4 + x4));
 
                /* Penalize location */
-
-               /* Track best */
                if ((b_i >= 0) && (v >= b_v)) continue;
-
-               /* Track best */
                b_i = i; b_v = v;
        }
        return (b_i);
@@ -311,16 +302,13 @@ static bool target_set_accept(POSITION y, POSITION x)
        grid_type *g_ptr;
        OBJECT_IDX this_o_idx, next_o_idx = 0;
 
-       /* Bounds */
        if (!(in_bounds(y, x))) return (FALSE);
 
        /* Player grid is always interesting */
        if (player_bold(y, x)) return (TRUE);
 
-       /* Handle hallucination */
        if (p_ptr->image) return (FALSE);
 
-       /* Examine the grid */
        g_ptr = &current_floor_ptr->grid_array[y][x];
 
        /* Visible monsters */
@@ -414,20 +402,13 @@ static void target_set_prepare(BIT_FLAGS mode)
        /* Set the sort hooks */
        if (mode & (TARGET_KILL))
        {
-               /* Target the nearest monster for shooting */
-               ang_sort_comp = ang_sort_comp_distance;
-               ang_sort_swap = ang_sort_swap_distance;
+               ang_sort(tmp_pos.x, tmp_pos.y, tmp_pos.n, ang_sort_comp_distance, ang_sort_swap_distance);
        }
        else
        {
-               /* Look important grids first in Look command */
-               ang_sort_comp = ang_sort_comp_importance;
-               ang_sort_swap = ang_sort_swap_distance;
+               ang_sort(tmp_pos.x, tmp_pos.y, tmp_pos.n, ang_sort_comp_importance, ang_sort_swap_distance);
        }
 
-       /* Sort the positions */
-       ang_sort(tmp_pos.x, tmp_pos.y, tmp_pos.n);
-
        if (p_ptr->riding && target_pet && (tmp_pos.n > 1) && (mode & (TARGET_KILL)))
        {
                POSITION tmp;
@@ -1769,7 +1750,7 @@ bool get_direction(DIRECTION *dp, bool allow_under, bool with_steed)
                        monster_desc(m_name, m_ptr, 0);
                        if (MON_CONFUSED(m_ptr))
                        {
-                               msg_format(_("%sは混乱している。", "%^s is confusing."), m_name);
+                               msg_format(_("%sは混乱している。", "%^s is confused."), m_name);
                        }
                        else
                        {
@@ -1914,7 +1895,7 @@ bool get_rep_dir(DIRECTION *dp, bool under)
                        monster_desc(m_name, m_ptr, 0);
                        if (MON_CONFUSED(m_ptr))
                        {
-                               msg_format(_("%sは混乱している。", "%^s is confusing."), m_name);
+                               msg_format(_("%sは混乱している。", "%^s is confused."), m_name);
                        }
                        else
                        {
@@ -1942,16 +1923,13 @@ static bool tgt_pt_accept(POSITION y, POSITION x)
 {
        grid_type *g_ptr;
 
-       /* Bounds */
        if (!(in_bounds(y, x))) return (FALSE);
 
        /* Player grid is always interesting */
        if ((y == p_ptr->y) && (x == p_ptr->x)) return (TRUE);
 
-       /* Handle hallucination */
        if (p_ptr->image) return (FALSE);
 
-       /* Examine the grid */
        g_ptr = &current_floor_ptr->grid_array[y][x];
 
        /* Interesting memorized features */
@@ -1998,12 +1976,8 @@ static void tgt_pt_prepare(void)
                }
        }
 
-       /* Target the nearest monster for shooting */
-       ang_sort_comp = ang_sort_comp_distance;
-       ang_sort_swap = ang_sort_swap_distance;
-
        /* Sort the positions */
-       ang_sort(tmp_pos.x, tmp_pos.y, tmp_pos.n);
+       ang_sort(tmp_pos.x, tmp_pos.y, tmp_pos.n, ang_sort_comp_distance, ang_sort_swap_distance);
 }
 
 /*