Train Search
Search for deadlocks in your intersections.
- The rail system is divided into blocks. A "block" is some area of rail that can be either free or occupied.
- Connected rails have the same block, no matter if they're a fork or a crossing.
- Signals form the borders of blocks.
- Syntax: every line is a path that a train may take through the intersection, passing through blocks as it goes.
-
For instance, a crossing of two rails might look like this:
1,10,2
3,10,4
Meaning "A train starts out in block 1, drives into block 10 (past a signal), leaves block 10 (past another signal) and exits the intersection at block 2. Simultaneously, another train may start out in block 3, drive into the shared block 10 (past yet another signal), leave it again and exit the intersection at block 4."
- Pre-signals are represented by a dash "-" instead of a comma. Ie. a path that passes over two pre-signals followed by a regular signal could be represented as
1-2-3,4
- Block numbers can be in any order. Block numbers can be discontinuous.
- You can use the block numbers from in-game. Simply hold the mouse over a rail signal, and the game will tell you which two blocks it connects.
- Alternatively, take a screenshot of the intersection and draw in the block borders with an editor like GIMP.
For instance, the default paths are for this intersection.
- The intersection is considered "deadlocked" when none of the trains passing
through it can move to the next block in their path.