From c92d32081694213e83353cc6eaf9d83d7852f178 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sat, 25 Dec 2021 10:11:42 +0200 Subject: [PATCH 42/42] Make reduced firepower in special cases ruleset controlled Replace hardcoded firepower of 1 with a ruleset defined low firepower values. These rules can still never increase the firepower, only reduce it. - BadWallAttacker - Pearl Harbour rule - LowFirepower combat bonus - Nonnative bombardment See osdn #43041 Signed-off-by: Marko Lindqvist --- common/combat.c | 28 ++++++++--------- common/networking/packets.def | 4 +++ data/alien/game.ruleset | 23 ++++++++++++++ data/alien/units.ruleset | 3 +- data/civ1/game.ruleset | 23 ++++++++++++++ data/civ1/units.ruleset | 3 +- data/civ2/game.ruleset | 23 ++++++++++++++ data/civ2/units.ruleset | 3 +- data/civ2civ3/game.ruleset | 23 ++++++++++++++ data/civ2civ3/units.ruleset | 3 +- data/classic/game.ruleset | 23 ++++++++++++++ data/classic/units.ruleset | 3 +- data/goldkeep/game.ruleset | 23 ++++++++++++++ data/goldkeep/units.ruleset | 3 +- data/granularity/game.ruleset | 23 ++++++++++++++ data/granularity/units.ruleset | 3 +- data/multiplayer/game.ruleset | 23 ++++++++++++++ data/multiplayer/units.ruleset | 3 +- data/ruledit/comments-3.2.txt | 31 +++++++++++++++++-- data/sandbox/game.ruleset | 23 ++++++++++++++ data/sandbox/units.ruleset | 3 +- data/stub/game.ruleset | 23 ++++++++++++++ data/stub/units.ruleset | 3 +- data/webperimental/game.ruleset | 23 ++++++++++++++ data/webperimental/units.ruleset | 3 +- fc_version | 2 +- server/ruleset.c | 13 ++++++++ tools/ruleutil/comments.c | 52 ++++++++++++++++++++++++++++++++ tools/ruleutil/comments.h | 4 +++ tools/ruleutil/rulesave.c | 20 ++++++++++++ 30 files changed, 412 insertions(+), 28 deletions(-) diff --git a/common/combat.c b/common/combat.c index 558c797bde..62a4698d8c 100644 --- a/common/combat.c +++ b/common/combat.c @@ -407,8 +407,8 @@ double win_chance(int as, int ahp, int afp, int ds, int dhp, int dfp) A unit's effective firepower depend on the situation. ***********************************************************************/ void get_modified_firepower(const struct unit *attacker, - const struct unit *defender, - int *att_fp, int *def_fp) + const struct unit *defender, + int *att_fp, int *def_fp) { struct city *pcity = tile_city(unit_tile(defender)); const struct unit_type *att_type; @@ -427,37 +427,37 @@ void get_modified_firepower(const struct unit *attacker, } /* - * UTYF_BADWALLATTACKER sets the firepower of the attacking unit to 1 if - * an EFT_DEFEND_BONUS applies (such as a land unit attacking a city with - * city walls). + * UTYF_BADWALLATTACKER reduces the firepower of the attacking unit to + * badwallattacker firepower if an EFT_DEFEND_BONUS applies + * (such as a land unit attacking a city with city walls). */ if (unit_has_type_flag(attacker, UTYF_BADWALLATTACKER) && get_unittype_bonus(unit_owner(defender), unit_tile(defender), att_type, NULL, EFT_DEFEND_BONUS) > 0) { - *att_fp = 1; + *att_fp = MIN(*att_fp, game.info.low_firepower_badwallattacker); } - /* pearl harbour - defender's firepower is reduced to one, + /* pearl harbour - defender's firepower is reduced, * attacker's is multiplied by two */ if (unit_has_type_flag(defender, UTYF_BADCITYDEFENDER) && tile_city(unit_tile(defender))) { *att_fp *= 2; - *def_fp = 1; + *def_fp = MIN(*def_fp, game.info.low_firepower_pearl_harbour); } - + /* * When attacked by fighters, helicopters have their firepower - * reduced to 1. + * reduced to low firepower bonus. */ if (combat_bonus_against(att_type->bonuses, def_type, CBONUS_LOW_FIREPOWER)) { - *def_fp = 1; + *def_fp = MIN(*def_fp, game.info.low_firepower_combat_bonus); } att_tile = unit_tile(attacker); - /* In land bombardment both units have their firepower reduced to 1. + /* In land bombardment both units have their firepower reduced. * Land bombardment is always towards tile not native for attacker. * It's initiated either from a tile not native to defender (Ocean for Land unit) * or from a tile where attacker is despite non-native terrain (city, transport) */ @@ -466,8 +466,8 @@ void get_modified_firepower(const struct unit *attacker, && (!can_exist_at_tile(&(wld.map), def_type, att_tile) || !is_native_tile(att_type, att_tile))) { - *att_fp = 1; - *def_fp = 1; + *att_fp = MIN(*att_fp, game.info.low_firepower_nonnat_bombard); + *def_fp = MIN(*def_fp, game.info.low_firepower_nonnat_bombard); } } diff --git a/common/networking/packets.def b/common/networking/packets.def index 78345edfcd..68cd34a880 100644 --- a/common/networking/packets.def +++ b/common/networking/packets.def @@ -547,6 +547,10 @@ PACKET_GAME_INFO = 16; sc, is-info BOOL only_real_fight_makes_veteran; BOOL combat_odds_scaled_veterancy; BOOL damage_reduces_bombard_rate; + UINT8 low_firepower_badwallattacker; + UINT8 low_firepower_pearl_harbour; + UINT8 low_firepower_combat_bonus; + UINT8 low_firepower_nonnat_bombard; UINT8 nuke_pop_loss_pct; UINT8 nuke_defender_survival_chance_pct; UINT16 min_city_center_output[O_LAST]; diff --git a/data/alien/game.ruleset b/data/alien/game.ruleset index 5721ed18d1..ff2d5d19ef 100644 --- a/data/alien/game.ruleset +++ b/data/alien/game.ruleset @@ -251,6 +251,29 @@ combat_odds_scaled_veterancy = TRUE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/alien/units.ruleset b/data/alien/units.ruleset index 749f752644..57574307f2 100644 --- a/data/alien/units.ruleset +++ b/data/alien/units.ruleset @@ -299,7 +299,8 @@ flags = "Missile", "DoesntOccupyTile" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/civ1/game.ruleset b/data/civ1/game.ruleset index d1769032df..8a348da16a 100644 --- a/data/civ1/game.ruleset +++ b/data/civ1/game.ruleset @@ -239,6 +239,29 @@ combat_odds_scaled_veterancy = FALSE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/civ1/units.ruleset b/data/civ1/units.ruleset index 0b8958ee53..2f4683dbb3 100644 --- a/data/civ1/units.ruleset +++ b/data/civ1/units.ruleset @@ -272,7 +272,8 @@ flags = "Missile", "Unreachable", "HutNothing" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/civ2/game.ruleset b/data/civ2/game.ruleset index 6d492d9d1c..f3a9ed1234 100644 --- a/data/civ2/game.ruleset +++ b/data/civ2/game.ruleset @@ -235,6 +235,29 @@ combat_odds_scaled_veterancy = FALSE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/civ2/units.ruleset b/data/civ2/units.ruleset index 4aeec348fc..0f5608fa8b 100644 --- a/data/civ2/units.ruleset +++ b/data/civ2/units.ruleset @@ -290,7 +290,8 @@ flags = "Unreachable", "DoesntOccupyTile", "HutFrighten" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/civ2civ3/game.ruleset b/data/civ2civ3/game.ruleset index 1f81194ec7..4838cb4517 100644 --- a/data/civ2civ3/game.ruleset +++ b/data/civ2civ3/game.ruleset @@ -257,6 +257,29 @@ combat_odds_scaled_veterancy = TRUE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/civ2civ3/units.ruleset b/data/civ2civ3/units.ruleset index 52e8cfda90..e563cffef7 100644 --- a/data/civ2civ3/units.ruleset +++ b/data/civ2civ3/units.ruleset @@ -331,7 +331,8 @@ flags = "Unreachable", "DoesntOccupyTile", "CanPillage", ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/classic/game.ruleset b/data/classic/game.ruleset index b7e36cb8e9..36e1905f5d 100644 --- a/data/classic/game.ruleset +++ b/data/classic/game.ruleset @@ -252,6 +252,29 @@ combat_odds_scaled_veterancy = FALSE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/classic/units.ruleset b/data/classic/units.ruleset index 558af3cf81..8ae30983a2 100644 --- a/data/classic/units.ruleset +++ b/data/classic/units.ruleset @@ -303,7 +303,8 @@ flags = "Unreachable", "DoesntOccupyTile", "HutFrighten" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/goldkeep/game.ruleset b/data/goldkeep/game.ruleset index b279ff096d..47c78527bf 100644 --- a/data/goldkeep/game.ruleset +++ b/data/goldkeep/game.ruleset @@ -255,6 +255,29 @@ combat_odds_scaled_veterancy = TRUE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/goldkeep/units.ruleset b/data/goldkeep/units.ruleset index 2cec50b490..88674770f7 100644 --- a/data/goldkeep/units.ruleset +++ b/data/goldkeep/units.ruleset @@ -315,7 +315,8 @@ flags = "Unreachable", "DoesntOccupyTile", "HutFrighten" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/granularity/game.ruleset b/data/granularity/game.ruleset index ab62b1bbdf..10c6a38395 100644 --- a/data/granularity/game.ruleset +++ b/data/granularity/game.ruleset @@ -247,6 +247,29 @@ combat_odds_scaled_veterancy = TRUE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/granularity/units.ruleset b/data/granularity/units.ruleset index 571627a9c1..ea81750ccd 100644 --- a/data/granularity/units.ruleset +++ b/data/granularity/units.ruleset @@ -241,7 +241,8 @@ flags = "TerrainSpeed" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/multiplayer/game.ruleset b/data/multiplayer/game.ruleset index e4e7a97e01..4bf40edd67 100644 --- a/data/multiplayer/game.ruleset +++ b/data/multiplayer/game.ruleset @@ -255,6 +255,29 @@ combat_odds_scaled_veterancy = TRUE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/multiplayer/units.ruleset b/data/multiplayer/units.ruleset index 36f513fe68..33e0cd4ee7 100644 --- a/data/multiplayer/units.ruleset +++ b/data/multiplayer/units.ruleset @@ -303,7 +303,8 @@ flags = "Unreachable", "DoesntOccupyTile", "HutFrighten" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/ruledit/comments-3.2.txt b/data/ruledit/comments-3.2.txt index 850106da9a..a8bf77de96 100644 --- a/data/ruledit/comments-3.2.txt +++ b/data/ruledit/comments-3.2.txt @@ -419,8 +419,8 @@ utypes = "\ ; multiplication with 2/3, etc.\n\ ; Effectively increases *attack* by value percent.\n\ ; Bonus is defined in attackers entry.\n\ -; \"LowFirepower\" = Defender firepower is reduced to value 1 when\n\ -; ever this has non-zero value.\n\ +; \"LowFirepower\" = Defender firepower is reduced to low firepower\n\ +; value defined in game.ruleset when\n\ ; Bonus is defined in attackers entry.\n\ ; \"CityDefensePct\" = In a city, instead of \"Defend_Bonus\" effect\n\ ; uses this bonus.\n\ @@ -1306,6 +1306,33 @@ damage_reduces_bombard_rate = "\n\ ; Even after this unit gets at least one bombard round.\ " +low_firepower_badwallattacker = "\n\ +; When the attacker has BadWallAttacker flag, and there`s\n\ +; positive DefendBonus effect applied to the attack, attacker`s\n\ +; firepower gets reduced to this value.\n\ +; If firepower is already lower than this, it won`t be affected.\ +" + +low_firepower_pearl_harbour = "\n\ +; When the defender has BadCityDefender flag, and it`s\n\ +; defending on a city tile, attacker`s firepower is doubled\n\ +; and defenders firepower is reduced to this value.\n\ +; If firepower is already lower than this, it won`t be affected.\ +" + +low_firepower_combat_bonus = "\n\ +; When the opponent has LowFirepower combat bonus against\n\ +; a unit, it`s firepower is reduced to this value.\n\ +; If firepower is already lower than this, it won`t be affected.\ +" + +low_firepower_nonnat_bombard = "\n\ +; When a unit capable of attacking NonNative tiles does such an\n\ +; attack against NonNatBombardTgt unit, firepower of both sides\n\ +; is reduced to this value.\n\ +; If firepower is already lower than this, it won`t be affected.\ +" + nuke_pop_loss_pct = "\n\ ; Percentage of population lost by a city after nuclear attak. If set to\n\ ; 100 city is destroyed along with all the units. If set to 0 city does not\n\ diff --git a/data/sandbox/game.ruleset b/data/sandbox/game.ruleset index 1ffe13c0b7..9f49365479 100644 --- a/data/sandbox/game.ruleset +++ b/data/sandbox/game.ruleset @@ -255,6 +255,29 @@ combat_odds_scaled_veterancy = TRUE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/sandbox/units.ruleset b/data/sandbox/units.ruleset index 5b18175718..fdf20d8ee5 100644 --- a/data/sandbox/units.ruleset +++ b/data/sandbox/units.ruleset @@ -344,7 +344,8 @@ flags = "Unreachable", "DoesntOccupyTile", "CanPillage", ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/stub/game.ruleset b/data/stub/game.ruleset index e2c8a57abe..19ae36bfd7 100644 --- a/data/stub/game.ruleset +++ b/data/stub/game.ruleset @@ -239,6 +239,29 @@ combat_odds_scaled_veterancy = FALSE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/stub/units.ruleset b/data/stub/units.ruleset index faaa276132..d7b9339a12 100644 --- a/data/stub/units.ruleset +++ b/data/stub/units.ruleset @@ -225,7 +225,8 @@ flags = "" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/data/webperimental/game.ruleset b/data/webperimental/game.ruleset index f184952c85..33a1ea263c 100644 --- a/data/webperimental/game.ruleset +++ b/data/webperimental/game.ruleset @@ -256,6 +256,29 @@ combat_odds_scaled_veterancy = TRUE ; Even after this unit gets at least one bombard round. damage_reduces_bombard_rate = TRUE +; When the attacker has BadWallAttacker flag, and there`s +; positive DefendBonus effect applied to the attack, attacker`s +; firepower gets reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_badwallattacker = 1 + +; When the defender has BadCityDefender flag, and it`s +; defending on a city tile, attacker`s firepower is doubled +; and defenders firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_pearl_harbour = 1 + +; When the opponent has LowFirepower combat bonus against +; a unit, it`s firepower is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_combat_bonus = 1 + +; When a unit capable of attacking NonNative tiles does such an +; attack against NonNatBombardTgt unit, firepower of both sides +; is reduced to this value. +; If firepower is already lower than this, it won`t be affected. +low_firepower_nonnat_bombard = 1 + ; Percentage of population lost by a city after nuclear attak. If set to ; 100 city is destroyed along with all the units. If set to 0 city does not ; loose population. Any value below 50 means the city can never be diff --git a/data/webperimental/units.ruleset b/data/webperimental/units.ruleset index bcbcb445f8..aed84e077d 100644 --- a/data/webperimental/units.ruleset +++ b/data/webperimental/units.ruleset @@ -307,7 +307,8 @@ flags = "Unreachable", "DoesntOccupyTile", "HutFrighten" ; multiplication with 2/3, etc. ; Effectively increases *attack* by value percent. ; Bonus is defined in attackers entry. -; "LowFirepower" = Defender firepower is reduced to value 1 when +; "LowFirepower" = Defender firepower is reduced to low firepower +; value defined in game.ruleset when ; ever this has non-zero value. ; Bonus is defined in attackers entry. ; "CityDefensePct" = In a city, instead of "Defend_Bonus" effect diff --git a/fc_version b/fc_version index 33d457385c..e1bbbb40a1 100755 --- a/fc_version +++ b/fc_version @@ -56,7 +56,7 @@ DEFAULT_FOLLOW_TAG=S3_2 # - 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.2-2021.Dec.20b" +NETWORK_CAPSTRING="+Freeciv.Devel-3.2-2021.Dec.25" FREECIV_DISTRIBUTOR="" diff --git a/server/ruleset.c b/server/ruleset.c index 560177d6a7..ace0660577 100644 --- a/server/ruleset.c +++ b/server/ruleset.c @@ -7007,6 +7007,19 @@ static bool load_ruleset_game(struct section_file *file, bool act, = secfile_lookup_bool_default(file, RS_DEFAULT_DAMAGE_REDUCES_BOMBARD_RATE, "combat_rules.damage_reduces_bombard_rate"); + game.info.low_firepower_badwallattacker + = secfile_lookup_int_default(file, 1, + "combat_rules.low_firepower_badwallattacker"); + game.info.low_firepower_pearl_harbour + = secfile_lookup_int_default(file, 1, + "combat_rules.low_firepower_pearl_harbour"); + game.info.low_firepower_combat_bonus + = secfile_lookup_int_default(file, 1, + "combat_rules.low_firepower_combat_bonus"); + game.info.low_firepower_nonnat_bombard + = secfile_lookup_int_default(file, 1, + "combat_rules.low_firepower_nonnat_bombard"); + game.info.nuke_pop_loss_pct = secfile_lookup_int_default_min_max(file, RS_DEFAULT_NUKE_POP_LOSS_PCT, RS_MIN_NUKE_POP_LOSS_PCT, diff --git a/tools/ruleutil/comments.c b/tools/ruleutil/comments.c index 82ceb51da9..5e08a6f6c3 100644 --- a/tools/ruleutil/comments.c +++ b/tools/ruleutil/comments.c @@ -67,6 +67,10 @@ static struct { char *combat_rules_only_real_fight_veteran; char *combat_rules_scaled_veterancy; char *combat_rules_damage_reduces_bombard_rate; + char *combat_rules_low_fp_badwallattacker; + char *combat_rules_low_fp_pearl_harbour; + char *combat_rules_low_fp_combat_bonus; + char *combat_rules_low_fp_nonnat_bombard; char *combat_rules_nuke_pop_loss; char *combat_rules_nuke_defender_survival; char *auto_attack; @@ -182,6 +186,14 @@ bool comments_load(void) "entrydoc.combat_odds_scaled_veterancy"); comment_load(comments_storage.combat_rules_damage_reduces_bombard_rate, comment_file, "entrydoc.damage_reduces_bombard_rate"); + comment_load(comments_storage.combat_rules_low_fp_badwallattacker, comment_file, + "entrydoc.low_firepower_badwallattacker"); + comment_load(comments_storage.combat_rules_low_fp_pearl_harbour, comment_file, + "entrydoc.low_firepower_pearl_harbour"); + comment_load(comments_storage.combat_rules_low_fp_combat_bonus, comment_file, + "entrydoc.low_firepower_combat_bonus"); + comment_load(comments_storage.combat_rules_low_fp_nonnat_bombard, comment_file, + "entrydoc.low_firepower_nonnat_bombard"); comment_load(comments_storage.combat_rules_nuke_pop_loss, comment_file, "entrydoc.nuke_pop_loss_pct"); comment_load(comments_storage.combat_rules_nuke_defender_survival, @@ -586,6 +598,46 @@ void comment_combat_rules_damage_reduces_bombard_rate(struct section_file *sfile "combat_rules"); } +/**********************************************************************//** + Write combat_rules low_firepower_badwallattacker settings header. +**************************************************************************/ +void comment_combat_rules_low_fp_badwallattacker(struct section_file *sfile) +{ + comment_entry_write(sfile, + comments_storage.combat_rules_low_fp_badwallattacker, + "combat_rules"); +} + +/**********************************************************************//** + Write combat_rules low_firepower_pearl_harbour settings header. +**************************************************************************/ +void comment_combat_rules_low_fp_pearl_harbour(struct section_file *sfile) +{ + comment_entry_write(sfile, + comments_storage.combat_rules_low_fp_pearl_harbour, + "combat_rules"); +} + +/**********************************************************************//** + Write combat_rules low_firepower_combat_bonus settings header. +**************************************************************************/ +void comment_combat_rules_low_fp_combat_bonus(struct section_file *sfile) +{ + comment_entry_write(sfile, + comments_storage.combat_rules_low_fp_combat_bonus, + "combat_rules"); +} + +/**********************************************************************//** + Write combat_rules low_firepower_nonnat_bombard settings header. +**************************************************************************/ +void comment_combat_rules_low_fp_nonnat_bombard(struct section_file *sfile) +{ + comment_entry_write(sfile, + comments_storage.combat_rules_low_fp_nonnat_bombard, + "combat_rules"); +} + /**********************************************************************//** Write combat_rules nuke_pop_loss_pct settings header. **************************************************************************/ diff --git a/tools/ruleutil/comments.h b/tools/ruleutil/comments.h index ed86428ce2..43716725d8 100644 --- a/tools/ruleutil/comments.h +++ b/tools/ruleutil/comments.h @@ -70,6 +70,10 @@ void comment_combat_rules_only_killing_veteran(struct section_file *sfile); void comment_combat_rules_only_real_fight_veteran(struct section_file *sfile); void comment_combat_rules_scaled_veterancy(struct section_file *sfile); void comment_combat_rules_damage_reduces_bombard_rate(struct section_file *sfile); +void comment_combat_rules_low_fp_badwallattacker(struct section_file *sfile); +void comment_combat_rules_low_fp_pearl_harbour(struct section_file *sfile); +void comment_combat_rules_low_fp_combat_bonus(struct section_file *sfile); +void comment_combat_rules_low_fp_nonnat_bombard(struct section_file *sfile); void comment_combat_rules_nuke_pop_loss(struct section_file *sfile); void comment_combat_rules_nuke_defender_survival(struct section_file *sfile); void comment_auto_attack(struct section_file *sfile); diff --git a/tools/ruleutil/rulesave.c b/tools/ruleutil/rulesave.c index e2d5961a46..535df79a7a 100644 --- a/tools/ruleutil/rulesave.c +++ b/tools/ruleutil/rulesave.c @@ -1418,6 +1418,26 @@ static bool save_game_ruleset(const char *filename, const char *name) save_default_bool(sfile, game.info.damage_reduces_bombard_rate, RS_DEFAULT_DAMAGE_REDUCES_BOMBARD_RATE, "combat_rules.damage_reduces_bombard_rate", NULL); + if (game.info.low_firepower_badwallattacker != 1) { + comment_combat_rules_low_fp_badwallattacker(sfile); + } + save_default_int(sfile, game.info.low_firepower_badwallattacker, 1, + "combat_rules.low_firepower_badwallattacker", NULL); + if (game.info.low_firepower_pearl_harbour != 1) { + comment_combat_rules_low_fp_pearl_harbour(sfile); + } + save_default_int(sfile, game.info.low_firepower_pearl_harbour, 1, + "combat_rules.low_firepower_pearl_harbour", NULL); + if (game.info.low_firepower_combat_bonus != 1) { + comment_combat_rules_low_fp_combat_bonus(sfile); + } + save_default_int(sfile, game.info.low_firepower_combat_bonus, 1, + "combat_rules.low_firepower_combat_bonus", NULL); + if (game.info.low_firepower_nonnat_bombard != 1) { + comment_combat_rules_low_fp_nonnat_bombard(sfile); + } + save_default_int(sfile, game.info.low_firepower_nonnat_bombard, 1, + "combat_rules.low_firepower_nonnat_bombard", NULL); if (game.info.nuke_pop_loss_pct != RS_DEFAULT_NUKE_POP_LOSS_PCT) { comment_combat_rules_nuke_pop_loss(sfile); } -- 2.34.1