-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
Fix #8797: Use logical rail length when placing signals #9652
Conversation
This comment was marked as abuse.
This comment was marked as abuse.
Signal sprite offsets are a separate issue. Signal placer doesn't even build signals that close in a "pretty" mode anyway. |
Separate, but not entirely so, because this change would significantly emphasize these inequalities. For spacing settings of 3 or more, it looks fine. Setting 1 and 2 is problematic. Another significant problem is the continuation of the game with the changed building rules. So maybe instead of an on/off switch, three points to choose would be better? |
If the alignment is fixed, people will complain because trains don't stop in front of signals. |
This comment was marked as abuse.
This comment was marked as abuse.
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.
#YOLO. Code looks fine. Would recommend against backporting though
Motivation / Problem
As described in #8797 signal placer uses some visual distance instead of logical distance to place signals requiring players who need a certain logical gap to place additional signals manually.
Description
Interprets signal distance in the UI as the logical length of that many X/Y tiles of rail. And uses the logical length of the track pieces (i.e. 192 or 128 units) when calculating the distance between signals placed.
When "keep fixed distance" setting is off (i.e. minimize_gaps = true) ensures that gap between signals never exceeds the required signal distance except for when it's on a bridge or tunnel.

Without minimize_gaps (i.e. "pretty" mode) just tries to place signals as soon as accumulated gap >= required distance regardless of whether it succeeds or not.
Also, this placer is mostly ready to work with segments of arbitrary logical length if that ever makes into the game.
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.