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
|
|
|
|
|
|
|
|
function tube_autoroute(pos)
|
|
|
|
nctr = minetest.env:get_node(pos)
|
|
|
|
if (string.find(nctr.name, "pipeworks:tube_") == nil) then return end
|
|
|
|
|
|
|
|
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 })
|
|
|
|
|
|
|
|
if (string.find(nxm.name, "pipeworks:tube_") ~= nil) then pxm=1 end
|
|
|
|
if (string.find(nxp.name, "pipeworks:tube_") ~= nil) then pxp=1 end
|
|
|
|
if (string.find(nym.name, "pipeworks:tube_") ~= nil) then pym=1 end
|
|
|
|
if (string.find(nyp.name, "pipeworks:tube_") ~= nil) then pyp=1 end
|
|
|
|
if (string.find(nzm.name, "pipeworks:tube_") ~= nil) then pzm=1 end
|
|
|
|
if (string.find(nzp.name, "pipeworks:tube_") ~= nil) then pzp=1 end
|
|
|
|
|
|
|
|
nsurround = pxm..pxp..pym..pyp..pzm..pzp
|
|
|
|
minetest.env:add_node(pos, { name = "pipeworks:tube_"..nsurround })
|
|
|
|
end
|
|
|
|
|
|
|
|
-- auto-rotation code for various devices the tubes attach to
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
function pipe_device_autorotate(pos, state, bname)
|
|
|
|
|
2012-08-21 19:52:25 +02:00
|
|
|
if state == nil then
|
|
|
|
nname = bname
|
|
|
|
else
|
|
|
|
nname = bname.."_"..state
|
|
|
|
end
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
local nctr = minetest.env:get_node(pos)
|
|
|
|
|
2012-08-21 20:32:44 +02:00
|
|
|
pipes_scansurroundings(pos)
|
|
|
|
|
|
|
|
if (pxm+pxp) ~= 0 then
|
|
|
|
minetest.env:add_node(pos, { name = nname.."_x" })
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if (pzm+pzp) ~= 0 then
|
|
|
|
minetest.env:add_node(pos, { name = nname.."_z" })
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2012-08-24 19:39:29 +02:00
|
|
|
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
|
|
|
|
|
2012-08-21 19:52:25 +02:00
|
|
|
for p in ipairs(pipes_devicelist) do
|
|
|
|
pdev = pipes_devicelist[p]
|
|
|
|
if (string.find(nxm.name, "pipeworks:"..pdev.."_off_x") ~= nil) or
|
|
|
|
(string.find(nxm.name, "pipeworks:"..pdev.."_on_x") ~= nil) or
|
|
|
|
(string.find(nxm.name, "pipeworks:"..pdev.."_x") ~= nil) then
|
|
|
|
pxm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nxp.name, "pipeworks:"..pdev.."_off_x") ~= nil) or
|
|
|
|
(string.find(nxp.name, "pipeworks:"..pdev.."_on_x") ~= nil) or
|
|
|
|
(string.find(nxp.name, "pipeworks:"..pdev.."_x") ~= nil) then
|
|
|
|
pxp=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzm.name, "pipeworks:"..pdev.."_off_z") ~= nil) or
|
|
|
|
(string.find(nzm.name, "pipeworks:"..pdev.."_on_z") ~= nil) or
|
|
|
|
(string.find(nzm.name, "pipeworks:"..pdev.."_z") ~= nil) then
|
|
|
|
pzm=1
|
|
|
|
end
|
|
|
|
|
|
|
|
if (string.find(nzp.name, "pipeworks:"..pdev.."_off_z") ~= nil) or
|
|
|
|
(string.find(nzp.name, "pipeworks:"..pdev.."_on_z") ~= nil) or
|
|
|
|
(string.find(nzp.name, "pipeworks:"..pdev.."_z") ~= nil) then
|
|
|
|
pzp=1
|
|
|
|
end
|
2012-08-19 07:56:30 +02:00
|
|
|
end
|
2012-08-21 20:49:17 +02:00
|
|
|
|
|
|
|
-- storage tanks and intake grates have vertical connections
|
|
|
|
-- also, so they require a special case
|
|
|
|
|
2012-08-22 14:24:42 +02:00
|
|
|
if (string.find(nym.name, "pipeworks:storage_tank_") ~= nil) or
|
2012-08-22 09:43:38 +02:00
|
|
|
(string.find(nym.name, "pipeworks:intake") ~= nil) or
|
|
|
|
(string.find(nym.name, "pipeworks:outlet") ~= nil) then
|
2012-08-21 20:49:17 +02:00
|
|
|
pym=1
|
|
|
|
end
|
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)
|
|
|
|
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
|
|
|
|
minetest.env:add_node(pos, { name = "pipeworks:expansion_tank_0"})
|
|
|
|
end
|
2012-08-19 07:56:30 +02:00
|
|
|
end
|
|
|
|
|