X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=src%2Fdungeon.c;h=de15c59d170068065f465a72da92e1b971455f7a;hb=ef5fc5bd6d0b59af4087c2b1f741e8f24860604d;hp=ccd704acb8353cef24faa638b599780449fc9ecb;hpb=d002d68c80e01d6dfb488610529c7b26c12ff71c;p=hengband%2Fhengband.git diff --git a/src/dungeon.c b/src/dungeon.c index ccd704acb..de15c59d1 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -13,98 +13,29 @@ #include "angband.h" #include "cmd-activate.h" #include "cmd-eat.h" +#include "cmd-item.h" #include "cmd-magiceat.h" #include "cmd-quaff.h" #include "cmd-read.h" #include "cmd-usestaff.h" #include "cmd-zaprod.h" #include "cmd-zapwand.h" +#include "cmd-pet.h" +#include "floor-events.h" +#include "object-curse.h" +#include "store.h" +#include "monster-hook.h" static bool load = TRUE; /*!<ロード処理中の分岐フラグ*/ static int wild_regen = 20; /*!<広域マップ移動時の自然回復処理カウンタ(広域マップ1マス毎に20回処理を基本とする)*/ /*! - * @brief 重度擬似鑑定の判断処理 / Return a "feeling" (or NULL) about an item. Method 1 (Heavy). - * @param o_ptr 擬似鑑定を行うオブジェクトの参照ポインタ。 - * @return 擬似鑑定結果のIDを返す。 - */ -static byte value_check_aux1(object_type *o_ptr) -{ - /* Artifacts */ - if (object_is_artifact(o_ptr)) - { - /* Cursed/Broken */ - if (object_is_cursed(o_ptr) || object_is_broken(o_ptr)) return FEEL_TERRIBLE; - - /* Normal */ - return FEEL_SPECIAL; - } - - /* Ego-Items */ - if (object_is_ego(o_ptr)) - { - /* Cursed/Broken */ - if (object_is_cursed(o_ptr) || object_is_broken(o_ptr)) return FEEL_WORTHLESS; - - /* Normal */ - return FEEL_EXCELLENT; - } - - /* Cursed items */ - if (object_is_cursed(o_ptr)) return FEEL_CURSED; - - /* Broken items */ - if (object_is_broken(o_ptr)) return FEEL_BROKEN; - - if ((o_ptr->tval == TV_RING) || (o_ptr->tval == TV_AMULET)) return FEEL_AVERAGE; - - /* Good "armor" bonus */ - if (o_ptr->to_a > 0) return FEEL_GOOD; - - /* Good "weapon" bonus */ - if (o_ptr->to_h + o_ptr->to_d > 0) return FEEL_GOOD; - - /* Default to "average" */ - return FEEL_AVERAGE; -} - -/*! - * @brief 軽度擬似鑑定の判断処理 / Return a "feeling" (or NULL) about an item. Method 2 (Light). - * @param o_ptr 擬似鑑定を行うオブジェクトの参照ポインタ。 - * @return 擬似鑑定結果のIDを返す。 - */ -static byte value_check_aux2(object_type *o_ptr) -{ - /* Cursed items (all of them) */ - if (object_is_cursed(o_ptr)) return FEEL_CURSED; - - /* Broken items (all of them) */ - if (object_is_broken(o_ptr)) return FEEL_BROKEN; - - /* Artifacts -- except cursed/broken ones */ - if (object_is_artifact(o_ptr)) return FEEL_UNCURSED; - - /* Ego-Items -- except cursed/broken ones */ - if (object_is_ego(o_ptr)) return FEEL_UNCURSED; - - /* Good armor bonus */ - if (o_ptr->to_a > 0) return FEEL_UNCURSED; - - /* Good weapon bonuses */ - if (o_ptr->to_h + o_ptr->to_d > 0) return FEEL_UNCURSED; - - /* No feeling */ - return FEEL_NONE; -} - - -/*! * @brief 擬似鑑定を実際に行い判定を反映する * @param slot 擬似鑑定を行うプレイヤーの所持リストID * @param heavy 重度の擬似鑑定を行うならばTRUE * @return なし */ -static void sense_inventory_aux(int slot, bool heavy) +static void sense_inventory_aux(INVENTORY_IDX slot, bool heavy) { byte feel; object_type *o_ptr = &inventory[slot]; @@ -172,7 +103,7 @@ static void sense_inventory_aux(int slot, bool heavy) } /* Stop everything */ - if (disturb_minor) disturb(0, 0); + if (disturb_minor) disturb(FALSE, FALSE); /* Get an object description */ object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY)); @@ -181,8 +112,8 @@ static void sense_inventory_aux(int slot, bool heavy) if (slot >= INVEN_RARM) { #ifdef JP -msg_format("%s%s(%c)は%sという感じがする...", -describe_use(slot),o_name, index_to_label(slot),game_inscriptions[feel]); + msg_format("%s%s(%c)は%sという感じがする...", + describe_use(slot),o_name, index_to_label(slot),game_inscriptions[feel]); #else msg_format("You feel the %s (%c) you are %s %s %s...", o_name, index_to_label(slot), describe_use(slot), @@ -196,8 +127,8 @@ describe_use(slot),o_name, index_to_label(slot),game_inscriptions[feel]); else { #ifdef JP -msg_format("ザックの中の%s(%c)は%sという感じがする...", -o_name, index_to_label(slot),game_inscriptions[feel]); + msg_format("ザックの中の%s(%c)は%sという感じがする...", + o_name, index_to_label(slot),game_inscriptions[feel]); #else msg_format("You feel the %s (%c) in your pack %s %s...", o_name, index_to_label(slot), @@ -219,7 +150,6 @@ o_name, index_to_label(slot),game_inscriptions[feel]); /* Combine / Reorder the pack (later) */ p_ptr->notice |= (PN_COMBINE | PN_REORDER); - /* Window stuff */ p_ptr->window |= (PW_INVEN | PW_EQUIP); } @@ -240,9 +170,9 @@ o_name, index_to_label(slot),game_inscriptions[feel]); */ static void sense_inventory1(void) { - int i; - int plev = p_ptr->lev; - bool heavy = FALSE; + INVENTORY_IDX i; + PLAYER_LEVEL plev = p_ptr->lev; + bool heavy = FALSE; object_type *o_ptr; @@ -265,7 +195,6 @@ static void sense_inventory1(void) /* Heavy sensing */ heavy = TRUE; - /* Done */ break; } @@ -277,7 +206,6 @@ static void sense_inventory1(void) /* Heavy sensing */ heavy = TRUE; - /* Done */ break; } @@ -289,7 +217,6 @@ static void sense_inventory1(void) /* Very bad (light) sensing */ if (0 != randint0(240000L / (plev + 5))) return; - /* Done */ break; } @@ -299,7 +226,6 @@ static void sense_inventory1(void) /* Good (light) sensing */ if (0 != randint0(10000L / (plev * plev + 40))) return; - /* Done */ break; } @@ -312,7 +238,6 @@ static void sense_inventory1(void) /* Heavy sensing */ heavy = TRUE; - /* Done */ break; } @@ -324,7 +249,6 @@ static void sense_inventory1(void) /* Changed! */ heavy = TRUE; - /* Done */ break; } @@ -337,7 +261,6 @@ static void sense_inventory1(void) /* Heavy sensing */ heavy = TRUE; - /* Done */ break; } @@ -347,7 +270,6 @@ static void sense_inventory1(void) /* Bad sensing */ if (0 != randint0(75000L / (plev * plev + 40))) return; - /* Done */ break; } @@ -359,7 +281,6 @@ static void sense_inventory1(void) /* Bad sensing */ if (0 != randint0(55000L / (plev * plev + 40))) return; - /* Done */ break; } @@ -371,7 +292,6 @@ static void sense_inventory1(void) /* Changed! */ heavy = TRUE; - /* Done */ break; } @@ -381,7 +301,6 @@ static void sense_inventory1(void) /* Okay sensing */ if (0 != randint0(20000L / (plev * plev + 40))) return; - /* Done */ break; } @@ -393,7 +312,6 @@ static void sense_inventory1(void) /* Heavy sensing */ heavy = TRUE; - /* Done */ break; } @@ -402,7 +320,6 @@ static void sense_inventory1(void) /* Bad sensing */ if (0 != randint0(65000L / (plev * plev + 40))) return; - /* Done */ break; } case CLASS_BERSERKER: @@ -410,7 +327,6 @@ static void sense_inventory1(void) /* Heavy sensing */ heavy = TRUE; - /* Done */ break; } } @@ -478,8 +394,8 @@ static void sense_inventory1(void) */ static void sense_inventory2(void) { - int i; - int plev = p_ptr->lev; + INVENTORY_IDX i; + PLAYER_LEVEL plev = p_ptr->lev; object_type *o_ptr; @@ -511,7 +427,6 @@ static void sense_inventory2(void) /* Very bad (light) sensing */ if (0 != randint0(240000L / (plev + 5))) return; - /* Done */ break; } @@ -523,7 +438,6 @@ static void sense_inventory2(void) /* Bad sensing */ if (0 != randint0(95000L / (plev * plev + 40))) return; - /* Done */ break; } @@ -536,7 +450,6 @@ static void sense_inventory2(void) /* Good sensing */ if (0 != randint0(20000L / (plev * plev + 40))) return; - /* Done */ break; } @@ -550,7 +463,6 @@ static void sense_inventory2(void) /* Good sensing */ if (0 != randint0(9000L / (plev * plev + 40))) return; - /* Done */ break; } @@ -559,7 +471,6 @@ static void sense_inventory2(void) /* Good sensing */ if (0 != randint0(20000L / ((plev+50)*(plev+50)))) return; - /* Done */ break; } } @@ -744,20 +655,10 @@ static bool pattern_effect(void) switch (pattern_type) { case PATTERN_TILE_END: - (void)set_poisoned(0); (void)set_image(0); - (void)set_stun(0); - (void)set_cut(0); - (void)set_blind(0); - (void)set_afraid(0); - (void)do_res_stat(A_STR); - (void)do_res_stat(A_INT); - (void)do_res_stat(A_WIS); - (void)do_res_stat(A_DEX); - (void)do_res_stat(A_CON); - (void)do_res_stat(A_CHR); + (void)restore_all_status(); (void)restore_level(); - (void)hp_player(1000); + (void)cure_critical_wounds(1000); cave_set_feat(p_ptr->y, p_ptr->x, feat_pattern_old); msg_print(_("「パターン」のこの部分は他の部分より強力でないようだ。", "This section of the Pattern looks less powerful.")); @@ -802,9 +703,9 @@ static bool pattern_effect(void) */ static void regenhp(int percent) { - s32b new_chp; + HIT_POINT new_chp; u32b new_chp_frac; - s32b old_chp; + HIT_POINT old_chp; if (p_ptr->special_defense & KATA_KOUKIJIN) return; if (p_ptr->action == ACTION_HAYAGAKE) return; @@ -837,12 +738,8 @@ static void regenhp(int percent) /* Notice changes */ if (old_chp != p_ptr->chp) { - /* Redraw */ p_ptr->redraw |= (PR_HP); - - /* Window stuff */ p_ptr->window |= (PW_PLAYER); - wild_regen = 20; } } @@ -854,9 +751,9 @@ static void regenhp(int percent) * @param regen_amount 回復量 * @return なし */ -static void regenmana(int upkeep_factor, int regen_amount) +static void regenmana(MANA_POINT upkeep_factor, MANA_POINT regen_amount) { - s32b old_csp = p_ptr->csp; + MANA_POINT old_csp = p_ptr->csp; s32b regen_rate = regen_amount * 100 - upkeep_factor * PY_REGEN_NORMAL; /* @@ -887,7 +784,7 @@ static void regenmana(int upkeep_factor, int regen_amount) else if (regen_rate > 0) { /* (percent/100) is the Regen factor in unit (1/2^16) */ - s32b new_mana = 0; + MANA_POINT new_mana = 0; u32b new_mana_frac = (p_ptr->msp * regen_rate / 100 + PY_REGEN_MNBASE); /* Convert the unit (1/2^16) to (1/2^32) */ @@ -926,17 +823,11 @@ static void regenmana(int upkeep_factor, int regen_amount) } } - - /* Redraw mana */ if (old_csp != p_ptr->csp) { - /* Redraw */ p_ptr->redraw |= (PR_MANA); - - /* Window stuff */ p_ptr->window |= (PW_PLAYER); p_ptr->window |= (PW_SPELL); - wild_regen = 20; } } @@ -948,7 +839,7 @@ static void regenmana(int upkeep_factor, int regen_amount) */ static void regenmagic(int regen_amount) { - s32b new_mana; + MANA_POINT new_mana; int i; int dev = 30; int mult = (dev + adj_mag_mana[p_ptr->stat_ind[A_INT]]); /* x1 to x2 speed bonus for recharging */ @@ -989,7 +880,7 @@ static void regenmagic(int regen_amount) /*! * @brief 100ゲームターン毎のモンスターのHP自然回復処理 / Regenerate the monsters (once per 100 game turns) * @return なし - * @note XXX XXX XXX Should probably be done during monster turns. + * @note Should probably be done during monster turns. */ static void regen_monsters(void) { @@ -1036,7 +927,7 @@ static void regen_monsters(void) /*! * @brief 30ゲームターン毎のボール中モンスターのHP自然回復処理 / Regenerate the captured monsters (once per 30 game turns) * @return なし - * @note XXX XXX XXX Should probably be done during monster turns. + * @note Should probably be done during monster turns. */ static void regen_captured_monsters(void) { @@ -1081,8 +972,6 @@ static void regen_captured_monsters(void) { /* Combine pack */ p_ptr->notice |= (PN_COMBINE); - - /* Window stuff */ p_ptr->window |= (PW_INVEN); p_ptr->window |= (PW_EQUIP); wild_regen = 20; @@ -1099,7 +988,6 @@ static void notice_lite_change(object_type *o_ptr) /* Hack -- notice interesting fuel steps */ if ((o_ptr->xtra4 < 100) || (!(o_ptr->xtra4 % 100))) { - /* Window stuff */ p_ptr->window |= (PW_EQUIP); } @@ -1113,7 +1001,7 @@ static void notice_lite_change(object_type *o_ptr) /* The light is now out */ else if (o_ptr->xtra4 == 0) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("明かりが消えてしまった!", "Your light has gone out!")); /* Recalculate torch radius */ @@ -1129,7 +1017,7 @@ static void notice_lite_change(object_type *o_ptr) if ((o_ptr->xtra4 < 50) && (!(o_ptr->xtra4 % 5)) && (turn % (TURNS_PER_TICK*2))) { - if (disturb_minor) disturb(0, 1); + if (disturb_minor) disturb(FALSE, TRUE); msg_print(_("明かりが微かになってきている。", "Your light is growing faint.")); } } @@ -1137,7 +1025,7 @@ static void notice_lite_change(object_type *o_ptr) /* The light is getting dim */ else if ((o_ptr->xtra4 < 100) && (!(o_ptr->xtra4 % 10))) { - if (disturb_minor) disturb(0, 1); + if (disturb_minor) disturb(FALSE, TRUE); msg_print(_("明かりが微かになってきている。", "Your light is growing faint.")); } } @@ -1217,127 +1105,6 @@ void leave_tower_check(void) } } -/*! - * @brief 超能力者のサイコメトリー処理/ Forcibly pseudo-identify an object in the inventory (or on the floor) - * @return なし - * @todo mind.cにこの関数を移動させるべき。 - * @note - * currently this function allows pseudo-id of any object, - * including silly ones like potions & scrolls, which always - * get '{average}'. This should be changed, either to stop such - * items from being pseudo-id'd, or to allow psychometry to - * detect whether the unidentified potion/scroll/etc is - * good (Cure Light Wounds, Restore Strength, etc) or - * bad (Poison, Weakness etc) or 'useless' (Slime Mold Juice, etc). - */ -bool psychometry(void) -{ - OBJECT_IDX item; - object_type *o_ptr; - char o_name[MAX_NLEN]; - byte feel; - cptr q, s; - bool okay = FALSE; - - item_tester_no_ryoute = TRUE; - /* Get an item */ - q = _("どのアイテムを調べますか?", "Meditate on which item? "); - s = _("調べるアイテムがありません。", "You have nothing appropriate."); - - if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return (FALSE); - - /* Get the item (in the pack) */ - if (item >= 0) - { - o_ptr = &inventory[item]; - } - - /* Get the item (on the floor) */ - else - { - o_ptr = &o_list[0 - item]; - } - - /* It is fully known, no information needed */ - if (object_is_known(o_ptr)) - { - msg_print(_("何も新しいことは判らなかった。", "You cannot find out anything more about that.")); - return TRUE; - } - - /* Check for a feeling */ - feel = value_check_aux1(o_ptr); - - /* Get an object description */ - object_desc(o_name, o_ptr, (OD_OMIT_PREFIX | OD_NAME_ONLY)); - - /* Skip non-feelings */ - if (!feel) - { - msg_format(_("%sからは特に変わった事は感じとれなかった。", "You do not perceive anything unusual about the %s."), o_name); - return TRUE; - } - -#ifdef JP -msg_format("%sは%sという感じがする...", - o_name, game_inscriptions[feel]); -#else - msg_format("You feel that the %s %s %s...", - o_name, ((o_ptr->number == 1) ? "is" : "are"), - game_inscriptions[feel]); -#endif - - - /* We have "felt" it */ - o_ptr->ident |= (IDENT_SENSE); - - /* "Inscribe" it */ - o_ptr->feeling = feel; - - /* Player touches it */ - o_ptr->marked |= OM_TOUCHED; - - /* Combine / Reorder the pack (later) */ - p_ptr->notice |= (PN_COMBINE | PN_REORDER); - - /* Window stuff */ - p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_PLAYER); - - /* Valid "tval" codes */ - switch (o_ptr->tval) - { - case TV_SHOT: - case TV_ARROW: - case TV_BOLT: - case TV_BOW: - case TV_DIGGING: - case TV_HAFTED: - case TV_POLEARM: - case TV_SWORD: - case TV_BOOTS: - case TV_GLOVES: - case TV_HELM: - case TV_CROWN: - case TV_SHIELD: - case TV_CLOAK: - case TV_SOFT_ARMOR: - case TV_HARD_ARMOR: - case TV_DRAG_ARMOR: - case TV_CARD: - case TV_RING: - case TV_AMULET: - case TV_LITE: - case TV_FIGURINE: - okay = TRUE; - break; - } - - /* Auto-inscription/destroy */ - autopick_alter_item(item, (bool)(okay && destroy_feeling)); - - /* Something happened */ - return (TRUE); -} /*! * @brief !!を刻んだ魔道具の時間経過による再充填を知らせる処理 / If player has inscribed the object with "!!", let him know when it's recharged. -LM- @@ -1375,7 +1142,7 @@ static void recharged_notice(object_type *o_ptr) msg_format("Your %s is recharged.", o_name); #endif - disturb(0, 0); + disturb(FALSE, FALSE); /* Done. */ return; @@ -1394,7 +1161,7 @@ static void check_music(void) { const magic_type *s_ptr; int spell; - s32b need_mana; + MANA_POINT need_mana; u32b need_mana_frac; /* Music singed by player */ @@ -1442,7 +1209,6 @@ static void check_music(void) /* Update monsters */ p_ptr->update |= (PU_MONSTERS); - /* Window stuff */ p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON); } } @@ -1465,7 +1231,7 @@ static void check_music(void) * @return 該当の呪いが一つでもあった場合にランダムに選ばれた装備品のオブジェクト構造体参照ポインタを返す。\n * 呪いがない場合NULLを返す。 */ -static object_type *choose_cursed_obj_name(u32b flag) +static object_type *choose_cursed_obj_name(BIT_FLAGS flag) { int i; int choices[INVEN_TOTAL-INVEN_RARM]; @@ -1500,7 +1266,7 @@ static object_type *choose_cursed_obj_name(u32b flag) (flag == TRC_SLOW_REGEN) ) { u32b cf; - u32b flgs[TR_FLAG_SIZE]; + BIT_FLAGS flgs[TR_FLAG_SIZE]; object_flags(o_ptr, flgs); switch (flag) { @@ -1532,6 +1298,70 @@ static object_type *choose_cursed_obj_name(u32b flag) return (&inventory[choices[randint0(number)]]); } +static void process_world_aux_digestion(void) +{ + if (!p_ptr->inside_battle) + { + /* Digest quickly when gorged */ + if (p_ptr->food >= PY_FOOD_MAX) + { + /* Digest a lot of food */ + (void)set_food(p_ptr->food - 100); + } + + /* Digest normally -- Every 50 game turns */ + else if (!(turn % (TURNS_PER_TICK * 5))) + { + /* Basic digestion rate based on speed */ + int digestion = SPEED_TO_ENERGY(p_ptr->pspeed); + + /* Regeneration takes more food */ + if (p_ptr->regenerate) + digestion += 20; + if (p_ptr->special_defense & (KAMAE_MASK | KATA_MASK)) + digestion += 20; + if (p_ptr->cursed & TRC_FAST_DIGEST) + digestion += 30; + + /* Slow digestion takes less food */ + if (p_ptr->slow_digest) + digestion -= 5; + + /* Minimal digestion */ + if (digestion < 1) digestion = 1; + /* Maximal digestion */ + if (digestion > 100) digestion = 100; + + /* Digest some food */ + (void)set_food(p_ptr->food - digestion); + } + + + /* Getting Faint */ + if ((p_ptr->food < PY_FOOD_FAINT)) + { + /* Faint occasionally */ + if (!p_ptr->paralyzed && (randint0(100) < 10)) + { + msg_print(_("あまりにも空腹で気絶してしまった。", "You faint from the lack of food.")); + disturb(TRUE, TRUE); + + /* Hack -- faint (bypass free action) */ + (void)set_paralyzed(p_ptr->paralyzed + 1 + randint0(5)); + } + + /* Starve to death (slowly) */ + if (p_ptr->food < PY_FOOD_STARVE) + { + /* Calculate damage */ + HIT_POINT dam = (PY_FOOD_STARVE - p_ptr->food) / 10; + + if (!IS_INVULN()) take_hit(DAMAGE_LOSELIFE, dam, _("空腹", "starvation"), -1); + } + } + } +} + /*! * @brief 10ゲームターンが進行するごとにプレイヤーのHPとMPの増減処理を行う。 * / Handle timed damage and regeneration every 10 game turns @@ -1552,7 +1382,6 @@ static void process_world_aux_hp_and_sp(void) /* Take damage from poison */ if (p_ptr->poisoned && !IS_INVULN()) { - /* Take damage */ take_hit(DAMAGE_NOESCAPE, 1, _("毒", "poison"), -1); } @@ -1599,11 +1428,9 @@ static void process_world_aux_hp_and_sp(void) dam = 1; } - /* Take damage */ take_hit(DAMAGE_NOESCAPE, dam, _("致命傷", "a fatal wound"), -1); } - /* (Vampires) Take damage from sunlight */ if (prace_is_(RACE_VAMPIRE) || (p_ptr->mimic_form == MIMIC_VAMPIRE)) { @@ -1611,10 +1438,8 @@ static void process_world_aux_hp_and_sp(void) { if ((cave[p_ptr->y][p_ptr->x].info & (CAVE_GLOW | CAVE_MNDK)) == CAVE_GLOW) { - /* Take damage */ msg_print(_("日光があなたのアンデッドの肉体を焼き焦がした!", "The sun's rays scorch your undead flesh!")); take_hit(DAMAGE_NOESCAPE, 1, _("日光", "sunlight"), -1); - cave_no_regen = TRUE; } } @@ -1655,11 +1480,10 @@ static void process_world_aux_hp_and_sp(void) if (damage) { - if (prace_is_(RACE_ENT)) damage += damage / 3; - if (p_ptr->resist_fire) damage = damage / 3; - if (IS_OPPOSE_FIRE()) damage = damage / 3; - - if (p_ptr->levitation) damage = damage / 5; + if(prace_is_(RACE_ENT)) damage += damage / 3; + if(p_ptr->resist_fire) damage = damage / 3; + if(IS_OPPOSE_FIRE()) damage = damage / 3; + if(p_ptr->levitation) damage = damage / 5; damage = damage / 100 + (randint0(100) < (damage % 100)); @@ -1685,7 +1509,6 @@ static void process_world_aux_hp_and_sp(void) { if (p_ptr->total_weight > weight_limit()) { - /* Take damage */ msg_print(_("溺れている!", "You are drowning!")); take_hit(DAMAGE_NOESCAPE, randint1(p_ptr->lev), _("溺れ", "drowning"), -1); cave_no_regen = TRUE; @@ -1694,7 +1517,7 @@ static void process_world_aux_hp_and_sp(void) if (p_ptr->riding) { - int damage; + HIT_POINT damage; if ((r_info[m_list[p_ptr->riding].r_idx].flags2 & RF2_AURA_FIRE) && !p_ptr->immune_fire) { damage = r_info[m_list[p_ptr->riding].r_idx].level / 2; @@ -1732,11 +1555,9 @@ static void process_world_aux_hp_and_sp(void) */ if (!have_flag(f_ptr->flags, FF_MOVE) && !have_flag(f_ptr->flags, FF_CAN_FLY)) { - if (!IS_INVULN() && !p_ptr->wraith_form && !p_ptr->kabenuke && - ((p_ptr->chp > (p_ptr->lev / 5)) || !p_ptr->pass_wall)) + if (!IS_INVULN() && !p_ptr->wraith_form && !p_ptr->kabenuke && ((p_ptr->chp > (p_ptr->lev / 5)) || !p_ptr->pass_wall)) { cptr dam_desc; - cave_no_regen = TRUE; if (p_ptr->pass_wall) @@ -2214,13 +2035,11 @@ static void process_world_aux_mutation(void) /* No effect on the global map */ if (p_ptr->wild_mode) return; - if ((p_ptr->muta2 & MUT2_BERS_RAGE) && one_in_(3000)) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("ウガァァア!", "RAAAAGHH!")); msg_print(_("激怒の発作に襲われた!", "You feel a fit of rage coming over you!")); - (void)set_shero(10 + randint1(p_ptr->lev), FALSE); (void)set_afraid(0); } @@ -2229,7 +2048,7 @@ static void process_world_aux_mutation(void) { if (!p_ptr->resist_fear) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("とても暗い... とても恐い!", "It's so dark... so scary!")); set_afraid(p_ptr->afraid + 13 + randint1(26)); } @@ -2237,12 +2056,9 @@ static void process_world_aux_mutation(void) if ((p_ptr->muta2 & MUT2_RTELEPORT) && (randint1(5000) == 88)) { - if (!p_ptr->resist_nexus && !(p_ptr->muta1 & MUT1_VTELEPORT) && - !p_ptr->anti_tele) + if (!p_ptr->resist_nexus && !(p_ptr->muta1 & MUT1_VTELEPORT) && !p_ptr->anti_tele) { - disturb(0, 1); - - /* Teleport player */ + disturb(FALSE, TRUE); msg_print(_("あなたの位置は突然ひじょうに不確定になった...", "Your position suddenly seems very uncertain...")); msg_print(NULL); teleport_player(40, TELEPORT_PASSIVE); @@ -2253,7 +2069,7 @@ static void process_world_aux_mutation(void) { if (!p_ptr->resist_conf && !p_ptr->resist_chaos) { - disturb(0, 1); + disturb(FALSE, TRUE); p_ptr->redraw |= PR_EXTRA; msg_print(_("いひきがもーろーとひてきたきがふる...ヒック!", "You feel a SSSCHtupor cOmINg over yOu... *HIC*!")); } @@ -2290,7 +2106,7 @@ static void process_world_aux_mutation(void) { if (!p_ptr->resist_chaos) { - disturb(0, 1); + disturb(FALSE, TRUE); p_ptr->redraw |= PR_EXTRA; (void)set_image(p_ptr->image + randint0(50) + 20); } @@ -2298,10 +2114,8 @@ static void process_world_aux_mutation(void) if ((p_ptr->muta2 & MUT2_FLATULENT) && (randint1(3000) == 13)) { - disturb(0, 1); - + disturb(FALSE, TRUE); msg_print(_("ブゥーーッ!おっと。", "BRRAAAP! Oops.")); - msg_print(NULL); fire_ball(GF_POIS, 0, p_ptr->lev, 3); } @@ -2310,7 +2124,7 @@ static void process_world_aux_mutation(void) !p_ptr->anti_magic && one_in_(9000)) { int dire = 0; - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("魔法のエネルギーが突然あなたの中に流れ込んできた!エネルギーを解放しなければならない!", "Magical energy flows through you! You must release it!")); @@ -2320,8 +2134,7 @@ static void process_world_aux_mutation(void) fire_ball(GF_MANA, dire, p_ptr->lev * 2, 3); } - if ((p_ptr->muta2 & MUT2_ATT_DEMON) && - !p_ptr->anti_magic && (randint1(6666) == 666)) + if ((p_ptr->muta2 & MUT2_ATT_DEMON) && !p_ptr->anti_magic && (randint1(6666) == 666)) { bool pet = one_in_(6); BIT_FLAGS mode = PM_ALLOW_GROUP; @@ -2329,17 +2142,16 @@ static void process_world_aux_mutation(void) if (pet) mode |= PM_FORCE_PET; else mode |= (PM_ALLOW_UNIQUE | PM_NO_PET); - if (summon_specific((pet ? -1 : 0), p_ptr->y, p_ptr->x, - dun_level, SUMMON_DEMON, mode)) + if (summon_specific((pet ? -1 : 0), p_ptr->y, p_ptr->x, dun_level, SUMMON_DEMON, mode)) { msg_print(_("あなたはデーモンを引き寄せた!", "You have attracted a demon!")); - disturb(0, 1); + disturb(FALSE, TRUE); } } if ((p_ptr->muta2 & MUT2_SPEED_FLUX) && one_in_(6000)) { - disturb(0, 1); + disturb(FALSE, TRUE); if (one_in_(2)) { msg_print(_("精力的でなくなった気がする。", "You feel less energetic.")); @@ -2370,7 +2182,7 @@ static void process_world_aux_mutation(void) } if ((p_ptr->muta2 & MUT2_BANISH_ALL) && one_in_(9000)) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("突然ほとんど孤独になった気がする。", "You suddenly feel almost lonely.")); banish_monsters(100); @@ -2431,8 +2243,7 @@ static void process_world_aux_mutation(void) unlite_area(50, 10); } - if ((p_ptr->muta2 & MUT2_ATT_ANIMAL) && - !p_ptr->anti_magic && one_in_(7000)) + if ((p_ptr->muta2 & MUT2_ATT_ANIMAL) && !p_ptr->anti_magic && one_in_(7000)) { bool pet = one_in_(3); BIT_FLAGS mode = PM_ALLOW_GROUP; @@ -2443,14 +2254,13 @@ static void process_world_aux_mutation(void) if (summon_specific((pet ? -1 : 0), p_ptr->y, p_ptr->x, dun_level, SUMMON_ANIMAL, mode)) { msg_print(_("動物を引き寄せた!", "You have attracted an animal!")); - disturb(0, 1); + disturb(FALSE, TRUE); } } - if ((p_ptr->muta2 & MUT2_RAW_CHAOS) && - !p_ptr->anti_magic && one_in_(8000)) + if ((p_ptr->muta2 & MUT2_RAW_CHAOS) && !p_ptr->anti_magic && one_in_(8000)) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("周りの空間が歪んでいる気がする!", "You feel the world warping around you!")); msg_print(NULL); @@ -2463,7 +2273,7 @@ static void process_world_aux_mutation(void) } if ((p_ptr->muta2 & MUT2_WRAITH) && !p_ptr->anti_magic && one_in_(3000)) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("非物質化した!", "You feel insubstantial!")); msg_print(NULL); @@ -2475,7 +2285,7 @@ static void process_world_aux_mutation(void) } if ((p_ptr->muta2 & MUT2_WASTING) && one_in_(3000)) { - int which_stat = randint0(6); + int which_stat = randint0(A_MAX); int sustained = FALSE; switch (which_stat) @@ -2505,14 +2315,13 @@ static void process_world_aux_mutation(void) if (!sustained) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("自分が衰弱していくのが分かる!", "You can feel yourself wasting away!")); msg_print(NULL); (void)dec_stat(which_stat, randint1(6) + 6, one_in_(3)); } } - if ((p_ptr->muta2 & MUT2_ATT_DRAGON) && - !p_ptr->anti_magic && one_in_(3000)) + if ((p_ptr->muta2 & MUT2_ATT_DRAGON) && !p_ptr->anti_magic && one_in_(3000)) { bool pet = one_in_(5); BIT_FLAGS mode = PM_ALLOW_GROUP; @@ -2523,11 +2332,10 @@ static void process_world_aux_mutation(void) if (summon_specific((pet ? -1 : 0), p_ptr->y, p_ptr->x, dun_level, SUMMON_DRAGON, mode)) { msg_print(_("ドラゴンを引き寄せた!", "You have attracted a dragon!")); - disturb(0, 1); + disturb(FALSE, TRUE); } } - if ((p_ptr->muta2 & MUT2_WEIRD_MIND) && !p_ptr->anti_magic && - one_in_(3000)) + if ((p_ptr->muta2 & MUT2_WEIRD_MIND) && !p_ptr->anti_magic && one_in_(3000)) { if (p_ptr->tim_esp > 0) { @@ -2540,10 +2348,9 @@ static void process_world_aux_mutation(void) set_tim_esp(p_ptr->lev, FALSE); } } - if ((p_ptr->muta2 & MUT2_NAUSEA) && !p_ptr->slow_digest && - one_in_(9000)) + if ((p_ptr->muta2 & MUT2_NAUSEA) && !p_ptr->slow_digest && one_in_(9000)) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("胃が痙攣し、食事を失った!", "Your stomach roils, and you lose your lunch!")); msg_print(NULL); set_food(PY_FOOD_WEAK); @@ -2551,8 +2358,7 @@ static void process_world_aux_mutation(void) if (hex_spelling_any()) stop_hex_spell_all(); } - if ((p_ptr->muta2 & MUT2_WALK_SHAD) && - !p_ptr->anti_magic && one_in_(12000) && !p_ptr->inside_arena) + if ((p_ptr->muta2 & MUT2_WALK_SHAD) && !p_ptr->anti_magic && one_in_(12000) && !p_ptr->inside_arena) { alter_reality(); } @@ -2560,12 +2366,12 @@ static void process_world_aux_mutation(void) if ((p_ptr->muta2 & MUT2_WARNING) && one_in_(1000)) { int danger_amount = 0; - int monster; + MONSTER_IDX monster; for (monster = 0; monster < m_max; monster++) { - monster_type *m_ptr = &m_list[monster]; - monster_race *r_ptr = &r_info[m_ptr->r_idx]; + monster_type *m_ptr = &m_list[monster]; + monster_race *r_ptr = &r_info[m_ptr->r_idx]; /* Paranoia -- Skip dead monsters */ if (!m_ptr->r_idx) continue; @@ -2589,61 +2395,51 @@ static void process_world_aux_mutation(void) else msg_print(_("寂しい気がする。", "You feel lonely.")); } - if ((p_ptr->muta2 & MUT2_INVULN) && !p_ptr->anti_magic && - one_in_(5000)) + + if ((p_ptr->muta2 & MUT2_INVULN) && !p_ptr->anti_magic && one_in_(5000)) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("無敵な気がする!", "You feel invincible!")); msg_print(NULL); (void)set_invuln(randint1(8) + 8, FALSE); } + if ((p_ptr->muta2 & MUT2_SP_TO_HP) && one_in_(2000)) { - int wounds = p_ptr->mhp - p_ptr->chp; + MANA_POINT wounds = (MANA_POINT)(p_ptr->mhp - p_ptr->chp); if (wounds > 0) { - int healing = p_ptr->csp; - - if (healing > wounds) - { - healing = wounds; - } + HIT_POINT healing = p_ptr->csp; + if (healing > wounds) healing = wounds; hp_player(healing); p_ptr->csp -= healing; - - /* Redraw mana */ - p_ptr->redraw |= (PR_MANA); + p_ptr->redraw |= (PR_HP | PR_MANA); } } - if ((p_ptr->muta2 & MUT2_HP_TO_SP) && !p_ptr->anti_magic && - one_in_(4000)) + + if ((p_ptr->muta2 & MUT2_HP_TO_SP) && !p_ptr->anti_magic && one_in_(4000)) { - int wounds = p_ptr->msp - p_ptr->csp; + HIT_POINT wounds = (HIT_POINT)(p_ptr->msp - p_ptr->csp); if (wounds > 0) { - int healing = p_ptr->chp; - - if (healing > wounds) - { - healing = wounds; - } + HIT_POINT healing = p_ptr->chp; + if (healing > wounds) healing = wounds; p_ptr->csp += healing; - - /* Redraw mana */ - p_ptr->redraw |= (PR_MANA); + p_ptr->redraw |= (PR_HP | PR_MANA); take_hit(DAMAGE_LOSELIFE, healing, _("頭に昇った血", "blood rushing to the head"), -1); } } + if ((p_ptr->muta2 & MUT2_DISARM) && one_in_(10000)) { INVENTORY_IDX slot = 0; object_type *o_ptr = NULL; - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("足がもつれて転んだ!", "You trip over your own feet!")); take_hit(DAMAGE_NOESCAPE, randint1(p_ptr->wt / 6), _("転倒", "tripping"), -1); @@ -2664,13 +2460,13 @@ static void process_world_aux_mutation(void) o_ptr = &inventory[INVEN_LARM]; slot = INVEN_LARM; } - if (slot && !object_is_cursed(o_ptr)) { msg_print(_("武器を落としてしまった!", "You drop your weapon!")); inven_drop(slot, 1); } } + } /*! @@ -2695,7 +2491,7 @@ static void process_world_aux_curse(void) /* Scan the equipment with random teleport ability */ for (i = INVEN_RARM; i < INVEN_TOTAL; i++) { - u32b flgs[TR_FLAG_SIZE]; + BIT_FLAGS flgs[TR_FLAG_SIZE]; o_ptr = &inventory[i]; /* Skip non-objects */ @@ -2720,14 +2516,14 @@ static void process_world_aux_curse(void) msg_format(_("%sがテレポートの能力を発動させようとしている。", "Your %s is activating teleportation."), o_name); if (get_check_strict(_("テレポートしますか?", "Teleport? "), CHECK_OKAY_CANCEL)) { - disturb(0, 1); + disturb(FALSE, TRUE); teleport_player(50, 0L); } else { msg_format(_("%sに{.}(ピリオド)と銘を刻むと発動を抑制できます。", "You can inscribe {.} on your %s to disable random teleportation. "), o_name); - disturb(1, 1); + disturb(TRUE, TRUE); } } /* Make a chainsword noise */ @@ -2745,19 +2541,18 @@ static void process_world_aux_curse(void) (void)activate_ty_curse(FALSE, &count); } /* Handle experience draining */ - if (p_ptr->prace != RACE_ANDROID && - ((p_ptr->cursed & TRC_DRAIN_EXP) && one_in_(4))) + if (p_ptr->prace != RACE_ANDROID && ((p_ptr->cursed & TRC_DRAIN_EXP) && one_in_(4))) { - p_ptr->exp -= (p_ptr->lev+1)/2; + p_ptr->exp -= (p_ptr->lev + 1) / 2; if (p_ptr->exp < 0) p_ptr->exp = 0; - p_ptr->max_exp -= (p_ptr->lev+1)/2; + p_ptr->max_exp -= (p_ptr->lev + 1) / 2; if (p_ptr->max_exp < 0) p_ptr->max_exp = 0; check_experience(); } /* Add light curse (Later) */ if ((p_ptr->cursed & TRC_ADD_L_CURSE) && one_in_(2000)) { - u32b new_curse; + BIT_FLAGS new_curse; object_type *o_ptr; o_ptr = choose_cursed_obj_name(TRC_ADD_L_CURSE); @@ -2780,7 +2575,7 @@ static void process_world_aux_curse(void) /* Add heavy curse (Later) */ if ((p_ptr->cursed & TRC_ADD_H_CURSE) && one_in_(2000)) { - u32b new_curse; + BIT_FLAGS new_curse; object_type *o_ptr; o_ptr = choose_cursed_obj_name(TRC_ADD_H_CURSE); @@ -2809,7 +2604,7 @@ static void process_world_aux_curse(void) object_desc(o_name, choose_cursed_obj_name(TRC_CALL_ANIMAL), (OD_OMIT_PREFIX | OD_NAME_ONLY)); msg_format(_("%sが動物を引き寄せた!", "Your %s have attracted an animal!"), o_name); - disturb(0, 1); + disturb(FALSE, TRUE); } } /* Call demon */ @@ -2821,7 +2616,7 @@ static void process_world_aux_curse(void) object_desc(o_name, choose_cursed_obj_name(TRC_CALL_DEMON), (OD_OMIT_PREFIX | OD_NAME_ONLY)); msg_format(_("%sが悪魔を引き寄せた!", "Your %s have attracted a demon!"), o_name); - disturb(0, 1); + disturb(FALSE, TRUE); } } /* Call dragon */ @@ -2834,7 +2629,7 @@ static void process_world_aux_curse(void) object_desc(o_name, choose_cursed_obj_name(TRC_CALL_DRAGON), (OD_OMIT_PREFIX | OD_NAME_ONLY)); msg_format(_("%sがドラゴンを引き寄せた!", "Your %s have attracted an dragon!"), o_name); - disturb(0, 1); + disturb(FALSE, TRUE); } } /* Call undead */ @@ -2847,14 +2642,14 @@ static void process_world_aux_curse(void) object_desc(o_name, choose_cursed_obj_name(TRC_CALL_UNDEAD), (OD_OMIT_PREFIX | OD_NAME_ONLY)); msg_format(_("%sが死霊を引き寄せた!", "Your %s have attracted an undead!"), o_name); - disturb(0, 1); + disturb(FALSE, TRUE); } } if ((p_ptr->cursed & TRC_COWARDICE) && one_in_(1500)) { if (!p_ptr->resist_fear) { - disturb(0, 1); + disturb(FALSE, TRUE); msg_print(_("とても暗い... とても恐い!", "It's so dark... so scary!")); set_afraid(p_ptr->afraid + 13 + randint1(26)); } @@ -2862,7 +2657,7 @@ static void process_world_aux_curse(void) /* Teleport player */ if ((p_ptr->cursed & TRC_TELEPORT) && one_in_(200) && !p_ptr->anti_tele) { - disturb(0, 1); + disturb(FALSE, TRUE); /* Teleport player */ teleport_player(40, TELEPORT_PASSIVE); @@ -2900,19 +2695,11 @@ static void process_world_aux_curse(void) if (o_ptr->name1 == ART_JUDGE) { -#ifdef JP if (object_is_known(o_ptr)) - msg_print("『審判の宝石』はあなたの体力を吸収した!"); + msg_print(_("『審判の宝石』はあなたの体力を吸収した!", "The Jewel of Judgement drains life from you!")); else - msg_print("なにかがあなたの体力を吸収した!"); - take_hit(DAMAGE_LOSELIFE, MIN(p_ptr->lev, 50), "審判の宝石", -1); -#else - if (object_is_known(o_ptr)) - msg_print("The Jewel of Judgement drains life from you!"); - else - msg_print("Something drains life from you!"); - take_hit(DAMAGE_LOSELIFE, MIN(p_ptr->lev, 50), "the Jewel of Judgement", -1); -#endif + msg_print(_("なにかがあなたの体力を吸収した!", "Something drains life from you!")); + take_hit(DAMAGE_LOSELIFE, MIN(p_ptr->lev, 50), _("審判の宝石", "the Jewel of Judgement"), -1); } } } @@ -2955,7 +2742,6 @@ static void process_world_aux_recharge(void) /* Notice changes */ if (changed) { - /* Window stuff */ p_ptr->window |= (PW_EQUIP); wild_regen = 20; } @@ -3004,7 +2790,6 @@ static void process_world_aux_recharge(void) /* Notice changes */ if (changed) { - /* Window stuff */ p_ptr->window |= (PW_INVEN); wild_regen = 20; } @@ -3058,13 +2843,12 @@ static void process_world_aux_movement(void) if (!p_ptr->word_recall) { /* Disturbing! */ - disturb(0, 1); + disturb(FALSE, TRUE); /* Determine the level */ if (dun_level || p_ptr->inside_quest || p_ptr->enter_dungeon) { - msg_print(_("上に引っ張りあげられる感じがする!", - "You feel yourself yanked upwards!")); + msg_print(_("上に引っ張りあげられる感じがする!", "You feel yourself yanked upwards!")); if (dungeon_type) p_ptr->recall_dungeon = dungeon_type; if (record_stair) @@ -3082,8 +2866,7 @@ static void process_world_aux_movement(void) } else { - msg_print(_("下に引きずり降ろされる感じがする!", - "You feel yourself yanked downwards!")); + msg_print(_("下に引きずり降ろされる感じがする!", "You feel yourself yanked downwards!")); dungeon_type = p_ptr->recall_dungeon; @@ -3156,7 +2939,6 @@ static void process_world_aux_movement(void) } } - /* Sound */ sound(SOUND_TPLEVEL); } } @@ -3177,7 +2959,7 @@ static void process_world_aux_movement(void) if (!p_ptr->alter_reality) { /* Disturbing! */ - disturb(0, 1); + disturb(FALSE, TRUE); /* Determine the level */ if (!quest_number(dun_level) && dun_level) @@ -3198,7 +2980,6 @@ static void process_world_aux_movement(void) msg_print(_("世界が少しの間変化したようだ。", "The world seems to change for a moment!")); } - /* Sound */ sound(SOUND_TPLEVEL); } } @@ -3214,8 +2995,8 @@ static void process_world_aux_movement(void) static int get_monster_crowd_number(MONSTER_IDX m_idx) { monster_type *m_ptr = &m_list[m_idx]; - int my = m_ptr->fy; - int mx = m_ptr->fx; + POSITION my = m_ptr->fy; + POSITION mx = m_ptr->fx; int i; int count = 0; @@ -3334,7 +3115,7 @@ static byte get_dungeon_feeling(void) /* Artifacts */ if (object_is_artifact(o_ptr)) { - s32b cost = object_value_real(o_ptr); + PRICE cost = object_value_real(o_ptr); delta += 10 * base; if (cost > 10000L) delta += 10 * base; @@ -3346,27 +3127,16 @@ static byte get_dungeon_feeling(void) } if (o_ptr->tval == TV_DRAG_ARMOR) delta += 30 * base; - if (o_ptr->tval == TV_SHIELD && - o_ptr->sval == SV_DRAGON_SHIELD) delta += 5 * base; - if (o_ptr->tval == TV_GLOVES && - o_ptr->sval == SV_SET_OF_DRAGON_GLOVES) delta += 5 * base; - if (o_ptr->tval == TV_BOOTS && - o_ptr->sval == SV_PAIR_OF_DRAGON_GREAVE) delta += 5 * base; - if (o_ptr->tval == TV_HELM && - o_ptr->sval == SV_DRAGON_HELM) delta += 5 * base; - if (o_ptr->tval == TV_RING && - o_ptr->sval == SV_RING_SPEED && - !object_is_cursed(o_ptr)) delta += 25 * base; - if (o_ptr->tval == TV_RING && - o_ptr->sval == SV_RING_LORDLY && - !object_is_cursed(o_ptr)) delta += 15 * base; - if (o_ptr->tval == TV_AMULET && - o_ptr->sval == SV_AMULET_THE_MAGI && - !object_is_cursed(o_ptr)) delta += 15 * base; + if (o_ptr->tval == TV_SHIELD && o_ptr->sval == SV_DRAGON_SHIELD) delta += 5 * base; + if (o_ptr->tval == TV_GLOVES && o_ptr->sval == SV_SET_OF_DRAGON_GLOVES) delta += 5 * base; + if (o_ptr->tval == TV_BOOTS && o_ptr->sval == SV_PAIR_OF_DRAGON_GREAVE) delta += 5 * base; + if (o_ptr->tval == TV_HELM && o_ptr->sval == SV_DRAGON_HELM) delta += 5 * base; + if (o_ptr->tval == TV_RING && o_ptr->sval == SV_RING_SPEED && !object_is_cursed(o_ptr)) delta += 25 * base; + if (o_ptr->tval == TV_RING && o_ptr->sval == SV_RING_LORDLY && !object_is_cursed(o_ptr)) delta += 15 * base; + if (o_ptr->tval == TV_AMULET && o_ptr->sval == SV_AMULET_THE_MAGI && !object_is_cursed(o_ptr)) delta += 15 * base; /* Out-of-depth objects */ - if (!object_is_cursed(o_ptr) && !object_is_broken(o_ptr) && - k_ptr->level > dun_level) + if (!object_is_cursed(o_ptr) && !object_is_broken(o_ptr) && k_ptr->level > dun_level) { /* Rating increase */ delta += (k_ptr->level - dun_level) * base; @@ -3441,8 +3211,7 @@ static void update_dungeon_feeling(void) /* Update the level indicator */ p_ptr->redraw |= (PR_DEPTH); - /* Disturb */ - if (disturb_minor) disturb(0, 0); + if (disturb_minor) disturb(FALSE, FALSE); } /*! @@ -3549,13 +3318,11 @@ static void process_world(void) /* Warning */ if (closing_flag <= 2) { - /* Disturb */ - disturb(0, 1); + disturb(FALSE, TRUE); /* Count warnings */ closing_flag++; - /* Message */ msg_print(_("アングバンドへの門が閉じかかっています...", "The gates to ANGBAND are closing...")); msg_print(_("ゲームを終了するかセーブするかして下さい。", "Please finish up and/or save your game.")); @@ -3564,7 +3331,6 @@ static void process_world(void) /* Slam the gate */ else { - /* Message */ msg_print(_("今、アングバンドへの門が閉ざされました。", "The gates to ANGBAND are now closed.")); /* Stop playing */ @@ -3601,94 +3367,9 @@ static void process_world(void) /* Check for dawn */ dawn = (!(turn % (TURNS_PER_TICK * TOWN_DAWN))); - /* Day breaks */ - if (dawn) - { - int y, x; - - /* Message */ - msg_print(_("夜が明けた。", "The sun has risen.")); - - if (!p_ptr->wild_mode) - { - /* Hack -- Scan the town */ - for (y = 0; y < cur_hgt; y++) - { - for (x = 0; x < cur_wid; x++) - { - /* Get the cave grid */ - cave_type *c_ptr = &cave[y][x]; - - /* Assume lit */ - c_ptr->info |= (CAVE_GLOW); - - /* Hack -- Memorize lit grids if allowed */ - if (view_perma_grids) c_ptr->info |= (CAVE_MARK); - - /* Hack -- Notice spot */ - note_spot(y, x); - } - } - } - } - - /* Night falls */ - else - { - int y, x; - - /* Message */ - msg_print(_("日が沈んだ。", "The sun has fallen.")); - - if (!p_ptr->wild_mode) - { - /* Hack -- Scan the town */ - for (y = 0; y < cur_hgt; y++) - { - for (x = 0; x < cur_wid; x++) - { - /* Get the cave grid */ - cave_type *c_ptr = &cave[y][x]; - - /* Feature code (applying "mimic" field) */ - feature_type *f_ptr = &f_info[get_feat_mimic(c_ptr)]; - - if (!is_mirror_grid(c_ptr) && !have_flag(f_ptr->flags, FF_QUEST_ENTER) && - !have_flag(f_ptr->flags, FF_ENTRANCE)) - { - /* Assume dark */ - c_ptr->info &= ~(CAVE_GLOW); - - if (!have_flag(f_ptr->flags, FF_REMEMBER)) - { - /* Forget the normal floor grid */ - c_ptr->info &= ~(CAVE_MARK); - - /* Hack -- Notice spot */ - note_spot(y, x); - } - } - } - - /* Glow deep lava and building entrances */ - glow_deep_lava_and_bldg(); - } - } - } - - /* Update the monsters */ - p_ptr->update |= (PU_MONSTERS | PU_MON_LITE); - - /* Redraw map */ - p_ptr->redraw |= (PR_MAP); + if (dawn) day_break(); + else night_falls(); - /* Window stuff */ - p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON); - - if (p_ptr->special_defense & NINJA_S_STEALTH) - { - if (cave[p_ptr->y][p_ptr->x].info & CAVE_GLOW) set_superstealth(FALSE); - } } } @@ -3703,7 +3384,8 @@ static void process_world(void) /* Sometimes, shuffle the shop-keepers */ if (one_in_(STORE_SHUFFLE)) { - int n, i; + int n; + FEAT_IDX i; /* Pick a random shop (except home and museum) */ do @@ -3727,7 +3409,6 @@ static void process_world(void) /* Verify store type */ if (f_ptr->subtype == n) { - /* Message */ if (cheat_xtra) msg_format(_("%sの店主をシャッフルします。", "Shuffle a Shopkeeper of %s."), f_name + f_ptr->name); /* Shuffle it */ @@ -3752,8 +3433,8 @@ static void process_world(void) } /* Hack -- Check for creature regeneration */ - if (!(turn % (TURNS_PER_TICK*10)) && !p_ptr->inside_battle) regen_monsters(); - if (!(turn % (TURNS_PER_TICK*3))) regen_captured_monsters(); + if (!(turn % (TURNS_PER_TICK * 10)) && !p_ptr->inside_battle) regen_monsters(); + if (!(turn % (TURNS_PER_TICK * 3))) regen_captured_monsters(); if (!p_ptr->leaving) { @@ -3789,7 +3470,7 @@ static void process_world(void) if ((hour == 23) && !(min % 15)) { /* Disturbing */ - disturb(0, 1); + disturb(FALSE, TRUE); switch (min / 15) { @@ -3815,7 +3496,7 @@ static void process_world(void) if (!hour && !min) { - disturb(1, 1); + disturb(TRUE, TRUE); msg_print(_("遠くで鐘が何回も鳴り、死んだような静けさの中へ消えていった。", "A distant bell tolls many times, fading into an deathly silence.")); if (p_ptr->wild_mode) @@ -3837,72 +3518,9 @@ static void process_world(void) } - /*** Check the Food, and Regenerate ***/ - - if (!p_ptr->inside_battle) - { - /* Digest quickly when gorged */ - if (p_ptr->food >= PY_FOOD_MAX) - { - /* Digest a lot of food */ - (void)set_food(p_ptr->food - 100); - } - - /* Digest normally -- Every 50 game turns */ - else if (!(turn % (TURNS_PER_TICK*5))) - { - /* Basic digestion rate based on speed */ - int digestion = SPEED_TO_ENERGY(p_ptr->pspeed); - - /* Regeneration takes more food */ - if (p_ptr->regenerate) - digestion += 20; - if (p_ptr->special_defense & (KAMAE_MASK | KATA_MASK)) - digestion += 20; - if (p_ptr->cursed & TRC_FAST_DIGEST) - digestion += 30; - - /* Slow digestion takes less food */ - if (p_ptr->slow_digest) - digestion -= 5; - - /* Minimal digestion */ - if (digestion < 1) digestion = 1; - /* Maximal digestion */ - if (digestion > 100) digestion = 100; - - /* Digest some food */ - (void)set_food(p_ptr->food - digestion); - } - - - /* Getting Faint */ - if ((p_ptr->food < PY_FOOD_FAINT)) - { - /* Faint occasionally */ - if (!p_ptr->paralyzed && (randint0(100) < 10)) - { - /* Message */ - msg_print(_("あまりにも空腹で気絶してしまった。", "You faint from the lack of food.")); - disturb(1, 1); - - /* Hack -- faint (bypass free action) */ - (void)set_paralyzed(p_ptr->paralyzed + 1 + randint0(5)); - } - - /* Starve to death (slowly) */ - if (p_ptr->food < PY_FOOD_STARVE) - { - /* Calculate damage */ - HIT_POINT dam = (PY_FOOD_STARVE - p_ptr->food) / 10; - - /* Take damage */ - if (!IS_INVULN()) take_hit(DAMAGE_LOSELIFE, dam, _("空腹", "starvation"), -1); - } - } - } - + /* Check the Food */ + process_world_aux_digestion(); /* Process timed damage and regeneration */ process_world_aux_hp_and_sp(); @@ -4060,20 +3678,16 @@ extern void do_cmd_borg(void); /*! * @brief プレイヤーから受けた入力コマンドの分岐処理。 * / Parse and execute the current command Give "Warning" on illegal commands. - * @todo XXX XXX XXX Make some "blocks" + * @todo Make some "blocks" * @return なし */ static void process_command(void) { COMMAND_CODE old_now_message = now_message; -#ifdef ALLOW_REPEAT /* TNB */ - /* Handle repeating the last command */ repeat_check(); -#endif /* ALLOW_REPEAT -- TNB */ - now_message = 0; /* Sniper */ @@ -4238,32 +3852,14 @@ static void process_command(void) /* Move (usually pick up things) */ case ';': { -#ifdef ALLOW_EASY_DISARM /* TNB */ - do_cmd_walk(FALSE); - -#else /* ALLOW_EASY_DISARM -- TNB */ - - do_cmd_walk(always_pickup); - -#endif /* ALLOW_EASY_DISARM -- TNB */ - break; } /* Move (usually do not pick up) */ case '-': { -#ifdef ALLOW_EASY_DISARM /* TNB */ - do_cmd_walk(TRUE); - -#else /* ALLOW_EASY_DISARM -- TNB */ - - do_cmd_walk(!always_pickup); - -#endif /* ALLOW_EASY_DISARM -- TNB */ - break; } @@ -4573,10 +4169,7 @@ static void process_command(void) /* Throw an item */ case 'v': { - if (!p_ptr->wild_mode) - { - do_cmd_throw(); - } + if (!p_ptr->wild_mode) do_cmd_throw(1, FALSE, -1); break; } @@ -4989,15 +4582,12 @@ static void pack_overflow(void) o_ptr = &inventory[INVEN_PACK]; /* Disturbing */ - disturb(0, 1); + disturb(FALSE, TRUE); /* Warning */ msg_print(_("ザックからアイテムがあふれた!", "Your pack overflows!")); - - /* Describe */ object_desc(o_name, o_ptr, 0); - /* Message */ msg_format(_("%s(%c)を落とした。", "You drop %s (%c)."), o_name, index_to_label(INVEN_PACK)); /* Drop it (carefully) near the player */ @@ -5084,9 +4674,7 @@ static void process_player(void) /* Hack -- Detect monster */ m_ptr->mflag2 |= (MFLAG2_MARK | MFLAG2_SHOW); - - /* Update the monster */ - update_mon(i, FALSE); + update_monster(i, FALSE); } prt_time(); } @@ -5137,7 +4725,6 @@ static void process_player(void) if (p_ptr->action == ACTION_FISH) { - /* Delay */ Term_xtra(TERM_XTRA_DELAY, 10); if (one_in_(1000)) { @@ -5148,9 +4735,9 @@ static void process_player(void) msg_print(NULL); if (r_idx && one_in_(2)) { - int y, x; - y = p_ptr->y+ddy[tsuri_dir]; - x = p_ptr->x+ddx[tsuri_dir]; + POSITION y, x; + y = p_ptr->y + ddy[p_ptr->fishing_dir]; + x = p_ptr->x + ddx[p_ptr->fishing_dir]; if (place_monster_aux(0, y, x, r_idx, PM_NO_KAGE)) { char m_name[80]; @@ -5163,7 +4750,7 @@ static void process_player(void) { msg_print(_("餌だけ食われてしまった!くっそ~!", "Damn! The fish stole your bait!")); } - disturb(0, 1); + disturb(FALSE, TRUE); } } @@ -5179,11 +4766,9 @@ static void process_player(void) /* Check for a key */ if (inkey()) { - /* Flush input */ - flush(); + flush(); /* Flush input */ - /* Disturb */ - disturb(0, 1); + disturb(FALSE, TRUE); /* Hack -- Show a Message */ msg_print(_("中断しました。", "Canceled.")); @@ -5243,7 +4828,7 @@ static void process_player(void) if (MON_MONFEAR(m_ptr)) { /* Hack -- Recover from fear */ - if (set_monster_monfear(p_ptr->riding, + if(set_monster_monfear(p_ptr->riding, (randint0(r_ptr->level) < p_ptr->skill_exp[GINOU_RIDING]) ? 0 : (MON_MONFEAR(m_ptr) - 1))) { char m_name[80]; @@ -5269,10 +4854,7 @@ static void process_player(void) } if ((p_ptr->pclass == CLASS_FORCETRAINER) && P_PTR_KI) { - if (P_PTR_KI < 40) - { - P_PTR_KI = 0; - } + if(P_PTR_KI < 40) P_PTR_KI = 0; else P_PTR_KI -= 40; p_ptr->update |= (PU_BONUS); } @@ -5283,7 +4865,6 @@ static void process_player(void) /* Convert the unit (1/2^16) to (1/2^32) */ s64b_LSHIFT(cost, cost_frac, 16); - if (s64b_cmp(p_ptr->csp, p_ptr->csp_frac, cost, cost_frac) < 0) { @@ -5338,19 +4919,15 @@ static void process_player(void) /* Refresh (optional) */ if (fresh_before) Term_fresh(); - /* Hack -- Pack Overflow */ pack_overflow(); - /* Hack -- cancel "lurking browse mode" */ if (!command_new) command_see = FALSE; - /* Assume free turn */ p_ptr->energy_use = 0; - if (p_ptr->inside_battle) { /* Place the cursor on the player */ @@ -5365,7 +4942,6 @@ static void process_player(void) /* Paralyzed or Knocked Out */ else if (p_ptr->paralyzed || (p_ptr->stun >= 100)) { - /* Take a turn */ p_ptr->energy_use = 100; } @@ -5384,14 +4960,12 @@ static void process_player(void) p_ptr->redraw |= (PR_STATE); } - /* Take a turn */ p_ptr->energy_use = 100; } /* Fishing */ else if (p_ptr->action == ACTION_FISH) { - /* Take a turn */ p_ptr->energy_use = 100; } @@ -5417,10 +4991,7 @@ static void process_player(void) /* Count this execution */ command_rep--; - /* Redraw the state */ p_ptr->redraw |= (PR_STATE); - - /* Redraw stuff */ redraw_stuff(); /* Hack -- Assume messages were seen */ @@ -5556,9 +5127,7 @@ static void process_player(void) /* Assume invisible */ m_ptr->ml = FALSE; - - /* Update the monster */ - update_mon(i, FALSE); + update_monster(i, FALSE); if (p_ptr->health_who == i) p_ptr->redraw |= (PR_HEALTH); if (p_ptr->riding == i) p_ptr->redraw |= (PR_UHEALTH); @@ -5591,13 +5160,12 @@ static void process_player(void) if (world_player && (p_ptr->energy_need > - 1000)) { - /* Redraw map */ + p_ptr->redraw |= (PR_MAP); /* Update monsters */ p_ptr->update |= (PU_MONSTERS); - /* Window stuff */ p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON); msg_print(_("「時は動きだす…」", "You feel time flowing around you once more.")); @@ -5682,8 +5250,7 @@ static void dungeon(bool load_game) repair_objects = TRUE; - /* Disturb */ - disturb(1, 1); + disturb(TRUE, TRUE); /* Get index of current quest (if any) */ quest_num = quest_number(dun_level); @@ -5724,16 +5291,13 @@ static void dungeon(bool load_game) /* Enter "xtra" mode */ character_xtra = TRUE; - /* Window stuff */ p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_SPELL | PW_PLAYER | PW_MONSTER | PW_OVERHEAD | PW_DUNGEON); /* Redraw dungeon */ p_ptr->redraw |= (PR_WIPE | PR_BASIC | PR_EXTRA | PR_EQUIPPY); - /* Redraw map */ p_ptr->redraw |= (PR_MAP); - /* Update stuff */ p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS); /* Update lite/view */ @@ -5748,7 +5312,6 @@ static void dungeon(bool load_game) /* Leave "xtra" mode */ character_xtra = FALSE; - /* Update stuff */ p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS); /* Combine / Reorder the pack */ @@ -6198,7 +5761,6 @@ void play_game(bool new_game) /* Attempt to load */ if (!load_player()) { - /* Oops */ quit(_("セーブファイルが壊れています", "broken savefile")); } @@ -6214,10 +5776,8 @@ void play_game(bool new_game) if (!get_check_strict(_("待機していたスコア登録を今行ないますか?", "Do you register score now? "), CHECK_NO_HISTORY)) quit(0); - /* Update stuff */ p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS); - /* Update stuff */ update_stuff(); p_ptr->is_dead = TRUE; @@ -6236,6 +5796,9 @@ void play_game(bool new_game) /* Open the high score file, for reading/writing */ highscore_fd = fd_open(buf, O_RDWR); + /* 町名消失バグ対策(#38205) Init the wilderness */ + process_dungeon_file("w_info.txt", 0, 0, max_wild_y, max_wild_x); + /* Handle score, show Top scores */ success = send_world_score(TRUE); @@ -6492,13 +6055,10 @@ void play_game(bool new_game) /* React to changes */ Term_xtra(TERM_XTRA_REACT, 0); - /* 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); - /* Window stuff */ window_stuff(); @@ -6573,7 +6133,6 @@ void play_game(bool new_game) if (!p_ptr->is_dead) wipe_m_list(); - /* XXX XXX XXX */ msg_print(NULL); load_game = FALSE; @@ -6614,13 +6173,10 @@ void play_game(bool new_game) /* Mark savefile */ p_ptr->noscore |= 0x0001; - /* Message */ msg_print(_("ウィザードモードに念を送り、死を欺いた。", "You invoke wizard mode and cheat death.")); msg_print(NULL); - /* Restore hit points */ - p_ptr->chp = p_ptr->mhp; - p_ptr->chp_frac = 0; + (void)life_stream(FALSE, FALSE); if (p_ptr->pclass == CLASS_MAGIC_EATER) { @@ -6634,6 +6190,7 @@ void play_game(bool new_game) p_ptr->magic_num1[magic_idx] = 0; } } + /* Restore spell points */ p_ptr->csp = p_ptr->msp; p_ptr->csp_frac = 0; @@ -6641,7 +6198,6 @@ void play_game(bool new_game) /* Hack -- cancel recall */ if (p_ptr->word_recall) { - /* Message */ msg_print(_("張りつめた大気が流れ去った...", "A tension leaves the air around you...")); msg_print(NULL); @@ -6658,22 +6214,12 @@ void play_game(bool new_game) p_ptr->redraw |= (PR_STATUS); } - /* Note cause of death XXX XXX XXX */ + /* Note cause of death */ (void)strcpy(p_ptr->died_from, _("死の欺き", "Cheating death")); /* Do not die */ p_ptr->is_dead = FALSE; - /* Hack -- Healing */ - (void)set_blind(0); - (void)set_confused(0); - (void)set_poisoned(0); - (void)set_afraid(0); - (void)set_paralyzed(0); - (void)set_image(0); - (void)set_stun(0); - (void)set_cut(0); - /* Hack -- Prevent starvation */ (void)set_food(PY_FOOD_MAX - 1);