From 42eb1713593b94381cc05391a28d47143627961c Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sat, 3 Apr 2021 13:37:39 +0300 Subject: [PATCH 45/45] Round city size reduction by nuke_pop_loss_pct to neareset, not down Make default nuke_pop_loss_pct 49 (instead of 50) so cities are never completely destroyed when the default value is used. See osdn #41911 Signed-off-by: Marko Lindqvist --- common/game.h | 2 +- data/alien/game.ruleset | 6 +++--- data/civ1/game.ruleset | 6 +++--- data/civ2/game.ruleset | 6 +++--- data/civ2civ3/game.ruleset | 6 +++--- data/classic/game.ruleset | 6 +++--- data/goldkeep/game.ruleset | 6 +++--- data/granularity/game.ruleset | 6 +++--- data/multiplayer/game.ruleset | 6 +++--- data/sandbox/game.ruleset | 6 +++--- data/stub/game.ruleset | 6 +++--- data/webperimental/game.ruleset | 6 +++--- server/unittools.c | 2 +- 13 files changed, 35 insertions(+), 35 deletions(-) diff --git a/common/game.h b/common/game.h index 11350bda47..ac370fc741 100644 --- a/common/game.h +++ b/common/game.h @@ -814,7 +814,7 @@ extern struct world wld; #define RS_DEFAULT_TIRED_ATTACK FALSE #define RS_DEFAULT_ONLY_KILLING_VETERAN FALSE -#define RS_DEFAULT_NUKE_POP_LOSS_PCT 50 +#define RS_DEFAULT_NUKE_POP_LOSS_PCT 49 #define RS_MIN_NUKE_POP_LOSS_PCT 0 #define RS_MAX_NUKE_POP_LOSS_PCT 100 #define RS_DEFAULT_NUKE_DEFENDER_SURVIVAL_CHANCE_PCT 0 diff --git a/data/alien/game.ruleset b/data/alien/game.ruleset index 7e6a7a9f6a..890ff60573 100644 --- a/data/alien/game.ruleset +++ b/data/alien/game.ruleset @@ -226,9 +226,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/civ1/game.ruleset b/data/civ1/game.ruleset index 3318912dee..c177db5a7a 100644 --- a/data/civ1/game.ruleset +++ b/data/civ1/game.ruleset @@ -211,9 +211,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/civ2/game.ruleset b/data/civ2/game.ruleset index dd95a2616b..7c01c4fd93 100644 --- a/data/civ2/game.ruleset +++ b/data/civ2/game.ruleset @@ -207,9 +207,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/civ2civ3/game.ruleset b/data/civ2civ3/game.ruleset index 80c6b8ac2e..0350cfe546 100644 --- a/data/civ2civ3/game.ruleset +++ b/data/civ2civ3/game.ruleset @@ -232,9 +232,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/classic/game.ruleset b/data/classic/game.ruleset index 60479f4767..5576c37db8 100644 --- a/data/classic/game.ruleset +++ b/data/classic/game.ruleset @@ -227,9 +227,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/goldkeep/game.ruleset b/data/goldkeep/game.ruleset index f9edae9b51..20127efee8 100644 --- a/data/goldkeep/game.ruleset +++ b/data/goldkeep/game.ruleset @@ -230,9 +230,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/granularity/game.ruleset b/data/granularity/game.ruleset index aa4bd0a237..7e9231999e 100644 --- a/data/granularity/game.ruleset +++ b/data/granularity/game.ruleset @@ -222,9 +222,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/multiplayer/game.ruleset b/data/multiplayer/game.ruleset index 783a70a8d4..f080818ce7 100644 --- a/data/multiplayer/game.ruleset +++ b/data/multiplayer/game.ruleset @@ -230,9 +230,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/sandbox/game.ruleset b/data/sandbox/game.ruleset index fc167f52a1..08e56fcbfd 100644 --- a/data/sandbox/game.ruleset +++ b/data/sandbox/game.ruleset @@ -230,9 +230,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/stub/game.ruleset b/data/stub/game.ruleset index 73ccb54564..bb8e975d2e 100644 --- a/data/stub/game.ruleset +++ b/data/stub/game.ruleset @@ -214,9 +214,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/data/webperimental/game.ruleset b/data/webperimental/game.ruleset index 26a11310e7..e36597d3d3 100644 --- a/data/webperimental/game.ruleset +++ b/data/webperimental/game.ruleset @@ -231,9 +231,9 @@ only_killing_makes_veteran = FALSE ; 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 100 means the city can never be -; destroyed completely using nuclear -nuke_pop_loss_pct = 50 +; loose population. Any value below 50 means the city can never be +; destroyed completely using nuclear. +nuke_pop_loss_pct = 49 ; Percentage chance of a city defender surviving nuclear attack. When set ; to 50 roughly half of defenders will survive nuclear attack. When set to diff --git a/server/unittools.c b/server/unittools.c index 7721ee7801..0fc7c82fb4 100644 --- a/server/unittools.c +++ b/server/unittools.c @@ -2734,7 +2734,7 @@ static void do_nuke_tile(struct player *pplayer, struct tile *ptile) city_link(pcity)); } - pop_loss = (game.info.nuke_pop_loss_pct * city_size_get(pcity)) / 100; + pop_loss = round((game.info.nuke_pop_loss_pct * city_size_get(pcity)) / 100.0); if (city_reduce_size(pcity, pop_loss, pplayer, "nuke")) { /* Send city size reduction to everyone seeing it */ send_city_info(NULL, pcity); -- 2.30.2