-
-
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
Electric train waits for free path when track is not electrified #9094
Comments
I think the problem here is how trains with impossible routes due to incompatible/unpowered railtypes handle this. Navigating as far as possible and then displaying "waiting for path" isn't helpful, but neither is reversing on what is likely a one-way track. It would be better if it never left the previous station and displayed a warning (both as a news item and on the train's status bar), "no route to next station" or similar. I'm sure there are other solutions, too. |
This is exactly what will happen when you use regular (block or pre) signals. For path signaling, this behavior is correct and changing this could cause more problems than good. By the way, if the trains go on, you may never notice where the problem is. If the trains stop at the station, away from the problem, it won't be any easier to locate either. |
Yes, but it would be more consistent with e.g. a missing track piece hidden under a bridge. Here however - I mean the "steps to reproduce" from the OP are really dumbed down - think big: On a big busy multi-track crossing with two dozen switches and path signals securing each of the entries: You would think the train "is waiting for free path" because the junction is so extremely busy, not because the necessary track isn't build yet.
I have no idea of how the path signal algorithm works, but I imagine something like this:
If so, one could just check for Something like
or
|
I think in general OpenTTD could serious benefit from "Destination unreachable" message. I have a very similar issue with boats that cannot get to their dock ... especially when using rivers, good luck figuring out it got stuck going up-river. I really hate that by default it just starts to run around blindly hoping that some day magic happens and it can find its route. But without telling me, the human, about it, that is in many cases rather unlikely to happen. For trains with PBS it seems it is slightly "worse", as instead of running around blindly, it just gets stuck with a weird (read: unrelated) message .. yeah, that is confusing to any (new) player :) Currently what you get in most cases is the popup that either "ship is lost" or "made last year", but both are not visible on the vehicle itself, which is also confusing. And also shows up very very late. So yeah, lets make this a bit more user-friendly, one way or the other :) Shouldn't be "that hard" (famous last words!) :D |
That already exists; if a train is unable to get to its next destination for any reason, the pathfinder will flag the train as lost and this is displayed to the user as "Cannot reach [destination], X km/h" on the status bar, with a warning icon visible to the left and in the train listing. |
Idea: If a train has a destination and can't pathfind to it, occasionally (e.g. once a month) try to invoke the pathfinder in first a way that ignores railtypes, and if that succeeds give the player a specific warning that the train can't find its destination because of incompatible track. |
Version of OpenTTD
1.11.0, Windows (though I don't think it's an issue with the OS)
Expected result
If I forgot to electrify a piece of track, the electric trains should go to the last electrified tile, then turn around as if the non-electrified track didn't exist.
Actual result
The train stops at the last signal before the non-electrified piece of track, saying "Waiting for free path" even though the path is free. This can be confusing because in more complicated systems, it's not immediately clear why the train is waiting for a free path. And even if I figure out why it's waiting for a free path, I need to look very carefully to see which piece of track is causing the problem.
If the train went all the way to the last electrified piece of track and then turned around as it does when the track doesn't exist at all, it would be much easier to figure out why it's doing that and which piece of track I forgot to electrify.
Steps to reproduce
Build a track similar to the one in the screenshot below (note the piece of track that isn't electrified), buy an electric train, and run it on the track you just built. Don't forget the signals, otherwise it works as expected.
The text was updated successfully, but these errors were encountered: