From 4112476bc9c2d29e89bcbe83c5b7073fd38de068 Mon Sep 17 00:00:00 2001 From: orwell96 Date: Mon, 11 Feb 2019 21:41:10 +0100 Subject: Small stoprail fixes --- advtrains_line_automation/stoprail.lua | 39 ++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 14 deletions(-) (limited to 'advtrains_line_automation') diff --git a/advtrains_line_automation/stoprail.lua b/advtrains_line_automation/stoprail.lua index cc2c8ac..2610d1c 100644 --- a/advtrains_line_automation/stoprail.lua +++ b/advtrains_line_automation/stoprail.lua @@ -137,25 +137,36 @@ local adefunc = function(def, preset, suffix, rotation) on_train_approach = function(pos,train_id, train, index) if train.path_cn[index] == 1 then advtrains.interlocking.lzb_add_oncoming_npr(train, index, 2) + local pe = advtrains.encode_pos(pos) + local stdata = advtrains.lines.stops[pe] + if stdata and stdata.stn then + local stn = advtrains.lines.stations[stdata.stn] + local stnname = stn and stn.name or "Unknown Station" + train.text_inside = "Next Stop:\n"..stnname + end end end, on_train_enter = function(pos, train_id) local train = advtrains.trains[train_id] - - local pe = advtrains.encode_pos(pos) - local stdata = advtrains.lines.stops[pe] - if not stdata then - advtrains.atc.train_set_command(train, "B0", true) - updatemeta(pos) + local index = atfloor(train.index) + if train.path_cn[index] == 1 then + local pe = advtrains.encode_pos(pos) + local stdata = advtrains.lines.stops[pe] + if not stdata then + advtrains.atc.train_set_command(train, "B0", true) + updatemeta(pos) + end + + local stn = advtrains.lines.stations[stdata.stn] + local stnname = stn and stn.name or "Unknown Station" + + -- Send ATC command and set text + advtrains.atc.train_set_command(train, "B0 W O"..stdata.doors..(stdata.reverse and "R" or "").." D"..stdata.wait.." OC D1 SM", true) + train.text_inside = stnname + if tonumber(stdata.wait) then + minetest.after(tonumber(stdata.wait), function() train.text_inside = "" end) + end end - - local stn = advtrains.lines.stations[stdata.stn] - local stnname = stn and stn.name or "Unknown Station" - - -- Send ATC command and set text - advtrains.atc.train_set_command(train, "B0 W O"..stdata.doors..(stdata.reverse and "R" or "").." D"..stdata.wait.." OC D1 SM", true) - train.text_inside = stnname - end }, } -- cgit v1.2.3