Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Guided Missile Free (and Maintenance overhaul) #5698

Merged
merged 5 commits into from
Nov 22, 2021

Conversation

itanasi
Copy link
Contributor

@itanasi itanasi commented Nov 20, 2021

Adds support for NoMaintenance
Applies feature to Guided Missile
Change listed in #4697

@itanasi
Copy link
Contributor Author

itanasi commented Nov 20, 2021

Wait, put on hold. Didn't add translation entries

@itanasi itanasi closed this Nov 20, 2021
@SomeTroglodyte
Copy link
Collaborator

No template necessary, the json will be picked up. But don't include unrelated build script changes.

You may get wrong results though as far as I can guess - they can be counted twice since they can also count as garrisoned? I'll leave looking more thoroughly to you.

temurakami added 2 commits November 21, 2021 21:52
Add UnitMaintenanceDiscount
Rename UnitMaintenanceDiscount->UnitMaintenanceDiscountGlobal
Rework maintenance equation to account for overlapping reductions
Add maintenance variable to MapUnit
@itanasi
Copy link
Contributor Author

itanasi commented Nov 22, 2021

New version built.
This adds a more flexible and robust calculation for overlapping maintenance modifiers
And now Free Units will properly drop the most expensive units
Tested manually using print statements that the maintenance value gets updated and sorting/dropping works
Not sure about the float->double->float conversions, nor if there's a more efficient way than this iterative manner

@itanasi itanasi reopened this Nov 22, 2021
@itanasi itanasi changed the title Add new UniqueType.NoMaintenance to support Guided Missile Make Guided Missile Free (and Maintenance overhaul) Nov 22, 2021
// Note all discounts are in the form of -X%, such as -25 for 25% reduction
for (unit in unitsToPayFor){
if (unit.hasUnique(UniqueType.UnitMaintenanceDiscount)){
unit.maintenance = 1f + unit.getMatchingUniques(UniqueType.UnitMaintenanceDiscount).first().params[0].toFloat()/100f
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use unique.param[0].toPercent()

// Apply global discounts
for (unique in civInfo.getMatchingUniques(UniqueType.UnitMaintenanceDiscountGlobal, StateForConditionals(civInfo))) {
for (unit in unitsToPayFor.filter{it.matchesFilter(unique.params[1])}){
unit.maintenance *= 1f + unique.params[0].toFloat()/100f
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And here

unitsToPayFor = unitsToPayFor.sortedByDescending { it.maintenance }.drop(freeUnits)
val numberOfUnitsToPayFor = max(0.0, unitsToPayFor.sumOf { it.maintenance.toDouble() }).toFloat()

// var numberOfUnitsToPayFor = max(0f, unitsToPayFor.count().toFloat() - freeUnits)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove dead code

@@ -1474,6 +1474,7 @@
"range": 8,
"cost": 150,
"requiredTech": "Advanced Ballistics",
"uniques": ["-100% maintenance costs"],
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Number needs to be in square brackets

temurakami added 2 commits November 22, 2021 07:48
More robust uniques check code so not assuming only one matching unique
Use toPercent()
@itanasi
Copy link
Contributor Author

itanasi commented Nov 22, 2021

Thanks for the comments. Code cleaned up and this time validated against actual commit

@yairm210 yairm210 merged commit b72a2c3 into yairm210:master Nov 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants