summaryrefslogtreecommitdiff
path: root/signal_tubes.lua
diff options
context:
space:
mode:
authorelectrodude <electrodude@users.noreply.github.com>2016-06-11 20:14:38 -0400
committerAuke Kok <sofar+github@foo-projects.org>2016-06-11 17:14:38 -0700
commita1ed3acd7a7b65825b2faba4cc81dd42b249ba44 (patch)
tree6742cbb467020d88b48cb08eba8501f3634cb0f3 /signal_tubes.lua
parentf76668969e69b1410d9fe1db07b4326cffdb58b0 (diff)
downloadpipeworks-a1ed3acd7a7b65825b2faba4cc81dd42b249ba44.tar
pipeworks-a1ed3acd7a7b65825b2faba4cc81dd42b249ba44.tar.gz
pipeworks-a1ed3acd7a7b65825b2faba4cc81dd42b249ba44.tar.bz2
pipeworks-a1ed3acd7a7b65825b2faba4cc81dd42b249ba44.tar.xz
pipeworks-a1ed3acd7a7b65825b2faba4cc81dd42b249ba44.zip
Add digiline detector tube (#139)
* Add digiline detector tube The digiline detector tube outputs an itemstring of every stack that passes through it on the channel specified in its formspec. * Don't store digiline detector tube's formspec in a temporary local
Diffstat (limited to 'signal_tubes.lua')
-rw-r--r--signal_tubes.lua49
1 files changed, 49 insertions, 0 deletions
diff --git a/signal_tubes.lua b/signal_tubes.lua
index c7b61ec..dfd7649 100644
--- a/signal_tubes.lua
+++ b/signal_tubes.lua
@@ -67,6 +67,55 @@ if pipeworks.enable_detector_tube then
})
end
+if minetest.get_modpath("digilines") and pipeworks.enable_digiline_detector_tube then
+ pipeworks.register_tube("pipeworks:digiline_detector_tube", {
+ description = "Digiline Detecting Pneumatic Tube Segment",
+ inventory_image = "pipeworks_digiline_detector_tube_inv.png",
+ plain = { "pipeworks_digiline_detector_tube_plain.png" },
+ node_def = {
+ tube = {can_go = function(pos, node, velocity, stack)
+ local meta = minetest.get_meta(pos)
+
+ local setchan = meta:get_string("channel")
+
+ digiline:receptor_send(pos, digiline.rules.default, setchan, stack:to_string())
+
+ return pipeworks.notvel(pipeworks.meseadjlist, velocity)
+ end},
+ on_construct = function(pos)
+ local meta = minetest.get_meta(pos)
+ meta:set_string("formspec",
+ "size[8.6,2.2]"..
+ "field[0.6,0.6;8,1;channel;Channel:;${channel}]"..
+ "image[0.3,1.3;1,1;pipeworks_digiline_detector_tube_inv.png]"..
+ "label[1.6,1.2;Digiline Detecting Tube]"
+ )
+ end,
+ on_receive_fields = function(pos, formname, fields, sender)
+ if fields.channel then
+ minetest.get_meta(pos):set_string("channel", fields.channel)
+ end
+ end,
+ groups = {},
+ digiline = {
+ receptor = {},
+ effector = {
+ action = function(pos,node,channel,msg) end
+ }
+ },
+ },
+ })
+
+ minetest.register_craft( {
+ output = "pipeworks:digiline_detector_tube_1 2",
+ recipe = {
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "digilines:wire_std_00000000", "mesecons_materials:silicon", "digilines:wire_std_00000000" },
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
+ },
+ })
+end
+
if pipeworks.enable_conductor_tube then
pipeworks.register_tube("pipeworks:conductor_tube_off", {
description = "Conducting Pneumatic Tube Segment",