2013-07-19 07:36:55 +02:00
|
|
|
--define the functions from https://github.com/minetest/minetest/pull/834 while waiting for the devs to notice it
|
|
|
|
local function dir_to_facedir(dir, is6d)
|
|
|
|
--account for y if requested
|
|
|
|
if is6d and math.abs(dir.y) > math.abs(dir.x) and math.abs(dir.y) > math.abs(dir.z) then
|
|
|
|
|
|
|
|
--from above
|
|
|
|
if dir.y < 0 then
|
|
|
|
if math.abs(dir.x) > math.abs(dir.z) then
|
|
|
|
if dir.x < 0 then
|
|
|
|
return 19
|
|
|
|
else
|
|
|
|
return 13
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if dir.z < 0 then
|
|
|
|
return 10
|
|
|
|
else
|
|
|
|
return 4
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--from below
|
|
|
|
else
|
|
|
|
if math.abs(dir.x) > math.abs(dir.z) then
|
|
|
|
if dir.x < 0 then
|
|
|
|
return 15
|
|
|
|
else
|
|
|
|
return 17
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if dir.z < 0 then
|
|
|
|
return 6
|
|
|
|
else
|
|
|
|
return 8
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--otherwise, place horizontally
|
|
|
|
elseif math.abs(dir.x) > math.abs(dir.z) then
|
|
|
|
if dir.x < 0 then
|
|
|
|
return 3
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if dir.z < 0 then
|
|
|
|
return 2
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function facedir_to_dir(facedir)
|
|
|
|
--a table of possible dirs
|
|
|
|
return ({{x=0, y=0, z=1},
|
|
|
|
{x=1, y=0, z=0},
|
|
|
|
{x=0, y=0, z=-1},
|
|
|
|
{x=-1, y=0, z=0},
|
|
|
|
{x=0, y=-1, z=0},
|
|
|
|
{x=0, y=1, z=0}})
|
|
|
|
|
|
|
|
--indexed into by a table of correlating facedirs
|
|
|
|
[({[0]=1, 2, 3, 4,
|
|
|
|
5, 2, 6, 4,
|
|
|
|
6, 2, 5, 4,
|
|
|
|
1, 5, 3, 6,
|
|
|
|
1, 6, 3, 5,
|
|
|
|
1, 4, 3, 2})
|
|
|
|
|
|
|
|
--indexed into by the facedir in question
|
|
|
|
[facedir]]
|
|
|
|
end
|
|
|
|
|
2012-08-24 19:39:29 +02:00
|
|
|
-- autorouting for pipes
|
|
|
|
|
|
|
|
function pipe_scanforobjects(pos)
|
2012-08-21 20:32:44 +02:00
|
|
|
pipe_autoroute({ x=pos.x-1, y=pos.y , z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x+1, y=pos.y , z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y-1, z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y+1, z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z-1 }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z+1 }, "_loaded")
|
|
|
|
pipe_autoroute(pos, "_loaded")
|
|
|
|
|
|
|
|
pipe_autoroute({ x=pos.x-1, y=pos.y , z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x+1, y=pos.y , z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y-1, z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y+1, z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z-1 }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z+1 }, "_empty")
|
|
|
|
pipe_autoroute(pos, "_empty")
|
|
|
|
end
|
2012-08-19 07:56:30 +02:00
|
|
|
|
|
|
|
function pipe_autoroute(pos, state)
|
2013-07-01 05:55:07 +02:00
|
|
|
nctr = minetest.get_node(pos)
|
2012-08-19 07:56:30 +02:00
|
|
|
if (string.find(nctr.name, "pipeworks:pipe_") == nil) then return end
|
|
|
|
|
2012-08-21 20:32:44 +02:00
|
|
|
pipes_scansurroundings(pos)
|
2012-08-21 19:52:25 +02:00
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
nsurround = pxm..pxp..pym..pyp..pzm..pzp
|
|
|
|
if nsurround == "000000" then nsurround = "110000" end
|
2013-07-01 05:55:07 +02:00
|
|
|
minetest.add_node(pos, { name = "pipeworks:pipe_"..nsurround..state })
|
2012-08-19 07:56:30 +02:00
|
|
|
end
|
|
|
|
|
2012-08-24 19:39:29 +02:00
|
|
|
-- autorouting for pneumatic tubes
|
|
|
|
|
|
|
|
function tube_scanforobjects(pos)
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
if pos == nil then return end
|
|
|
|
print("tubes_scanforobjects called at pos "..dump(pos))
|
2012-08-24 19:39:29 +02:00
|
|
|
tube_autoroute({ x=pos.x-1, y=pos.y , z=pos.z })
|
|
|
|
tube_autoroute({ x=pos.x+1, y=pos.y , z=pos.z })
|
|
|
|
tube_autoroute({ x=pos.x , y=pos.y-1, z=pos.z })
|
|
|
|
tube_autoroute({ x=pos.x , y=pos.y+1, z=pos.z })
|
|
|
|
tube_autoroute({ x=pos.x , y=pos.y , z=pos.z-1 })
|
|
|
|
tube_autoroute({ x=pos.x , y=pos.y , z=pos.z+1 })
|
|
|
|
tube_autoroute(pos)
|
|
|
|
end
|
|
|
|
|
2013-01-16 20:16:14 +01:00
|
|
|
function in_table(table,element)
|
|
|
|
for _,el in ipairs(table) do
|
|
|
|
if el==element then return true end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
function is_tube(nodename)
|
|
|
|
return in_table(tubenodes,nodename)
|
|
|
|
end
|
|
|
|
|
2012-08-24 19:39:29 +02:00
|
|
|
function tube_autoroute(pos)
|
2013-07-01 05:55:07 +02:00
|
|
|
local nctr = minetest.get_node(pos)
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
|
2013-07-19 07:36:55 +02:00
|
|
|
--a function for determining which side of the node we are on
|
|
|
|
local function nodeside(node, tubedir)
|
|
|
|
|
|
|
|
--get a vector pointing back
|
|
|
|
local backdir = facedir_to_dir(node.param2)
|
|
|
|
|
|
|
|
--check whether the vector is equivalent to the tube direction; if it is, the tube's on the backside
|
|
|
|
if backdir.x == tubedir.x and backdir.y == tubedir.y and backdir.z == tubedir.z then
|
|
|
|
return "back"
|
|
|
|
end
|
|
|
|
|
|
|
|
--check whether the vector is antiparallel with the tube direction; that indicates the front
|
|
|
|
if backdir.x == -tubedir.x and backdir.y == -tubedir.y and backdir.z == -tubedir.z then
|
|
|
|
return "front"
|
|
|
|
end
|
|
|
|
|
|
|
|
--facedir is defined in terms of the top-bottom axis of the node; we'll take advantage of that
|
|
|
|
local topdir = ({[0]={x=0, y=1, z=0},
|
|
|
|
{x=0, y=0, z=1},
|
|
|
|
{x=0, y=0, z=-1},
|
|
|
|
{x=1, y=0, z=0},
|
|
|
|
{x=-1, y=0, z=0},
|
|
|
|
{x=0, y=-1, z=0}})[math.floor(node.param2/4)]
|
|
|
|
|
|
|
|
--is this the top?
|
|
|
|
if topdir.x == tubedir.x and topdir.y == tubedir.y and topdir.z == tubedir.z then
|
|
|
|
return "top"
|
|
|
|
end
|
|
|
|
|
|
|
|
--or the bottom?
|
|
|
|
if topdir.x == -tubedir.x and topdir.y == -tubedir.y and topdir.z == -tubedir.z then
|
|
|
|
return "bottom"
|
|
|
|
end
|
|
|
|
|
|
|
|
--we shall apply some maths to obtain the right-facing vector
|
|
|
|
local rightdir = {x=topdir.y*backdir.z - backdir.y*topdir.z,
|
|
|
|
y=topdir.z*backdir.x - backdir.z*topdir.x,
|
|
|
|
z=topdir.x*backdir.y - backdir.x*topdir.y}
|
|
|
|
|
|
|
|
--is this the right side?
|
|
|
|
if rightdir.x == tubedir.x and rightdir.y == tubedir.y and rightdir.z == tubedir.z then
|
|
|
|
return "right"
|
|
|
|
end
|
|
|
|
|
|
|
|
--or the left?
|
|
|
|
if rightdir.x == -tubedir.x and rightdir.y == -tubedir.y and rightdir.z == -tubedir.z then
|
|
|
|
return "left"
|
|
|
|
end
|
|
|
|
|
|
|
|
--we should be done by now; initiate panic mode
|
|
|
|
minetest.log("error", "nodeside has been confused by its parameters; see pipeworks autoplace.lua, line 382")
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--a further function for determining whether we should extend a tube in a certain direction
|
|
|
|
local function surchar(dir)
|
|
|
|
|
|
|
|
--get the node in that direction
|
|
|
|
local node = minetest.get_node{x=pos.x+dir.x, y=pos.y+dir.y, z=pos.z+dir.z}
|
|
|
|
|
|
|
|
--and its tube table
|
|
|
|
local nodetube = minetest.registered_nodes[node.name].tube
|
|
|
|
|
|
|
|
--choose a surround character
|
|
|
|
if nodetube and nodetube.connect_sides
|
|
|
|
and nodetube.connect_sides[nodeside(node, {x=-dir.x, y=-dir.y, z=-dir.z})] then
|
|
|
|
return '1'
|
|
|
|
else
|
|
|
|
return '0'
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--keep track of the tube surroundings
|
|
|
|
local nsurround = ""
|
|
|
|
|
|
|
|
--look in each direction
|
|
|
|
nsurround = nsurround..surchar{x=-1, y=0, z=0}
|
|
|
|
nsurround = nsurround..surchar{x=1, y=0, z=0}
|
|
|
|
nsurround = nsurround..surchar{x=0, y=-1, z=0}
|
|
|
|
nsurround = nsurround..surchar{x=0, y=1, z=0}
|
|
|
|
nsurround = nsurround..surchar{x=0, y=0, z=-1}
|
|
|
|
nsurround = nsurround..surchar{x=0, y=0, z=1}
|
|
|
|
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
-- Apply the final routing decisions to the existing tube (if any)
|
2012-08-24 19:39:29 +02:00
|
|
|
|
2013-01-16 20:16:14 +01:00
|
|
|
if is_tube(nctr.name) then
|
2013-07-01 05:55:07 +02:00
|
|
|
local meta=minetest.get_meta(pos)
|
2013-01-19 15:37:27 +01:00
|
|
|
local meta0=meta:to_table()
|
|
|
|
nctr.name=string.sub(nctr.name,1,-7)..nsurround
|
2013-07-01 05:55:07 +02:00
|
|
|
minetest.add_node(pos, nctr)
|
|
|
|
local meta=minetest.get_meta(pos)
|
2013-01-19 15:37:27 +01:00
|
|
|
meta:from_table(meta0)
|
2012-09-17 18:32:47 +02:00
|
|
|
end
|
|
|
|
|
2012-08-24 19:39:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- auto-rotation code for various devices the tubes attach to
|
|
|
|
|
|
|
|
function pipes_scansurroundings(pos)
|
2012-08-19 07:56:30 +02:00
|
|
|
pxm=0
|
|
|
|
pxp=0
|
2012-08-21 20:32:44 +02:00
|
|
|
pym=0
|
|
|
|
pyp=0
|
2012-08-19 07:56:30 +02:00
|
|
|
pzm=0
|
|
|
|
pzp=0
|
|
|
|
|
2013-07-01 05:55:07 +02:00
|
|
|
nxm = minetest.get_node({ x=pos.x-1, y=pos.y , z=pos.z })
|
|
|
|
nxp = minetest.get_node({ x=pos.x+1, y=pos.y , z=pos.z })
|
|
|
|
nym = minetest.get_node({ x=pos.x , y=pos.y-1, z=pos.z })
|
|
|
|
nyp = minetest.get_node({ x=pos.x , y=pos.y+1, z=pos.z })
|
|
|
|
nzm = minetest.get_node({ x=pos.x , y=pos.y , z=pos.z-1 })
|
|
|
|
nzp = minetest.get_node({ x=pos.x , y=pos.y , z=pos.z+1 })
|
2012-08-19 07:56:30 +02:00
|
|
|
|
|
|
|
if (string.find(nxm.name, "pipeworks:pipe_") ~= nil) then pxm=1 end
|
|
|
|
if (string.find(nxp.name, "pipeworks:pipe_") ~= nil) then pxp=1 end
|
2012-08-21 20:32:44 +02:00
|
|
|
if (string.find(nym.name, "pipeworks:pipe_") ~= nil) then pym=1 end
|
|
|
|
if (string.find(nyp.name, "pipeworks:pipe_") ~= nil) then pyp=1 end
|
2012-08-19 07:56:30 +02:00
|
|
|
if (string.find(nzm.name, "pipeworks:pipe_") ~= nil) then pzm=1 end
|
|
|
|
if (string.find(nzp.name, "pipeworks:pipe_") ~= nil) then pzp=1 end
|
|
|
|
|
2013-01-01 22:04:05 +01:00
|
|
|
-- Special handling for valves...
|
|
|
|
|
|
|
|
if (string.find(nxm.name, "pipeworks:valve") ~= nil)
|
|
|
|
and (nxm.param2 == 0 or nxm.param2 == 2) then
|
|
|
|
pxm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nxp.name, "pipeworks:valve") ~= nil)
|
|
|
|
and (nxp.param2 == 0 or nxp.param2 == 2) then
|
|
|
|
pxp=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzm.name, "pipeworks:valve") ~= nil)
|
|
|
|
and (nzm.param2 == 1 or nzm.param2 == 3) then
|
|
|
|
pzm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzp.name, "pipeworks:valve") ~= nil)
|
|
|
|
and (nzp.param2 == 1 or nzp.param2 == 3) then
|
|
|
|
pzp=1
|
|
|
|
end
|
|
|
|
|
2013-05-11 00:28:57 +02:00
|
|
|
-- ...flow sensors...
|
|
|
|
|
|
|
|
if (string.find(nxm.name, "pipeworks:flow_sensor") ~= nil)
|
|
|
|
and (nxm.param2 == 0 or nxm.param2 == 2) then
|
|
|
|
pxm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nxp.name, "pipeworks:flow_sensor") ~= nil)
|
|
|
|
and (nxp.param2 == 0 or nxp.param2 == 2) then
|
|
|
|
pxp=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzm.name, "pipeworks:flow_sensor") ~= nil)
|
|
|
|
and (nzm.param2 == 1 or nzm.param2 == 3) then
|
|
|
|
pzm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzp.name, "pipeworks:flow_sensor") ~= nil)
|
|
|
|
and (nzp.param2 == 1 or nzp.param2 == 3) then
|
|
|
|
pzp=1
|
|
|
|
end
|
|
|
|
|
2013-01-01 22:04:05 +01:00
|
|
|
-- ...spigots...
|
|
|
|
|
|
|
|
if (string.find(nxm.name, "pipeworks:spigot") ~= nil)
|
2013-01-02 00:00:16 +01:00
|
|
|
and nxm.param2 == 1 then
|
2013-01-01 22:04:05 +01:00
|
|
|
pxm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nxp.name, "pipeworks:spigot") ~= nil)
|
2013-01-02 00:00:16 +01:00
|
|
|
and nxp.param2 == 3 then
|
2013-01-01 22:04:05 +01:00
|
|
|
pxp=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzm.name, "pipeworks:spigot") ~= nil)
|
2013-01-02 00:00:16 +01:00
|
|
|
and nzm.param2 == 0 then
|
2013-01-01 22:04:05 +01:00
|
|
|
pzm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzp.name, "pipeworks:spigot") ~= nil)
|
2013-01-02 00:00:16 +01:00
|
|
|
and nzp.param2 == 2 then
|
2013-01-01 22:04:05 +01:00
|
|
|
pzp=1
|
2012-08-19 07:56:30 +02:00
|
|
|
end
|
2012-08-21 20:49:17 +02:00
|
|
|
|
2013-01-01 22:30:21 +01:00
|
|
|
-- ...sealed pipe entry/exit...
|
|
|
|
|
|
|
|
if (string.find(nxm.name, "pipeworks:entry_panel") ~= nil)
|
|
|
|
and (nxm.param2 == 1 or nxm.param2 == 3) then
|
|
|
|
pxm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nxp.name, "pipeworks:entry_panel") ~= nil)
|
|
|
|
and (nxp.param2 == 1 or nxp.param2 == 3) then
|
|
|
|
pxp=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzm.name, "pipeworks:entry_panel") ~= nil)
|
|
|
|
and (nzm.param2 == 0 or nzm.param2 == 2) then
|
|
|
|
pzm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzp.name, "pipeworks:entry_panel") ~= nil)
|
|
|
|
and (nzp.param2 == 0 or nzp.param2 == 2) then
|
|
|
|
pzp=1
|
|
|
|
end
|
|
|
|
|
2013-06-08 07:00:49 +02:00
|
|
|
if (string.find(nym.name, "pipeworks:entry_panel") ~= nil)
|
|
|
|
and nym.param2 == 13 then
|
|
|
|
pym=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nyp.name, "pipeworks:entry_panel") ~= nil)
|
|
|
|
and nyp.param2 == 13 then
|
|
|
|
pyp=1
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-01-06 03:14:09 +01:00
|
|
|
-- ...pumps, grates...
|
2012-08-21 20:49:17 +02:00
|
|
|
|
2013-01-06 03:14:09 +01:00
|
|
|
if (string.find(nym.name, "pipeworks:grating") ~= nil) or
|
2013-01-01 22:04:05 +01:00
|
|
|
(string.find(nym.name, "pipeworks:pump") ~= nil) then
|
2012-08-21 20:49:17 +02:00
|
|
|
pym=1
|
|
|
|
end
|
2013-01-04 06:15:23 +01:00
|
|
|
|
2013-01-06 03:14:09 +01:00
|
|
|
-- ... and storage tanks.
|
|
|
|
|
|
|
|
if (string.find(nym.name, "pipeworks:storage_tank_") ~= nil) then
|
|
|
|
pym=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nyp.name, "pipeworks:storage_tank_") ~= nil) then
|
|
|
|
pyp=1
|
|
|
|
end
|
|
|
|
|
2013-01-04 06:15:23 +01:00
|
|
|
-- ...extra devices specified via the function's parameters
|
|
|
|
-- ...except that this part is not implemented yet
|
|
|
|
--
|
2013-01-04 07:12:39 +01:00
|
|
|
-- xxx = nxm, nxp, nym, nyp, nzm, or nzp depending on the direction to check
|
|
|
|
-- yyy = pxm, pxp, pym, pyp, pzm, or pzp accordingly.
|
|
|
|
--
|
|
|
|
-- if string.find(xxx.name, "modname:nodename") ~= nil then
|
|
|
|
-- yyy = 1
|
2013-01-04 06:15:23 +01:00
|
|
|
-- end
|
2013-01-04 07:12:39 +01:00
|
|
|
--
|
|
|
|
-- for example:
|
|
|
|
--
|
|
|
|
-- if string.find(nym.name, "aero:outlet") ~= nil then
|
|
|
|
-- pym = 1
|
|
|
|
-- end
|
|
|
|
--
|
2013-01-04 06:15:23 +01:00
|
|
|
|
2012-08-22 15:56:45 +02:00
|
|
|
end
|
2012-08-21 20:49:17 +02:00
|
|
|
|
2012-08-22 15:56:45 +02:00
|
|
|
function pipe_look_for_stackable_tanks(pos)
|
2013-07-01 05:55:07 +02:00
|
|
|
local tym = minetest.get_node({ x=pos.x , y=pos.y-1, z=pos.z })
|
2012-08-21 20:49:17 +02:00
|
|
|
|
2012-08-22 15:56:45 +02:00
|
|
|
if string.find(tym.name, "pipeworks:storage_tank_") ~= nil or
|
|
|
|
string.find(tym.name, "pipeworks:expansion_tank_") ~= nil then
|
2013-07-01 05:55:07 +02:00
|
|
|
minetest.add_node(pos, { name = "pipeworks:expansion_tank_0", param2 = tym.param2})
|
2012-08-22 15:56:45 +02:00
|
|
|
end
|
2012-08-19 07:56:30 +02:00
|
|
|
end
|
|
|
|
|