summaryrefslogtreecommitdiff
path: root/Tyard/nodes/(-4100,12,-2742).lua
diff options
context:
space:
mode:
Diffstat (limited to 'Tyard/nodes/(-4100,12,-2742).lua')
-rw-r--r--Tyard/nodes/(-4100,12,-2742).lua10
1 files changed, 7 insertions, 3 deletions
diff --git a/Tyard/nodes/(-4100,12,-2742).lua b/Tyard/nodes/(-4100,12,-2742).lua
index ecc670f..1fc57ae 100644
--- a/Tyard/nodes/(-4100,12,-2742).lua
+++ b/Tyard/nodes/(-4100,12,-2742).lua
@@ -2,6 +2,8 @@
-- Note: may need customising due to track layout
local this_dir = false -- true = F.dir arrow points north. atc_arrow points towards yard
+if not F.yard_active() then return end
+
__approach_callback_mode = 1
if event.approach and not event.has_entered then
atc_set_ars_disable(true)
@@ -11,7 +13,6 @@ end
if event.train then
if not atc_arrow then --train has entered headshunt from yard. bounce or depart
- F.remove_rc({"TY_HEADSHUNT"})
if not F.has_rc("TY_DEPART") then --if has TY_DEPART then another controller closer to the signal will remove to ensure signal engages the RC
schedule_in(";01",atc_id)
atc_set_ars_disable(true)
@@ -19,20 +20,23 @@ if event.train then
end
else --train has bounced
if F.has_rc("TY_AROUND") then
- if this_dir = F.dir() then --send train to Classification
+ if this_dir == F.dir() then --send train to Classification
F.remove_rc({"TY_AROUND"})
F.add_rc({"TY_PICKUP"})
atc_set_ars_disable(false)
return
end --if at wrong end, do nothing. train will follow TY_AROUND ARS to relevant headshunt
end -- if doesn't have TY_AROUND then let ARS classify the train
+
+ F.remove_rc({"TY_HEADSHUNT"})
+ atc_set_ars_disable(false)
end
return
end
if event.schedule then
if not atc_id then --bounce the train that just passed
- atc_send_to_train(event.msg,"S0WRD1S3")
+ atc_send_to_train(event.msg,"S0WRD1S3A1")
else
if atc_id == event.msg then --train hasn't fully passed yet, wait a bit longer
schedule_in(";01",atc_id)