-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Update SpecificUnitAutomation.kt #12992
base: master
Are you sure you want to change the base?
Conversation
I'm against this, most players play the default tileset and this solves a problem in niche tilesets while making the general AI worse. |
More cities generally make the AI stronger, I don't think it too bad in terms of playing strength, it's more of a tradeoff between having more cringe cities in base game vs not being able to found cities at all with unusual map settings/mod. The 50 points cutoff what chosen a long time ago when the AI could still see invisible resources (lots of points from those resources), the complaint about snow maps quite specifically states this behaviour didn't use to be the case some time ago, maybe I could verify if they provided a safe file. |
Also, city states moving instead of settling t1 is considered a bit of a problem nowadays. |
I have no problem for city states to settle their first city immediately |
@@ -110,6 +110,9 @@ object CityLocationTileRanker { | |||
if (newCityTile.hasViewableResource(civ) && newCityTile.tileResource.resourceType == ResourceType.Bonus) tileValue -= 8 | |||
// Settling on bonus resources tends to waste a food | |||
// Settling on luxuries generally speeds up our game, and settling on strategics as well, as the AI cheats and can see them. | |||
|
|||
tileValue -= civ.cities.size * 5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will mean that at 20 cities I'll basically be able to settle nowhere, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's a cap on the number of cities.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why would we want to disable AI from settling anywhere after X cities?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The threshold for minimum tile score needs to be lower than 50 points, so the AI will settle also with bad spawn or weird ruleset/weird map settings, but them sprawling cities on empty snow/tundra/desert is not something a human would do and it feels 'unnatural' to the user. Setting the threshold low and increasing with more cities is maybe a way to balance these two problems.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but this config would have them not sprawl even on super good tiles, which is also unnatural
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How do I look up the average value of land tiles on the map? The best way then may be to let the AI calculate this for the whole map, and then use that to set a baseline for minimum tile quality.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, that is a much better idea! 👍🏿
Since this is basically static, we can even save it on the map itself, on map generation :)
Resolves https://discord.com/channels/586194543280390151/1071804673956266096/1334462051774369895 in my testing, and hopefully also https://discord.com/channels/586194543280390151/676559694864842766/1341517147310129276. The drawback is that the AI will probably found more crappy tundra/snow cities when this isn't needed, a better way to go about it may be to take into account the average tile yield on the map.