blob: 9abfaad3008bf8af3ed62ff5cfe45a5e0c012719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
local pts = {
north={
pos=POS(-2358,15,-1329),
lined="st"
},
south={
pos=POS(-2358,15,-1361),
lined="st"
},
}
local set_dir = function(dir)
for _,v in pairs(pts) do
setstate(v.pos,(dir==((true and v.lined=="st") or false) and "st" or "cr"))
end
end
__approach_callback_mode = 2
if event.approach and not event.has_entered then
atc_set_lzb_tsr(2)
atc_set_ars_disable(true)
return
end
if event.train then
if not F.has_rc("TANH_REV") then
atc_set_ars_disable(false)
return
end
if not F.has_rc("TANH_REV_active") then
if not atc_arrow then
atc_send("S2")
return
end
if F.has_rc("TANH_REV_exit") then return end
F.add_rc("TANH_REV_active")
split_off_locomotive("B0",3)
atc_send("S2")
set_dir(true)
return
else
if not atc_arrow then return end
F.remove_rc({"TANH_REV_active"})
F.add_rc("TANH_REV_exit")
atc_send("B0WRD1S5D5SM")
return
end
end
|