forked from mtcontrib/pipeworks
134 lines
3.8 KiB
Lua
134 lines
3.8 KiB
Lua
-- Pipeworks mod by Vanessa Ezekowitz - 2013-07-13
|
|
--
|
|
-- This mod supplies various steel pipes and plastic pneumatic tubes
|
|
-- and devices that they can connect to.
|
|
--
|
|
-- License: WTFPL
|
|
--
|
|
|
|
-- Read (and if necessary, copy) the config file
|
|
|
|
pipeworks = {}
|
|
|
|
local DEBUG = false
|
|
|
|
pipeworks.worldpath = minetest.get_worldpath()
|
|
pipeworks.modpath = minetest.get_modpath("pipeworks")
|
|
|
|
dofile(pipeworks.modpath.."/default_settings.txt")
|
|
|
|
if io.open(pipeworks.worldpath.."/pipeworks_settings.txt","r") == nil then
|
|
|
|
io.input(pipeworks.modpath.."/default_settings.txt")
|
|
io.output(pipeworks.worldpath.."/pipeworks_settings.txt")
|
|
|
|
local size = 2^13 -- good buffer size (8K)
|
|
while true do
|
|
local block = io.read(size)
|
|
if not block then
|
|
io.close()
|
|
break
|
|
end
|
|
io.write(block)
|
|
end
|
|
|
|
else
|
|
dofile(pipeworks.worldpath.."/pipeworks_settings.txt")
|
|
end
|
|
|
|
-- Helper functions
|
|
|
|
if minetest.get_modpath("unified_inventory") or not minetest.setting_getbool("creative_mode") then
|
|
pipeworks_expect_infinite_stacks = false
|
|
else
|
|
pipeworks_expect_infinite_stacks = true
|
|
end
|
|
|
|
function pipeworks_fix_image_names(table, replacement)
|
|
outtable={}
|
|
for i in ipairs(table) do
|
|
outtable[i]=string.gsub(table[i], "_XXXXX", replacement)
|
|
end
|
|
|
|
return outtable
|
|
end
|
|
|
|
function pipeworks_add_pipebox(t, b)
|
|
for i in ipairs(b)
|
|
do table.insert(t, b[i])
|
|
end
|
|
end
|
|
|
|
function pipeworks_node_is_owned(pos, placer)
|
|
local ownername = false
|
|
if type(IsPlayerNodeOwner) == "function" then -- node_ownership mod
|
|
if HasOwner(pos, placer) then -- returns true if the node is owned
|
|
if not IsPlayerNodeOwner(pos, placer:get_player_name()) then
|
|
if type(getLastOwner) == "function" then -- ...is an old version
|
|
ownername = getLastOwner(pos)
|
|
elseif type(GetNodeOwnerName) == "function" then -- ...is a recent version
|
|
ownername = GetNodeOwnerName(pos)
|
|
else
|
|
ownername = S("someone")
|
|
end
|
|
end
|
|
end
|
|
|
|
elseif type(isprotect)=="function" then -- glomie's protection mod
|
|
if not isprotect(5, pos, placer) then
|
|
ownername = S("someone")
|
|
end
|
|
elseif type(protector)=="table" and type(protector.can_dig)=="function" then -- Zeg9's protection mod
|
|
if not protector.can_dig(5, pos, placer) then
|
|
ownername = S("someone")
|
|
end
|
|
end
|
|
|
|
if ownername ~= false then
|
|
minetest.chat_send_player( placer:get_player_name(), S("Sorry, %s owns that spot."):format(ownername) )
|
|
return true
|
|
else
|
|
return false
|
|
end
|
|
end
|
|
|
|
function pipeworks_replace_name(tbl,tr,name)
|
|
local ntbl={}
|
|
for key,i in pairs(tbl) do
|
|
if type(i)=="string" then
|
|
ntbl[key]=string.gsub(i,tr,name)
|
|
elseif type(i)=="table" then
|
|
ntbl[key]=pipeworks_replace_name(i,tr,name)
|
|
else
|
|
ntbl[key]=i
|
|
end
|
|
end
|
|
return ntbl
|
|
end
|
|
|
|
-- Load the various parts of the mod
|
|
|
|
dofile(pipeworks.modpath.."/autoplace_pipes.lua")
|
|
dofile(pipeworks.modpath.."/autoplace_tubes.lua")
|
|
dofile(pipeworks.modpath.."/item_transport.lua")
|
|
dofile(pipeworks.modpath.."/flowing_logic.lua")
|
|
dofile(pipeworks.modpath.."/crafts.lua")
|
|
|
|
dofile(pipeworks.modpath.."/tubes.lua")
|
|
|
|
rules_all = {{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=1},{x=0, y=1, z=-1},{x=1, y=1, z=0},{x=-1, y=1, z=0},
|
|
{x=0, y=-1, z=1},{x=0, y=-1, z=-1},{x=1, y=-1, z=0},{x=-1, y=-1, z=0},
|
|
{x=0, y=1, z=0}, {x=0, y=-1, z=0}}
|
|
if enable_pipes then dofile(pipeworks.modpath.."/pipes.lua") end
|
|
if enable_teleport_tube then dofile(pipeworks.modpath.."/teleport_tube.lua") end
|
|
if enable_pipe_devices then dofile(pipeworks.modpath.."/devices.lua") end
|
|
if enable_redefines then dofile(pipeworks.modpath.."/compat.lua") end
|
|
if enable_autocrafter then dofile(pipeworks.modpath.."/autocrafter.lua") end
|
|
if enable_deployer then dofile(pipeworks.modpath.."/deployer.lua") end
|
|
if enable_node_breaker then dofile(pipeworks.modpath.."/node_breaker.lua") end
|
|
|
|
minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_110000_empty")
|
|
|
|
print("Pipeworks loaded!")
|