From ecbbafb05b93ba268b12fe8de5d5730180203bdf Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sun, 27 Mar 2022 06:52:37 +0300 Subject: [PATCH 27/27] Unhardcode minimum HP unit gets in a city by new "Min_HP_Pct" effect Requested by Ihnatus See osdn #42699 Signed-off-by: Marko Lindqvist --- ai/default/daieffects.c | 7 +++++++ common/effects.h | 18 ++++++++++-------- common/unit.c | 6 +++--- data/alien/effects.ruleset | 8 ++++++++ data/civ1/effects.ruleset | 8 ++++++++ data/civ2/effects.ruleset | 8 ++++++++ data/civ2civ3/effects.ruleset | 8 ++++++++ data/classic/effects.ruleset | 8 ++++++++ data/experimental/effects.ruleset | 8 ++++++++ data/multiplayer/effects.ruleset | 8 ++++++++ data/sandbox/effects.ruleset | 8 ++++++++ data/webperimental/effects.ruleset | 8 ++++++++ doc/README.effects | 5 +++++ fc_version | 2 +- server/rscompat.c | 6 ++++++ 15 files changed, 104 insertions(+), 12 deletions(-) diff --git a/ai/default/daieffects.c b/ai/default/daieffects.c index 72fcecb515..3d500d2b9a 100644 --- a/ai/default/daieffects.c +++ b/ai/default/daieffects.c @@ -428,6 +428,13 @@ adv_want dai_effect_value(struct player *pplayer, struct government *gov, num = num_affected_units(peffect, adv); v += (5 * c + num); break; + case EFT_MIN_HP_PCT: + num = num_affected_units(peffect, adv); + /* Lesser value than EFT_HP_REGEN as this does not add health + * with full effect value, but only up to the effect value. + * Only badly wounded units affected at all. */ + v += (3 * c + num); + break; case EFT_VETERAN_COMBAT: num = num_affected_units(peffect, adv); v += (2 * c + num); diff --git a/common/effects.h b/common/effects.h index 73e67dcb30..5b1a2f40f6 100644 --- a/common/effects.h +++ b/common/effects.h @@ -316,15 +316,17 @@ extern "C" { #define SPECENUM_VALUE126NAME "Popcost_Free" #define SPECENUM_VALUE127 EFT_HEAL_UNIT_PCT #define SPECENUM_VALUE127NAME "Heal_Unit_Pct" +#define SPECENUM_VALUE128 EFT_MIN_HP_PCT +#define SPECENUM_VALUE128NAME "Min_HP_Pct" /* Ruleset specific effects for use from Lua scripts */ -#define SPECENUM_VALUE128 EFT_USER_EFFECT_1 -#define SPECENUM_VALUE128NAME "User_Effect_1" -#define SPECENUM_VALUE129 EFT_USER_EFFECT_2 -#define SPECENUM_VALUE129NAME "User_Effect_2" -#define SPECENUM_VALUE130 EFT_USER_EFFECT_3 -#define SPECENUM_VALUE130NAME "User_Effect_3" -#define SPECENUM_VALUE131 EFT_USER_EFFECT_4 -#define SPECENUM_VALUE131NAME "User_Effect_4" +#define SPECENUM_VALUE129 EFT_USER_EFFECT_1 +#define SPECENUM_VALUE129NAME "User_Effect_1" +#define SPECENUM_VALUE130 EFT_USER_EFFECT_2 +#define SPECENUM_VALUE130NAME "User_Effect_2" +#define SPECENUM_VALUE131 EFT_USER_EFFECT_3 +#define SPECENUM_VALUE131NAME "User_Effect_3" +#define SPECENUM_VALUE132 EFT_USER_EFFECT_4 +#define SPECENUM_VALUE132NAME "User_Effect_4" /* keep this last */ #define SPECENUM_COUNT EFT_COUNT #include "specenum_gen.h" diff --git a/common/unit.c b/common/unit.c index 824679f828..3fa8c2f2fd 100644 --- a/common/unit.c +++ b/common/unit.c @@ -2065,13 +2065,13 @@ int hp_gain_coord(struct unit *punit) { int hp = 0; const int base = unit_type_get(punit)->hp; + int min = base * get_unit_bonus(punit, EFT_MIN_HP_PCT) / 100; /* Includes barracks (100%), fortress (25%), etc. */ hp += base * get_unit_bonus(punit, EFT_HP_REGEN) / 100; - if (tile_city(unit_tile(punit))) { - hp = MAX(hp, base / 3); - } + /* Minimum HP after regen effects applied. */ + hp = MAX(hp, min); if (!unit_class_get(punit)->hp_loss_pct) { hp += (base + 9) / 10; diff --git a/data/alien/effects.ruleset b/data/alien/effects.ruleset index 25c62129e9..015621b8b2 100644 --- a/data/alien/effects.ruleset +++ b/data/alien/effects.ruleset @@ -1079,6 +1079,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + [effect_action_success_move_cost_from_non_native] type = "Action_Success_Actor_Move_Cost" value = 65535 diff --git a/data/civ1/effects.ruleset b/data/civ1/effects.ruleset index 414ac061b1..ba2685a6c2 100644 --- a/data/civ1/effects.ruleset +++ b/data/civ1/effects.ruleset @@ -1356,6 +1356,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + [effect_incite_cost_empty] type = "Incite_Cost_Pct" value = -50 diff --git a/data/civ2/effects.ruleset b/data/civ2/effects.ruleset index 2c80ef8c5d..480897c2a6 100644 --- a/data/civ2/effects.ruleset +++ b/data/civ2/effects.ruleset @@ -1207,6 +1207,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + [effect_incite_cost_empty] type = "Incite_Cost_Pct" value = -50 diff --git a/data/civ2civ3/effects.ruleset b/data/civ2civ3/effects.ruleset index 39915fd029..eedf1c0772 100644 --- a/data/civ2civ3/effects.ruleset +++ b/data/civ2civ3/effects.ruleset @@ -374,6 +374,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + [effect_trade_routes] type = "Max_Trade_Routes" value = 2 diff --git a/data/classic/effects.ruleset b/data/classic/effects.ruleset index 8210e79c53..8f6707b3a8 100644 --- a/data/classic/effects.ruleset +++ b/data/classic/effects.ruleset @@ -147,6 +147,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + ; Base vision range - radius of vision is sqrt(5) = 2.24 [effect_city_vision] type = "City_Vision_Radius_Sq" diff --git a/data/experimental/effects.ruleset b/data/experimental/effects.ruleset index ef46ee88f9..5c91c98066 100644 --- a/data/experimental/effects.ruleset +++ b/data/experimental/effects.ruleset @@ -170,6 +170,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + ; Nuclear power gives +1 moves to sea units [effect_nuclear_powered_boats] type = "Move_Bonus" diff --git a/data/multiplayer/effects.ruleset b/data/multiplayer/effects.ruleset index 89c7a20a26..7251ce535d 100644 --- a/data/multiplayer/effects.ruleset +++ b/data/multiplayer/effects.ruleset @@ -147,6 +147,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + ; Base vision range - radius of vision is sqrt(5) = 2.24 [effect_city_vision] type = "City_Vision_Radius_Sq" diff --git a/data/sandbox/effects.ruleset b/data/sandbox/effects.ruleset index dfb835c20d..f58f161532 100644 --- a/data/sandbox/effects.ruleset +++ b/data/sandbox/effects.ruleset @@ -374,6 +374,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + [effect_trade_routes] type = "Max_Trade_Routes" value = 2 diff --git a/data/webperimental/effects.ruleset b/data/webperimental/effects.ruleset index 7c9318d7e5..19c057c46c 100644 --- a/data/webperimental/effects.ruleset +++ b/data/webperimental/effects.ruleset @@ -147,6 +147,14 @@ reqs = "UnitFlag", "Cant_Fortify", "Local", FALSE } +[effect_city_min_hp] +type = "Min_HP_Pct" +value = 33 +reqs = + { "type", "name", "range" + "CityTile", "Center", "Tile" + } + ; Base vision range - radius of vision is sqrt(5) = 2.24 [effect_city_vision] type = "City_Vision_Radius_Sq" diff --git a/doc/README.effects b/doc/README.effects index 70fb485348..caf1be3818 100644 --- a/doc/README.effects +++ b/doc/README.effects @@ -218,6 +218,11 @@ Irrigation_Pct The tile gets value % of its terrain's irrigation_food_incr bonus. (This is how irrigation-like extras have an effect.) +Min_HP_Pct + The minimum HP (pct from full) units that have not moved during + previous turn will have in the beginning of the new turn, + after the HP_Regen effects have been applied. + Mining_Pct The tile gets value % of its terrain's mining_shield_incr bonus. (This is how mine-like extras have an effect.) diff --git a/fc_version b/fc_version index 5f1863edb5..d12a6dcae2 100755 --- a/fc_version +++ b/fc_version @@ -56,7 +56,7 @@ DEFAULT_FOLLOW_TAG=S3_1 # - No new mandatory capabilities can be added to the release branch; doing # so would break network capability of supposedly "compatible" releases. # -NETWORK_CAPSTRING="+Freeciv.Devel-3.1-2022.Mar.15" +NETWORK_CAPSTRING="+Freeciv.Devel-3.1-2022.Mar.27" FREECIV_DISTRIBUTOR="" diff --git a/server/rscompat.c b/server/rscompat.c index 9d804654cb..01db1fb79d 100644 --- a/server/rscompat.c +++ b/server/rscompat.c @@ -1014,6 +1014,12 @@ void rscompat_postprocess(struct rscompat_info *info) effect_req_append(peffect, req_from_str("Action", "Local", FALSE, TRUE, FALSE, "Heal Unit")); + /* The rule that unit in a city has at least 1/3 of its HP in the + * beginning of the new turn has moved to the ruleset. */ + peffect = effect_new(EFT_MIN_HP_PCT, 33, NULL); + effect_req_append(peffect, req_from_str("CityTile", "Tile", FALSE, TRUE, + FALSE, "Center")); + /* Help ruleset authors specify the new arguments to unit_move() and * unit_teleport() by introducing boolean effects */ log_normal(_("Preparing user effects to help you port edit.unit_move()" -- 2.35.1