aboutsummaryrefslogtreecommitdiff
path: root/advtrains_luaautomation
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2020-07-28 20:39:35 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2020-07-28 20:39:35 +0200
commit36d8c8b7162b3b6ba6cc0a7f98b0dc295024ecd8 (patch)
treee2c76537639fd20e2765e878e2475b855db2a4bb /advtrains_luaautomation
parentc7ea09ed59d54fda9a7537dba53538ef171a7ba8 (diff)
downloadadvtrains-36d8c8b7162b3b6ba6cc0a7f98b0dc295024ecd8.tar.gz
advtrains-36d8c8b7162b3b6ba6cc0a7f98b0dc295024ecd8.tar.bz2
advtrains-36d8c8b7162b3b6ba6cc0a7f98b0dc295024ecd8.zip
Add command to split off locomotive
Diffstat (limited to 'advtrains_luaautomation')
-rw-r--r--advtrains_luaautomation/README.txt12
-rw-r--r--advtrains_luaautomation/atc_rail.lua13
2 files changed, 17 insertions, 8 deletions
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