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)
|
|
|
|
nctr = minetest.env:get_node(pos)
|
|
|
|
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
|
|
|
|
minetest.env:add_node(pos, { name = "pipeworks:pipe_"..nsurround..state })
|
|
|
|
end
|
|
|
|
|
2012-08-24 19:39:29 +02:00
|
|
|
-- autorouting for pneumatic tubes
|
|
|
|
|
|
|
|
function tube_scanforobjects(pos)
|
|
|
|
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)
|
|
|
|
nctr = minetest.env:get_node(pos)
|
2013-01-20 07:57:58 +01:00
|
|
|
--print ("minetest.get_item_group("..nctr.name..',"tubedevice") == '..minetest.get_item_group(nctr.name, "tubedevice"))
|
2013-01-16 20:16:14 +01:00
|
|
|
if (is_tube(nctr.name) == nil)
|
2012-09-17 18:32:47 +02:00
|
|
|
and minetest.get_item_group(nctr.name, "tubedevice") ~= 1 then return end
|
2012-08-24 19:39:29 +02:00
|
|
|
|
|
|
|
pxm=0
|
|
|
|
pxp=0
|
|
|
|
pym=0
|
|
|
|
pyp=0
|
|
|
|
pzm=0
|
|
|
|
pzp=0
|
|
|
|
|
|
|
|
nxm = minetest.env:get_node({ x=pos.x-1, y=pos.y , z=pos.z })
|
|
|
|
nxp = minetest.env:get_node({ x=pos.x+1, y=pos.y , z=pos.z })
|
|
|
|
nym = minetest.env:get_node({ x=pos.x , y=pos.y-1, z=pos.z })
|
|
|
|
nyp = minetest.env:get_node({ x=pos.x , y=pos.y+1, z=pos.z })
|
|
|
|
nzm = minetest.env:get_node({ x=pos.x , y=pos.y , z=pos.z-1 })
|
|
|
|
nzp = minetest.env:get_node({ x=pos.x , y=pos.y , z=pos.z+1 })
|
|
|
|
|
2013-01-16 20:16:14 +01:00
|
|
|
if is_tube(nxm.name)
|
2012-09-17 18:32:47 +02:00
|
|
|
or minetest.get_item_group(nxm.name, "tubedevice") == 1 then pxm=1 end
|
2013-01-16 20:16:14 +01:00
|
|
|
if is_tube(nxp.name)
|
2012-09-17 18:32:47 +02:00
|
|
|
or minetest.get_item_group(nxp.name, "tubedevice") == 1 then pxp=1 end
|
2013-01-16 20:16:14 +01:00
|
|
|
if is_tube(nym.name)
|
2012-09-17 18:32:47 +02:00
|
|
|
or minetest.get_item_group(nym.name, "tubedevice") == 1 then pym=1 end
|
2013-01-16 20:16:14 +01:00
|
|
|
if is_tube(nyp.name)
|
2012-09-17 18:32:47 +02:00
|
|
|
or minetest.get_item_group(nyp.name, "tubedevice") == 1 then pyp=1 end
|
2013-01-16 20:16:14 +01:00
|
|
|
if is_tube(nzm.name)
|
2012-09-17 18:32:47 +02:00
|
|
|
or minetest.get_item_group(nzm.name, "tubedevice") == 1 then pzm=1 end
|
2013-01-16 20:16:14 +01:00
|
|
|
if is_tube(nzp.name)
|
2012-09-17 18:32:47 +02:00
|
|
|
or minetest.get_item_group(nzp.name, "tubedevice") == 1 then pzp=1 end
|
2012-08-24 19:39:29 +02:00
|
|
|
|
|
|
|
nsurround = pxm..pxp..pym..pyp..pzm..pzp
|
2013-01-16 20:16:14 +01:00
|
|
|
if is_tube(nctr.name) then
|
2013-01-19 15:37:27 +01:00
|
|
|
local meta=minetest.env:get_meta(pos)
|
|
|
|
local meta0=meta:to_table()
|
|
|
|
nctr.name=string.sub(nctr.name,1,-7)..nsurround
|
|
|
|
minetest.env:add_node(pos, nctr)
|
|
|
|
local meta=minetest.env:get_meta(pos)
|
|
|
|
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
|
|
|
|
|
|
|
|
nxm = minetest.env:get_node({ x=pos.x-1, y=pos.y , z=pos.z })
|
|
|
|
nxp = minetest.env:get_node({ x=pos.x+1, y=pos.y , z=pos.z })
|
2012-08-21 20:32:44 +02:00
|
|
|
nym = minetest.env:get_node({ x=pos.x , y=pos.y-1, z=pos.z })
|
|
|
|
nyp = minetest.env:get_node({ x=pos.x , y=pos.y+1, z=pos.z })
|
2012-08-19 07:56:30 +02:00
|
|
|
nzm = minetest.env:get_node({ x=pos.x , y=pos.y , z=pos.z-1 })
|
|
|
|
nzp = minetest.env:get_node({ x=pos.x , y=pos.y , z=pos.z+1 })
|
|
|
|
|
|
|
|
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-01-02 00:17:43 +01:00
|
|
|
local tym = minetest.env: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-01-02 00:17:43 +01:00
|
|
|
minetest.env: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
|
|
|
|
|