aboutsummaryrefslogtreecommitdiff
path: root/advtrains_train_subway/sounds
ModeNameSize
-rw-r--r--advtrains_subway_arrive.ogg22658logplain
-rw-r--r--advtrains_subway_dclose.ogg14298logplain
-rw-r--r--advtrains_subway_depart.ogg39161logplain
-rw-r--r--advtrains_subway_dopen.ogg14307logplain
-rw-r--r--advtrains_subway_horn.ogg14370logplain
-rw-r--r--advtrains_subway_loop.ogg33319logplain
sengers out of the trains This command kicks all passengers (non-driving players) off the train. This command works only if the train is stopped and its doors are open. Cpl Temporarily switch the train to "Autocouple" mode and wait for coupling. This command makes the train continue at its current speed until it hits another standing wagon or train. Then, it couples to this train and ATC command execution continues. # conditional statements: I<condition><code>; Execute code only if condition applies I<condition><code1>E<code2>; Execute code1 only if condition applies, else execute code2 Conditions: + / - Tests the train's movement direction against the arrow on the ATC rail: M+ is true when train drives in direction of arrow. [</>/<=/>=][speed] Test if train's speed is greater or smaller than the given value Examples: I- B0 W R ; S8 If the train drives in the 'wrong' direction, stop and reverse; independently accelerate to speed 8 afterwards. I<8 S8 ; If the train is slower than 8, accelerate to 8. # Interlocking With advtrains_interlocking, there's one more available command: A0 Disable ARS on the train. A1 Enable ARS on the train. When disabled, the train will not trigger automatic route setting on signals based on ARS. # Persistence ATC controllers that are configured as 'static' or 'mesecon' are persistent over mapblock unloads and will even command the train when the mapblock is unloaded. This is not possible with digilines since these do not work in unloaded mapchunks. # LUA ATC controller (in development) The LUA ATC Controller will operate by using LUA code. All operations shown above will have a function equivalent. Additionally all LUA ATC controllers share an environment and setting signal and switch status will be possible to allow for complicated railway systems/fully automated subways a.s.o. Also planned: - digicompute add-on to allow computer access to the ATC environment (railway maps... ... ... ... ...)