From 36d8c8b7162b3b6ba6cc0a7f98b0dc295024ecd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20P=C3=A9rez-Cerezo?= Date: Tue, 28 Jul 2020 20:39:35 +0200 Subject: Add command to split off locomotive --- advtrains_luaautomation/README.txt | 12 ++++++++---- advtrains_luaautomation/atc_rail.lua | 13 +++++++++---- 2 files changed, 17 insertions(+), 8 deletions(-) (limited to 'advtrains_luaautomation') diff --git a/advtrains_luaautomation/README.txt b/advtrains_luaautomation/README.txt index bf7ac52..a495a8d 100644 --- a/advtrains_luaautomation/README.txt +++ b/advtrains_luaautomation/README.txt @@ -206,12 +206,16 @@ split_at_index(index, command) split_at_fc(command) Splits the train in such a way that all cars with non-empty current FC of the first part of the train have the same FC. The - command specified is sent to the rear part, as with split_at_index. - It returns the fc of the cars of the first part. + command specified is sent to the rear part, as with + split_at_index. It returns the fc of the cars of the first part. - Example: Train has current FCs "" "" "foo" "bar" "boo" "foo" - Result: first train: "" "" "foo"; second train: "bar" "boo" "foo" + Example : Train has current FCs "" "" "foo" "bar" "foo" + Result: first train: "" "" "foo"; second train: "bar" "foo" The command returns "foo" in this case +split_off_locomotive(command) + Splits off the locomotives at the front of the train, which are + identified by an empty FC. command specifies the command to be + executed by the rear half of the train. step_fc() Steps the FCs of all train cars forward train_length() diff --git a/advtrains_luaautomation/atc_rail.lua b/advtrains_luaautomation/atc_rail.lua index 88203ae..758b8f9 100644 --- a/advtrains_luaautomation/atc_rail.lua +++ b/advtrains_luaautomation/atc_rail.lua @@ -73,10 +73,15 @@ function r.fire_event(pos, evtdata) if new_id then minetest.after(1,advtrains.atc.train_set_command,advtrains.trains[new_id], cmd, atc_arrow) end - if fc == "" then - return nil - end - return fc + return fc or "" + end, + split_off_locomotive = function(cmd) + assertt(cmd, "string") + if not train_id then return false end + local new_id, fc = advtrains.split_train_at_fc(train, true) + if new_id then + minetest.after(1,advtrains.atc.train_set_command,advtrains.trains[new_id], cmd, atc_arrow) + end end, train_length = function () if not train_id then return false end -- cgit v1.2.3