Fix #9407: desync when founding a town nearby a station #9526
+7
−6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation / Problem
When a town is founded during a game, we misuse
_generating_world
to bypass a bunch of validation that normally should happen when towns grow etc.This is also done to skip updating
stations_near
, as it is a pretty expensive operation, and when generating a new map there is of course never a station around a town to start with. So this is safe to skip in that scenario. Not when founding a new town.As I wrote in the commit message:
This was reported in #9407.
Description
JGR also made a solution for this (JGRennison/OpenTTD-patches@b23ba0c), and although effective, it felt a bit like bringing a gun to a pillow fight.
I was also mostly wondering why
_generating_world
was misused like this, and why it would skip thestations_near
update.Long story short: the check on
_generating_world
is an optimization, to avoid wasting a lot of CPU on something that is never going to happen during map generation. So I looked for the next-best-thing that does the same but differently, and settled on checking if there is any station at all. During map generation of course there isn't.In result, after this PR the code does the same for new map generation (skipping the expensive station check), but fixes the bug in #9407.
JGR's solution is also a fine solution, but it introduces several globals and more complexity that can break over time. On the other hand, his solution might fix issues we were not even aware of. I leave it to the reviewer to balance this.
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.