summaryrefslogtreecommitdiff
path: root/devices.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-19 01:56:30 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-19 01:56:30 -0400
commita6641f0d20c574c250b0e14300c6fbc15a544bcd (patch)
tree08528afe48eb434b509ed93185a5d27a54ce0f45 /devices.lua
parentf574235d1d31e924dc70aadb28676e58e4ba4831 (diff)
downloadpipeworks-a6641f0d20c574c250b0e14300c6fbc15a544bcd.tar
pipeworks-a6641f0d20c574c250b0e14300c6fbc15a544bcd.tar.gz
pipeworks-a6641f0d20c574c250b0e14300c6fbc15a544bcd.tar.bz2
pipeworks-a6641f0d20c574c250b0e14300c6fbc15a544bcd.tar.xz
pipeworks-a6641f0d20c574c250b0e14300c6fbc15a544bcd.zip
Pumps and valves now fully participate in the auto-rotate/auto-route process.
These devices can only be connected to horizontal pipes or to each other. Note that only the device being placed and the pipes around it will adapt; if you have a valve and pump next to one another and they won't connect, put a piece of pipe at one end to show the auto-rotator which way they should go. Removal of a pipe or device will not change the orientation of surrounding devices.
Diffstat (limited to 'devices.lua')
-rw-r--r--devices.lua253
1 files changed, 253 insertions, 0 deletions
diff --git a/devices.lua b/devices.lua
new file mode 100644
index 0000000..cd78e0e
--- /dev/null
+++ b/devices.lua
@@ -0,0 +1,253 @@
+-- tables
+
+minetest.register_alias("pipeworks:pump", "pipeworks:pump_off_x")
+minetest.register_alias("pipeworks:pump_off", "pipeworks:pump_off_x")
+minetest.register_alias("pipeworks:valve", "pipeworks:valve_off_x")
+minetest.register_alias("pipeworks:valve_off", "pipeworks:valve_off_x")
+
+pipe_pumpbody_x = {
+ { -6/16, -8/16, -6/16, 6/16, 8/16, 6/16 }
+}
+
+pipe_pumpbody_z = {
+ { -6/16, -8/16, -6/16, 6/16, 8/16, 6/16 }
+}
+
+pipe_valvebody_x = {
+ { -4/16, -4/16, -4/16, 4/16, 4/16, 4/16 }
+}
+
+pipe_valvebody_z = {
+ { -4/16, -4/16, -4/16, 4/16, 4/16, 4/16 }
+}
+
+pipe_valvehandle_on_x = {
+ { -5/16, 4/16, -1/16, 0, 5/16, 1/16 }
+}
+
+pipe_valvehandle_on_z = {
+ { -1/16, 4/16, -5/16, 1/16, 5/16, 0 }
+}
+
+pipe_valvehandle_off_x = {
+ { -1/16, 4/16, -5/16, 1/16, 5/16, 0 }
+}
+
+pipe_valvehandle_off_z = {
+ { -5/16, 4/16, -1/16, 0, 5/16, 1/16 }
+}
+
+-- Now define the nodes.
+
+local states = { "on", "off" }
+local dgroups = ""
+
+for s in ipairs(states) do
+
+ if s == "off" then
+ dgroups = {snappy=3, pipe=1}
+ else
+ dgroups = {snappy=3, pipe=1, not_in_creative_inventory=1}
+ end
+
+ local pumpboxes = {}
+ pipe_addbox(pumpboxes, pipe_leftstub)
+ pipe_addbox(pumpboxes, pipe_pumpbody_x)
+ pipe_addbox(pumpboxes, pipe_rightstub)
+ local tilex = "pipeworks_pump_ends.png"
+ local tilez = "pipeworks_pump_"..states[s]..".png"
+
+ minetest.register_node("pipeworks:pump_"..states[s].."_x", {
+ description = "Pump Module ("..states[s]..")",
+ drawtype = "nodebox",
+ tiles = {
+ "pipeworks_pump_top_x.png",
+ "pipeworks_pump_sides.png",
+ tilex,
+ tilex,
+ tilez,
+ tilez
+ },
+ paramtype = "light",
+ selection_box = {
+ type = "fixed",
+ fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
+ },
+ node_box = {
+ type = "fixed",
+ fixed = pumpboxes
+ },
+ groups = dgroups,
+ sounds = default.node_sound_wood_defaults(),
+ walkable = true,
+ stack_max = 99,
+ after_place_node = function(pos)
+ pipe_device_autorotate(pos, states[s], "pipeworks:pump_")
+ pipe_scanforobjects(pos)
+ end,
+ after_dig_node = function(pos)
+ pipe_scanforobjects(pos)
+ end,
+ drop = "pipeworks:pump_off_x"
+ })
+
+ local pumpboxes = {}
+ pipe_addbox(pumpboxes, pipe_frontstub)
+ pipe_addbox(pumpboxes, pipe_pumpbody_z)
+ pipe_addbox(pumpboxes, pipe_backstub)
+
+ minetest.register_node("pipeworks:pump_"..states[s].."_z", {
+ description = "Pump Module ("..states[s]..", Z-axis)",
+ drawtype = "nodebox",
+ tiles = {
+ "pipeworks_pump_top_z.png",
+ "pipeworks_pump_sides.png",
+ tilez,
+ tilez,
+ tilex,
+ tilex
+ },
+ paramtype = "light",
+ selection_box = {
+ type = "fixed",
+ fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
+ },
+ node_box = {
+ type = "fixed",
+ fixed = pumpboxes
+ },
+ groups = {snappy=3, pipe=1, not_in_creative_inventory=1},
+ sounds = default.node_sound_wood_defaults(),
+ walkable = true,
+ stack_max = 99,
+ after_place_node = function(pos)
+ pipe_device_autorotate(pos, states[s], "pipeworks:pump_")
+ pipe_scanforobjects(pos)
+ end,
+ after_dig_node = function(pos)
+ pipe_scanforobjects(pos)
+ end,
+ drop = "pipeworks:pump_off_x"
+ })
+
+ local valveboxes = {}
+ pipe_addbox(valveboxes, pipe_leftstub)
+ pipe_addbox(valveboxes, pipe_valvebody_x)
+ if states[s] == "off" then
+ pipe_addbox(valveboxes, pipe_valvehandle_off_x)
+ else
+ pipe_addbox(valveboxes, pipe_valvehandle_on_x)
+ end
+ pipe_addbox(valveboxes, pipe_rightstub)
+ local tilex = "pipeworks_valvebody_ends.png"
+ local tilez = "pipeworks_valvebody_sides.png"
+
+ minetest.register_node("pipeworks:valve_"..states[s].."_x", {
+ description = "Valve ("..states[s]..")",
+ drawtype = "nodebox",
+ tiles = {
+ "pipeworks_valvebody_top_"..states[s].."_x.png",
+ "pipeworks_valvebody_bottom.png",
+ tilex,
+ tilex,
+ tilez,
+ tilez,
+ },
+ paramtype = "light",
+ selection_box = {
+ type = "fixed",
+ fixed = { -8/16, -4/16, -5/16, 8/16, 5/16, 5/16 }
+ },
+ node_box = {
+ type = "fixed",
+ fixed = valveboxes
+ },
+ groups = dgroups,
+ sounds = default.node_sound_wood_defaults(),
+ walkable = true,
+ stack_max = 99,
+ after_place_node = function(pos)
+ pipe_device_autorotate(pos, states[s], "pipeworks:valve_")
+ pipe_scanforobjects(pos)
+ end,
+ after_dig_node = function(pos)
+ pipe_scanforobjects(pos)
+ end,
+ drop = "pipeworks:valve_off_x"
+ })
+
+ local valveboxes = {}
+ pipe_addbox(valveboxes, pipe_frontstub)
+ pipe_addbox(valveboxes, pipe_valvebody_z)
+ if states[s] == "off" then
+ pipe_addbox(valveboxes, pipe_valvehandle_off_z)
+ else
+ pipe_addbox(valveboxes, pipe_valvehandle_on_z)
+ end
+ pipe_addbox(valveboxes, pipe_backstub)
+
+ minetest.register_node("pipeworks:valve_"..states[s].."_z", {
+ description = "Valve ("..states[s]..", Z-axis)",
+ drawtype = "nodebox",
+ tiles = {
+ "pipeworks_valvebody_top_"..states[s].."_z.png",
+ "pipeworks_valvebody_bottom.png",
+ tilez,
+ tilez,
+ tilex,
+ tilex,
+ },
+ paramtype = "light",
+ selection_box = {
+ type = "fixed",
+ fixed = { -5/16, -4/16, -8/16, 5/16, 5/16, 8/16 }
+ },
+ node_box = {
+ type = "fixed",
+ fixed = valveboxes
+ },
+ groups = {snappy=3, pipe=1, not_in_creative_inventory=1},
+ sounds = default.node_sound_wood_defaults(),
+ walkable = true,
+ stack_max = 99,
+ after_place_node = function(pos)
+ pipe_device_autorotate(pos, states[s], "pipeworks:valve_")
+ pipe_scanforobjects(pos)
+
+ end,
+ after_dig_node = function(pos)
+ pipe_scanforobjects(pos)
+ end,
+ drop = "pipeworks:valve_off_x"
+ })
+end
+
+local axes = { "x", "z" }
+
+for a in ipairs(axes) do
+ minetest.register_on_punchnode(function (pos, node)
+ if node.name=="pipeworks:valve_on_"..axes[a] then
+ minetest.env:add_node(pos, { name = "pipeworks:valve_off_"..axes[a] })
+ end
+ end)
+
+ minetest.register_on_punchnode(function (pos, node)
+ if node.name=="pipeworks:valve_off_"..axes[a] then
+ minetest.env:add_node(pos, { name = "pipeworks:valve_on_"..axes[a] })
+ end
+ end)
+
+ minetest.register_on_punchnode(function (pos, node)
+ if node.name=="pipeworks:pump_on_"..axes[a] then
+ minetest.env:add_node(pos, { name = "pipeworks:pump_off_"..axes[a] })
+ end
+ end)
+
+ minetest.register_on_punchnode(function (pos, node)
+ if node.name=="pipeworks:pump_off_"..axes[a] then
+ minetest.env:add_node(pos, { name = "pipeworks:pump_on_"..axes[a] })
+ end
+ end)
+end
+
+print("Pipeworks loaded!")