Fix #8123: trams on half-tiles couldn't find depots #8738
Merged
+45
−22
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
See #8123. When a tram is on a half-tile, it cannot find any depot until it leaves the tile.
Description
Because TrackBits don't know the concept of half-tiles, there is a hack in place that if
GetTileTrackStatus
returns zero, it checks if the tile has a single bit of tram tracks. In that case, it acts like it is a tram track going on either the X or Y axis. infollow_track.hpp
there is code preventing the pathfinder from exiting the tile on the wrong side in these cases, "fixing" the path finder in believing it is a half-tile.This worked well for normal cases, but when clicking "Goto Depot" while on a half-tile, it aborted early thinking there was no way to find a way off its current tile. There were several other cases where the source tile could be empty because it didn't carry over this fix.
Limitations
I am touching the pathfinder. Who knows what the side-effects are.
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.