Force LZB Halt setting

master
orwell96 2019-02-05 11:23:17 +01:00
parent 8b8c5a2c1f
commit e7dcee1127
4 changed files with 39 additions and 7 deletions

View File

@ -861,14 +861,24 @@ function wagon:handle_bordcom_fields(pname, formname, fields)
end
if fields.line then
if fields.line~="" then
train.line=fields.line
if fields.line ~= train.line then
train.line=fields.line
if advtrains.interlocking then
advtrains.interlocking.lzb_invalidate(train)
end
end
else
train.line=nil
end
end
if fields.routingcode then
if fields.routingcode~="" then
train.routingcode=fields.routingcode
if fields.routingcode ~= train.routingcode then
train.routingcode=fields.routingcode
if advtrains.interlocking then
advtrains.interlocking.lzb_invalidate(train)
end
end
else
train.routingcode=nil
end

View File

@ -1,7 +1,6 @@
-- lzb.lua
-- Enforced and/or automatic train override control, obeying signals
local function approach_callback(parpos, train_id, train, index)
local pos = advtrains.round_vector_floor_y(parpos)
@ -185,11 +184,24 @@ local function apply_control(id, train)
local i = 1
while i<=#lzb.oncoming do
if lzb.oncoming[i].idx < train.index-0.5 then
if not lzb.oncoming[i].npr then
train.speed_restriction = lzb.oncoming[i].spd
train.is_shunt = lzb.oncoming[i].sht
local ent = lzb.oncoming[i]
local nodelete
if not ent.npr then
if ent.spd == 0 and minetest.settings:get_bool("at_il_force_lzb_halt") then
atwarn(train.id,"overrun LZB 0 restriction (red signal) ",ent.pos)
-- Set train 1 index backward. Hope this does not lead to bugs...
train.index = ent.idx - 0.5
train.velocity = 0
train.ctrl.lzb = 0
nodelete = true
else
train.speed_restriction = ent.spd
train.is_shunt = ent.sht
end
end
if not nodelete then
table.remove(lzb.oncoming, i)
end
table.remove(lzb.oncoming, i)
else
i = i + 1
end

View File

@ -0,0 +1,4 @@
# Stop trains forcibly in front of signal when about to run over an LZB 0 restriction, instead of setting emergency halt for manual resolving
# This prevents the need to manually restart trains that overran red signals, but is unrealistic.
# This is a workaround to circumvent system breakages due to bugs in LZB braking curves
at_il_force_lzb_halt (Force LZB Halt) bool true

View File

@ -58,6 +58,9 @@ function r.fire_event(pos, evtdata)
return false
end
train.line = line .. ""
if advtrains.interlocking then
advtrains.interlocking.lzb_invalidate(train)
end
return true
end,
get_line = function()
@ -68,6 +71,9 @@ function r.fire_event(pos, evtdata)
return false
end
train.routingcode = rc
if advtrains.interlocking then
advtrains.interlocking.lzb_invalidate(train)
end
return true
end,
get_rc = function()