You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Challenge: Some distant signals do not have a single concrete main signal they refer to. Example: A distant signal after which a point follows, which allows travel along one of two paths, with both paths having e.g. exit signals down the line.
IMO, the distant signal would probably have to indicate either both main signals that follow (go if both are go, caution if one of the two is not go, stop if both are stop), or the related main signal would have to change dynamically with the track state. Both options are difficult to support in BahnDSL, though for the first, all that the BahnDSL config has to do is indicate a relation of a distant signal to multiple main signals. The distant signal can be set to the appropriate related main signal during interlocking, where the track state is known.
There should be a way to relate a distant signal to its main signal in the Bahn configuration file:
distant signal4b 0x01
--> signal7
There should be a way to query the relationship in the interlocking algorithm:
get config signal.main
"signal4b"
: returns "signal7" (return an empty string when not applicable)get config signal.distant
"signal7"
: return "signal4b" (return an empty string when not applicable)The text was updated successfully, but these errors were encountered: