-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathCityStats.kt
642 lines (522 loc) · 28.2 KB
/
CityStats.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
package com.unciv.logic.city
import com.unciv.logic.map.tile.RoadStatus
import com.unciv.models.Counter
import com.unciv.models.ruleset.Building
import com.unciv.models.ruleset.IConstruction
import com.unciv.models.ruleset.INonPerpetualConstruction
import com.unciv.models.ruleset.unique.LocalUniqueCache
import com.unciv.models.ruleset.unique.Unique
import com.unciv.models.ruleset.unique.UniqueTarget
import com.unciv.models.ruleset.unique.UniqueType
import com.unciv.models.ruleset.unit.BaseUnit
import com.unciv.models.stats.Stat
import com.unciv.models.stats.StatMap
import com.unciv.models.stats.Stats
import com.unciv.ui.components.extensions.toPercent
import com.unciv.utils.DebugUtils
import kotlin.math.min
class StatTreeNode {
val children = LinkedHashMap<String, StatTreeNode>()
private var innerStats: Stats? = null
fun setInnerStat(stat: Stat, value: Float) {
if (innerStats == null) innerStats = Stats()
innerStats!![stat] = value
}
private fun addInnerStats(stats: Stats) {
if (innerStats == null) innerStats = stats.clone() // Copy the stats instead of referencing them
else innerStats!!.add(stats) // What happens if we add 2 stats to the same leaf?
}
fun addStats(newStats: Stats, vararg hierarchyList: String) {
if (hierarchyList.isEmpty()) {
addInnerStats(newStats)
return
}
val childName = hierarchyList.first()
if (!children.containsKey(childName))
children[childName] = StatTreeNode()
children[childName]!!.addStats(newStats, *hierarchyList.drop(1).toTypedArray())
}
fun add(otherTree: StatTreeNode) {
if (otherTree.innerStats != null) addInnerStats(otherTree.innerStats!!)
for ((key, value) in otherTree.children) {
if (!children.containsKey(key)) children[key] = value
else children[key]!!.add(value)
}
}
fun clone() : StatTreeNode {
val new = StatTreeNode()
new.innerStats = this.innerStats?.clone()
new.children.putAll(this.children)
return new
}
val totalStats: Stats
get() {
val toReturn = Stats()
if (innerStats != null) toReturn.add(innerStats!!)
for (child in children.values) toReturn.add(child.totalStats)
return toReturn
}
}
/** Holds and calculates [Stats] for a city.
*
* No field needs to be saved, all are calculated on the fly,
* so its field in [City] is @Transient and no such annotation is needed here.
*/
class CityStats(val city: City) {
//region Fields, Transient
var baseStatTree = StatTreeNode()
var statPercentBonusTree = StatTreeNode()
// Computed from baseStatList and statPercentBonusList - this is so the players can see a breakdown
var finalStatList = LinkedHashMap<String, Stats>()
var happinessList = LinkedHashMap<String, Float>()
var statsFromTiles = Stats()
var currentCityStats: Stats = Stats() // This is so we won't have to calculate this multiple times - takes a lot of time, especially on phones
//endregion
//region Pure Functions
private fun getStatsFromTradeRoute(): Stats {
val stats = Stats()
val capitalForTradeRoutePurposes = city.civ.getCapital()!!
if (city != capitalForTradeRoutePurposes && city.isConnectedToCapital()) {
stats.gold = capitalForTradeRoutePurposes.population.population * 0.15f + city.population.population * 1.1f - 1 // Calculated by http://civilization.wikia.com/wiki/Trade_route_(Civ5)
for (unique in city.getMatchingUniques(UniqueType.StatsFromTradeRoute))
stats.add(unique.stats)
val percentageStats = Stats()
for (unique in city.getMatchingUniques(UniqueType.StatPercentFromTradeRoutes))
percentageStats[Stat.valueOf(unique.params[1])] += unique.params[0].toFloat()
for ((stat) in stats) {
stats[stat] *= percentageStats[stat].toPercent()
}
}
return stats
}
private fun getStatsFromProduction(production: Float): Stats {
val stats = Stats()
if (city.cityConstructions.currentConstructionFromQueue in Stat.statsWithCivWideField.map { it.name }) {
val stat = Stat.valueOf(city.cityConstructions.currentConstructionFromQueue)
stats[stat] = production * getStatConversionRate(stat)
}
return stats
}
fun getStatConversionRate(stat: Stat): Float {
var conversionRate = 1 / 4f
val conversionUnique = city.civ.getMatchingUniques(UniqueType.ProductionToCivWideStatConversionBonus).firstOrNull { it.params[0] == stat.name }
if (conversionUnique != null) {
conversionRate *= conversionUnique.params[1].toPercent()
}
return conversionRate
}
private fun getStatPercentBonusesFromRailroad(): Stats {
val stats = Stats()
val railroadImprovement = city.getRuleset().railroadImprovement
?: return stats // for mods
val techEnablingRailroad = railroadImprovement.techRequired
// If we conquered enemy cities connected by railroad, but we don't yet have that tech,
// we shouldn't get bonuses, it's as if the tracks are laid out but we can't operate them.
if ( (techEnablingRailroad == null || city.civ.tech.isResearched(techEnablingRailroad))
&& (city.isCapital() || isConnectedToCapital(RoadStatus.Railroad)))
stats.production += 25f
return stats
}
private fun addStatPercentBonusesFromBuildings(statPercentBonusTree: StatTreeNode) {
val localUniqueCache = LocalUniqueCache()
for (building in city.cityConstructions.getBuiltBuildings())
statPercentBonusTree.addStats(building.getStatPercentageBonuses(city, localUniqueCache),
"Buildings", building.name)
}
private fun getStatPercentBonusesFromPuppetCity(): Stats {
val stats = Stats()
if (city.isPuppet) {
stats.science -= 25f
stats.culture -= 25f
}
return stats
}
fun getGrowthBonus(totalFood: Float): StatMap {
val growthSources = StatMap()
val stateForConditionals = city.state
// "[amount]% growth [cityFilter]"
for (unique in city.getMatchingUniques(UniqueType.GrowthPercentBonus, stateForConditionals = stateForConditionals)) {
if (!city.matchesFilter(unique.params[1])) continue
growthSources.add(
unique.getSourceNameForUser(),
Stats(food = unique.params[0].toFloat() / 100f * totalFood)
)
}
return growthSources
}
fun hasExtraAnnexUnhappiness(): Boolean {
if (city.civ.civName == city.foundingCiv || city.isPuppet) return false
return !city.containsBuildingUnique(UniqueType.RemoveAnnexUnhappiness)
}
fun getStatsOfSpecialist(specialistName: String, localUniqueCache: LocalUniqueCache = LocalUniqueCache(false)): Stats {
val specialist = city.getRuleset().specialists[specialistName]
?: return Stats()
val stats = specialist.cloneStats()
for (unique in localUniqueCache.forCityGetMatchingUniques(city, UniqueType.StatsFromSpecialist))
if (city.matchesFilter(unique.params[1]))
stats.add(unique.stats)
for (unique in localUniqueCache.forCityGetMatchingUniques(city, UniqueType.StatsFromObject))
if (unique.params[1] == specialistName)
stats.add(unique.stats)
return stats
}
private fun getStatsFromSpecialists(specialists: Counter<String>): Stats {
val stats = Stats()
val localUniqueCache = LocalUniqueCache()
for (entry in specialists.filter { it.value > 0 })
stats.add(getStatsOfSpecialist(entry.key, localUniqueCache) * entry.value)
return stats
}
private fun getStatsFromUniquesBySource(): StatTreeNode {
val sourceToStats = StatTreeNode()
val cityStateStatsMultipliers = city.civ.getMatchingUniques(UniqueType.BonusStatsFromCityStates).toList()
fun addUniqueStats(unique: Unique) {
val stats = unique.stats.clone()
if (unique.sourceObjectType==UniqueTarget.CityState)
for (multiplierUnique in cityStateStatsMultipliers)
stats[Stat.valueOf(multiplierUnique.params[1])] *= multiplierUnique.params[0].toPercent()
sourceToStats.addStats(stats, unique.getSourceNameForUser(), unique.sourceObjectName ?: "")
}
for (unique in city.getMatchingUniques(UniqueType.StatsPerCity))
if (city.matchesFilter(unique.params[1]))
addUniqueStats(unique)
// "[stats] per [amount] population [cityFilter]"
for (unique in city.getMatchingUniques(UniqueType.StatsPerPopulation))
if (city.matchesFilter(unique.params[2])) {
val amountOfEffects = (city.population.population / unique.params[1].toInt()).toFloat()
sourceToStats.addStats(unique.stats.times(amountOfEffects), unique.getSourceNameForUser(), unique.sourceObjectName ?: "")
}
for (unique in city.getMatchingUniques(UniqueType.StatsFromCitiesOnSpecificTiles))
if (city.getCenterTile().matchesTerrainFilter(unique.params[1], city.civ))
addUniqueStats(unique)
return sourceToStats
}
private fun getStatPercentBonusesFromGoldenAge(isGoldenAge: Boolean): Stats {
val stats = Stats()
if (isGoldenAge) {
stats.production += 20f
stats.culture += 20f
}
return stats
}
private fun getStatsPercentBonusesFromUniquesBySource(currentConstruction: IConstruction): StatTreeNode {
val sourceToStats = StatTreeNode()
fun addUniqueStats(unique: Unique, stat: Stat, amount: Float) {
sourceToStats.addStats(Stats().add(stat, amount), unique.getSourceNameForUser(), unique.sourceObjectName ?: "")
}
for (unique in city.getMatchingUniques(UniqueType.StatPercentBonus)) {
addUniqueStats(unique, Stat.valueOf(unique.params[1]), unique.params[0].toFloat())
}
for (unique in city.getMatchingUniques(UniqueType.StatPercentBonusCities)) {
if (city.matchesFilter(unique.params[2]))
addUniqueStats(unique, Stat.valueOf(unique.params[1]), unique.params[0].toFloat())
}
val uniquesToCheck =
when {
currentConstruction is BaseUnit ->
city.getMatchingUniques(UniqueType.PercentProductionUnits)
currentConstruction is Building && currentConstruction.isAnyWonder() ->
city.getMatchingUniques(UniqueType.PercentProductionWonders)
currentConstruction is Building && !currentConstruction.isAnyWonder() ->
city.getMatchingUniques(UniqueType.PercentProductionBuildings)
else -> emptySequence() // Science/Gold production
}
for (unique in uniquesToCheck) {
if (constructionMatchesFilter(currentConstruction, unique.params[1])
&& city.matchesFilter(unique.params[2])
)
addUniqueStats(unique, Stat.Production, unique.params[0].toFloat())
}
for (unique in city.getMatchingUniques(UniqueType.StatPercentFromReligionFollowers))
addUniqueStats(unique, Stat.valueOf(unique.params[1]),
min(
unique.params[0].toFloat() * city.religion.getFollowersOfOurReligion(),
unique.params[2].toFloat()
))
if (currentConstruction is Building
&& city.civ.getCapital()?.cityConstructions?.isBuilt(currentConstruction.name) == true
) {
for (unique in city.getMatchingUniques(UniqueType.PercentProductionBuildingsInCapital))
addUniqueStats(unique, Stat.Production, unique.params[0].toFloat())
}
return sourceToStats
}
private fun getStatPercentBonusesFromUnitSupply(): Stats {
val stats = Stats()
val supplyDeficit = city.civ.stats.getUnitSupplyDeficit()
if (supplyDeficit > 0)
stats.production = city.civ.stats.getUnitSupplyProductionPenalty()
return stats
}
private fun constructionMatchesFilter(construction: IConstruction, filter: String): Boolean {
val state = city.state
if (construction is Building) return construction.matchesFilter(filter, state)
if (construction is BaseUnit) return construction.matchesFilter(filter, state)
return false
}
fun isConnectedToCapital(roadType: RoadStatus): Boolean {
if (city.civ.cities.size < 2) return false// first city!
// Railroad, or harbor from railroad
return if (roadType == RoadStatus.Railroad)
city.isConnectedToCapital {
roadTypes ->
roadTypes.any { it.contains(RoadStatus.Railroad.name) }
}
else city.isConnectedToCapital()
}
fun getRoadTypeOfConnectionToCapital(): RoadStatus {
return if (isConnectedToCapital(RoadStatus.Railroad)) RoadStatus.Railroad
else if (isConnectedToCapital(RoadStatus.Road)) RoadStatus.Road
else RoadStatus.None
}
private fun getBuildingMaintenanceCosts(): Float {
// Same here - will have a different UI display.
var buildingsMaintenance = city.cityConstructions.getMaintenanceCosts().toFloat() // this is AFTER the bonus calculation!
if (!city.civ.isHuman()) {
buildingsMaintenance *= city.civ.gameInfo.getDifficulty().aiBuildingMaintenanceModifier
}
for (unique in city.getMatchingUniques(UniqueType.BuildingMaintenance)) {
buildingsMaintenance *= unique.params[0].toPercent()
}
return buildingsMaintenance
}
//endregion
//region State-Changing Methods
fun updateTileStats(localUniqueCache: LocalUniqueCache = LocalUniqueCache()) {
val stats = Stats()
val workedTiles = city.tilesInRange.asSequence()
.filter {
city.location == it.position
|| city.isWorked(it)
|| it.owningCity == city && (it.getUnpillagedTileImprovement()
?.hasUnique(UniqueType.TileProvidesYieldWithoutPopulation, it.stateThisTile) == true
|| it.terrainHasUnique(UniqueType.TileProvidesYieldWithoutPopulation, it.stateThisTile))
}
for (tile in workedTiles) {
if (tile.isBlockaded() && city.isWorked(tile)) {
city.workedTiles.remove(tile.position)
city.lockedTiles.remove(tile.position)
city.shouldReassignPopulation = true
continue
}
val tileStats = tile.stats.getTileStats(city, city.civ, localUniqueCache)
stats.add(tileStats)
}
statsFromTiles = stats
}
// needs to be a separate function because we need to know the global happiness state
// in order to determine how much food is produced in a city!
fun updateCityHappiness(statsFromBuildings: StatTreeNode) {
val civInfo = city.civ
val newHappinessList = LinkedHashMap<String, Float>()
// This calculation seems weird to me.
// Suppose we calculate the modifier for an AI (non-human) player when the game settings has difficulty level 'prince'.
// We first get the difficulty modifier for this civilization, which results in the 'chieftain' modifier (0.6) being used,
// as this is a non-human player. Then we multiply that by the ai modifier in general, which is 1.0 for prince.
// The end result happens to be 0.6, which seems correct. However, if we were playing on chieftain difficulty,
// we would get back 0.6 twice and the modifier would be 0.36. Thus, in general there seems to be something wrong here
// I don't know enough about the original whether they do something similar or not and can't be bothered to find where
// in the source code this calculation takes place, but it would surprise me if they also did this double multiplication thing. ~xlenstra
var unhappinessModifier = civInfo.getDifficulty().unhappinessModifier
if (!civInfo.isHuman())
unhappinessModifier *= civInfo.gameInfo.getDifficulty().aiUnhappinessModifier
var unhappinessFromCity = -3f // -3 happiness per city
if (hasExtraAnnexUnhappiness())
unhappinessFromCity -= 2f
var uniqueUnhappinessModifier = 0f
for (unique in civInfo.getMatchingUniques(UniqueType.UnhappinessFromCitiesPercentage))
uniqueUnhappinessModifier += unique.params[0].toFloat()
newHappinessList["Cities"] = unhappinessFromCity * unhappinessModifier * uniqueUnhappinessModifier.toPercent()
var unhappinessFromCitizens = city.population.population.toFloat()
for (unique in city.getMatchingUniques(UniqueType.UnhappinessFromPopulationTypePercentageChange))
if (city.matchesFilter(unique.params[2]))
unhappinessFromCitizens += (unique.params[0].toFloat() / 100f) * city.population.getPopulationFilterAmount(unique.params[1])
if (hasExtraAnnexUnhappiness())
unhappinessFromCitizens *= 2f
if (unhappinessFromCitizens < 0) unhappinessFromCitizens = 0f
newHappinessList["Population"] = -unhappinessFromCitizens * unhappinessModifier
if (hasExtraAnnexUnhappiness()) newHappinessList["Occupied City"] = -2f //annexed city
val happinessFromSpecialists =
getStatsFromSpecialists(city.population.getNewSpecialists()).happiness.toInt()
.toFloat()
if (happinessFromSpecialists > 0) newHappinessList["Specialists"] = happinessFromSpecialists
newHappinessList["Buildings"] = statsFromBuildings.totalStats.happiness.toInt().toFloat()
newHappinessList["Tile yields"] = statsFromTiles.happiness
val happinessBySource = getStatsFromUniquesBySource()
for ((source, stats) in happinessBySource.children)
if (stats.totalStats.happiness != 0f) {
if (!newHappinessList.containsKey(source)) newHappinessList[source] = 0f
newHappinessList[source] = newHappinessList[source]!! + stats.totalStats.happiness
}
// we don't want to modify the existing happiness list because that leads
// to concurrency problems if we iterate on it while changing
happinessList = newHappinessList
}
private fun updateBaseStatList(statsFromBuildings: StatTreeNode) {
val newBaseStatTree = StatTreeNode()
// We don't edit the existing baseStatList directly, in order to avoid concurrency exceptions
val newBaseStatList = StatMap()
newBaseStatTree.addStats(Stats(
science = city.population.population.toFloat(),
production = city.population.getFreePopulation().toFloat()
), "Population")
newBaseStatList["Tile yields"] = statsFromTiles
newBaseStatList["Specialists"] =
getStatsFromSpecialists(city.population.getNewSpecialists())
newBaseStatList["Trade routes"] = getStatsFromTradeRoute()
newBaseStatTree.children["Buildings"] = statsFromBuildings
for ((source, stats) in newBaseStatList)
newBaseStatTree.addStats(stats, source)
newBaseStatTree.add(getStatsFromUniquesBySource())
baseStatTree = newBaseStatTree
}
private fun updateStatPercentBonusList(currentConstruction: IConstruction) {
val newStatsBonusTree = StatTreeNode()
newStatsBonusTree.addStats(getStatPercentBonusesFromGoldenAge(city.civ.goldenAges.isGoldenAge()),city.civ.nation.goldenAgeName)
addStatPercentBonusesFromBuildings(newStatsBonusTree)
newStatsBonusTree.addStats(getStatPercentBonusesFromRailroad(), "Railroad")
newStatsBonusTree.addStats(getStatPercentBonusesFromPuppetCity(), "Puppet City")
newStatsBonusTree.addStats(getStatPercentBonusesFromUnitSupply(), "Unit Supply")
newStatsBonusTree.add(getStatsPercentBonusesFromUniquesBySource(currentConstruction))
if (DebugUtils.SUPERCHARGED) {
val stats = Stats()
for (stat in Stat.entries) stats[stat] = 10000f
newStatsBonusTree.addStats(stats, "Supercharged")
}
statPercentBonusTree = newStatsBonusTree
}
fun update(currentConstruction: IConstruction = city.cityConstructions.getCurrentConstruction(),
updateTileStats:Boolean = true,
updateCivStats:Boolean = true,
localUniqueCache:LocalUniqueCache = LocalUniqueCache()) {
if (updateTileStats) updateTileStats(localUniqueCache)
// We need to compute Tile yields before happiness
val statsFromBuildings = city.cityConstructions.getStats(localUniqueCache) // this is performance heavy, so calculate once
updateBaseStatList(statsFromBuildings)
updateCityHappiness(statsFromBuildings)
updateStatPercentBonusList(currentConstruction)
updateFinalStatList(currentConstruction) // again, we don't edit the existing currentCityStats directly, in order to avoid concurrency exceptions
val newCurrentCityStats = Stats()
for (stat in finalStatList.values) newCurrentCityStats.add(stat)
currentCityStats = newCurrentCityStats
if (updateCivStats) city.civ.updateStatsForNextTurn()
}
private fun updateFinalStatList(currentConstruction: IConstruction) {
val newFinalStatList = StatMap() // again, we don't edit the existing currentCityStats directly, in order to avoid concurrency exceptions
for ((key, value) in baseStatTree.children)
newFinalStatList[key] = value.totalStats.clone()
val statPercentBonusesSum = statPercentBonusTree.totalStats
for (entry in newFinalStatList.values)
entry.production *= statPercentBonusesSum.production.toPercent()
// We only add the 'extra stats from production' AFTER we calculate the production INCLUDING BONUSES
val statsFromProduction = getStatsFromProduction(newFinalStatList.values.map { it.production }.sum())
if (!statsFromProduction.isEmpty()) {
baseStatTree = StatTreeNode().apply {
children.putAll(baseStatTree.children)
addStats(statsFromProduction, "Production")
} // concurrency-safe addition
newFinalStatList["Construction"] = statsFromProduction
}
for (entry in newFinalStatList.values) {
entry.gold *= statPercentBonusesSum.gold.toPercent()
entry.culture *= statPercentBonusesSum.culture.toPercent()
entry.food *= statPercentBonusesSum.food.toPercent()
entry.faith *= statPercentBonusesSum.faith.toPercent()
}
// AFTER we've gotten all the gold stats figured out, only THEN do we plonk that gold into Science
if (city.getRuleset().modOptions.hasUnique(UniqueType.ConvertGoldToScience)) {
val amountConverted = (newFinalStatList.values.sumOf { it.gold.toDouble() }
* city.civ.tech.goldPercentConvertedToScience).toInt().toFloat()
if (amountConverted > 0) // Don't want you converting negative gold to negative science yaknow
newFinalStatList["Gold -> Science"] = Stats(science = amountConverted, gold = -amountConverted)
}
for (entry in newFinalStatList.values) {
entry.science *= statPercentBonusesSum.science.toPercent()
}
for ((unique, statToBeRemoved) in city.getMatchingUniques(UniqueType.NullifiesStat)
.map { it to Stat.valueOf(it.params[0]) }
.distinct()
) {
val removedAmount = newFinalStatList.values.sumOf { it[statToBeRemoved].toDouble() }
newFinalStatList.add(
unique.getSourceNameForUser(),
Stats().apply { this[statToBeRemoved] = -removedAmount.toFloat() }
)
}
/* Okay, food calculation is complicated.
First we see how much food we generate. Then we apply production bonuses to it.
Up till here, business as usual.
Then, we deduct food eaten (from the total produced).
Now we have the excess food, to which "growth" modifiers apply
Some policies have bonuses for growth only, not general food production. */
val foodEaten = calcFoodEaten()
newFinalStatList["Population"]!!.food -= foodEaten
var totalFood = newFinalStatList.values.map { it.food }.sum()
// Apply growth modifier only when positive food
if (totalFood > 0) {
// Since growth bonuses are special, (applied afterwards) they will be displayed separately in the user interface as well.
// All bonuses except We Love The King do apply even when unhappy
val growthBonuses = getGrowthBonus(totalFood)
for (growthBonus in growthBonuses) {
newFinalStatList.add("[${growthBonus.key}] ([Growth])", growthBonus.value)
}
if (city.isWeLoveTheKingDayActive() && city.civ.getHappiness() >= 0) {
// We Love The King Day +25%, only if not unhappy
val weLoveTheKingFood = Stats(food = totalFood / 4)
newFinalStatList.add("We Love The King Day", weLoveTheKingFood)
}
// recalculate only when all applied - growth bonuses are not multiplicative
// bonuses can allow a city to grow even with -100% unhappiness penalty, this is intended
totalFood = newFinalStatList.values.map { it.food }.sum()
}
val buildingsMaintenance = getBuildingMaintenanceCosts() // this is AFTER the bonus calculation!
newFinalStatList["Maintenance"] = Stats(gold = -buildingsMaintenance.toInt().toFloat())
if (canConvertFoodToProduction(totalFood, currentConstruction)) {
newFinalStatList["Excess food to production"] =
Stats(production = getProductionFromExcessiveFood(totalFood), food = -totalFood)
}
val growthNullifyingUnique = city.getMatchingUniques(UniqueType.NullifiesGrowth).firstOrNull()
if (growthNullifyingUnique != null) {
// Does not nullify negative growth (starvation)
val currentGrowth = newFinalStatList.values.sumOf { it[Stat.Food].toDouble() }
if (currentGrowth > 0)
newFinalStatList.add(
growthNullifyingUnique.getSourceNameForUser(),
Stats(food = -currentGrowth.toFloat())
)
}
if (city.isInResistance())
newFinalStatList.clear() // NOPE
if (newFinalStatList.values.map { it.production }.sum() < 1) // Minimum production for things to progress
newFinalStatList["Production"] = Stats(production = 1f)
finalStatList = newFinalStatList
}
fun canConvertFoodToProduction(food: Float, currentConstruction: IConstruction): Boolean {
return (food > 0
&& currentConstruction is INonPerpetualConstruction
&& currentConstruction.hasUnique(UniqueType.ConvertFoodToProductionWhenConstructed))
}
/**
* Calculate the conversion of the excessive food to production when
* [UniqueType.ConvertFoodToProductionWhenConstructed] is at front of the build queue
* @param food is amount of excess Food generates this turn
* See for details: https://civilization.fandom.com/wiki/Settler_(Civ5)
* @see calcFoodEaten as well for Food consumed this turn
*/
fun getProductionFromExcessiveFood(food : Float): Float {
return if (food >= 4.0f ) 2.0f + (food / 4.0f).toInt()
else if (food >= 2.0f ) 2.0f
else if (food >= 1.0f ) 1.0f
else 0.0f
}
private fun calcFoodEaten(): Float {
var foodEaten = city.population.population.toFloat() * 2
var foodEatenBySpecialists = 2f * city.population.getNumberOfSpecialists()
for (unique in city.getMatchingUniques(UniqueType.FoodConsumptionBySpecialists))
if (city.matchesFilter(unique.params[1]))
foodEatenBySpecialists *= unique.params[0].toPercent()
foodEaten -= 2f * city.population.getNumberOfSpecialists() - foodEatenBySpecialists
return foodEaten
}
//endregion
}