Add an on-blast callback to all machines that performs a no-op to disable TNT destruction

This commit is contained in:
Oversword 2022-06-09 22:49:50 +01:00
parent d9bc8119fa
commit 5c71605dda
59 changed files with 788 additions and 705 deletions

@ -571,6 +571,7 @@ for idx = 0,4 do
is_ground_content = false, is_ground_content = false,
groups = {choppy=2, cracky=1, not_in_creative_inventory=not_in_creative_inventory, tubedevice = 1, tubedevice_receiver = 1}, groups = {choppy=2, cracky=1, not_in_creative_inventory=not_in_creative_inventory, tubedevice = 1, tubedevice_receiver = 1},
drop = node_name.."3", drop = node_name.."3",
on_blast = function() end,
}) })
end end
end end
@ -637,6 +638,7 @@ if minetest.global_exists("tubelib") then
sunlight_propagates = true, sunlight_propagates = true,
is_ground_content = false, is_ground_content = false,
groups = {choppy=2, cracky=1, not_in_creative_inventory=1}, groups = {choppy=2, cracky=1, not_in_creative_inventory=1},
on_blast = function() end,
}) })
tubelib.register_node("gravelsieve:auto_sieve3", tubelib.register_node("gravelsieve:auto_sieve3",
@ -758,5 +760,3 @@ if minetest.get_modpath("moreblocks") then
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
}) })
end end

@ -9,13 +9,13 @@
See LICENSE.txt for more information See LICENSE.txt for more information
battery.lua: battery.lua:
REPLACED BY SMARTLINE BATTERY !!! REPLACED BY SMARTLINE BATTERY !!!
]]-- ]]--
local function calc_percent(content) local function calc_percent(content)
local val = (sl_controller.battery_capacity - local val = (sl_controller.battery_capacity -
math.min(content or 0, sl_controller.battery_capacity)) math.min(content or 0, sl_controller.battery_capacity))
return 100 - math.floor((val * 100.0 / sl_controller.battery_capacity)) return 100 - math.floor((val * 100.0 / sl_controller.battery_capacity))
end end
@ -55,7 +55,7 @@ local function register_battery(ext, percent, nici)
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_int("content", sl_controller.battery_capacity * percent) meta:set_int("content", sl_controller.battery_capacity * percent)
@ -65,10 +65,10 @@ local function register_battery(ext, percent, nici)
on_timer(pos, 1) on_timer(pos, 1)
minetest.get_node_timer(pos):start(30) minetest.get_node_timer(pos):start(30)
end, end,
on_timer = on_timer, on_timer = on_timer,
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
local percent = calc_percent(tonumber(oldmetadata.fields.content)) local percent = calc_percent(tonumber(oldmetadata.fields.content))
local stack local stack
@ -94,6 +94,7 @@ local function register_battery(ext, percent, nici)
drop = "", drop = "",
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
end end
@ -121,12 +122,12 @@ minetest.register_node("sl_controller:battery_empty", {
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_int("content", 0) meta:set_int("content", 0)
end, end,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
@ -134,6 +135,7 @@ minetest.register_node("sl_controller:battery_empty", {
drop = "", drop = "",
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })

@ -18,15 +18,15 @@ local M = minetest.get_meta
local sHELP = [[SaferLua Controller local sHELP = [[SaferLua Controller
This controller is used to control and monitor This controller is used to control and monitor
Tubelib/TechPack machines. Tubelib/TechPack machines.
This controller can be programmed in Lua. This controller can be programmed in Lua.
See on GitHub for more help: goo.gl/Et8D6n See on GitHub for more help: goo.gl/Et8D6n
The controller only runs, if a battery is The controller only runs, if a battery is
placed nearby. placed nearby.
]] ]]
local Cache = {} local Cache = {}
@ -37,8 +37,8 @@ local tHelpTexts = {[" Overview"] = sHELP, [" Data structures"] = safer_lua.Data
local sFunctionList = "" local sFunctionList = ""
local tFunctionIndex = {} local tFunctionIndex = {}
minetest.after(2, function() minetest.after(2, function()
sFunctionList = table.concat(tFunctions, ",") sFunctionList = table.concat(tFunctions, ",")
for idx,key in ipairs(tFunctions) do for idx,key in ipairs(tFunctions) do
tFunctionIndex[key] = idx tFunctionIndex[key] = idx
end end
@ -268,7 +268,7 @@ local function patch_error_string(err, line_offs)
else else
table.insert(tbl, s) table.insert(tbl, s)
end end
end end
return table.concat(tbl, "\n") return table.concat(tbl, "\n")
end end
@ -296,7 +296,7 @@ local function compile(pos, meta, number)
local env = table.copy(tCommands) local env = table.copy(tCommands)
env.meta = {pos=pos, owner=owner, number=number, error=error} env.meta = {pos=pos, owner=owner, number=number, error=error}
local code = safer_lua.init(pos, init, func.."\n"..loop, env, error) local code = safer_lua.init(pos, init, func.."\n"..loop, env, error)
if code then if code then
Cache[number] = {code=code, inputs={}, events=env.meta.events} Cache[number] = {code=code, inputs={}, events=env.meta.events}
Cache[number].inputs.term = nil -- terminal inputs Cache[number].inputs.term = nil -- terminal inputs
@ -314,7 +314,7 @@ local function battery(pos)
return true return true
end end
return false return false
end end
local function start_controller(pos) local function start_controller(pos)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -323,12 +323,12 @@ local function start_controller(pos)
meta:set_string("formspec", formspec0(meta)) meta:set_string("formspec", formspec0(meta))
return false return false
end end
meta:set_string("output", "<press update>") meta:set_string("output", "<press update>")
meta:set_int("cycletime", 1) meta:set_int("cycletime", 1)
meta:set_int("cyclecount", 0) meta:set_int("cyclecount", 0)
meta:set_int("cpu", 0) meta:set_int("cpu", 0)
if compile(pos, meta, number) then if compile(pos, meta, number) then
meta:set_int("state", tubelib.RUNNING) meta:set_int("state", tubelib.RUNNING)
meta:set_int("running", tubelib.STATE_RUNNING) meta:set_int("running", tubelib.STATE_RUNNING)
@ -381,7 +381,7 @@ local function call_loop(pos, meta, elapsed)
local cpu = meta:get_int("cpu") or 0 local cpu = meta:get_int("cpu") or 0
local code = Cache[number].code local code = Cache[number].code
local res = safer_lua.run_loop(pos, elapsed, code, error) local res = safer_lua.run_loop(pos, elapsed, code, error)
if res then if res then
t = minetest.get_us_time() - t t = minetest.get_us_time() - t
cpu = math.floor(((cpu * 20) + t) / 21) cpu = math.floor(((cpu * 20) + t) / 21)
meta:set_int("cpu", cpu) meta:set_int("cpu", cpu)
@ -419,7 +419,7 @@ local function on_receive_fields(pos, formname, fields, player)
return return
end end
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
--print(dump(fields)) --print(dump(fields))
if fields.cancel == nil then if fields.cancel == nil then
if fields.init then if fields.init then
@ -434,9 +434,9 @@ local function on_receive_fields(pos, formname, fields, player)
elseif fields.notes then elseif fields.notes then
meta:set_string("notes", fields.notes) meta:set_string("notes", fields.notes)
meta:set_string("formspec", formspec5(meta)) meta:set_string("formspec", formspec5(meta))
end end
end end
if fields.update then if fields.update then
meta:set_string("formspec", formspec4(meta)) meta:set_string("formspec", formspec4(meta))
elseif fields.clear then elseif fields.clear then
@ -490,7 +490,7 @@ minetest.register_node("sl_controller:controller", {
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = tubelib.add_node(pos, "sl_controller:controller") local number = tubelib.add_node(pos, "sl_controller:controller")
@ -511,24 +511,25 @@ minetest.register_node("sl_controller:controller", {
end, end,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
on_dig = function(pos, node, puncher, pointed_thing) on_dig = function(pos, node, puncher, pointed_thing)
if minetest.is_protected(pos, puncher:get_player_name()) then if minetest.is_protected(pos, puncher:get_player_name()) then
return return
end end
minetest.node_dig(pos, node, puncher, pointed_thing) minetest.node_dig(pos, node, puncher, pointed_thing)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = on_timer, on_timer = on_timer,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=1, cracky=1, crumbly=1}, groups = {choppy=1, cracky=1, crumbly=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -540,7 +541,7 @@ minetest.register_craft({
-- write inputs from remote nodes -- write inputs from remote nodes
local function set_input(pos, number, input, val) local function set_input(pos, number, input, val)
if input and M(pos):get_int("state") == tubelib.RUNNING then if input and M(pos):get_int("state") == tubelib.RUNNING then
if (Cache[number] or compile(pos, M(pos), number)) and Cache[number].inputs then if (Cache[number] or compile(pos, M(pos), number)) and Cache[number].inputs then
if input == "msg" then if input == "msg" then
if #Cache[number].inputs["msg"] < 10 then if #Cache[number].inputs["msg"] < 10 then
@ -560,17 +561,17 @@ local function set_input(pos, number, input, val)
end end
end end
end end
end end
-- used by the command "input" -- used by the command "input"
function sl_controller.get_input(number, input) function sl_controller.get_input(number, input)
if input then if input then
if Cache[number] and Cache[number].inputs then if Cache[number] and Cache[number].inputs then
return Cache[number].inputs[input] or "off" return Cache[number].inputs[input] or "off"
end end
end end
return "off" return "off"
end end
-- used for Terminal commands -- used for Terminal commands
function sl_controller.get_command(number) function sl_controller.get_command(number)
@ -579,20 +580,20 @@ function sl_controller.get_command(number)
Cache[number].inputs["term"] = nil Cache[number].inputs["term"] = nil
return cmnd return cmnd
end end
end end
-- used for queued messages -- used for queued messages
function sl_controller.get_msg(number) function sl_controller.get_msg(number)
if Cache[number] and Cache[number].inputs then if Cache[number] and Cache[number].inputs then
return table.remove(Cache[number].inputs["msg"], 1) return table.remove(Cache[number].inputs["msg"], 1)
end end
end end
tubelib.register_node("sl_controller:controller", {}, { tubelib.register_node("sl_controller:controller", {}, {
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = meta:get_string("number") local number = meta:get_string("number")
if topic == "on" then if topic == "on" then
set_input(pos, number, payload, topic) set_input(pos, number, payload, topic)
elseif topic == "off" then elseif topic == "off" then
@ -614,4 +615,4 @@ tubelib.register_node("sl_controller:controller", {}, {
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end end
end, end,
}) })

@ -14,7 +14,7 @@
local SERVER_CAPA = 5000 local SERVER_CAPA = 5000
local DEFAULT_MEM = { local DEFAULT_MEM = {
size=0, size=0,
data={ data={
version = 1, version = 1,
info = "SaferLua key/value Server", info = "SaferLua key/value Server",
@ -71,7 +71,7 @@ minetest.register_node("sl_controller:server", {
{ -3/16, -8/16, -7/16, 3/16, 6/16, 7/16}, { -3/16, -8/16, -7/16, 3/16, 6/16, 7/16},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = tubelib.add_node(pos, "sl_controller:server") local number = tubelib.add_node(pos, "sl_controller:server")
@ -82,7 +82,7 @@ minetest.register_node("sl_controller:server", {
on_time(pos, 0) on_time(pos, 0)
minetest.get_node_timer(pos):start(20) minetest.get_node_timer(pos):start(20)
end, end,
on_receive_fields = function(pos, formname, fields, player) on_receive_fields = function(pos, formname, fields, player)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local owner = meta:get_string("owner") local owner = meta:get_string("owner")
@ -94,7 +94,7 @@ minetest.register_node("sl_controller:server", {
end end
end end
end, end,
on_dig = function(pos, node, puncher, pointed_thing) on_dig = function(pos, node, puncher, pointed_thing)
if minetest.is_protected(pos, puncher:get_player_name()) then if minetest.is_protected(pos, puncher:get_player_name()) then
return return
@ -105,15 +105,16 @@ minetest.register_node("sl_controller:server", {
minetest.node_dig(pos, node, puncher, pointed_thing) minetest.node_dig(pos, node, puncher, pointed_thing)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = on_time, on_timer = on_time,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=1, cracky=1, crumbly=1}, groups = {choppy=1, cracky=1, crumbly=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -167,7 +168,7 @@ local function write_value(mem, key, item)
mem.size = mem.size + calc_size(item) mem.size = mem.size + calc_size(item)
mem.data[key] = item mem.data[key] = item
end end
end end
local function read_value(mem, key) local function read_value(mem, key)
local item = mem.data[key] local item = mem.data[key]
@ -175,7 +176,7 @@ local function read_value(mem, key)
item = safer_lua.table_to_datastruct(item) item = safer_lua.table_to_datastruct(item)
end end
return item return item
end end
tubelib.register_node("sl_controller:server", {}, { tubelib.register_node("sl_controller:server", {}, {
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
@ -184,11 +185,11 @@ tubelib.register_node("sl_controller:server", {}, {
on_node_load = function(pos) on_node_load = function(pos)
minetest.get_node_timer(pos):start(20) minetest.get_node_timer(pos):start(20)
end, end,
}) })
sl_controller.register_function("server_read", { sl_controller.register_function("server_read", {
cmnd = function(self, num, key) cmnd = function(self, num, key)
if type(key) == "string" then if type(key) == "string" then
local mem = get_memory(num, self.meta.owner) local mem = get_memory(num, self.meta.owner)
if mem then if mem then
@ -221,5 +222,3 @@ sl_controller.register_action("server_write", {
" number, string, boolean, nil or data structure.\n".. " number, string, boolean, nil or data structure.\n"..
' example: $server_write("0123", "state", state)' ' example: $server_write("0123", "state", state)'
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
terminal.lua: terminal.lua:
]]-- ]]--
local HELP = [[#### SmartLine Controller Terminal #### local HELP = [[#### SmartLine Controller Terminal ####
@ -21,7 +21,7 @@ Controller to the Terminal.
Commands can have up to 80 characters. Commands can have up to 80 characters.
Local commands: Local commands:
- clear = clear screen - clear = clear screen
- help = this message - help = this message
- pub = switch to public use - pub = switch to public use
- priv = switch to private use - priv = switch to private use
Global commands: Global commands:
@ -66,7 +66,7 @@ local function command(pos, cmnd, player)
local owner = meta:get_string("owner") or "" local owner = meta:get_string("owner") or ""
if cmnd then if cmnd then
cmnd = cmnd:sub(1,80) cmnd = cmnd:sub(1,80)
if cmnd == "clear" then if cmnd == "clear" then
meta:set_string("output", "") meta:set_string("output", "")
meta:set_string("formspec", formspec2(meta)) meta:set_string("formspec", formspec2(meta))
@ -104,7 +104,7 @@ local function command(pos, cmnd, player)
tubelib.send_message(number, owner, nil, "term", cmnd) tubelib.send_message(number, owner, nil, "term", cmnd)
end end
end end
end end
local function register_terminal(num, tiles, node_box, selection_box) local function register_terminal(num, tiles, node_box, selection_box)
minetest.register_node("sl_controller:terminal"..num, { minetest.register_node("sl_controller:terminal"..num, {
@ -113,7 +113,7 @@ local function register_terminal(num, tiles, node_box, selection_box)
drawtype = "nodebox", drawtype = "nodebox",
node_box = node_box, node_box = node_box,
selection_box = selection_box, selection_box = selection_box,
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local number = tubelib.add_node(pos, minetest.get_node(pos).name) local number = tubelib.add_node(pos, minetest.get_node(pos).name)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -136,17 +136,18 @@ local function register_terminal(num, tiles, node_box, selection_box)
command(pos, fields.cmnd, player:get_player_name()) command(pos, fields.cmnd, player:get_player_name())
end end
end, end,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
end end
@ -235,7 +236,7 @@ tubelib.register_node("sl_controller:terminal2", {}, {
return true return true
end end
end, end,
}) })
sl_controller.register_function("get_term", { sl_controller.register_function("get_term", {
cmnd = function(self) cmnd = function(self)
@ -279,4 +280,3 @@ sl_controller.register_action("send_msg", {
' Send a message to the controller with number "num".\n'.. ' Send a message to the controller with number "num".\n'..
' example: $send_msg("0123", "test")' ' example: $send_msg("0123", "test")'
}) })

@ -85,13 +85,13 @@ minetest.register_node("smartline:button", {
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local own_num = tubelib.add_node(pos, "smartline:button") local own_num = tubelib.add_node(pos, "smartline:button")
meta:set_string("own_num", own_num) meta:set_string("own_num", own_num)
meta:set_string("formspec", "size[5,6]".. meta:set_string("formspec", "size[5,6]"..
"dropdown[0.2,0;3;type;"..S("switch,button 2s,button 4s,button 8s,button 16s")..";1]".. "dropdown[0.2,0;3;type;"..S("switch,button 2s,button 4s,button 8s,button 16s")..";1]"..
"field[0.5,2;3,1;numbers;"..S("Insert destination block number(s)")..";]" .. "field[0.5,2;3,1;numbers;"..S("Insert destination block number(s)")..";]" ..
"checkbox[1,3;public;public;false]".. "checkbox[1,3;public;public;false]"..
"button_exit[1,4;2,1;exit;"..S("Save").."]") "button_exit[1,4;2,1;exit;"..S("Save").."]")
@ -133,7 +133,7 @@ minetest.register_node("smartline:button", {
meta:set_string("formspec", nil) meta:set_string("formspec", nil)
end end
end, end,
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
if meta:get_string("numbers") ~= "" and meta:get_string("numbers") ~= nil then if meta:get_string("numbers") ~= "" and meta:get_string("numbers") ~= nil then
@ -152,6 +152,7 @@ minetest.register_node("smartline:button", {
groups = {cracky=2, crumbly=2}, groups = {cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -174,7 +175,7 @@ minetest.register_node("smartline:button_active", {
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_string("clicker_name", clicker:get_player_name()) meta:set_string("clicker_name", clicker:get_player_name())
@ -196,6 +197,7 @@ minetest.register_node("smartline:button_active", {
drop = "smartline:button", drop = "smartline:button",
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
tubelib.register_node("smartline:button", {"smartline:button_active"}, {tubelib_node = true}) tubelib.register_node("smartline:button", {"smartline:button_active"}, {tubelib_node = true})

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
collector.lua: collector.lua:
Collects states from other nodes, acting as a state concentrator. Collects states from other nodes, acting as a state concentrator.
]]-- ]]--
@ -22,13 +22,13 @@ local CYCLE_TIME = 1
local tStates = {stopped = 0, running = 0, standby = 1, blocked = 2, fault = 3, defect = 4} local tStates = {stopped = 0, running = 0, standby = 1, blocked = 2, fault = 3, defect = 4}
local tDropdownPos = {["1 standby"] = 1, ["2 blocked"] = 2 , ["3 fault"] = 3, ["4 defect"] = 4} local tDropdownPos = {["1 standby"] = 1, ["2 blocked"] = 2 , ["3 fault"] = 3, ["4 defect"] = 4}
local lStates = {[0] = "stopped", "standby", "blocked", "fault", "defect"} local lStates = {[0] = "stopped", "standby", "blocked", "fault", "defect"}
local function formspec(meta) local function formspec(meta)
local poll_numbers = meta:get_string("poll_numbers") local poll_numbers = meta:get_string("poll_numbers")
local event_number = meta:get_string("event_number") local event_number = meta:get_string("event_number")
local dropdown_pos = meta:get_int("dropdown_pos") local dropdown_pos = meta:get_int("dropdown_pos")
if dropdown_pos == 0 then dropdown_pos = 1 end if dropdown_pos == 0 then dropdown_pos = 1 end
return "size[9,6]".. return "size[9,6]"..
default.gui_bg.. default.gui_bg..
default.gui_bg_img.. default.gui_bg_img..
@ -38,7 +38,7 @@ local function formspec(meta)
"label[1.3,2.8;"..S("Send an event if state is equal or larget than:").."]".. "label[1.3,2.8;"..S("Send an event if state is equal or larget than:").."]"..
"dropdown[1.2,3.4;7,4;severity;1 standby,2 blocked,3 fault,4 defect;"..dropdown_pos.."]".. "dropdown[1.2,3.4;7,4;severity;1 standby,2 blocked,3 fault,4 defect;"..dropdown_pos.."]"..
"button_exit[3,5;2,1;exit;"..S("Save").."]" "button_exit[3,5;2,1;exit;"..S("Save").."]"
end end
local function send_event(meta) local function send_event(meta)
@ -74,7 +74,7 @@ local function on_timer(pos,elapsed)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local poll_numbers = meta:get_string("poll_numbers") local poll_numbers = meta:get_string("poll_numbers")
local idx = meta:get_int("index") + 1 local idx = meta:get_int("index") + 1
if poll_numbers == "" then if poll_numbers == "" then
local own_number = meta:get_string("own_number") local own_number = meta:get_string("own_number")
meta:set_string("infotext", S("SmartLine State Collector").." "..own_number..": stopped") meta:set_string("infotext", S("SmartLine State Collector").." "..own_number..": stopped")
@ -82,15 +82,15 @@ local function on_timer(pos,elapsed)
meta:set_int("stored_state", 0) meta:set_int("stored_state", 0)
return false return false
end end
if idx > meta:get_int("num_numbers") then if idx > meta:get_int("num_numbers") then
idx = 1 idx = 1
send_event(meta) send_event(meta)
end end
meta:set_int("index", idx) meta:set_int("index", idx)
request_state(meta, poll_numbers, idx) request_state(meta, poll_numbers, idx)
return true return true
end end
return false return false
@ -161,11 +161,11 @@ minetest.register_node("smartline:collector", {
end end
meta:set_string("formspec", formspec(meta)) meta:set_string("formspec", formspec(meta))
end end
end, end,
on_timer = on_timer, on_timer = on_timer,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
@ -176,6 +176,7 @@ minetest.register_node("smartline:collector", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -210,4 +211,4 @@ tubelib.register_node("smartline:collector", {}, {
on_node_load = function(pos) on_node_load = function(pos)
minetest.get_node_timer(pos):start(CYCLE_TIME) minetest.get_node_timer(pos):start(CYCLE_TIME)
end, end,
}) })

@ -17,7 +17,7 @@
local NUM_RULES = 10 local NUM_RULES = 10
local mail_exists = minetest.get_modpath("mail") and mail ~= nil local mail_exists = minetest.get_modpath("mail") and mail ~= nil
local sHELP = [[SmartLine Controller Help local sHELP = [[SmartLine Controller Help
Control other nodes by means of rules, according to: Control other nodes by means of rules, according to:
@ -28,27 +28,27 @@ Examples for conditions are:
- the Player Detector detects a player - the Player Detector detects a player
- a button is pressed - a button is pressed
- a node state is fault, blocked, standby,... - a node state is fault, blocked, standby,...
- a timer is expired - a timer is expired
Actions are: Actions are:
- switch on/off tubelib nodes, like lamps, door blocks, machines - switch on/off tubelib nodes, like lamps, door blocks, machines
- send mail/chat messages to the owner - send mail/chat messages to the owner
- output a text message to the display - output a text message to the display
- set timer variables - set timer variables
- set/reset flag variables - set/reset flag variables
Variables and timers: Variables and timers:
- 8 flags (set/reset) can be used to store conditions - 8 flags (set/reset) can be used to store conditions
for later use. for later use.
- Action flags (one flag for each rule, set when action is executed) - Action flags (one flag for each rule, set when action is executed)
The flag can be used as condition for subsequent rules. The flag can be used as condition for subsequent rules.
- 8 timers (resolution in seconds) can be use - 8 timers (resolution in seconds) can be use
for delayed actions. for delayed actions.
The controller executes all rules once per second. The controller executes all rules once per second.
Independent how long the input condition stays 'true', Independent how long the input condition stays 'true',
the corresponding action will be triggered only once. the corresponding action will be triggered only once.
The condition has to become false and then true again, to The condition has to become false and then true again, to
re-trigger/execute the action again. re-trigger/execute the action again.
The 'label' has no function. It is only used The 'label' has no function. It is only used
@ -66,12 +66,12 @@ It has a 'update' button to update the view.
]] ]]
local sOUTPUT = "Press 'help' for edit commands" local sOUTPUT = "Press 'help' for edit commands"
-- --
-- Helper functions -- Helper functions
-- --
local function create_kv_list(elem) local function create_kv_list(elem)
local a = {} local a = {}
for i,v in ipairs(elem) do for i,v in ipairs(elem) do
a[v] = i a[v] = i
@ -181,16 +181,16 @@ local function get_active_subm_definition(postfix, type, fs_data)
return idx, fs_definition return idx, fs_definition
end end
-- Extract runtime relevant data from the given submenu -- Extract runtime relevant data from the given submenu
-- postfix: row/culum info like "11" or "a2" -- postfix: row/culum info like "11" or "a2"
-- fs_definition: submenu formspec definition -- fs_definition: submenu formspec definition
-- fs_data: formspec data -- fs_data: formspec data
local function get_subm_data(postfix, fs_definition, fs_data) local function get_subm_data(postfix, fs_definition, fs_data)
local data = {} local data = {}
for idx,elem in ipairs(fs_definition.formspec) do for idx,elem in ipairs(fs_definition.formspec) do
if elem.type == "field" then if elem.type == "field" then
data[elem.name] = fs_data["subm"..postfix.."_"..elem.name] or "?" data[elem.name] = fs_data["subm"..postfix.."_"..elem.name] or "?"
elseif elem.type == "textlist" then elseif elem.type == "textlist" then
local num = tonumber(fs_data["subm"..postfix.."_"..elem.name]) or 1 local num = tonumber(fs_data["subm"..postfix.."_"..elem.name]) or 1
num = math.min(num, elem.num_choices) num = math.min(num, elem.num_choices)
data[elem.name] = num data[elem.name] = num
@ -209,11 +209,11 @@ end
local function field2fs_data(fs_definition, fields, fs_data) local function field2fs_data(fs_definition, fields, fs_data)
for idx,elem in ipairs(fs_definition.formspec) do for idx,elem in ipairs(fs_definition.formspec) do
local key = "subm"..fields._postfix_.."_"..elem.name local key = "subm"..fields._postfix_.."_"..elem.name
if elem.type == "field" then if elem.type == "field" then
if fields[elem.name] then if fields[elem.name] then
fs_data[key] = fields[elem.name] fs_data[key] = fields[elem.name]
end end
elseif elem.type == "textlist" then elseif elem.type == "textlist" then
local evt = minetest.explode_textlist_event(fields[elem.name]) local evt = minetest.explode_textlist_event(fields[elem.name])
if evt.type == "CHG" then if evt.type == "CHG" then
fs_data[key] = evt.index fs_data[key] = evt.index
@ -278,7 +278,7 @@ local function formspec_cond(_postfix_, fs_data)
default.gui_slots.. default.gui_slots..
"field[0,0;0,0;_type_;;cond]".. "field[0,0;0,0;_type_;;cond]"..
"field[0,0;0,0;_postfix_;;".._postfix_.."]"} "field[0,0;0,0;_postfix_;;".._postfix_.."]"}
local sConditions = table.concat(aCondTitles, ",") local sConditions = table.concat(aCondTitles, ",")
local cond_idx, fs_definition = get_active_subm_definition(_postfix_, "cond", fs_data) local cond_idx, fs_definition = get_active_subm_definition(_postfix_, "cond", fs_data)
tbl[#tbl+1] = "label[0,0.1;Condition type:]" tbl[#tbl+1] = "label[0,0.1;Condition type:]"
@ -291,7 +291,7 @@ end
-- evaluate the row condition -- evaluate the row condition
local function eval_formspec_cond(meta, fs_data, fields, readonly) local function eval_formspec_cond(meta, fs_data, fields, readonly)
if readonly then return fs_data end if readonly then return fs_data end
-- determine condition type -- determine condition type
local cond = minetest.explode_textlist_event(fields.cond) local cond = minetest.explode_textlist_event(fields.cond)
if cond.type == "CHG" then if cond.type == "CHG" then
@ -303,14 +303,14 @@ local function eval_formspec_cond(meta, fs_data, fields, readonly)
local data = get_subm_data(fields._postfix_, fs_definition, fs_data) local data = get_subm_data(fields._postfix_, fs_definition, fs_data)
-- update button for main menu -- update button for main menu
fs_data["cond"..fields._postfix_] = fs_definition.button_label(data) fs_data["cond"..fields._postfix_] = fs_definition.button_label(data)
if fields._exit_ == nil then if fields._exit_ == nil then
-- update formspec if exit is not pressed -- update formspec if exit is not pressed
meta:set_string("formspec", formspec_cond(fields._postfix_, fs_data)) meta:set_string("formspec", formspec_cond(fields._postfix_, fs_data))
end end
return fs_data return fs_data
end end
-- --
-- Action formspec -- Action formspec
@ -322,7 +322,7 @@ local function formspec_actn(_postfix_, fs_data)
default.gui_slots.. default.gui_slots..
"field[0,0;0,0;_type_;;actn]".. "field[0,0;0,0;_type_;;actn]"..
"field[0,0;0,0;_postfix_;;".._postfix_.."]"} "field[0,0;0,0;_postfix_;;".._postfix_.."]"}
local sActions = table.concat(aActnTitles, ",") local sActions = table.concat(aActnTitles, ",")
local actn_idx, fs_definition = get_active_subm_definition(_postfix_, "actn", fs_data) local actn_idx, fs_definition = get_active_subm_definition(_postfix_, "actn", fs_data)
tbl[#tbl+1] = "label[0,0.1;Action type:]" tbl[#tbl+1] = "label[0,0.1;Action type:]"
@ -335,7 +335,7 @@ end
-- evaluate the row action -- evaluate the row action
local function eval_formspec_actn(meta, fs_data, fields, readonly) local function eval_formspec_actn(meta, fs_data, fields, readonly)
if readonly then return fs_data end if readonly then return fs_data end
-- determine action type -- determine action type
local actn = minetest.explode_textlist_event(fields.actn) local actn = minetest.explode_textlist_event(fields.actn)
if actn.type == "CHG" then if actn.type == "CHG" then
@ -347,7 +347,7 @@ local function eval_formspec_actn(meta, fs_data, fields, readonly)
local data = get_subm_data(fields._postfix_, fs_definition, fs_data) local data = get_subm_data(fields._postfix_, fs_definition, fs_data)
-- update button for main menu -- update button for main menu
fs_data["actn"..fields._postfix_] = fs_definition.button_label(data) fs_data["actn"..fields._postfix_] = fs_definition.button_label(data)
if fields._exit_ == nil then if fields._exit_ == nil then
-- update formspec if exit is not pressed -- update formspec if exit is not pressed
meta:set_string("formspec", formspec_actn(fields._postfix_, fs_data)) meta:set_string("formspec", formspec_actn(fields._postfix_, fs_data))
@ -377,7 +377,7 @@ end
-- evaluate the row label -- evaluate the row label
local function eval_formspec_label(meta, fs_data, fields, readonly) local function eval_formspec_label(meta, fs_data, fields, readonly)
if readonly then return fs_data end if readonly then return fs_data end
fs_data["subml"..fields._postfix_.."_label"] = fields.label fs_data["subml"..fields._postfix_.."_label"] = fields.label
if fields._exit_ == nil then if fields._exit_ == nil then
meta:set_string("formspec", formspec_label(fields._postfix_, fs_data)) meta:set_string("formspec", formspec_label(fields._postfix_, fs_data))
@ -406,7 +406,7 @@ end
-- evaluate the row operand -- evaluate the row operand
local function eval_formspec_oprnd(meta, fs_data, fields, readonly) local function eval_formspec_oprnd(meta, fs_data, fields, readonly)
if readonly then return fs_data end if readonly then return fs_data end
local oprnd = minetest.explode_textlist_event(fields.oprnd) local oprnd = minetest.explode_textlist_event(fields.oprnd)
if oprnd.type == "CHG" then if oprnd.type == "CHG" then
fs_data["submo"..fields._postfix_.."_oprnd"] = oprnd.index fs_data["submo"..fields._postfix_.."_oprnd"] = oprnd.index
@ -426,7 +426,7 @@ local function formspec_main(state, fs_data, output)
default.gui_slots.. default.gui_slots..
"field[0,0;0,0;_type_;;main]".. "field[0,0;0,0;_type_;;main]"..
"label[0.8,0;label:]label[3.8,0;IF cond 1:]label[7,0;and/or]label[8.3,0;cond 2:]label[11.7,0;THEN action:]"} "label[0.8,0;label:]label[3.8,0;IF cond 1:]label[7,0;and/or]label[8.3,0;cond 2:]label[11.7,0;THEN action:]"}
for idx = 1,NUM_RULES do for idx = 1,NUM_RULES do
local ypos = idx * 0.75 - 0.4 local ypos = idx * 0.75 - 0.4
tbl[#tbl+1] = "label[0,"..(0.2+ypos)..";"..idx.."]" tbl[#tbl+1] = "label[0,"..(0.2+ypos)..";"..idx.."]"
@ -452,7 +452,7 @@ local function eval_formspec_main(meta, fs_data, fields, readonly)
if not readonly then if not readonly then
fs_data["oprnd"..idx] = fields["oprnd"..idx] or fs_data["oprnd"..idx] fs_data["oprnd"..idx] = fields["oprnd"..idx] or fs_data["oprnd"..idx]
end end
-- eval submenu button events -- eval submenu button events
if fields["label"..idx] then if fields["label"..idx] then
meta:set_string("formspec", formspec_label(idx, fs_data)) meta:set_string("formspec", formspec_label(idx, fs_data))
@ -465,7 +465,7 @@ local function eval_formspec_main(meta, fs_data, fields, readonly)
elseif fields["actna"..idx] then elseif fields["actna"..idx] then
meta:set_string("formspec", formspec_actn("a"..idx, fs_data)) meta:set_string("formspec", formspec_actn("a"..idx, fs_data))
end end
end end
return fs_data return fs_data
end end
@ -489,7 +489,7 @@ local function background(xpos, ypos, val)
else else
return "box["..(xpos-0.1)..",".. ypos..";3.3,0.4;#202020]" return "box["..(xpos-0.1)..",".. ypos..";3.3,0.4;#202020]"
end end
end end
local function formspec_state(meta, fs_data) local function formspec_state(meta, fs_data)
local number = meta:get_string("number") local number = meta:get_string("number")
@ -500,12 +500,12 @@ local function formspec_state(meta, fs_data)
default.gui_slots.. default.gui_slots..
"field[0,0;0,0;_type_;;state]".. "field[0,0;0,0;_type_;;state]"..
"label[0.8,0;label:]label[3.8,0;IF cond 1:]label[7,0;and/or]label[8.3,0;cond 2:]label[11.7,0;THEN action:]"} "label[0.8,0;label:]label[3.8,0;IF cond 1:]label[7,0;and/or]label[8.3,0;cond 2:]label[11.7,0;THEN action:]"}
if state == tubelib.RUNNING and number then if state == tubelib.RUNNING and number then
local environ = tubelib.get_data(number, "environ") local environ = tubelib.get_data(number, "environ")
local act_gate = tubelib.get_data(number, "act_gate") local act_gate = tubelib.get_data(number, "act_gate")
local conds = tubelib.get_data(number, "conds") local conds = tubelib.get_data(number, "conds")
if environ and act_gate and conds then if environ and act_gate and conds then
for idx = 1,NUM_RULES do for idx = 1,NUM_RULES do
local ypos = idx * 0.6 + 0.2 local ypos = idx * 0.6 + 0.2
@ -530,13 +530,13 @@ local function formspec_state(meta, fs_data)
act_gate[idx] = false act_gate[idx] = false
end end
end end
tbl[#tbl+1] = "label[10,7; Seconds: "..(meta:get_int("runtime") or 1).."]" tbl[#tbl+1] = "label[10,7; Seconds: "..(meta:get_int("runtime") or 1).."]"
tbl[#tbl+1] = "label[0,7;"..output("Inputs", "i(", ")", environ.inputs).."]" tbl[#tbl+1] = "label[0,7;"..output("Inputs", "i(", ")", environ.inputs).."]"
tbl[#tbl+1] = "label[0,7.6;"..output("Timers", "t", "", environ.timers).."]" tbl[#tbl+1] = "label[0,7.6;"..output("Timers", "t", "", environ.timers).."]"
tbl[#tbl+1] = "label[0,8.2;"..output("Flags", "f", "", environ.flags).."]" tbl[#tbl+1] = "label[0,8.2;"..output("Flags", "f", "", environ.flags).."]"
tbl[#tbl+1] = "label[0,8.8;Hint:]" tbl[#tbl+1] = "label[0,8.8;Hint:]"
tbl[#tbl+1] = "box[1.3,8.8;6,0.4;#008000]" tbl[#tbl+1] = "box[1.3,8.8;6,0.4;#008000]"
tbl[#tbl+1] = "label[1.4,8.8;condition true / action executed]" tbl[#tbl+1] = "label[1.4,8.8;condition true / action executed]"
@ -544,7 +544,7 @@ local function formspec_state(meta, fs_data)
tbl[#tbl+1] = "label[8,8.8;condition false / action out-of-date]" tbl[#tbl+1] = "label[8,8.8;condition false / action out-of-date]"
end end
end end
tbl[#tbl+1] = "button[13.3,6.9;1.7,1;update;update]" tbl[#tbl+1] = "button[13.3,6.9;1.7,1;update;update]"
tbl[#tbl+1] = "button[13.3,7.8;1.7,1;close;close]" tbl[#tbl+1] = "button[13.3,7.8;1.7,1;close;close]"
return table.concat(tbl) return table.concat(tbl)
@ -610,8 +610,8 @@ end
local function start_controller(pos, number, fs_data) local function start_controller(pos, number, fs_data)
-- delete old data -- delete old data
tubelib.set_data(number, "environ", { tubelib.set_data(number, "environ", {
timers = {}, timers = {},
flags = {}, flags = {},
inputs = {} inputs = {}
}) })
tubelib.set_data(number, "conds", {}) tubelib.set_data(number, "conds", {})
@ -628,7 +628,7 @@ local function formspec2runtime_rule(number, owner, fs_data)
local num2inp = {} local num2inp = {}
for idx = 1,NUM_RULES do for idx = 1,NUM_RULES do
-- valid rule? -- valid rule?
if fs_data["subm1"..idx.."_cond"] and fs_data["subm2"..idx.."_cond"] if fs_data["subm1"..idx.."_cond"] and fs_data["subm2"..idx.."_cond"]
and fs_data["subma"..idx.."_actn"] then and fs_data["subma"..idx.."_actn"] then
-- add to list of runtine rules -- add to list of runtine rules
local rule = { local rule = {
@ -640,7 +640,7 @@ local function formspec2runtime_rule(number, owner, fs_data)
rule.actn.owner = owner rule.actn.owner = owner
table.insert(rt_rules, rule) table.insert(rt_rules, rule)
end end
end end
tubelib.set_data(number, "rt_rules", rt_rules) tubelib.set_data(number, "rt_rules", rt_rules)
end end
@ -697,18 +697,18 @@ local function edit_command(fs_data, text)
if cmnd and pos1 and pos2 then if cmnd and pos1 and pos2 then
pos1 = math.max(1, math.min(pos1, NUM_RULES)) pos1 = math.max(1, math.min(pos1, NUM_RULES))
pos2 = math.max(1, math.min(pos2, NUM_RULES)) pos2 = math.max(1, math.min(pos2, NUM_RULES))
if cmnd == "x" then if cmnd == "x" then
exchange_rules(fs_data, pos1, pos2) exchange_rules(fs_data, pos1, pos2)
return "rows "..pos1.." and "..pos2.." exchanged" return "rows "..pos1.." and "..pos2.." exchanged"
end end
if cmnd == "c" then if cmnd == "c" then
copy_rule(fs_data, pos1, pos2) copy_rule(fs_data, pos1, pos2)
return "row "..pos1.." copied to "..pos2 return "row "..pos1.." copied to "..pos2
end end
elseif cmnd == "d" and pos1 then elseif cmnd == "d" and pos1 then
pos1 = math.max(1, math.min(pos1, NUM_RULES)) pos1 = math.max(1, math.min(pos1, NUM_RULES))
delete_rule(fs_data, pos1) delete_rule(fs_data, pos1)
return "row "..pos1.." deleted" return "row "..pos1.." deleted"
end end
@ -725,10 +725,10 @@ local function on_receive_fields(pos, formname, fields, player)
local fs_data = minetest.deserialize(meta:get_string("fs_data")) or {} local fs_data = minetest.deserialize(meta:get_string("fs_data")) or {}
local output = "" local output = ""
local readonly = player:get_player_name() ~= owner local readonly = player:get_player_name() ~= owner
-- FIRST: test if command entered? -- FIRST: test if command entered?
if fields.ok then if fields.ok then
if not readonly then if not readonly then
output = edit_command(fs_data, fields.cmnd) output = edit_command(fs_data, fields.cmnd)
smartline.stop_controller(pos, fs_data) smartline.stop_controller(pos, fs_data)
meta:set_string("formspec", formspec_main(tubelib.STOPPED, fs_data, output)) meta:set_string("formspec", formspec_main(tubelib.STOPPED, fs_data, output))
@ -816,12 +816,12 @@ minetest.register_node("smartline:controller", {
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = tubelib.add_node(pos, "smartline:controller") local number = tubelib.add_node(pos, "smartline:controller")
local fs_data = {} local fs_data = {}
meta:set_string("fs_data", minetest.serialize(fs_data)) meta:set_string("fs_data", minetest.serialize(fs_data))
meta:set_string("owner", placer:get_player_name()) meta:set_string("owner", placer:get_player_name())
meta:set_string("number", number) meta:set_string("number", number)
meta:set_int("state", tubelib.STOPPED) meta:set_int("state", tubelib.STOPPED)
@ -831,24 +831,25 @@ minetest.register_node("smartline:controller", {
end, end,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
on_dig = function(pos, node, puncher, pointed_thing) on_dig = function(pos, node, puncher, pointed_thing)
if minetest.is_protected(pos, puncher:get_player_name()) then if minetest.is_protected(pos, puncher:get_player_name()) then
return return
end end
minetest.node_dig(pos, node, puncher, pointed_thing) minetest.node_dig(pos, node, puncher, pointed_thing)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = check_rules, on_timer = check_rules,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=1, cracky=1, crumbly=1, not_in_creative_inventory=1}, groups = {choppy=1, cracky=1, crumbly=1, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
drop = "smartline:controller2", drop = "smartline:controller2",
}) })
@ -864,7 +865,7 @@ minetest.register_craft({
local function set_input(meta, payload, val) local function set_input(meta, payload, val)
if payload then if payload then
local number = meta:get_string("number") local number = meta:get_string("number")
local environ = tubelib.get_data(number, "environ") or {} local environ = tubelib.get_data(number, "environ") or {}
if environ.inputs then if environ.inputs then
@ -872,7 +873,7 @@ local function set_input(meta, payload, val)
tubelib.set_data(number, "environ", environ) tubelib.set_data(number, "environ", environ)
end end
end end
end end
tubelib.register_node("smartline:controller", {}, { tubelib.register_node("smartline:controller", {}, {
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
@ -894,11 +895,11 @@ tubelib.register_node("smartline:controller", {}, {
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end end
end, end,
}) })
-- List of Controller actions and conditions is dependent on loaded mods. -- List of Controller actions and conditions is dependent on loaded mods.
-- Therefore, the order of actions and conditions has to be re-assembled each time. -- Therefore, the order of actions and conditions has to be re-assembled each time.
-- last order from last run is stored as meta data -- last order from last run is stored as meta data
local storage = minetest.get_mod_storage() local storage = minetest.get_mod_storage()
local function old_to_new(newTypes, oldTypes) local function old_to_new(newTypes, oldTypes)
@ -922,7 +923,7 @@ local function update_node_database(meta)
meta:set_string("aCondTypes", minetest.serialize(aCondTypes)) meta:set_string("aCondTypes", minetest.serialize(aCondTypes))
meta:set_string("aActnTypes", minetest.serialize(aActnTypes)) meta:set_string("aActnTypes", minetest.serialize(aActnTypes))
return tOld2NewCond, tOld2NewActn return tOld2NewCond, tOld2NewActn
end end
@ -931,14 +932,14 @@ local function maintain_dataset(number)
if flags ~= nil then if flags ~= nil then
local timers = tubelib.get_data(number, "timers") or {} local timers = tubelib.get_data(number, "timers") or {}
local inputs = tubelib.get_data(number, "inputs") or {} local inputs = tubelib.get_data(number, "inputs") or {}
tubelib.set_data(number, "environ", { tubelib.set_data(number, "environ", {
flags = flags, flags = flags,
timers = timers, timers = timers,
inputs = inputs, inputs = inputs,
vars = {} vars = {}
}) })
tubelib.set_data(number, "inputs", nil) tubelib.set_data(number, "inputs", nil)
tubelib.set_data(number, "timers", nil) tubelib.set_data(number, "timers", nil)
tubelib.set_data(number, "flags", nil) tubelib.set_data(number, "flags", nil)
@ -957,7 +958,7 @@ function smartline.update_fs_data(meta, fs_data)
fs_data["subm2"..idx.."_cond"] = tOld2NewCond[fs_data["subm2"..idx.."_cond"]] fs_data["subm2"..idx.."_cond"] = tOld2NewCond[fs_data["subm2"..idx.."_cond"]]
fs_data["subma"..idx.."_actn"] = tOld2NewActn[fs_data["subma"..idx.."_actn"]] fs_data["subma"..idx.."_actn"] = tOld2NewActn[fs_data["subma"..idx.."_actn"]]
end end
end end
return fs_data return fs_data
end end
@ -969,16 +970,15 @@ minetest.register_lbm({
run_at_every_load = true, run_at_every_load = true,
action = function(pos, node) action = function(pos, node)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local fs_data = minetest.deserialize(meta:get_string("fs_data")) local fs_data = minetest.deserialize(meta:get_string("fs_data"))
fs_data = smartline.update_fs_data(meta, fs_data) fs_data = smartline.update_fs_data(meta, fs_data)
meta:set_string("fs_data", minetest.serialize(fs_data)) meta:set_string("fs_data", minetest.serialize(fs_data))
local number = meta:get_string("number") local number = meta:get_string("number")
local owner = meta:get_string("owner") local owner = meta:get_string("owner")
formspec2runtime_rule(number, owner, fs_data) formspec2runtime_rule(number, owner, fs_data)
maintain_dataset(number) maintain_dataset(number)
end end
}) })

@ -14,11 +14,11 @@
-- Load support for I18n -- Load support for I18n
local S = smartline.S local S = smartline.S
lcdlib.register_display_entity("smartline:entity") lcdlib.register_display_entity("smartline:entity")
local function display_update(pos, objref) local function display_update(pos, objref)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local text = meta:get_string("text") or "" local text = meta:get_string("text") or ""
text = string.gsub(text, "|", " \n") text = string.gsub(text, "|", " \n")
@ -54,7 +54,7 @@ minetest.register_node("smartline:display", {
node_box = lcd_box, node_box = lcd_box,
selection_box = lcd_box, selection_box = lcd_box,
light_source = 6, light_source = 6,
display_entities = { display_entities = {
["smartline:entity"] = { depth = 0.42, ["smartline:entity"] = { depth = 0.42,
on_display_update = display_update}, on_display_update = display_update},
@ -81,6 +81,7 @@ minetest.register_node("smartline:display", {
groups = {cracky=2, crumbly=2}, groups = {cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
@ -118,7 +119,7 @@ local function write_row(meta, payload)
local str = payload.str or "oops" local str = payload.str or "oops"
if row == 0 then if row == 0 then
meta:set_string("infotext", str) meta:set_string("infotext", str)
return return
end end
local rows local rows
if meta:get_int("startscreen") == 1 then if meta:get_int("startscreen") == 1 then
@ -162,5 +163,4 @@ tubelib.register_node("smartline:display", {}, {
end end
end end
end, end,
}) })

@ -54,7 +54,7 @@ local function register_battery(ext, percent, nici)
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_int("content", BATTERY_CAPACITY * percent) meta:set_int("content", BATTERY_CAPACITY * percent)
@ -64,10 +64,10 @@ local function register_battery(ext, percent, nici)
on_timer(pos, 1) on_timer(pos, 1)
minetest.get_node_timer(pos):start(30) minetest.get_node_timer(pos):start(30)
end, end,
on_timer = on_timer, on_timer = on_timer,
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
local percent = calc_percent(tonumber(oldmetadata.fields.content)) local percent = calc_percent(tonumber(oldmetadata.fields.content))
local stack local stack
@ -93,6 +93,7 @@ local function register_battery(ext, percent, nici)
drop = "", drop = "",
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
end end
@ -120,12 +121,12 @@ minetest.register_node("smartline:battery_empty", {
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_int("content", 0) meta:set_int("content", 0)
end, end,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
@ -133,6 +134,7 @@ minetest.register_node("smartline:battery_empty", {
drop = "", drop = "",
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -156,8 +158,8 @@ else
}) })
end end
tubelib.register_node("smartline:battery", tubelib.register_node("smartline:battery",
{"smartline:battery25", "smartline:battery50", "smartline:battery75"}, {"smartline:battery25", "smartline:battery50", "smartline:battery75"},
{ {
on_node_load = function(pos) on_node_load = function(pos)
minetest.get_node_timer(pos):start(30) minetest.get_node_timer(pos):start(30)

@ -4,7 +4,7 @@
=============== ===============
Part of the SmartLine mod Part of the SmartLine mod
Copyright (C) 2017-2020 Joachim Stolberg Copyright (C) 2017-2020 Joachim Stolberg
AGPL v3 AGPL v3
@ -17,7 +17,7 @@
-- --
-- Helper functions -- Helper functions
-- --
local function gen_table(size, val) local function gen_table(size, val)
local tbl = {} local tbl = {}
for idx = 1,size do for idx = 1,size do
if type(val) == "table" then if type(val) == "table" then
@ -39,14 +39,14 @@ local function integer(s, min, max)
return min return min
end end
local sOUTPUT = "Edit commands (see help)" local sOUTPUT = "Edit commands (see help)"
local Cache = {} local Cache = {}
local FS_DATA = gen_table(smartline.NUM_RULES, {}) local FS_DATA = gen_table(smartline.NUM_RULES, {})
local function output(pos, text, flush_buffer) local function output(pos, text, flush_buffer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
if not flush_buffer then if not flush_buffer then
text = meta:get_string("output") .. "\n" .. (text or "") text = meta:get_string("output") .. "\n" .. (text or "")
text = text:sub(-500,-1) text = text:sub(-500,-1)
end end
@ -62,7 +62,7 @@ end
-- if env.blocked[1] then -- if env.blocked[1] then
-- env.timer[1] = env.ticks + <after> -- env.timer[1] = env.ticks + <after>
-- end -- end
-- env.conditions[1] = env.blocked[1] -- env.conditions[1] = env.blocked[1]
-- else -- else
-- env.conditions[1] = false -- env.conditions[1] = false
-- end -- end
@ -77,7 +77,7 @@ end
-- if env.blocked[1] then -- if env.blocked[1] then
-- env.timer[1] = env.ticks + <after> -- env.timer[1] = env.ticks + <after>
-- end -- end
-- env.conditions[1] = env.blocked[1] -- env.conditions[1] = env.blocked[1]
-- else -- else
-- env.conditions[1] = false -- env.conditions[1] = false
-- end -- end
@ -96,7 +96,7 @@ if env.blocked[#] == false and env.ticks %% %s == 0 then
if env.blocked[#] then if env.blocked[#] then
env.timer[#] = env.ticks + %s env.timer[#] = env.ticks + %s
end end
env.condition[#] = env.blocked[#] env.condition[#] = env.blocked[#]
else else
env.condition[#] = false env.condition[#] = false
end end
@ -115,7 +115,7 @@ if env.blocked[#] == false and env.event then
if env.blocked[#] then if env.blocked[#] then
env.timer[#] = env.ticks + %s env.timer[#] = env.ticks + %s
end end
env.condition[#] = env.blocked[#] env.condition[#] = env.blocked[#]
else else
env.condition[#] = false env.condition[#] = false
end end
@ -133,7 +133,7 @@ if env.blocked[#] == false and env.event then
if env.blocked[#] then if env.blocked[#] then
env.timer[#] = env.ticks + %s env.timer[#] = env.ticks + %s
end end
env.condition[#] = env.blocked[#] env.condition[#] = env.blocked[#]
else else
env.condition[#] = false env.condition[#] = false
end end
@ -174,7 +174,7 @@ local function generate(pos, meta, environ)
elseif cond == nil and actn ~= nil then elseif cond == nil and actn ~= nil then
output(pos, "Error in condition in rule "..idx) output(pos, "Error in condition in rule "..idx)
end end
end end
return table.concat(tbl) return table.concat(tbl)
end end
@ -240,7 +240,7 @@ local function battery(pos)
return true return true
end end
return false return false
end end
local function start_controller(pos, meta) local function start_controller(pos, meta)
local number = meta:get_string("number") local number = meta:get_string("number")
@ -248,10 +248,10 @@ local function start_controller(pos, meta)
meta:set_string("formspec", smartline.formspecError(meta)) meta:set_string("formspec", smartline.formspecError(meta))
return false return false
end end
meta:set_string("output", "<press update>") meta:set_string("output", "<press update>")
meta:set_int("cpu", 0) meta:set_int("cpu", 0)
if compile(pos, meta, number) then if compile(pos, meta, number) then
meta:set_int("state", tubelib.RUNNING) meta:set_int("state", tubelib.RUNNING)
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
@ -301,7 +301,7 @@ local function on_timer(pos, elapsed)
local number = meta:get_string("number") local number = meta:get_string("number")
if Cache[number] or compile(pos, meta, number) then if Cache[number] or compile(pos, meta, number) then
local res = execute(pos, number, elapsed == -1) local res = execute(pos, number, elapsed == -1)
if res then if res then
t = minetest.get_us_time() - t t = minetest.get_us_time() - t
if not update_battery(meta, t) then if not update_battery(meta, t) then
no_battery(pos) no_battery(pos)
@ -323,7 +323,7 @@ local function on_receive_fields(pos, formname, fields, player)
if player:get_player_name() ~= owner then if player:get_player_name() ~= owner then
return return
end end
--print("fields", dump(fields)) --print("fields", dump(fields))
if fields.quit then -- cancel button if fields.quit then -- cancel button
return return
@ -353,7 +353,7 @@ local function on_receive_fields(pos, formname, fields, player)
end end
if fields._exit_ == "ok" then -- exit from sub-menu? if fields._exit_ == "ok" then -- exit from sub-menu?
if fields._button_ then if fields._button_ then
smartline.formspec_button_update(meta, fields) smartline.formspec_button_update(meta, fields)
end end
-- simulate tab selection -- simulate tab selection
fields.tab = "1" fields.tab = "1"
@ -427,12 +427,12 @@ minetest.register_node("smartline:controller2", {
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = tubelib.add_node(pos, "smartline:controller2") local number = tubelib.add_node(pos, "smartline:controller2")
local fs_data = FS_DATA local fs_data = FS_DATA
meta:set_string("fs_data", minetest.serialize(fs_data)) meta:set_string("fs_data", minetest.serialize(fs_data))
meta:set_string("owner", placer:get_player_name()) meta:set_string("owner", placer:get_player_name())
meta:set_string("number", number) meta:set_string("number", number)
meta:set_int("state", tubelib.STOPPED) meta:set_int("state", tubelib.STOPPED)
@ -442,24 +442,25 @@ minetest.register_node("smartline:controller2", {
end, end,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
on_dig = function(pos, node, puncher, pointed_thing) on_dig = function(pos, node, puncher, pointed_thing)
if minetest.is_protected(pos, puncher:get_player_name()) then if minetest.is_protected(pos, puncher:get_player_name()) then
return return
end end
minetest.node_dig(pos, node, puncher, pointed_thing) minetest.node_dig(pos, node, puncher, pointed_thing)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = on_timer, on_timer = on_timer,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=1, cracky=1, crumbly=1}, groups = {choppy=1, cracky=1, crumbly=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -474,7 +475,7 @@ minetest.register_craft({
-- write inputs from remote nodes -- write inputs from remote nodes
local function set_input(pos, own_number, rmt_number, val) local function set_input(pos, own_number, rmt_number, val)
if rmt_number then if rmt_number then
if Cache[own_number] and Cache[own_number].env.input then if Cache[own_number] and Cache[own_number].env.input then
local t = minetest.get_us_time() local t = minetest.get_us_time()
Cache[own_number].env.input[rmt_number] = val Cache[own_number].env.input[rmt_number] = val
@ -486,14 +487,14 @@ local function set_input(pos, own_number, rmt_number, val)
end end
end end
end end
end end
tubelib.register_node("smartline:controller2", {}, { tubelib.register_node("smartline:controller2", {}, {
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = meta:get_string("number") local number = meta:get_string("number")
local state = meta:get_int("state") local state = meta:get_int("state")
if state == tubelib.RUNNING and topic == "on" then if state == tubelib.RUNNING and topic == "on" then
set_input(pos, number, payload, topic) set_input(pos, number, payload, topic)
elseif state == tubelib.RUNNING and topic == "off" then elseif state == tubelib.RUNNING and topic == "off" then
@ -511,5 +512,4 @@ tubelib.register_node("smartline:controller2", {}, {
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end end
end, end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
playerdetector.lua: playerdetector.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -42,14 +42,14 @@ local function scan_for_player(pos)
local names = meta:get_string("names") or "" local names = meta:get_string("names") or ""
for _, object in pairs(minetest.get_objects_inside_radius(pos, 4)) do for _, object in pairs(minetest.get_objects_inside_radius(pos, 4)) do
if object:is_player() then if object:is_player() then
if names == "" then if names == "" then
meta:set_string("player_name", object:get_player_name()) meta:set_string("player_name", object:get_player_name())
return true return true
end end
for _,name in ipairs(string.split(names, " ")) do for _,name in ipairs(string.split(names, " ")) do
if object:get_player_name() == name then if object:get_player_name() == name then
meta:set_string("player_name", name) meta:set_string("player_name", name)
return true return true
end end
end end
end end
@ -141,11 +141,11 @@ minetest.register_node("smartline:playerdetector", {
end, end,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = function (pos, elapsed) on_timer = function (pos, elapsed)
if tubelib.data_not_corrupted(pos) then if tubelib.data_not_corrupted(pos) then
if scan_for_player(pos) then if scan_for_player(pos) then
@ -164,6 +164,7 @@ minetest.register_node("smartline:playerdetector", {
groups = {cracky=2, crumbly=2}, groups = {cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node("smartline:playerdetector_active", { minetest.register_node("smartline:playerdetector_active", {
@ -185,9 +186,9 @@ minetest.register_node("smartline:playerdetector_active", {
{ -6/32, -6/32, 14/32, 6/32, 6/32, 16/32}, { -6/32, -6/32, 14/32, 6/32, 6/32, 16/32},
}, },
}, },
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
@ -206,7 +207,8 @@ minetest.register_node("smartline:playerdetector_active", {
groups = {cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
drop = "smartline:playerdetector" drop = "smartline:playerdetector",
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -234,5 +236,4 @@ tubelib.register_node("smartline:playerdetector", {"smartline:playerdetector_act
on_node_load = function(pos) on_node_load = function(pos)
minetest.get_node_timer(pos):start(1.0) minetest.get_node_timer(pos):start(1.0)
end, end,
}) })

@ -23,7 +23,7 @@ local function formspec(meta)
return "size[7,5]".. return "size[7,5]"..
"field[0.5,2;6,1;number;"..S("Destination node numbers")..";"..numbers.."]" .. "field[0.5,2;6,1;number;"..S("Destination node numbers")..";"..numbers.."]" ..
"button_exit[1,3;2,1;exit;"..S("Save").."]" "button_exit[1,3;2,1;exit;"..S("Save").."]"
end end
minetest.register_node("smartline:repeater", { minetest.register_node("smartline:repeater", {
description = S("SmartLine Repeater"), description = S("SmartLine Repeater"),
@ -63,20 +63,20 @@ minetest.register_node("smartline:repeater", {
if owner ~= player:get_player_name() then if owner ~= player:get_player_name() then
return return
end end
if tubelib.check_numbers(fields.number) then if tubelib.check_numbers(fields.number) then
meta:set_string("numbers", fields.number) meta:set_string("numbers", fields.number)
local own_number = meta:get_string("own_number") local own_number = meta:get_string("own_number")
meta:set_string("infotext", S("SmartLine Repeater").." "..own_number..": "..S("connected with").." "..fields.number) meta:set_string("infotext", S("SmartLine Repeater").." "..own_number..": "..S("connected with").." "..fields.number)
meta:set_string("formspec", formspec(meta)) meta:set_string("formspec", formspec(meta))
end end
local timer = minetest.get_node_timer(pos) local timer = minetest.get_node_timer(pos)
if not timer:is_started() then if not timer:is_started() then
timer:start(1) timer:start(1)
end end
end, end,
on_timer = function(pos,elapsed) on_timer = function(pos,elapsed)
if tubelib.data_not_corrupted(pos) then if tubelib.data_not_corrupted(pos) then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -85,7 +85,7 @@ minetest.register_node("smartline:repeater", {
end end
return false return false
end, end,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
@ -96,6 +96,7 @@ minetest.register_node("smartline:repeater", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -133,4 +134,4 @@ tubelib.register_node("smartline:repeater", {}, {
on_node_load = function(pos) on_node_load = function(pos)
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end, end,
}) })

@ -2,7 +2,7 @@
SmartLine SmartLine
========= =========
Copyright (C) 2017-2020 Joachim Stolberg Copyright (C) 2017-2020 Joachim Stolberg
AGPL v3 AGPL v3
@ -10,7 +10,7 @@
sequencer.lua: sequencer.lua:
Derived from Tubelib sequencer Derived from Tubelib sequencer
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -22,7 +22,7 @@ local NUM_SLOTS = 8
local sHELP = "label[0,0;".. local sHELP = "label[0,0;"..
S([[SmartLine Sequencer Help S([[SmartLine Sequencer Help
Define a sequence of commands to control other machines. Define a sequence of commands to control other machines.
Numbers(s) are the node numbers, the command shall sent to. Numbers(s) are the node numbers, the command shall sent to.
The commands 'on'/'off' are used for machines and other nodes. The commands 'on'/'off' are used for machines and other nodes.
@ -44,7 +44,7 @@ local function formspec(state, rules, endless)
default.gui_bg_img.. default.gui_bg_img..
default.gui_slots.. default.gui_slots..
"label[0,0;"..S("Number(s)").."]label[2.1,0;"..S("Command").."]label[6.4,0;"..S("Offset/s").."]"} "label[0,0;"..S("Number(s)").."]label[2.1,0;"..S("Command").."]label[6.4,0;"..S("Offset/s").."]"}
for idx, rule in ipairs(rules or {}) do for idx, rule in ipairs(rules or {}) do
tbl[#tbl+1] = "field[0.2,"..(-0.2+idx)..";2,1;num"..idx..";;"..(rule.num or "").."]" tbl[#tbl+1] = "field[0.2,"..(-0.2+idx)..";2,1;num"..idx..";;"..(rule.num or "").."]"
tbl[#tbl+1] = "dropdown[2,"..(-0.4+idx)..";3.9,1;act"..idx..";"..sAction..";"..(rule.act or "").."]" tbl[#tbl+1] = "dropdown[2,"..(-0.4+idx)..";3.9,1;act"..idx..";"..sAction..";"..(rule.act or "").."]"
@ -53,7 +53,7 @@ local function formspec(state, rules, endless)
tbl[#tbl+1] = "checkbox[0,8.5;endless;"..S("Run endless")..";"..endless.."]" tbl[#tbl+1] = "checkbox[0,8.5;endless;"..S("Run endless")..";"..endless.."]"
tbl[#tbl+1] = "button[4.5,8.5;1.5,1;help;"..S("help").."]" tbl[#tbl+1] = "button[4.5,8.5;1.5,1;help;"..S("help").."]"
tbl[#tbl+1] = "image_button[6.5,8.5;1,1;".. tubelib.state_button(state) ..";button;]" tbl[#tbl+1] = "image_button[6.5,8.5;1,1;".. tubelib.state_button(state) ..";button;]"
return table.concat(tbl) return table.concat(tbl)
end end
@ -99,7 +99,7 @@ local function restart_timer(pos, time)
if type(time) == "number" then if type(time) == "number" then
timer:start(time) timer:start(time)
end end
end end
local function check_rules(pos, elapsed) local function check_rules(pos, elapsed)
if tubelib.data_not_corrupted(pos) then if tubelib.data_not_corrupted(pos) then
@ -164,14 +164,14 @@ local function on_receive_fields(pos, formname, fields, player)
meta:set_string("formspec", formspec_help()) meta:set_string("formspec", formspec_help())
return return
end end
local endless = meta:get_int("endless") or 0 local endless = meta:get_int("endless") or 0
if fields.endless ~= nil then if fields.endless ~= nil then
endless = fields.endless == "true" and 1 or 0 endless = fields.endless == "true" and 1 or 0
meta:set_int("index", 1) meta:set_int("index", 1)
end end
meta:set_int("endless", endless) meta:set_int("endless", endless)
local rules = minetest.deserialize(meta:get_string("rules")) local rules = minetest.deserialize(meta:get_string("rules"))
if fields.exit ~= nil then if fields.exit ~= nil then
meta:set_string("formspec", formspec(tubelib.state(running), rules, endless)) meta:set_string("formspec", formspec(tubelib.state(running), rules, endless))
@ -219,7 +219,7 @@ minetest.register_node("smartline:sequencer", {
"smartline.png", "smartline.png",
"smartline.png^smartline_sequencer.png", "smartline.png^smartline_sequencer.png",
}, },
drawtype = "nodebox", drawtype = "nodebox",
node_box = { node_box = {
type = "fixed", type = "fixed",
@ -245,7 +245,7 @@ minetest.register_node("smartline:sequencer", {
end, end,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
on_dig = function(pos, node, puncher, pointed_thing) on_dig = function(pos, node, puncher, pointed_thing)
if minetest.is_protected(pos, puncher:get_player_name()) then if minetest.is_protected(pos, puncher:get_player_name()) then
return return
@ -257,15 +257,16 @@ minetest.register_node("smartline:sequencer", {
tubelib.remove_node(pos) tubelib.remove_node(pos)
end end
end, end,
on_timer = check_rules, on_timer = check_rules,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -296,4 +297,4 @@ tubelib.register_node("smartline:sequencer", {}, {
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end end
end, end,
}) })

@ -20,14 +20,14 @@ local function switch_on(pos, node, color)
meta:set_string("state", color) meta:set_string("state", color)
node.name = "smartline:signaltower_"..color node.name = "smartline:signaltower_"..color
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
local function switch_off(pos, node) local function switch_off(pos, node)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_string("state", "off") meta:set_string("state", "off")
node.name = "smartline:signaltower" node.name = "smartline:signaltower"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
minetest.register_node("smartline:signaltower", { minetest.register_node("smartline:signaltower", {
description = S("SmartLine Signal Tower"), description = S("SmartLine Signal Tower"),
@ -44,7 +44,7 @@ minetest.register_node("smartline:signaltower", {
{ -5/32, -16/32, -5/32, 5/32, 16/32, 5/32}, { -5/32, -16/32, -5/32, 5/32, 16/32, 5/32},
}, },
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local number = tubelib.add_node(pos, "smartline:signaltower") local number = tubelib.add_node(pos, "smartline:signaltower")
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -63,12 +63,13 @@ minetest.register_node("smartline:signaltower", {
end, end,
paramtype = "light", paramtype = "light",
light_source = 0, light_source = 0,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {cracky=2, crumbly=2}, groups = {cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
for _,color in ipairs({"green", "amber", "red"}) do for _,color in ipairs({"green", "amber", "red"}) do
@ -94,13 +95,14 @@ for _,color in ipairs({"green", "amber", "red"}) do
end, end,
paramtype = "light", paramtype = "light",
light_source = 10, light_source = 10,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
drop = "smartline:signaltower", drop = "smartline:signaltower",
on_blast = function() end,
}) })
end end
@ -114,8 +116,8 @@ minetest.register_craft({
}) })
tubelib.register_node("smartline:signaltower", { tubelib.register_node("smartline:signaltower", {
"smartline:signaltower_green", "smartline:signaltower_green",
"smartline:signaltower_amber", "smartline:signaltower_amber",
"smartline:signaltower_red"}, { "smartline:signaltower_red"}, {
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
local node = minetest.get_node(pos) local node = minetest.get_node(pos)
@ -132,4 +134,4 @@ tubelib.register_node("smartline:signaltower", {
return meta:get_string("state") return meta:get_string("state")
end end
end, end,
}) })

@ -2,7 +2,7 @@
SmartLine SmartLine
========= =========
Copyright (C) 2017-2020 Joachim Stolberg Copyright (C) 2017-2020 Joachim Stolberg
AGPL v3 AGPL v3
@ -10,7 +10,7 @@
timer.lua: timer.lua:
Derived from Tubelib timer Derived from Tubelib timer
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -22,17 +22,17 @@ local sHELP = "label[0,0;"..
S([[SmartLine Timer Help S([[SmartLine Timer Help
The Timer is for a daytime controlled sending of commands The Timer is for a daytime controlled sending of commands
e.g. to turn street lights on/off. The timer checks the e.g. to turn street lights on/off. The timer checks the
time every few seconds. If the block was just loaded, time every few seconds. If the block was just loaded,
the timer will check the last 4 hours for commands the timer will check the last 4 hours for commands
that still need to be executed.]]).. that still need to be executed.]])..
"]" "]"
local tTime = { local tTime = {
["00:00"] = 1, ["02:00"] = 2, ["04:00"] = 3, ["00:00"] = 1, ["02:00"] = 2, ["04:00"] = 3,
["06:00"] = 4, ["08:00"] = 5, ["10:00"] = 6, ["06:00"] = 4, ["08:00"] = 5, ["10:00"] = 6,
["12:00"] = 7, ["14:00"] = 8, ["16:00"] = 9, ["12:00"] = 7, ["14:00"] = 8, ["16:00"] = 9,
["18:00"] =10, ["20:00"] =11, ["22:00"] =12, ["18:00"] =10, ["20:00"] =11, ["22:00"] =12,
} }
@ -51,32 +51,32 @@ local function formspec(events, numbers, actions)
default.gui_bg.. default.gui_bg..
default.gui_bg_img.. default.gui_bg_img..
default.gui_slots.. default.gui_slots..
"label[0,0;"..S("Time").."]label[2.3,0;"..S("Number(s)").."]label[4.5,0;"..S("Command").."]".. "label[0,0;"..S("Time").."]label[2.3,0;"..S("Number(s)").."]label[4.5,0;"..S("Command").."]"..
"dropdown[0,1;2,1;e1;"..sTime..";"..events[1].."]".. "dropdown[0,1;2,1;e1;"..sTime..";"..events[1].."]"..
"field[2.3,1.2;2,1;n1;;"..numbers[1].."]" .. "field[2.3,1.2;2,1;n1;;"..numbers[1].."]" ..
"dropdown[4.5,1;3,1;a1;"..sAction..";"..tAction[actions[1]].."]".. "dropdown[4.5,1;3,1;a1;"..sAction..";"..tAction[actions[1]].."]"..
"dropdown[0,2;2,1;e2;"..sTime..";"..events[2].."]".. "dropdown[0,2;2,1;e2;"..sTime..";"..events[2].."]"..
"field[2.3,2.2;2,1;n2;;"..numbers[2].."]" .. "field[2.3,2.2;2,1;n2;;"..numbers[2].."]" ..
"dropdown[4.5,2;3,1;a2;"..sAction..";"..tAction[actions[2]].."]".. "dropdown[4.5,2;3,1;a2;"..sAction..";"..tAction[actions[2]].."]"..
"dropdown[0,3;2,1;e3;"..sTime..";"..events[3].."]".. "dropdown[0,3;2,1;e3;"..sTime..";"..events[3].."]"..
"field[2.3,3.2;2,1;n3;;"..numbers[3].."]" .. "field[2.3,3.2;2,1;n3;;"..numbers[3].."]" ..
"dropdown[4.5,3;3,1;a3;"..sAction..";"..tAction[actions[3]].."]".. "dropdown[4.5,3;3,1;a3;"..sAction..";"..tAction[actions[3]].."]"..
"dropdown[0,4;2,1;e4;"..sTime..";"..events[4].."]".. "dropdown[0,4;2,1;e4;"..sTime..";"..events[4].."]"..
"field[2.3,4.2;2,1;n4;;"..numbers[4].."]" .. "field[2.3,4.2;2,1;n4;;"..numbers[4].."]" ..
"dropdown[4.5,4;3,1;a4;"..sAction..";"..tAction[actions[4]].."]".. "dropdown[4.5,4;3,1;a4;"..sAction..";"..tAction[actions[4]].."]"..
"dropdown[0,5;2,1;e5;"..sTime..";"..events[5].."]".. "dropdown[0,5;2,1;e5;"..sTime..";"..events[5].."]"..
"field[2.3,5.2;2,1;n5;;"..numbers[5].."]" .. "field[2.3,5.2;2,1;n5;;"..numbers[5].."]" ..
"dropdown[4.5,5;3,1;a5;"..sAction..";"..tAction[actions[5]].."]".. "dropdown[4.5,5;3,1;a5;"..sAction..";"..tAction[actions[5]].."]"..
"dropdown[0,6;2,1;e6;"..sTime..";"..events[6].."]".. "dropdown[0,6;2,1;e6;"..sTime..";"..events[6].."]"..
"field[2.3,6.2;2,1;n6;;"..numbers[6].."]" .. "field[2.3,6.2;2,1;n6;;"..numbers[6].."]" ..
"dropdown[4.5,6;3,1;a6;"..sAction..";"..tAction[actions[6]].."]".. "dropdown[4.5,6;3,1;a6;"..sAction..";"..tAction[actions[6]].."]"..
"button[4.5,7;1.5,1;help;"..S("help").."]".. "button[4.5,7;1.5,1;help;"..S("help").."]"..
"button_exit[6.5,7;1.5,1;exit;"..S("close").."]" "button_exit[6.5,7;1.5,1;exit;"..S("close").."]"
end end
@ -102,7 +102,7 @@ local function check_rules(pos,elapsed)
local done = minetest.deserialize(meta:get_string("done")) local done = minetest.deserialize(meta:get_string("done"))
local placer_name = meta:get_string("placer_name") local placer_name = meta:get_string("placer_name")
local own_num = meta:get_string("own_num") local own_num = meta:get_string("own_num")
-- check all rules -- check all rules
for idx,act in ipairs(actions) do for idx,act in ipairs(actions) do
if act ~= "" and numbers[idx] ~= "" then if act ~= "" and numbers[idx] ~= "" then
@ -121,7 +121,7 @@ local function check_rules(pos,elapsed)
end end
end end
end end
-- prepare for the next day -- prepare for the next day
if hour == 23 then if hour == 23 then
done = {false,false,false,false,false,false} done = {false,false,false,false,false,false}
@ -205,12 +205,12 @@ minetest.register_node("smartline:timer", {
end end
end end
meta:set_string("actions", minetest.serialize(actions)) meta:set_string("actions", minetest.serialize(actions))
meta:set_string("formspec", formspec(events, numbers, actions)) meta:set_string("formspec", formspec(events, numbers, actions))
local done = {false,false,false,false,false,false} local done = {false,false,false,false,false,false}
meta:set_string("done", minetest.serialize(done)) meta:set_string("done", minetest.serialize(done))
end, end,
on_timer = check_rules, on_timer = check_rules,
after_dig_node = function(pos) after_dig_node = function(pos)
@ -223,6 +223,7 @@ minetest.register_node("smartline:timer", {
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
on_blast = function() end,
}) })
tubelib.register_node("smartline:timer", {}, { tubelib.register_node("smartline:timer", {}, {

@ -7,7 +7,7 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
box_copper.lua box_copper.lua
]]-- ]]--
@ -23,20 +23,20 @@ local wh = techpack_warehouse
local NODE_NAME = "techpack_warehouse:box_copper" local NODE_NAME = "techpack_warehouse:box_copper"
local DESCRIPTION = S("Warehouse Box Copper") local DESCRIPTION = S("Warehouse Box Copper")
local INV_SIZE = 1200 local INV_SIZE = 1200
local BACKGROUND_IMG = "default_copper_block.png" local BACKGROUND_IMG = "default_copper_block.png"
local Box = wh.Box:new({ local Box = wh.Box:new({
node_name = NODE_NAME, node_name = NODE_NAME,
description = DESCRIPTION, description = DESCRIPTION,
inv_size = INV_SIZE, inv_size = INV_SIZE,
background_img = BACKGROUND_IMG, background_img = BACKGROUND_IMG,
}) })
minetest.register_node(NODE_NAME, { minetest.register_node(NODE_NAME, {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles(BACKGROUND_IMG), tiles = wh.tiles(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
return wh.after_place_node(Box, pos, placer, itemstack) return wh.after_place_node(Box, pos, placer, itemstack)
end, end,
@ -58,7 +58,7 @@ minetest.register_node(NODE_NAME, {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -66,12 +66,13 @@ minetest.register_node(NODE_NAME, {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node(NODE_NAME.."_active", { minetest.register_node(NODE_NAME.."_active", {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles_active(BACKGROUND_IMG), tiles = wh.tiles_active(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
return wh.after_place_node(Box, pos, placer, itemstack) return wh.after_place_node(Box, pos, placer, itemstack)
end, end,
@ -87,10 +88,10 @@ minetest.register_node(NODE_NAME.."_active", {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
diggable = false, diggable = false,
can_dig = function() return false end, can_dig = function() return false end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -98,12 +99,13 @@ minetest.register_node(NODE_NAME.."_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node(NODE_NAME.."_defect", { minetest.register_node(NODE_NAME.."_defect", {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles_defect(BACKGROUND_IMG), tiles = wh.tiles_defect(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
wh.after_place_node(Box, pos, placer, itemstack) wh.after_place_node(Box, pos, placer, itemstack)
Box.State:defect(pos, M(pos)) Box.State:defect(pos, M(pos))
@ -120,7 +122,7 @@ minetest.register_node(NODE_NAME.."_defect", {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -128,9 +130,10 @@ minetest.register_node(NODE_NAME.."_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
tubelib.register_node(NODE_NAME, tubelib.register_node(NODE_NAME,
{NODE_NAME.."_active", NODE_NAME.."_defect"}, { {NODE_NAME.."_active", NODE_NAME.."_defect"}, {
on_push_item = function(pos, side, item) on_push_item = function(pos, side, item)
local meta = M(pos) local meta = M(pos)
@ -175,7 +178,7 @@ tubelib.register_node(NODE_NAME,
on_node_repair = function(pos) on_node_repair = function(pos)
return Box.State:on_node_repair(pos) return Box.State:on_node_repair(pos)
end, end,
}) })
minetest.register_craft({ minetest.register_craft({
output = NODE_NAME, output = NODE_NAME,

@ -7,7 +7,7 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
box_gold.lua box_gold.lua
]]-- ]]--
@ -23,20 +23,20 @@ local wh = techpack_warehouse
local NODE_NAME = "techpack_warehouse:box_gold" local NODE_NAME = "techpack_warehouse:box_gold"
local DESCRIPTION = S("Warehouse Box Gold") local DESCRIPTION = S("Warehouse Box Gold")
local INV_SIZE = 3600 local INV_SIZE = 3600
local BACKGROUND_IMG = "default_gold_block.png" local BACKGROUND_IMG = "default_gold_block.png"
local Box = wh.Box:new({ local Box = wh.Box:new({
node_name = NODE_NAME, node_name = NODE_NAME,
description = DESCRIPTION, description = DESCRIPTION,
inv_size = INV_SIZE, inv_size = INV_SIZE,
background_img = BACKGROUND_IMG, background_img = BACKGROUND_IMG,
}) })
minetest.register_node(NODE_NAME, { minetest.register_node(NODE_NAME, {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles(BACKGROUND_IMG), tiles = wh.tiles(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
return wh.after_place_node(Box, pos, placer, itemstack) return wh.after_place_node(Box, pos, placer, itemstack)
end, end,
@ -58,7 +58,7 @@ minetest.register_node(NODE_NAME, {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -66,12 +66,13 @@ minetest.register_node(NODE_NAME, {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node(NODE_NAME.."_active", { minetest.register_node(NODE_NAME.."_active", {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles_active(BACKGROUND_IMG), tiles = wh.tiles_active(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
return wh.after_place_node(Box, pos, placer, itemstack) return wh.after_place_node(Box, pos, placer, itemstack)
end, end,
@ -87,10 +88,10 @@ minetest.register_node(NODE_NAME.."_active", {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
diggable = false, diggable = false,
can_dig = function() return false end, can_dig = function() return false end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -98,12 +99,13 @@ minetest.register_node(NODE_NAME.."_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node(NODE_NAME.."_defect", { minetest.register_node(NODE_NAME.."_defect", {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles_defect(BACKGROUND_IMG), tiles = wh.tiles_defect(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
wh.after_place_node(Box, pos, placer, itemstack) wh.after_place_node(Box, pos, placer, itemstack)
Box.State:defect(pos, M(pos)) Box.State:defect(pos, M(pos))
@ -120,7 +122,7 @@ minetest.register_node(NODE_NAME.."_defect", {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -128,9 +130,10 @@ minetest.register_node(NODE_NAME.."_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
tubelib.register_node(NODE_NAME, tubelib.register_node(NODE_NAME,
{NODE_NAME.."_active", NODE_NAME.."_defect"}, { {NODE_NAME.."_active", NODE_NAME.."_defect"}, {
on_push_item = function(pos, side, item) on_push_item = function(pos, side, item)
local meta = M(pos) local meta = M(pos)
@ -175,7 +178,7 @@ tubelib.register_node(NODE_NAME,
on_node_repair = function(pos) on_node_repair = function(pos)
return Box.State:on_node_repair(pos) return Box.State:on_node_repair(pos)
end, end,
}) })
minetest.register_craft({ minetest.register_craft({
output = NODE_NAME, output = NODE_NAME,

@ -7,7 +7,7 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
box_steel.lua box_steel.lua
]]-- ]]--
@ -23,20 +23,20 @@ local wh = techpack_warehouse
local NODE_NAME = "techpack_warehouse:box_steel" local NODE_NAME = "techpack_warehouse:box_steel"
local DESCRIPTION = S("Warehouse Box Steel") local DESCRIPTION = S("Warehouse Box Steel")
local INV_SIZE = 400 local INV_SIZE = 400
local BACKGROUND_IMG = "default_steel_block.png" local BACKGROUND_IMG = "default_steel_block.png"
local Box = wh.Box:new({ local Box = wh.Box:new({
node_name = NODE_NAME, node_name = NODE_NAME,
description = DESCRIPTION, description = DESCRIPTION,
inv_size = INV_SIZE, inv_size = INV_SIZE,
background_img = BACKGROUND_IMG, background_img = BACKGROUND_IMG,
}) })
minetest.register_node(NODE_NAME, { minetest.register_node(NODE_NAME, {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles(BACKGROUND_IMG), tiles = wh.tiles(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
return wh.after_place_node(Box, pos, placer, itemstack) return wh.after_place_node(Box, pos, placer, itemstack)
end, end,
@ -58,7 +58,7 @@ minetest.register_node(NODE_NAME, {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -66,12 +66,13 @@ minetest.register_node(NODE_NAME, {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node(NODE_NAME.."_active", { minetest.register_node(NODE_NAME.."_active", {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles_active(BACKGROUND_IMG), tiles = wh.tiles_active(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
return wh.after_place_node(Box, pos, placer, itemstack) return wh.after_place_node(Box, pos, placer, itemstack)
end, end,
@ -87,10 +88,10 @@ minetest.register_node(NODE_NAME.."_active", {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
diggable = false, diggable = false,
can_dig = function() return false end, can_dig = function() return false end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -98,12 +99,13 @@ minetest.register_node(NODE_NAME.."_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node(NODE_NAME.."_defect", { minetest.register_node(NODE_NAME.."_defect", {
description = DESCRIPTION.." (8 x "..INV_SIZE.." items)", description = DESCRIPTION.." (8 x "..INV_SIZE.." items)",
tiles = wh.tiles_defect(BACKGROUND_IMG), tiles = wh.tiles_defect(BACKGROUND_IMG),
after_place_node = function(pos, placer, itemstack) after_place_node = function(pos, placer, itemstack)
wh.after_place_node(Box, pos, placer, itemstack) wh.after_place_node(Box, pos, placer, itemstack)
Box.State:defect(pos, M(pos)) Box.State:defect(pos, M(pos))
@ -120,7 +122,7 @@ minetest.register_node(NODE_NAME.."_defect", {
on_metadata_inventory_put = wh.on_metadata_inventory_put, on_metadata_inventory_put = wh.on_metadata_inventory_put,
allow_metadata_inventory_take = wh.allow_metadata_inventory_take, allow_metadata_inventory_take = wh.allow_metadata_inventory_take,
allow_metadata_inventory_move = wh.allow_metadata_inventory_move, allow_metadata_inventory_move = wh.allow_metadata_inventory_move,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -128,9 +130,10 @@ minetest.register_node(NODE_NAME.."_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
tubelib.register_node(NODE_NAME, tubelib.register_node(NODE_NAME,
{NODE_NAME.."_active", NODE_NAME.."_defect"}, { {NODE_NAME.."_active", NODE_NAME.."_defect"}, {
on_push_item = function(pos, side, item) on_push_item = function(pos, side, item)
local meta = M(pos) local meta = M(pos)
@ -175,7 +178,7 @@ tubelib.register_node(NODE_NAME,
on_node_repair = function(pos) on_node_repair = function(pos)
return Box.State:on_node_repair(pos) return Box.State:on_node_repair(pos)
end, end,
}) })
minetest.register_craft({ minetest.register_craft({
output = NODE_NAME, output = NODE_NAME,

@ -9,17 +9,17 @@
See LICENSE.txt for more information See LICENSE.txt for more information
blackhole.lua: blackhole.lua:
Simple node which lets all items disappear. Simple node which lets all items disappear.
The blackhole supports the following message: The blackhole supports the following message:
- topic = "status", payload = nil, - topic = "status", payload = nil,
response is the number of disappeared items (0..n) response is the number of disappeared items (0..n)
]]-- ]]--
-- +--------+ -- +--------+
-- / /| -- / /|
-- +--------+ | -- +--------+ |
-- IN (L) -->| BLACK | | -- IN (L) -->| BLACK | |
-- | HOLE | + -- | HOLE | +
-- | |/ -- | |/
-- +--------+ -- +--------+
@ -58,6 +58,7 @@ minetest.register_node("tubelib:blackhole", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -75,7 +76,7 @@ minetest.register_craft({
tubelib.register_node("tubelib:blackhole", {}, { tubelib.register_node("tubelib:blackhole", {}, {
on_pull_item = nil, -- not needed on_pull_item = nil, -- not needed
on_unpull_item = nil, -- not needed on_unpull_item = nil, -- not needed
valid_sides = {"L"}, valid_sides = {"L"},
on_push_item = function(pos, side, item) on_push_item = function(pos, side, item)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -84,7 +85,7 @@ tubelib.register_node("tubelib:blackhole", {}, {
meta:set_string("infotext", disappeared.." "..S("items disappeared")) meta:set_string("infotext", disappeared.." "..S("items disappeared"))
return true return true
end, end,
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
local node = minetest.get_node(pos) local node = minetest.get_node(pos)
if topic == "state" then if topic == "state" then
@ -94,5 +95,5 @@ tubelib.register_node("tubelib:blackhole", {}, {
return "not supported" return "not supported"
end end
end, end,
}) })
--------------------------------------------------------------- tubelib --------------------------------------------------------------- tubelib

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
button.lua: button.lua:
Example of a simple communication node, only sending messages to other nodes. Example of a simple communication node, only sending messages to other nodes.
]]-- ]]--
@ -83,7 +83,7 @@ minetest.register_node("tubelib:button", {
local own_num = tubelib.add_node(pos, "tubelib:button") local own_num = tubelib.add_node(pos, "tubelib:button")
meta:set_string("own_num", own_num) meta:set_string("own_num", own_num)
meta:set_string("formspec", "size[7.5,6]".. meta:set_string("formspec", "size[7.5,6]"..
"dropdown[0.2,0;3;type;"..S("switch,button 2s,button 4s,button 8s,button 16s")..";1]".. "dropdown[0.2,0;3;type;"..S("switch,button 2s,button 4s,button 8s,button 16s")..";1]"..
"field[0.5,2;7,1;numbers;"..S("Insert destination node number(s)")..";]" .. "field[0.5,2;7,1;numbers;"..S("Insert destination node number(s)")..";]" ..
"checkbox[1,3;public;"..S("public")..";false]".. "checkbox[1,3;public;"..S("public")..";false]"..
"button_exit[2,4;3,1;exit;"..S("Save").."]") "button_exit[2,4;3,1;exit;"..S("Save").."]")
@ -124,7 +124,7 @@ minetest.register_node("tubelib:button", {
meta:set_string("formspec", nil) meta:set_string("formspec", nil)
end end
end, end,
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
if meta:get_string("numbers") ~= "" and meta:get_string("numbers") ~= nil then if meta:get_string("numbers") ~= "" and meta:get_string("numbers") ~= nil then
@ -140,6 +140,7 @@ minetest.register_node("tubelib:button", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -173,6 +174,7 @@ minetest.register_node("tubelib:button_active", {
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
drop = "tubelib:button", drop = "tubelib:button",
on_blast = function() end,
}) })
tubelib.register_node("tubelib:button", {"tubelib:button_active"}, {tubelib_node = true}) tubelib.register_node("tubelib:button", {"tubelib:button_active"}, {tubelib_node = true})
@ -185,4 +187,3 @@ minetest.register_craft({
{"", "group:wood", ""}, {"", "group:wood", ""},
}, },
}) })

@ -13,6 +13,7 @@ minetest.register_node("tubelib:defect_dummy", {
}, },
groups = {cracky=3, crumbly=3, choppy=3, not_in_creative_inventory=1}, groups = {cracky=3, crumbly=3, choppy=3, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
on_blast = function() end,
}) })
local reported_machines = {} local reported_machines = {}
@ -25,7 +26,7 @@ local function already_reported(pos)
end end
function tubelib.data_not_corrupted(pos, has_no_info) function tubelib.data_not_corrupted(pos, has_no_info)
if minetest.pos_to_string(pos) ~= minetest.get_meta(pos):get_string("my_pos") then if minetest.pos_to_string(pos) ~= minetest.get_meta(pos):get_string("my_pos") then
-- node number corrupt? -- node number corrupt?
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -45,13 +46,13 @@ function tubelib.data_not_corrupted(pos, has_no_info)
report(pos) report(pos)
end end
end end
-- button like odes -- button like odes
if has_no_info then if has_no_info then
minetest.get_meta(pos):get_string("my_pos", minetest.pos_to_string(pos)) minetest.get_meta(pos):get_string("my_pos", minetest.pos_to_string(pos))
return true return true
end end
-- node moved? -- node moved?
local info = tubelib.get_node_info(number) local info = tubelib.get_node_info(number)
if not info or not vector.equals(info.pos, pos) then if not info or not vector.equals(info.pos, pos) then

@ -9,13 +9,13 @@
See LICENSE.txt for more information See LICENSE.txt for more information
distributor.lua: distributor.lua:
A more complex node acting as server and client. A more complex node acting as server and client.
This node claims a position number and registers its message and items interface. This node claims a position number and registers its message and items interface.
The Distributor is based on the class NodeStates and supports the following messages: The Distributor is based on the class NodeStates and supports the following messages:
- topic = "on", payload = nil - topic = "on", payload = nil
- topic = "off" , payload = nil - topic = "off" , payload = nil
- topic = "state", payload = nil, - topic = "state", payload = nil,
response is "running", "stopped", "standby", "defect", or "not supported" response is "running", "stopped", "standby", "defect", or "not supported"
]]-- ]]--
@ -108,20 +108,20 @@ end
local function AddToTbl(kvTbl, new_items) local function AddToTbl(kvTbl, new_items)
for _, l in ipairs(new_items) do for _, l in ipairs(new_items) do
kvTbl[l[1]] = true kvTbl[l[1]] = true
end end
return kvTbl return kvTbl
end end
local function countItemOccurrenceInFilters(kvTbl, new_items) local function countItemOccurrenceInFilters(kvTbl, new_items)
for _, l in ipairs(new_items) do for _, l in ipairs(new_items) do
local name = l[1] local name = l[1]
if kvTbl[name] == nil then if kvTbl[name] == nil then
kvTbl[name] = 1 kvTbl[name] = 1
else else
kvTbl[name] = kvTbl[name] + 1 kvTbl[name] = kvTbl[name] + 1
end end
end end
return kvTbl return kvTbl
end end
@ -152,7 +152,7 @@ local function filter_settings(pos)
local kvFilterItemNames = {} -- {<item:name> = true,...} local kvFilterItemNames = {} -- {<item:name> = true,...}
local kvSide2ItemNames = {} -- {"F" = {<item:name>,...},...} local kvSide2ItemNames = {} -- {"F" = {<item:name>,...},...}
local kvNumOccur = {} local kvNumOccur = {}
-- collect all filter settings -- collect all filter settings
for idx,slot in ipairs(SlotColors) do for idx,slot in ipairs(SlotColors) do
local side = Num2Ascii[idx] local side = Num2Ascii[idx]
@ -164,9 +164,9 @@ local function filter_settings(pos)
countItemOccurrenceInFilters(kvNumOccur, filter) countItemOccurrenceInFilters(kvNumOccur, filter)
end end
end end
FilterCache[hash] = { FilterCache[hash] = {
kvFilterItemNames = kvFilterItemNames, kvFilterItemNames = kvFilterItemNames,
kvSide2ItemNames = kvSide2ItemNames, kvSide2ItemNames = kvSide2ItemNames,
kvRejectedItemNames = {}, kvRejectedItemNames = {},
kvNumOccur = kvNumOccur, kvNumOccur = kvNumOccur,
@ -177,24 +177,24 @@ local function allow_metadata_inventory_put(pos, listname, index, stack, player)
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return 0 return 0
end end
local meta = M(pos) local meta = M(pos)
local inv = meta:get_inventory() local inv = meta:get_inventory()
local list = inv:get_list(listname) local list = inv:get_list(listname)
local stack_count = stack:get_count() local stack_count = stack:get_count()
if listname == "src" then if listname == "src" then
if State:get_state(M(pos)) == tubelib.STANDBY then if State:get_state(M(pos)) == tubelib.STANDBY then
State:start(pos, meta) State:start(pos, meta)
end end
return stack_count return stack_count
end end
local space_left = MAX_NUM_PER_CYC - invlist_num_entries(list) local space_left = MAX_NUM_PER_CYC - invlist_num_entries(list)
if space_left <= 0 then -- < 0 case is possible if distributor is already misconfigured if space_left <= 0 then -- < 0 case is possible if distributor is already misconfigured
return 0 return 0
end end
filter_settings(pos) filter_settings(pos)
return math.min(stack_count, space_left) return math.min(stack_count, space_left)
end end
@ -203,7 +203,7 @@ local function allow_metadata_inventory_take(pos, listname, index, stack, player
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return 0 return 0
end end
if listname ~= "src" then if listname ~= "src" then
filter_settings(pos) filter_settings(pos)
end end
@ -227,16 +227,16 @@ local function distributing(pos, meta)
local inv = meta:get_inventory() local inv = meta:get_inventory()
local list = inv:get_list("src") local list = inv:get_list("src")
local kvSrc = invlist_content_as_kvlist(list) local kvSrc = invlist_content_as_kvlist(list)
local counter = minetest.deserialize(meta:get_string("item_counter")) or local counter = minetest.deserialize(meta:get_string("item_counter")) or
{red=0, green=0, blue=0, yellow=0} {red=0, green=0, blue=0, yellow=0}
-- calculate the filter settings only once -- calculate the filter settings only once
local hash = minetest.hash_node_position(pos) local hash = minetest.hash_node_position(pos)
if FilterCache[hash] == nil then if FilterCache[hash] == nil then
filter_settings(pos) filter_settings(pos)
end end
-- read data from Cache -- read data from Cache
-- all filter items as key/value {<item:name> = true,...} -- all filter items as key/value {<item:name> = true,...}
local kvFilterItemNames = FilterCache[hash].kvFilterItemNames local kvFilterItemNames = FilterCache[hash].kvFilterItemNames
-- filter items of one slot as list {{<item:name>, <num-items>},...} -- filter items of one slot as list {{<item:name>, <num-items>},...}
@ -244,9 +244,9 @@ local function distributing(pos, meta)
local kvNumOccur = FilterCache[hash].kvNumOccur local kvNumOccur = FilterCache[hash].kvNumOccur
-- rejected items from other filter slots -- rejected items from other filter slots
local rejected = FilterCache[hash].kvRejectedItemNames local rejected = FilterCache[hash].kvRejectedItemNames
if items == nil then return end if items == nil then return end
local moved_items_total = 0 local moved_items_total = 0
if next(items) then if next(items) then
for _,item in ipairs(items) do for _,item in ipairs(items) do
@ -265,7 +265,7 @@ local function distributing(pos, meta)
end end
end end
end end
-- move additional items from unconfigured filters to the output -- move additional items from unconfigured filters to the output
if next(items) == nil then if next(items) == nil then
local moved_items = 0 local moved_items = 0
@ -327,9 +327,9 @@ local function on_receive_fields(pos, formname, fields, player)
filter[4] = fields.filter4 == "true" filter[4] = fields.filter4 == "true"
end end
meta:set_string("filter", minetest.serialize(filter)) meta:set_string("filter", minetest.serialize(filter))
filter_settings(pos) filter_settings(pos)
if fields.state_button ~= nil then if fields.state_button ~= nil then
State:state_button_event(pos, fields) State:state_button_event(pos, fields)
else else
@ -347,9 +347,9 @@ local function change_filter_settings(pos, slot, val)
filter[num] = val == "on" filter[num] = val == "on"
end end
meta:set_string("filter", minetest.serialize(filter)) meta:set_string("filter", minetest.serialize(filter))
filter_settings(pos) filter_settings(pos)
meta:set_string("formspec", formspec(State, pos, meta)) meta:set_string("formspec", formspec(State, pos, meta))
return true return true
end end
@ -397,20 +397,21 @@ minetest.register_node("tubelib:distributor", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_move = allow_metadata_inventory_move,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -436,7 +437,7 @@ minetest.register_node("tubelib:distributor_active", {
}, },
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_move = allow_metadata_inventory_move,
@ -453,6 +454,7 @@ minetest.register_node("tubelib:distributor_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib:distributor_defect", { minetest.register_node("tubelib:distributor_defect", {
@ -498,7 +500,7 @@ minetest.register_node("tubelib:distributor_defect", {
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
tubelib.remove_node(pos) -- <<=== tubelib tubelib.remove_node(pos) -- <<=== tubelib
end, end,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_move = allow_metadata_inventory_move,
@ -511,6 +513,7 @@ minetest.register_node("tubelib:distributor_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -525,7 +528,7 @@ minetest.register_craft({
--------------------------------------------------------------- tubelib --------------------------------------------------------------- tubelib
tubelib.register_node("tubelib:distributor", tubelib.register_node("tubelib:distributor",
{"tubelib:distributor_active", "tubelib:distributor_defect"}, { {"tubelib:distributor_active", "tubelib:distributor_defect"}, {
on_pull_item = function(pos, side) on_pull_item = function(pos, side)
return tubelib.get_item(M(pos), "src") return tubelib.get_item(M(pos), "src")
@ -541,12 +544,12 @@ tubelib.register_node("tubelib:distributor",
return change_filter_settings(pos, payload.slot, payload.val) return change_filter_settings(pos, payload.slot, payload.val)
elseif topic == "counter" then elseif topic == "counter" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
return minetest.deserialize(meta:get_string("item_counter")) or return minetest.deserialize(meta:get_string("item_counter")) or
{red=0, green=0, blue=0, yellow=0} {red=0, green=0, blue=0, yellow=0}
elseif topic == "clear_counter" then elseif topic == "clear_counter" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_string("item_counter", minetest.serialize({red=0, green=0, blue=0, yellow=0})) meta:set_string("item_counter", minetest.serialize({red=0, green=0, blue=0, yellow=0}))
else else
local resp = State:on_receive_message(pos, topic, payload) local resp = State:on_receive_message(pos, topic, payload)
if resp then if resp then
return resp return resp
@ -555,12 +558,12 @@ tubelib.register_node("tubelib:distributor",
end end
end end
end, end,
on_node_load = function(pos) on_node_load = function(pos)
State:on_node_load(pos) State:on_node_load(pos)
end, end,
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })
--------------------------------------------------------------- tubelib --------------------------------------------------------------- tubelib

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
forceload.lua: forceload.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -41,7 +41,7 @@ end
local function remove_list_elem(list, x) local function remove_list_elem(list, x)
local n = nil local n = nil
for idx, v in ipairs(list) do for idx, v in ipairs(list) do
if vector.equals(v, x) then if vector.equals(v, x) then
n = idx n = idx
break break
end end
@ -83,7 +83,7 @@ local function add_pos(pos, player)
end end
return false return false
end end
local function del_pos(pos, player) local function del_pos(pos, player)
local lPos = minetest.deserialize(player:get_attribute("tubelib_forceload_blocks")) or {} local lPos = minetest.deserialize(player:get_attribute("tubelib_forceload_blocks")) or {}
lPos = remove_list_elem(lPos, pos) lPos = remove_list_elem(lPos, pos)
@ -113,7 +113,7 @@ local function formspec(player)
default.gui_bg_img.. default.gui_bg_img..
default.gui_slots.. default.gui_slots..
"label[0,0;"..S("List of your Forceload Blocks")..":]" "label[0,0;"..S("List of your Forceload Blocks")..":]"
for idx,pos in ipairs(lPos) do for idx,pos in ipairs(lPos) do
local pos1, pos2 = calc_area(pos) local pos1, pos2 = calc_area(pos)
local ypos = 0.2 + idx * 0.4 local ypos = 0.2 + idx * 0.4
@ -168,7 +168,7 @@ minetest.register_node("tubelib:forceload", {
minetest.forceload_free_block(pos, true) minetest.forceload_free_block(pos, true)
tubelib.unmark_region(oldmetadata.fields.owner) tubelib.unmark_region(oldmetadata.fields.owner)
end, end,
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
if M(pos):get_string("owner") == clicker:get_player_name() or if M(pos):get_string("owner") == clicker:get_player_name() or
minetest.check_player_privs(clicker:get_player_name(), "server") then minetest.check_player_privs(clicker:get_player_name(), "server") then
@ -176,7 +176,7 @@ minetest.register_node("tubelib:forceload", {
minetest.show_formspec(clicker:get_player_name(), "tubelib:forceload", s) minetest.show_formspec(clicker:get_player_name(), "tubelib:forceload", s)
end end
end, end,
on_punch = function(pos, node, puncher, pointed_thing) on_punch = function(pos, node, puncher, pointed_thing)
local pos1, pos2 = calc_area(pos) local pos1, pos2 = calc_area(pos)
tubelib.switch_region(puncher:get_player_name(), pos1, pos2) tubelib.switch_region(puncher:get_player_name(), pos1, pos2)
@ -184,10 +184,11 @@ minetest.register_node("tubelib:forceload", {
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
groups = {choppy=2, cracky=2, crumbly=2, groups = {choppy=2, cracky=2, crumbly=2,
not_in_creative_inventory = tubelib.max_num_forceload_blocks == 0 and 1 or 0}, not_in_creative_inventory = tubelib.max_num_forceload_blocks == 0 and 1 or 0},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
lamp.lua: lamp.lua:
Example of a simple communication node, only receiving messages from others. Example of a simple communication node, only receiving messages from others.
This node claims a position number and registers its message interface. This node claims a position number and registers its message interface.
The Lamp supports the following messages: The Lamp supports the following messages:
@ -24,12 +24,12 @@ local S = tubelib.S
local function switch_on(pos, node) local function switch_on(pos, node)
node.name = "tubelib:lamp_on" node.name = "tubelib:lamp_on"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
local function switch_off(pos, node) local function switch_off(pos, node)
node.name = "tubelib:lamp" node.name = "tubelib:lamp"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
minetest.register_node("tubelib:lamp", { minetest.register_node("tubelib:lamp", {
description = S("Tubelib Lamp"), description = S("Tubelib Lamp"),
@ -54,12 +54,13 @@ minetest.register_node("tubelib:lamp", {
end, end,
paramtype = "light", paramtype = "light",
light_source = 0, light_source = 0,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib:lamp_on", { minetest.register_node("tubelib:lamp_on", {
@ -75,12 +76,13 @@ minetest.register_node("tubelib:lamp_on", {
end, end,
paramtype = "light", paramtype = "light",
light_source = minetest.LIGHT_MAX, light_source = minetest.LIGHT_MAX,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -105,5 +107,5 @@ tubelib.register_node("tubelib:lamp", {"tubelib:lamp_on"}, {
switch_off(pos, node) switch_off(pos, node)
end end
end, end,
}) })
--------------------------------------------------------------- tubelib --------------------------------------------------------------- tubelib

@ -89,7 +89,7 @@ minetest.register_node("tubelib:tube1", {
"tubelib_hole.png", "tubelib_hole.png",
"tubelib_hole.png", "tubelib_hole.png",
}, },
after_place_node = function(pos, placer, itemstack, pointed_thing) after_place_node = function(pos, placer, itemstack, pointed_thing)
if not Tube:after_place_tube(pos, placer, pointed_thing) then if not Tube:after_place_tube(pos, placer, pointed_thing) then
minetest.remove_node(pos) minetest.remove_node(pos)
@ -97,11 +97,11 @@ minetest.register_node("tubelib:tube1", {
end end
return false return false
end, end,
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
Tube:after_dig_tube(pos, oldnode, oldmetadata) Tube:after_dig_tube(pos, oldnode, oldmetadata)
end, end,
paramtype2 = "facedir", paramtype2 = "facedir",
drawtype = "nodebox", drawtype = "nodebox",
node_box = { node_box = {
@ -124,6 +124,7 @@ minetest.register_node("tubelib:tube1", {
is_ground_content = false, is_ground_content = false,
groups = {choppy=2, cracky=3, stone=1, not_in_creative_inventory=1}, groups = {choppy=2, cracky=3, stone=1, not_in_creative_inventory=1},
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({

@ -9,14 +9,14 @@
See LICENSE.txt for more information See LICENSE.txt for more information
pusher.lua: pusher.lua:
Simple node for push/pull operation of StackItems from chests or other Simple node for push/pull operation of StackItems from chests or other
inventory/server nodes to tubes or other inventory/server nodes. inventory/server nodes to tubes or other inventory/server nodes.
The Pusher is based on the class NodeStates and supports the following messages: The Pusher is based on the class NodeStates and supports the following messages:
- topic = "on", payload = nil - topic = "on", payload = nil
- topic = "off", payload = nil - topic = "off", payload = nil
- topic = "state", payload = nil, - topic = "state", payload = nil,
response is "running", "stopped", "standby", "blocked", or "not supported" response is "running", "stopped", "standby", "blocked", or "not supported"
]]-- ]]--
@ -78,7 +78,7 @@ local function keep_running(pos, elapsed)
return State:is_active(meta) return State:is_active(meta)
end end
return false return false
end end
minetest.register_node("tubelib:pusher", { minetest.register_node("tubelib:pusher", {
description = S("Tubelib Pusher"), description = S("Tubelib Pusher"),
@ -109,7 +109,7 @@ minetest.register_node("tubelib:pusher", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
@ -119,6 +119,7 @@ minetest.register_node("tubelib:pusher", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -175,7 +176,7 @@ minetest.register_node("tubelib:pusher_active", {
State:stop(pos, M(pos)) State:stop(pos, M(pos))
end end
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
@ -188,6 +189,7 @@ minetest.register_node("tubelib:pusher_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib:pusher_defect", { minetest.register_node("tubelib:pusher_defect", {
@ -213,7 +215,7 @@ minetest.register_node("tubelib:pusher_defect", {
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) -- <<=== tubelib tubelib.remove_node(pos) -- <<=== tubelib
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
@ -223,6 +225,7 @@ minetest.register_node("tubelib:pusher_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -236,7 +239,7 @@ minetest.register_craft({
}) })
--------------------------------------------------------------- tubelib --------------------------------------------------------------- tubelib
tubelib.register_node("tubelib:pusher", tubelib.register_node("tubelib:pusher",
{"tubelib:pusher_active", "tubelib:pusher_defect"}, { {"tubelib:pusher_active", "tubelib:pusher_defect"}, {
on_pull_item = nil, -- pusher has no inventory on_pull_item = nil, -- pusher has no inventory
on_push_item = nil, -- pusher has no inventory on_push_item = nil, -- pusher has no inventory
@ -257,5 +260,5 @@ tubelib.register_node("tubelib:pusher",
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })
--------------------------------------------------------------- tubelib --------------------------------------------------------------- tubelib

@ -8,11 +8,11 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
The autocrafter is derived from pipeworks: The autocrafter is derived from pipeworks:
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> WTFPL Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> WTFPL
autocrafter.lua: autocrafter.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -77,7 +77,7 @@ local function count_index(invlist)
end end
-- caches some recipe data -- caches some recipe data
local autocrafterCache = {} local autocrafterCache = {}
local function get_craft(pos, inventory, hash) local function get_craft(pos, inventory, hash)
hash = hash or minetest.hash_node_position(pos) hash = hash or minetest.hash_node_position(pos)
@ -86,7 +86,7 @@ local function get_craft(pos, inventory, hash)
local recipe = inventory:get_list("recipe") local recipe = inventory:get_list("recipe")
local output, decremented_input = minetest.get_craft_result( local output, decremented_input = minetest.get_craft_result(
{method = "normal", width = 3, items = recipe}) {method = "normal", width = 3, items = recipe})
craft = {recipe = recipe, consumption=count_index(recipe), craft = {recipe = recipe, consumption=count_index(recipe),
output = output, decremented_input = decremented_input} output = output, decremented_input = decremented_input}
autocrafterCache[hash] = craft autocrafterCache[hash] = craft
end end
@ -98,7 +98,7 @@ local function autocraft(pos, meta, inventory, craft)
local output_item = craft.output.item local output_item = craft.output.item
-- check if we have enough room in dst -- check if we have enough room in dst
if not inventory:room_for_item("dst", output_item) then if not inventory:room_for_item("dst", output_item) then
State:blocked(pos, meta) State:blocked(pos, meta)
return return
end end
@ -106,9 +106,9 @@ local function autocraft(pos, meta, inventory, craft)
local inv_index = count_index(inventory:get_list("src")) local inv_index = count_index(inventory:get_list("src"))
-- check if we have enough material available -- check if we have enough material available
for itemname, number in pairs(consumption) do for itemname, number in pairs(consumption) do
if (not inv_index[itemname]) or inv_index[itemname] < number then if (not inv_index[itemname]) or inv_index[itemname] < number then
State:idle(pos, meta) State:idle(pos, meta)
return return
end end
end end
-- consume material -- consume material
@ -123,7 +123,7 @@ local function autocraft(pos, meta, inventory, craft)
for i = 1, 9 do for i = 1, 9 do
inventory:add_item("dst", craft.decremented_input.items[i]) inventory:add_item("dst", craft.decremented_input.items[i])
end end
State:keep_running(pos, meta, COUNTDOWN_TICKS, output_item:get_count()) State:keep_running(pos, meta, COUNTDOWN_TICKS, output_item:get_count())
end end
@ -292,10 +292,10 @@ minetest.register_node("tubelib_addons1:autocrafter", {
description = S("Tubelib Autocrafter"), description = S("Tubelib Autocrafter"),
drawtype = "normal", drawtype = "normal",
tiles = { tiles = {
'tubelib_front.png', 'tubelib_front.png',
'tubelib_front.png', 'tubelib_front.png',
'tubelib_addons1_autocrafter.png'}, 'tubelib_addons1_autocrafter.png'},
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local number = tubelib.add_node(pos, "tubelib_addons1:autocrafter") local number = tubelib.add_node(pos, "tubelib_addons1:autocrafter")
State:node_init(pos, number) State:node_init(pos, number)
@ -305,7 +305,7 @@ minetest.register_node("tubelib_addons1:autocrafter", {
inv:set_size("dst", 3*3) inv:set_size("dst", 3*3)
inv:set_size("output", 1) inv:set_size("output", 1)
end, end,
can_dig = function(pos, player) can_dig = function(pos, player)
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return false return false
@ -319,11 +319,11 @@ minetest.register_node("tubelib_addons1:autocrafter", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
on_timer = keep_running, on_timer = keep_running,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_move = allow_metadata_inventory_move,
@ -334,14 +334,15 @@ minetest.register_node("tubelib_addons1:autocrafter", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:autocrafter_active", { minetest.register_node("tubelib_addons1:autocrafter_active", {
description = S("Tubelib Autocrafter"), description = S("Tubelib Autocrafter"),
drawtype = "normal", drawtype = "normal",
tiles = { tiles = {
'tubelib_front.png', 'tubelib_front.png',
'tubelib_front.png', 'tubelib_front.png',
{ {
image = 'tubelib_addons1_autocrafter_active.png', image = 'tubelib_addons1_autocrafter_active.png',
backface_culling = false, backface_culling = false,
@ -356,7 +357,7 @@ minetest.register_node("tubelib_addons1:autocrafter_active", {
diggable = false, diggable = false,
can_dig = function() return false end, can_dig = function() return false end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
on_timer = keep_running, on_timer = keep_running,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
@ -370,17 +371,18 @@ minetest.register_node("tubelib_addons1:autocrafter_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:autocrafter_defect", { minetest.register_node("tubelib_addons1:autocrafter_defect", {
description = S("Tubelib Autocrafter"), description = S("Tubelib Autocrafter"),
drawtype = "normal", drawtype = "normal",
tiles = { tiles = {
'tubelib_front.png', 'tubelib_front.png',
'tubelib_front.png', 'tubelib_front.png',
'tubelib_addons1_autocrafter.png^tubelib_defect.png' 'tubelib_addons1_autocrafter.png^tubelib_defect.png'
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local number = tubelib.add_node(pos, "tubelib_addons1:autocrafter") local number = tubelib.add_node(pos, "tubelib_addons1:autocrafter")
State:node_init(pos, number) State:node_init(pos, number)
@ -392,7 +394,7 @@ minetest.register_node("tubelib_addons1:autocrafter_defect", {
inv:set_size("output", 1) inv:set_size("output", 1)
State:defect(pos, meta) State:defect(pos, meta)
end, end,
can_dig = function(pos, player) can_dig = function(pos, player)
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return false return false
@ -416,6 +418,7 @@ minetest.register_node("tubelib_addons1:autocrafter_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -428,7 +431,7 @@ minetest.register_craft({
}) })
tubelib.register_node("tubelib_addons1:autocrafter", tubelib.register_node("tubelib_addons1:autocrafter",
{"tubelib_addons1:autocrafter_active", "tubelib_addons1:autocrafter_defect"}, { {"tubelib_addons1:autocrafter_active", "tubelib_addons1:autocrafter_defect"}, {
on_pull_stack = function(pos, side) on_pull_stack = function(pos, side)
return tubelib.get_stack(M(pos), "dst") return tubelib.get_stack(M(pos), "dst")
@ -456,4 +459,4 @@ tubelib.register_node("tubelib_addons1:autocrafter",
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })

@ -7,7 +7,7 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
chest.lua chest.lua
]]-- ]]--
@ -25,7 +25,7 @@ local function store_action(pos, player, action, stack)
local number = meta:get_string("number") local number = meta:get_string("number")
local item = stack:get_name().." "..stack:get_count() local item = stack:get_name().." "..stack:get_count()
PlayerActions[number] = {name, action, item} PlayerActions[number] = {name, action, item}
end end
local function send_off_command(pos) local function send_off_command(pos)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -93,7 +93,7 @@ minetest.register_node("tubelib_addons1:chest", {
local inv = meta:get_inventory() local inv = meta:get_inventory()
inv:set_size('main', 32) inv:set_size('main', 32)
end, end,
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = tubelib.add_node(pos, "tubelib_addons1:chest") local number = tubelib.add_node(pos, "tubelib_addons1:chest")
@ -114,7 +114,7 @@ minetest.register_node("tubelib_addons1:chest", {
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
@ -124,6 +124,7 @@ minetest.register_node("tubelib_addons1:chest", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -146,7 +147,7 @@ tubelib.register_node("tubelib_addons1:chest", {}, {
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
return tubelib.put_item(meta, "main", item) return tubelib.put_item(meta, "main", item)
end, end,
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
if topic == "state" then if topic == "state" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -167,4 +168,4 @@ tubelib.register_node("tubelib_addons1:chest", {}, {
return "unsupported" return "unsupported"
end end
end, end,
}) })

@ -91,6 +91,7 @@ minetest.register_node("tubelib_addons1:detector", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -121,6 +122,7 @@ minetest.register_node("tubelib_addons1:detector_active", {
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
drop = "tubelib_addons1:detector", drop = "tubelib_addons1:detector",
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -146,4 +148,3 @@ tubelib.register_node("tubelib_addons1:detector", {"tubelib_addons1:detector_act
end, end,
is_pusher = true, -- is a pulling/pushing node is_pusher = true, -- is a pulling/pushing node
}) })

@ -230,6 +230,7 @@ minetest.register_node("tubelib_addons1:fermenter", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:fermenter_defect", { minetest.register_node("tubelib_addons1:fermenter_defect", {
@ -302,6 +303,7 @@ minetest.register_node("tubelib_addons1:fermenter_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:fermenter_top", { minetest.register_node("tubelib_addons1:fermenter_top", {
@ -322,6 +324,7 @@ minetest.register_node("tubelib_addons1:fermenter_top", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
pointable = false, pointable = false,
on_blast = function() end,
}) })
minetest.register_craftitem("tubelib_addons1:biogas", { minetest.register_craftitem("tubelib_addons1:biogas", {

@ -7,9 +7,9 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
funnel.lua funnel.lua
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -56,7 +56,7 @@ local function scan_for_objects(pos, elapsed)
object:remove() object:remove()
end end
end end
end end
end end
return true return true
@ -92,7 +92,7 @@ minetest.register_node("tubelib_addons1:funnel", {
local inv = meta:get_inventory() local inv = meta:get_inventory()
inv:set_size('main', 16) inv:set_size('main', 16)
end, end,
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
tubelib.add_node(pos, "tubelib_addons1:funnel") tubelib.add_node(pos, "tubelib_addons1:funnel")
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -102,7 +102,7 @@ minetest.register_node("tubelib_addons1:funnel", {
on_timer = scan_for_objects, on_timer = scan_for_objects,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
can_dig = function(pos, player) can_dig = function(pos, player)
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return false return false
@ -115,7 +115,7 @@ minetest.register_node("tubelib_addons1:funnel", {
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
@ -125,6 +125,7 @@ minetest.register_node("tubelib_addons1:funnel", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -148,7 +149,7 @@ tubelib.register_node("tubelib_addons1:funnel", {}, {
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
return tubelib.put_item(meta, "main", item) return tubelib.put_item(meta, "main", item)
end, end,
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
if topic == "state" then if topic == "state" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -161,6 +162,4 @@ tubelib.register_node("tubelib_addons1:funnel", {}, {
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end, end,
}) })

@ -9,9 +9,9 @@
See LICENSE.txt for more information See LICENSE.txt for more information
grinder.lua grinder.lua
Grinding Cobble to Gravel Grinding Cobble to Gravel
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -153,8 +153,8 @@ minetest.register_node("tubelib_addons1:grinder", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
on_timer = keep_running, on_timer = keep_running,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
@ -168,6 +168,7 @@ minetest.register_node("tubelib_addons1:grinder", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -185,7 +186,7 @@ minetest.register_node("tubelib_addons1:grinder_active", {
length = 1.0, length = 1.0,
}, },
}, },
'tubelib_front.png', 'tubelib_front.png',
"tubelib_front.png", "tubelib_front.png",
"tubelib_front.png", "tubelib_front.png",
@ -209,6 +210,7 @@ minetest.register_node("tubelib_addons1:grinder_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:grinder_defect", { minetest.register_node("tubelib_addons1:grinder_defect", {
@ -244,7 +246,7 @@ minetest.register_node("tubelib_addons1:grinder_defect", {
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_move = allow_metadata_inventory_move,
@ -256,6 +258,7 @@ minetest.register_node("tubelib_addons1:grinder_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -268,7 +271,7 @@ minetest.register_craft({
}) })
tubelib.register_node("tubelib_addons1:grinder", tubelib.register_node("tubelib_addons1:grinder",
{"tubelib_addons1:grinder_active", "tubelib_addons1:grinder_defect"}, { {"tubelib_addons1:grinder_active", "tubelib_addons1:grinder_defect"}, {
on_pull_stack = function(pos, side) on_pull_stack = function(pos, side)
return tubelib.get_stack(M(pos), "dst") return tubelib.get_stack(M(pos), "dst")
@ -296,7 +299,7 @@ tubelib.register_node("tubelib_addons1:grinder",
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })
if minetest.global_exists("unified_inventory") then if minetest.global_exists("unified_inventory") then
@ -472,5 +475,3 @@ for _,v in pairs({
end end
if minetest.get_modpath("jacaranda") then tubelib.add_grinder_recipe({input="jacaranda:trunk", output = "jacaranda:blossom_leaves 8"}) end if minetest.get_modpath("jacaranda") then tubelib.add_grinder_recipe({input="jacaranda:trunk", output = "jacaranda:blossom_leaves 8"}) end

@ -7,11 +7,11 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
harvester.lua harvester.lua
Harvester machine to chop wood, leaves and harvest farming crops and flowers. Harvester machine to chop wood, leaves and harvest farming crops and flowers.
The machine is able to harvest an square area of up to 33x33 blocks (radius = 16). The machine is able to harvest an square area of up to 33x33 blocks (radius = 16).
The base node has to be placed in the middle of the harvesting area. The base node has to be placed in the middle of the harvesting area.
The Harvester processes one node every 6 seconds. The Harvester processes one node every 6 seconds.
@ -54,14 +54,14 @@ local function formspec(self, pos, meta)
end end
local radius = Radius2Idx[this.radius] or 2 local radius = Radius2Idx[this.radius] or 2
local altitude = Altitude2Idx[this.altitude or START_HEIGHT] or 11 local altitude = Altitude2Idx[this.altitude or START_HEIGHT] or 11
return "size[9,8]".. return "size[9,8]"..
default.gui_bg.. default.gui_bg..
default.gui_bg_img.. default.gui_bg_img..
default.gui_slots.. default.gui_slots..
"dropdown[0,0;1.5;radius;4,6,8,10,12,14,16;"..radius.."]".. "dropdown[0,0;1.5;radius;4,6,8,10,12,14,16;"..radius.."]"..
"label[1.6,0.2;"..S("Area radius").."]".. "label[1.6,0.2;"..S("Area radius").."]"..
"dropdown[0,1;1.5;altitude;-2,-1,0,1,2,4,6,8,10,14,18;"..altitude.."]".. "dropdown[0,1;1.5;altitude;-2,-1,0,1,2,4,6,8,10,14,18;"..altitude.."]"..
"label[1.6,1.2;"..S("Altitude ").."]".. "label[1.6,1.2;"..S("Altitude ").."]"..
"checkbox[0,2;endless;"..S("Run endless")..";"..endless.."]".. "checkbox[0,2;endless;"..S("Run endless")..";"..endless.."]"..
"list[context;main;5,0;4,4;]".. "list[context;main;5,0;4,4;]"..
@ -111,7 +111,7 @@ local function gen_working_steps()
end end
end end
return t return t
end end
local WorkingSteps = gen_working_steps() local WorkingSteps = gen_working_steps()
@ -167,7 +167,7 @@ end
local function remove_or_replace_node(this, pos, inv, node, order) local function remove_or_replace_node(this, pos, inv, node, order)
local next_pos = table.copy(pos) local next_pos = table.copy(pos)
next_pos.y = next_pos.y - 1 next_pos.y = next_pos.y - 1
-- Not enough space in the inventory -- Not enough space in the inventory
if not inv:room_for_item("main", ItemStack(node.name)) then if not inv:room_for_item("main", ItemStack(node.name)) then
return false return false
@ -179,7 +179,7 @@ local function remove_or_replace_node(this, pos, inv, node, order)
this.num_items = this.num_items + 1 this.num_items = this.num_items + 1
if is_plantable_ground(next_node) and order.plant then -- hit the ground? if is_plantable_ground(next_node) and order.plant then -- hit the ground?
minetest.set_node(pos, {name=order.plant, paramtype2 = "wallmounted", param2=1}) minetest.set_node(pos, {name=order.plant, paramtype2 = "wallmounted", param2=1})
if order.t1 ~= nil then if order.t1 ~= nil then
-- We have to simulate "on_place" and start the timer by hand -- We have to simulate "on_place" and start the timer by hand
-- because the after_place_node function checks player rights and can't therefore -- because the after_place_node function checks player rights and can't therefore
-- be used. -- be used.
@ -189,7 +189,7 @@ local function remove_or_replace_node(this, pos, inv, node, order)
end end
end end
return true return true
end end
-- check the fuel level and return false if empty -- check the fuel level and return false if empty
local function check_fuel(pos, this, meta) local function check_fuel(pos, this, meta)
@ -244,7 +244,7 @@ local function harvest_field(this, meta)
if not minetest.is_protected(pos, this.owner) and not remove_or_replace_node(this, pos, inv, node, order) then if not minetest.is_protected(pos, this.owner) and not remove_or_replace_node(this, pos, inv, node, order) then
return false return false
end end
else else
return true -- hit the ground return true -- hit the ground
end end
end end
@ -261,20 +261,20 @@ local function not_blocked(pos, this, meta)
end end
return true return true
end end
-- move the "harvesting copter" to the next pos and harvest the field below -- move the "harvesting copter" to the next pos and harvest the field below
local function keep_running(pos, elapsed) local function keep_running(pos, elapsed)
if tubelib.data_not_corrupted(pos) then if tubelib.data_not_corrupted(pos) then
local meta = M(pos) local meta = M(pos)
local this = minetest.deserialize(meta:get_string("this")) local this = minetest.deserialize(meta:get_string("this"))
this.num_items = 0 this.num_items = 0
if not_blocked(pos, this, meta) then if not_blocked(pos, this, meta) then
if check_fuel(pos, this, meta) then if check_fuel(pos, this, meta) then
if calc_new_pos(pos, this, meta) then if calc_new_pos(pos, this, meta) then
if harvest_field(this, meta) then if harvest_field(this, meta) then
meta:set_string("this", minetest.serialize(this)) meta:set_string("this", minetest.serialize(this))
meta:set_string("infotext", meta:set_string("infotext",
S("Tubelib Harvester").." "..this.number.. S("Tubelib Harvester").." "..this.number..
S(": running (")..this.idx.."/"..this.max..")") S(": running (")..this.idx.."/"..this.max..")")
State:keep_running(pos, meta, COUNTDOWN_TICKS, this.num_items) State:keep_running(pos, meta, COUNTDOWN_TICKS, this.num_items)
@ -291,8 +291,8 @@ local function keep_running(pos, elapsed)
return State:is_active(meta) return State:is_active(meta)
end end
return false return false
end end
local function on_receive_fields(pos, formname, fields, player) local function on_receive_fields(pos, formname, fields, player)
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
@ -302,7 +302,7 @@ local function on_receive_fields(pos, formname, fields, player)
local this = minetest.deserialize(meta:get_string("this")) local this = minetest.deserialize(meta:get_string("this"))
local radius = this.radius local radius = this.radius
local altitude = this.altitude or START_HEIGHT local altitude = this.altitude or START_HEIGHT
if fields.radius ~= nil then if fields.radius ~= nil then
radius = tonumber(fields.radius) radius = tonumber(fields.radius)
end end
@ -321,12 +321,12 @@ local function on_receive_fields(pos, formname, fields, player)
meta:set_string("this", minetest.serialize(this)) meta:set_string("this", minetest.serialize(this))
State:stop(pos, meta) State:stop(pos, meta)
end end
if fields.endless ~= nil then if fields.endless ~= nil then
this.endless = fields.endless == "true" and 1 or 0 this.endless = fields.endless == "true" and 1 or 0
end end
meta:set_string("this", minetest.serialize(this)) meta:set_string("this", minetest.serialize(this))
State:state_button_event(pos, fields) State:state_button_event(pos, fields)
end end
@ -371,7 +371,7 @@ minetest.register_node("tubelib_addons1:harvester_base", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
on_timer = keep_running, on_timer = keep_running,
@ -384,6 +384,7 @@ minetest.register_node("tubelib_addons1:harvester_base", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:harvester_defect", { minetest.register_node("tubelib_addons1:harvester_defect", {
@ -400,7 +401,7 @@ minetest.register_node("tubelib_addons1:harvester_defect", {
inv:set_size('main', 16) inv:set_size('main', 16)
inv:set_size('fuel', 1) inv:set_size('fuel', 1)
end, end,
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local number = tubelib.add_node(pos, "tubelib_addons1:harvester_base") local number = tubelib.add_node(pos, "tubelib_addons1:harvester_base")
local this = { local this = {
@ -441,6 +442,7 @@ minetest.register_node("tubelib_addons1:harvester_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -474,7 +476,7 @@ tubelib.register_node("tubelib_addons1:harvester_base", {"tubelib_addons1:harves
if topic == "fuel" then if topic == "fuel" then
return tubelib.fuelstate(M(pos), "fuel") return tubelib.fuelstate(M(pos), "fuel")
end end
local resp = State:on_receive_message(pos, topic, payload) local resp = State:on_receive_message(pos, topic, payload)
if resp then if resp then
return resp return resp
@ -488,7 +490,7 @@ tubelib.register_node("tubelib_addons1:harvester_base", {"tubelib_addons1:harves
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })
-- update to v0.08 -- update to v0.08
@ -506,4 +508,3 @@ minetest.register_lbm({
end end
end end
}) })

@ -7,9 +7,9 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
liquidsampler.lua liquidsampler.lua
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -59,12 +59,12 @@ local function get_pos(pos, facedir, side)
facedir = (facedir + offs[side]) % 4 facedir = (facedir + offs[side]) % 4
local dir = minetest.facedir_to_dir(facedir) local dir = minetest.facedir_to_dir(facedir)
return vector.add(dst_pos, dir) return vector.add(dst_pos, dir)
end end
local function test_liquid(node) local function test_liquid(node)
local liquiddef = bucket.liquids[node.name] local liquiddef = bucket.liquids[node.name]
if liquiddef ~= nil and liquiddef.itemname ~= nil and if liquiddef ~= nil and liquiddef.itemname ~= nil and
node.name == liquiddef.source then node.name == liquiddef.source then
return liquiddef.itemname return liquiddef.itemname
end end
@ -165,7 +165,7 @@ minetest.register_node("tubelib_addons1:liquidsampler", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
on_timer = keep_running, on_timer = keep_running,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
@ -179,6 +179,7 @@ minetest.register_node("tubelib_addons1:liquidsampler", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:liquidsampler_active", { minetest.register_node("tubelib_addons1:liquidsampler_active", {
@ -218,6 +219,7 @@ minetest.register_node("tubelib_addons1:liquidsampler_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:liquidsampler_defect", { minetest.register_node("tubelib_addons1:liquidsampler_defect", {
@ -268,6 +270,7 @@ minetest.register_node("tubelib_addons1:liquidsampler_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -279,7 +282,7 @@ minetest.register_craft({
}, },
}) })
tubelib.register_node("tubelib_addons1:liquidsampler", tubelib.register_node("tubelib_addons1:liquidsampler",
{"tubelib_addons1:liquidsampler_active", "tubelib_addons1:liquidsampler_defect"}, { {"tubelib_addons1:liquidsampler_active", "tubelib_addons1:liquidsampler_defect"}, {
invalid_sides = {"L"}, invalid_sides = {"L"},
on_pull_item = function(pos, side) on_pull_item = function(pos, side)
@ -305,4 +308,4 @@ tubelib.register_node("tubelib_addons1:liquidsampler",
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })

@ -9,14 +9,14 @@
See LICENSE.txt for more information See LICENSE.txt for more information
pusher_fast.lua: pusher_fast.lua:
Fast pusher for push/pull operation of StackItems from chests or other Fast pusher for push/pull operation of StackItems from chests or other
inventory/server nodes to tubes or other inventory/server nodes. inventory/server nodes to tubes or other inventory/server nodes.
The Pusher is based on the class NodeStates and supports the following messages: The Pusher is based on the class NodeStates and supports the following messages:
- topic = "on", payload = nil - topic = "on", payload = nil
- topic = "off", payload = nil - topic = "off", payload = nil
- topic = "state", payload = nil, - topic = "state", payload = nil,
response is "running", "stopped", "standby", "blocked", or "not supported" response is "running", "stopped", "standby", "blocked", or "not supported"
]]-- ]]--
@ -78,7 +78,7 @@ local function keep_running(pos, elapsed)
return State:is_active(meta) return State:is_active(meta)
end end
return false return false
end end
minetest.register_node("tubelib_addons1:pusher_fast", { minetest.register_node("tubelib_addons1:pusher_fast", {
description = S("Fast Pusher"), description = S("Fast Pusher"),
@ -109,7 +109,7 @@ minetest.register_node("tubelib_addons1:pusher_fast", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
@ -119,6 +119,7 @@ minetest.register_node("tubelib_addons1:pusher_fast", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -175,19 +176,20 @@ minetest.register_node("tubelib_addons1:pusher_fast_active", {
State:stop(pos, M(pos)) State:stop(pos, M(pos))
end end
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
diggable = false, diggable = false,
can_dig = function() return false end, can_dig = function() return false end,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:pusher_fast_defect", { minetest.register_node("tubelib_addons1:pusher_fast_defect", {
@ -213,7 +215,7 @@ minetest.register_node("tubelib_addons1:pusher_fast_defect", {
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
@ -223,6 +225,7 @@ minetest.register_node("tubelib_addons1:pusher_fast_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -235,14 +238,14 @@ minetest.register_craft({
}, },
}) })
tubelib.register_node("tubelib_addons1:pusher_fast", tubelib.register_node("tubelib_addons1:pusher_fast",
{"tubelib_addons1:pusher_fast_active", "tubelib_addons1:pusher_fast_defect"}, { {"tubelib_addons1:pusher_fast_active", "tubelib_addons1:pusher_fast_defect"}, {
on_pull_item = nil, -- pusher has no inventory on_pull_item = nil, -- pusher has no inventory
on_push_item = nil, -- pusher has no inventory on_push_item = nil, -- pusher has no inventory
on_unpull_item = nil, -- pusher has no inventory on_unpull_item = nil, -- pusher has no inventory
is_pusher = true, -- is a pulling/pushing node is_pusher = true, -- is a pulling/pushing node
valid_sides = {"R","L"}, valid_sides = {"R","L"},
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
local resp = State:on_receive_message(pos, topic, payload) local resp = State:on_receive_message(pos, topic, payload)
if resp then if resp then
@ -257,4 +260,4 @@ tubelib.register_node("tubelib_addons1:pusher_fast",
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })

@ -7,11 +7,11 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
quarry.lua quarry.lua
Quarry machine to dig stones and other ground blocks. Quarry machine to dig stones and other ground blocks.
The Quarry digs a hole 5x5 blocks large and up to 100 blocks deep. The Quarry digs a hole 5x5 blocks large and up to 100 blocks deep.
It starts at the given level (0 is same level as the quarry block, It starts at the given level (0 is same level as the quarry block,
1 is one level higher and so on)) and goes down to the given depth number. 1 is one level higher and so on)) and goes down to the given depth number.
@ -35,7 +35,7 @@ local COUNTDOWN_TICKS = 5
local Side2Facedir = {F=0, R=1, B=2, L=3, D=4, U=5} local Side2Facedir = {F=0, R=1, B=2, L=3, D=4, U=5}
local Depth2Idx = {[1]=1 ,[2]=2, [3]=3, [5]=4, [10]=5, [15]=6, [20]=7, [25]=8, [50]=9, [100]=10} local Depth2Idx = {[1]=1 ,[2]=2, [3]=3, [5]=4, [10]=5, [15]=6, [20]=7, [25]=8, [50]=9, [100]=10}
local Level2Idx = {[2]=1, [1]=2, [0]=3, [-1]=4, [-2]=5, [-3]=6, local Level2Idx = {[2]=1, [1]=2, [0]=3, [-1]=4, [-2]=5, [-3]=6,
[-5]=7, [-10]=8, [-15]=9, [-20]=10} [-5]=7, [-10]=8, [-15]=9, [-20]=10}
local function formspec(self, pos, meta) local function formspec(self, pos, meta)
@ -52,14 +52,14 @@ local function formspec(self, pos, meta)
else else
fuel = 0 fuel = 0
end end
return "size[9,8]".. return "size[9,8]"..
default.gui_bg.. default.gui_bg..
default.gui_bg_img.. default.gui_bg_img..
default.gui_slots.. default.gui_slots..
"dropdown[0,0;1.5;level;2,1,0,-1,-2,-3,-5,-10,-15,-20;"..Level2Idx[start_level].."]".. "dropdown[0,0;1.5;level;2,1,0,-1,-2,-3,-5,-10,-15,-20;"..Level2Idx[start_level].."]"..
"label[1.6,0.2;"..S("Start level").."]".. "label[1.6,0.2;"..S("Start level").."]"..
"dropdown[0,1;1.5;depth;1,2,3,5,10,15,20,25,50,100;"..Depth2Idx[depth].."]".. "dropdown[0,1;1.5;depth;1,2,3,5,10,15,20,25,50,100;"..Depth2Idx[depth].."]"..
"label[1.6,1.2;"..S("Digging depth").."]".. "label[1.6,1.2;"..S("Digging depth").."]"..
"checkbox[0,2;endless;"..S("Run endless")..";"..endless.."]".. "checkbox[0,2;endless;"..S("Run endless")..";"..endless.."]"..
"list[context;main;5,0;4,4;]".. "list[context;main;5,0;4,4;]"..
@ -95,7 +95,7 @@ local function get_pos(pos, facedir, side, steps)
facedir = (facedir + Side2Facedir[side]) % 4 facedir = (facedir + Side2Facedir[side]) % 4
local dir = vector.multiply(minetest.facedir_to_dir(facedir), steps or 1) local dir = vector.multiply(minetest.facedir_to_dir(facedir), steps or 1)
return vector.add(pos, dir) return vector.add(pos, dir)
end end
local function get_node_lvm(pos) local function get_node_lvm(pos)
local node = minetest.get_node_or_nil(pos) local node = minetest.get_node_or_nil(pos)
@ -144,7 +144,7 @@ local function get_next_pos(pos, facedir, dir)
return vector.add(pos, core.facedir_to_dir(facedir)) return vector.add(pos, core.facedir_to_dir(facedir))
end end
local function skip_the_air(pos, curr_level, facedir) local function skip_the_air(pos, curr_level, facedir)
local pos1, pos2, lPos local pos1, pos2, lPos
pos1 = get_pos(pos, facedir, "F", 2) pos1 = get_pos(pos, facedir, "F", 2)
pos2 = get_pos(pos, facedir, "B", 2) pos2 = get_pos(pos, facedir, "B", 2)
@ -157,9 +157,9 @@ local function skip_the_air(pos, curr_level, facedir)
pos1.y = pos1.y - 1 pos1.y = pos1.y - 1
pos2.y = pos2.y - 1 pos2.y = pos2.y - 1
end end
return pos2.y return pos2.y
end end
local function quarry_next_node(pos, meta) local function quarry_next_node(pos, meta)
-- check fuel -- check fuel
local fuel = meta:get_int("fuel") or 0 local fuel = meta:get_int("fuel") or 0
@ -178,8 +178,8 @@ local function quarry_next_node(pos, meta)
else else
fuel = fuel - 1 fuel = fuel - 1
end end
meta:set_int("fuel", fuel) meta:set_int("fuel", fuel)
local idx = meta:get_int("idx") local idx = meta:get_int("idx")
if idx == 0 then idx = 1 end if idx == 0 then idx = 1 end
local facedir = minetest.get_node(pos).param2 local facedir = minetest.get_node(pos).param2
@ -188,10 +188,10 @@ local function quarry_next_node(pos, meta)
local start_y = pos.y + meta:get_int("start_level") local start_y = pos.y + meta:get_int("start_level")
local stop_y = pos.y + meta:get_int("start_level") - meta:get_int("max_levels") + 1 local stop_y = pos.y + meta:get_int("start_level") - meta:get_int("max_levels") + 1
local quarry_pos = P(meta:get_string("quarry_pos")) local quarry_pos = P(meta:get_string("quarry_pos"))
if quarry_pos == nil then -- start at the beginning? if quarry_pos == nil then -- start at the beginning?
quarry_pos = get_pos(pos, facedir, "L") quarry_pos = get_pos(pos, facedir, "L")
local y = skip_the_air(quarry_pos, start_y, facedir) local y = skip_the_air(quarry_pos, start_y, facedir)
if y < stop_y then -- below the base line? if y < stop_y then -- below the base line?
meta:set_int("idx", 1) meta:set_int("idx", 1)
meta:set_string("quarry_pos", nil) meta:set_string("quarry_pos", nil)
@ -263,7 +263,7 @@ local function on_receive_fields(pos, formname, fields, player)
return return
end end
local meta = M(pos) local meta = M(pos)
local max_levels = meta:get_int("max_levels") local max_levels = meta:get_int("max_levels")
if fields.depth then if fields.depth then
max_levels = tonumber(fields.depth) max_levels = tonumber(fields.depth)
@ -273,7 +273,7 @@ local function on_receive_fields(pos, formname, fields, player)
meta:set_int("max_levels", max_levels) meta:set_int("max_levels", max_levels)
State:stop(pos, meta) State:stop(pos, meta)
end end
local start_level = meta:get_int("start_level") or 0 local start_level = meta:get_int("start_level") or 0
if fields.level ~= nil then if fields.level ~= nil then
start_level = tonumber(fields.level) start_level = tonumber(fields.level)
@ -283,13 +283,13 @@ local function on_receive_fields(pos, formname, fields, player)
meta:set_int("start_level", start_level) meta:set_int("start_level", start_level)
State:stop(pos, meta) State:stop(pos, meta)
end end
local endless = meta:get_int("endless") or 0 local endless = meta:get_int("endless") or 0
if fields.endless ~= nil then if fields.endless ~= nil then
endless = fields.endless == "true" and 1 or 0 endless = fields.endless == "true" and 1 or 0
end end
meta:set_int("endless", endless) meta:set_int("endless", endless)
State:state_button_event(pos, fields) State:state_button_event(pos, fields)
end end
@ -330,7 +330,7 @@ minetest.register_node("tubelib_addons1:quarry", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
on_timer = keep_running, on_timer = keep_running,
@ -343,6 +343,7 @@ minetest.register_node("tubelib_addons1:quarry", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:quarry_active", { minetest.register_node("tubelib_addons1:quarry_active", {
@ -377,13 +378,14 @@ minetest.register_node("tubelib_addons1:quarry_active", {
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:quarry_defect", { minetest.register_node("tubelib_addons1:quarry_defect", {
@ -434,6 +436,7 @@ minetest.register_node("tubelib_addons1:quarry_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -446,7 +449,7 @@ minetest.register_craft({
}) })
tubelib.register_node("tubelib_addons1:quarry", tubelib.register_node("tubelib_addons1:quarry",
{"tubelib_addons1:quarry_active", "tubelib_addons1:quarry_defect"}, { {"tubelib_addons1:quarry_active", "tubelib_addons1:quarry_defect"}, {
invalid_sides = {"L"}, invalid_sides = {"L"},
on_pull_item = function(pos, side) on_pull_item = function(pos, side)
@ -465,7 +468,7 @@ tubelib.register_node("tubelib_addons1:quarry",
if topic == "fuel" then if topic == "fuel" then
return tubelib.fuelstate(M(pos), "fuel") return tubelib.fuelstate(M(pos), "fuel")
end end
local resp = State:on_receive_message(pos, topic, payload) local resp = State:on_receive_message(pos, topic, payload)
if resp then if resp then
return resp return resp
@ -482,5 +485,4 @@ tubelib.register_node("tubelib_addons1:quarry",
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })

@ -226,6 +226,7 @@ minetest.register_node("tubelib_addons1:reformer", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons1:reformer_defect", { minetest.register_node("tubelib_addons1:reformer_defect", {
@ -298,6 +299,7 @@ minetest.register_node("tubelib_addons1:reformer_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
@ -319,6 +321,7 @@ minetest.register_node("tubelib_addons1:reformer_top", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
pointable = false, pointable = false,
on_blast = function() end,
}) })
minetest.register_craftitem("tubelib_addons1:biofuel", { minetest.register_craftitem("tubelib_addons1:biofuel", {

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
accesscontrol.lua: accesscontrol.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -129,19 +129,20 @@ minetest.register_node("tubelib_addons2:accesscontrol", {
end end
end end
end, end,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = switch_off, on_timer = switch_off,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_metal_defaults(), sounds = default.node_sound_metal_defaults(),
on_blast = function() end,
}) })
@ -161,4 +162,4 @@ tubelib.register_node("tubelib_addons2:accesscontrol", {}, {
return true return true
end end
end, end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
ceilinglamp.lua: ceilinglamp.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -18,7 +18,7 @@ local S = tubelib_addons2.S
local function switch_on(pos, node) local function switch_on(pos, node)
node.name = "tubelib_addons2:ceilinglamp_on" node.name = "tubelib_addons2:ceilinglamp_on"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
local function switch_off(pos, node) local function switch_off(pos, node)
node.name = "tubelib_addons2:ceilinglamp" node.name = "tubelib_addons2:ceilinglamp"
@ -26,7 +26,7 @@ local function switch_off(pos, node)
local pos1 = {x=pos.x-5, y=pos.y-5, z=pos.z-5} local pos1 = {x=pos.x-5, y=pos.y-5, z=pos.z-5}
local pos2 = {x=pos.x+5, y=pos.y+5, z=pos.z+5} local pos2 = {x=pos.x+5, y=pos.y+5, z=pos.z+5}
minetest.fix_light(pos1, pos2) minetest.fix_light(pos1, pos2)
end end
minetest.register_node("tubelib_addons2:ceilinglamp", { minetest.register_node("tubelib_addons2:ceilinglamp", {
description = S("Tubelib Ceiling Lamp"), description = S("Tubelib Ceiling Lamp"),
@ -69,12 +69,13 @@ minetest.register_node("tubelib_addons2:ceilinglamp", {
end, end,
paramtype = "light", paramtype = "light",
light_source = 0, light_source = 0,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "wallmounted", paramtype2 = "wallmounted",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons2:ceilinglamp_on", { minetest.register_node("tubelib_addons2:ceilinglamp_on", {
@ -100,7 +101,7 @@ minetest.register_node("tubelib_addons2:ceilinglamp_on", {
wall_bottom = {-5/16, -8/16, -5/16, 5/16, -5/16, 5/16}, wall_bottom = {-5/16, -8/16, -5/16, 5/16, -5/16, 5/16},
wall_side = {-8/16, -5/16, -5/16, -5/16, 5/16, 5/16} wall_side = {-8/16, -5/16, -5/16, -5/16, 5/16, 5/16}
}, },
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
if not minetest.is_protected(pos, clicker:get_player_name()) then if not minetest.is_protected(pos, clicker:get_player_name()) then
switch_off(pos, node) switch_off(pos, node)
@ -108,12 +109,13 @@ minetest.register_node("tubelib_addons2:ceilinglamp_on", {
end, end,
paramtype = "light", paramtype = "light",
light_source = 12, light_source = 12,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "wallmounted", paramtype2 = "wallmounted",
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -131,4 +133,4 @@ tubelib.register_node("tubelib_addons2:ceilinglamp", {"tubelib_addons2:ceilingla
switch_off(pos, node) switch_off(pos, node)
end end
end, end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
colorlamp.lua: colorlamp.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -32,7 +32,7 @@ local function switch_node(pos, num, player)
meta:set_int("color", num) meta:set_int("color", num)
end end
end end
end end
minetest.register_node("tubelib_addons2:lamp", { minetest.register_node("tubelib_addons2:lamp", {
description = S("Tubelib Color Lamp"), description = S("Tubelib Color Lamp"),
@ -45,7 +45,7 @@ minetest.register_node("tubelib_addons2:lamp", {
switch_node(pos, "", placer) switch_node(pos, "", placer)
meta:set_string("formspec", "size[3,2]".. meta:set_string("formspec", "size[3,2]"..
"label[0,0;Select color]".. "label[0,0;Select color]"..
"dropdown[0,0.5;3;type;"..sColor..";1]".. "dropdown[0,0.5;3;type;"..sColor..";1]"..
"button_exit[0.5,1.5;2,1;exit;"..S("Save").."]") "button_exit[0.5,1.5;2,1;exit;"..S("Save").."]")
meta:set_int("color", 1) meta:set_int("color", 1)
end, end,
@ -59,7 +59,7 @@ minetest.register_node("tubelib_addons2:lamp", {
meta:set_string("formspec", nil, player) meta:set_string("formspec", nil, player)
end end
end, end,
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
switch_node(pos, meta:get_int("color"), clicker) switch_node(pos, meta:get_int("color"), clicker)
@ -74,6 +74,7 @@ minetest.register_node("tubelib_addons2:lamp", {
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
groups = {choppy=2, cracky=1}, groups = {choppy=2, cracky=1},
is_ground_content = false, is_ground_content = false,
on_blast = function() end,
}) })
tubelib.register_node("tubelib_addons2:lamp", {}, { tubelib.register_node("tubelib_addons2:lamp", {}, {
@ -85,7 +86,7 @@ tubelib.register_node("tubelib_addons2:lamp", {}, {
switch_node(pos, "", nil) switch_node(pos, "", nil)
end end
end, end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -113,7 +114,7 @@ for idx,color in ipairs(tColors) do
meta:set_string("formspec", nil) meta:set_string("formspec", nil)
end end
end, end,
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
switch_node(pos, "", clicker) switch_node(pos, "", clicker)
end, end,
@ -123,10 +124,11 @@ for idx,color in ipairs(tColors) do
end, end,
paramtype = 'light', paramtype = 'light',
light_source = minetest.LIGHT_MAX, light_source = minetest.LIGHT_MAX,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
groups = {choppy=2, cracky=1, not_in_creative_inventory=1}, groups = {choppy=2, cracky=1, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
drop = "tubelib_addons2:lamp" drop = "tubelib_addons2:lamp",
on_blast = function() end,
}) })
end end

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
colorlamp_ud.lua which requires the mod unifieddyes: colorlamp_ud.lua which requires the mod unifieddyes:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -20,14 +20,14 @@ local function switch_on(pos, node, player)
node.name = "tubelib_addons2:lamp_on" node.name = "tubelib_addons2:lamp_on"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
end end
local function switch_off(pos, node, player) local function switch_off(pos, node, player)
if player == nil or not minetest.is_protected(pos, player:get_player_name()) then if player == nil or not minetest.is_protected(pos, player:get_player_name()) then
node.name = "tubelib_addons2:lamp_off" node.name = "tubelib_addons2:lamp_off"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
end end
minetest.register_node("tubelib_addons2:lamp_off", { minetest.register_node("tubelib_addons2:lamp_off", {
description = S("Tubelib Color Lamp"), description = S("Tubelib Color Lamp"),
@ -49,7 +49,7 @@ minetest.register_node("tubelib_addons2:lamp_off", {
on_construct = unifieddyes.on_construct, on_construct = unifieddyes.on_construct,
on_dig = unifieddyes.on_dig, on_dig = unifieddyes.on_dig,
paramtype = "light", paramtype = "light",
paramtype2 = "color", paramtype2 = "color",
palette = "unifieddyes_palette_extended.png", palette = "unifieddyes_palette_extended.png",
@ -58,7 +58,8 @@ minetest.register_node("tubelib_addons2:lamp_off", {
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
groups = {choppy=2, cracky=1, ud_param2_colorable = 1}, groups = {choppy=2, cracky=1, ud_param2_colorable = 1},
is_ground_content = false, is_ground_content = false,
drop = "tubelib_addons2:lamp_off" drop = "tubelib_addons2:lamp_off",
on_blast = function() end,
}) })
@ -73,19 +74,20 @@ minetest.register_node("tubelib_addons2:lamp_on", {
palette = "unifieddyes_palette_extended.png", palette = "unifieddyes_palette_extended.png",
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
groups = {choppy=2, cracky=1, not_in_creative_inventory=1, ud_param2_colorable = 1}, groups = {choppy=2, cracky=1, not_in_creative_inventory=1, ud_param2_colorable = 1},
on_construct = unifieddyes.on_construct, on_construct = unifieddyes.on_construct,
after_place_node = unifieddyes.recolor_on_place, after_place_node = unifieddyes.recolor_on_place,
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
tubelib.remove_node(pos) tubelib.remove_node(pos)
unifieddyes.after_dig_node(pos, oldnode, oldmetadata, digger) unifieddyes.after_dig_node(pos, oldnode, oldmetadata, digger)
end, end,
on_dig = unifieddyes.on_dig, on_dig = unifieddyes.on_dig,
light_source = minetest.LIGHT_MAX, light_source = minetest.LIGHT_MAX,
is_ground_content = false, is_ground_content = false,
drop = "tubelib_addons2:lamp_off" drop = "tubelib_addons2:lamp_off",
on_blast = function() end,
}) })
tubelib.register_node("tubelib_addons2:lamp_off", {"tubelib_addons2:lamp_on"}, { tubelib.register_node("tubelib_addons2:lamp_off", {"tubelib_addons2:lamp_on"}, {
@ -98,7 +100,7 @@ tubelib.register_node("tubelib_addons2:lamp_off", {"tubelib_addons2:lamp_on"}, {
switch_off(pos, node, nil) switch_off(pos, node, nil)
end end
end, end,
}) })
minetest.register_craft({ minetest.register_craft({
type = "shapeless", type = "shapeless",
@ -117,7 +119,8 @@ for idx=1,12 do
paramtype = 'light', paramtype = 'light',
groups = {choppy=2, cracky=1, not_in_creative_inventory=1}, groups = {choppy=2, cracky=1, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
drop = "tubelib_addons2:lamp_off" drop = "tubelib_addons2:lamp_off",
on_blast = function() end,
}) })
end end
@ -127,10 +130,10 @@ minetest.register_lbm({
name = "tubelib_addons2:update", name = "tubelib_addons2:update",
nodenames = { nodenames = {
"tubelib_addons2:lamp", "tubelib_addons2:lamp",
"tubelib_addons2:lamp1", "tubelib_addons2:lamp2", "tubelib_addons2:lamp3", "tubelib_addons2:lamp1", "tubelib_addons2:lamp2", "tubelib_addons2:lamp3",
"tubelib_addons2:lamp4", "tubelib_addons2:lamp5", "tubelib_addons2:lamp6", "tubelib_addons2:lamp4", "tubelib_addons2:lamp5", "tubelib_addons2:lamp6",
"tubelib_addons2:lamp7", "tubelib_addons2:lamp8", "tubelib_addons2:lamp9", "tubelib_addons2:lamp7", "tubelib_addons2:lamp8", "tubelib_addons2:lamp9",
"tubelib_addons2:lamp10", "tubelib_addons2:lamp11", "tubelib_addons2:lamp12", "tubelib_addons2:lamp10", "tubelib_addons2:lamp11", "tubelib_addons2:lamp12",
}, },
run_at_every_load = true, run_at_every_load = true,
action = function(pos, node) action = function(pos, node)
@ -150,4 +153,3 @@ minetest.register_lbm({
meta:set_string("infotext", S("Tubelib Color Lamp").." "..number) meta:set_string("infotext", S("Tubelib Color Lamp").." "..number)
end end
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
doorblock.lua: doorblock.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -18,7 +18,7 @@ local S = tubelib_addons2.S
local sTextures = "Gate Wood,Aspen Wood,Jungle Wood,Pine Wood,".. local sTextures = "Gate Wood,Aspen Wood,Jungle Wood,Pine Wood,"..
"Cobblestone,Sandstone,Stone,Desert Sandstone,".. "Cobblestone,Sandstone,Stone,Desert Sandstone,"..
"Copper,Steel,Tin,Coral,".. "Copper,Steel,Tin,Coral,"..
"Glas,Obsidian Glas" "Glas,Obsidian Glas"
local tTextures = { local tTextures = {
["Gate Wood"]=1, ["Aspen Wood"]=2, ["Jungle Wood"]=3, ["Pine Wood"]=4, ["Gate Wood"]=1, ["Aspen Wood"]=2, ["Jungle Wood"]=3, ["Pine Wood"]=4,
@ -26,7 +26,7 @@ local tTextures = {
["Copper"]=9, ["Steel"]=10, ["Tin"]=11, ["Coral"]=12, ["Copper"]=9, ["Steel"]=10, ["Tin"]=11, ["Coral"]=12,
["Glas"]=13, ["Obsidian Glas"]=14, ["Glas"]=13, ["Obsidian Glas"]=14,
} }
local tPgns = {"tubelib_addon2_door.png", "default_aspen_wood.png", "default_junglewood.png", "default_pine_wood.png", local tPgns = {"tubelib_addon2_door.png", "default_aspen_wood.png", "default_junglewood.png", "default_pine_wood.png",
"default_cobble.png", "default_sandstone.png", "default_stone.png", "default_desert_sandstone.png", "default_cobble.png", "default_sandstone.png", "default_stone.png", "default_desert_sandstone.png",
"default_copper_block.png", "default_steel_block.png", "default_tin_block.png", "default_coral_skeleton.png", "default_copper_block.png", "default_steel_block.png", "default_tin_block.png", "default_coral_skeleton.png",
@ -60,7 +60,7 @@ for idx,pgn in ipairs(tPgns) do
meta:set_string("infotext", S("Tubelib Door Block").." "..number) meta:set_string("infotext", S("Tubelib Door Block").." "..number)
meta:set_string("formspec", "size[3,2]".. meta:set_string("formspec", "size[3,2]"..
"label[0,0;"..S("Select texture").."]".. "label[0,0;"..S("Select texture").."]"..
"dropdown[0,0.5;3;type;"..sTextures..";1]".. "dropdown[0,0.5;3;type;"..sTextures..";1]"..
"button_exit[0.5,1.5;2,1;exit;"..S("Save").."]") "button_exit[0.5,1.5;2,1;exit;"..S("Save").."]")
end, end,
@ -76,7 +76,7 @@ for idx,pgn in ipairs(tPgns) do
meta:set_string("formspec", nil) meta:set_string("formspec", nil)
end end
end, end,
after_dig_node = function(pos, oldnode, oldmetadata) after_dig_node = function(pos, oldnode, oldmetadata)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
@ -89,10 +89,11 @@ for idx,pgn in ipairs(tPgns) do
groups = {cracky=2, choppy=2, crumbly=2, not_in_creative_inventory=not_in_inventory}, groups = {cracky=2, choppy=2, crumbly=2, not_in_creative_inventory=not_in_inventory},
is_ground_content = false, is_ground_content = false,
drop = "tubelib_addons2:doorblock1", drop = "tubelib_addons2:doorblock1",
on_blast = function() end,
}) })
not_in_inventory = 1 not_in_inventory = 1
tubelib.register_node("tubelib_addons2:doorblock"..idx, {}, { tubelib.register_node("tubelib_addons2:doorblock"..idx, {}, {
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
local node = minetest.get_node(pos) local node = minetest.get_node(pos)
@ -110,7 +111,7 @@ for idx,pgn in ipairs(tPgns) do
end end
end end
end, end,
}) })
end end
minetest.register_craft({ minetest.register_craft({

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
gateblock.lua: gateblock.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -19,9 +19,9 @@ local NUM_TEXTURES = 20
local sTextures = "Wood,Aspen Wood,Jungle Wood,Pine Wood,".. local sTextures = "Wood,Aspen Wood,Jungle Wood,Pine Wood,"..
"Cobblestone,Sandstone,Stone,Desert Sandstone,".. "Cobblestone,Sandstone,Stone,Desert Sandstone,"..
"Desert Stone,Silver Sandstone,Mossy Cobble,Desert Cobble,".. "Desert Stone,Silver Sandstone,Mossy Cobble,Desert Cobble,"..
"Copper,Steel,Tin,Coral,".. "Copper,Steel,Tin,Coral,"..
"Glas,Obsidian Glas,Ice,Gate Wood" "Glas,Obsidian Glas,Ice,Gate Wood"
local tTextures = { local tTextures = {
["Wood"]=1, ["Aspen Wood"]=2, ["Jungle Wood"]=3, ["Pine Wood"]=4, ["Wood"]=1, ["Aspen Wood"]=2, ["Jungle Wood"]=3, ["Pine Wood"]=4,
@ -30,7 +30,7 @@ local tTextures = {
["Copper"]=13, ["Steel"]=14, ["Tin"]=15, ["Coral"]=16, ["Copper"]=13, ["Steel"]=14, ["Tin"]=15, ["Coral"]=16,
["Glas"]=17, ["Obsidian Glas"]=18, ["Ice"]=19, ["Gate Wood"]=20, ["Glas"]=17, ["Obsidian Glas"]=18, ["Ice"]=19, ["Gate Wood"]=20,
} }
local tPgns = {"default_wood.png", "default_aspen_wood.png", "default_junglewood.png", "default_pine_wood.png", local tPgns = {"default_wood.png", "default_aspen_wood.png", "default_junglewood.png", "default_pine_wood.png",
"default_cobble.png", "default_sandstone.png", "default_stone.png", "default_desert_sandstone.png", "default_cobble.png", "default_sandstone.png", "default_stone.png", "default_desert_sandstone.png",
"default_desert_stone_block.png", "default_silver_sandstone.png", "default_mossycobble.png", "default_desert_cobble.png", "default_desert_stone_block.png", "default_silver_sandstone.png", "default_mossycobble.png", "default_desert_cobble.png",
@ -49,7 +49,7 @@ for idx,pgn in ipairs(tPgns) do
meta:set_string("infotext", S("Tubelib Gate Block").." "..number) meta:set_string("infotext", S("Tubelib Gate Block").." "..number)
meta:set_string("formspec", "size[3,2]".. meta:set_string("formspec", "size[3,2]"..
"label[0,0;Select texture]".. "label[0,0;Select texture]"..
"dropdown[0,0.5;3;type;"..sTextures..";"..NUM_TEXTURES.."]".. "dropdown[0,0.5;3;type;"..sTextures..";"..NUM_TEXTURES.."]"..
"button_exit[0.5,1.5;2,1;exit;"..S("Save").."]") "button_exit[0.5,1.5;2,1;exit;"..S("Save").."]")
end, end,
@ -65,7 +65,7 @@ for idx,pgn in ipairs(tPgns) do
meta:set_string("formspec", nil) meta:set_string("formspec", nil)
end end
end, end,
after_dig_node = function(pos, oldnode, oldmetadata) after_dig_node = function(pos, oldnode, oldmetadata)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
@ -78,6 +78,7 @@ for idx,pgn in ipairs(tPgns) do
groups = {cracky=2, choppy=2, crumbly=2, not_in_creative_inventory = idx == NUM_TEXTURES and 0 or 1}, groups = {cracky=2, choppy=2, crumbly=2, not_in_creative_inventory = idx == NUM_TEXTURES and 0 or 1},
is_ground_content = false, is_ground_content = false,
drop = "tubelib_addons2:gateblock1", drop = "tubelib_addons2:gateblock1",
on_blast = function() end,
}) })
tubelib.register_node("tubelib_addons2:gateblock"..idx, {}, { tubelib.register_node("tubelib_addons2:gateblock"..idx, {}, {
@ -97,7 +98,7 @@ for idx,pgn in ipairs(tPgns) do
end end
end end
end, end,
}) })
end end
minetest.register_craft({ minetest.register_craft({

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
industriallamp.lua: industriallamp.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -20,7 +20,7 @@ local function switch_on(pos, node)
node.name = node.name.."_on" node.name = node.name.."_on"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
end end
local function switch_off(pos, node) local function switch_off(pos, node)
if string.sub(node.name, -3) == "_on" then if string.sub(node.name, -3) == "_on" then
@ -30,7 +30,7 @@ local function switch_off(pos, node)
local pos2 = {x=pos.x+5, y=pos.y+5, z=pos.z+5} local pos2 = {x=pos.x+5, y=pos.y+5, z=pos.z+5}
minetest.fix_light(pos1, pos2) minetest.fix_light(pos1, pos2)
end end
end end
local function register_lamp(tbl) local function register_lamp(tbl)
local num, tiles, tiles_on, node_box, size = tbl.num, tbl.tiles, tbl.tiles_on, tbl.node_box, tbl.size local num, tiles, tiles_on, node_box, size = tbl.num, tbl.tiles, tbl.tiles_on, tbl.node_box, tbl.size
@ -40,14 +40,14 @@ local function register_lamp(tbl)
drawtype = "nodebox", drawtype = "nodebox",
node_box = node_box, node_box = node_box,
inventory_image = 'tubelib_addons2_industriallamp_inv'..num..'.png', inventory_image = 'tubelib_addons2_industriallamp_inv'..num..'.png',
selection_box = { selection_box = {
type = "wallmounted", type = "wallmounted",
wall_top = {-size.x, 0.5 - size.y, -size.z, size.x, 0.5, size.z}, wall_top = {-size.x, 0.5 - size.y, -size.z, size.x, 0.5, size.z},
wall_bottom = {-size.x, -0.5, -size.z, size.x, -0.5 + size.y, size.z}, wall_bottom = {-size.x, -0.5, -size.z, size.x, -0.5 + size.y, size.z},
wall_side = {-0.5, -size.z, size.x, -0.5 + size.y, size.z, -size.x}, wall_side = {-0.5, -size.z, size.x, -0.5 + size.y, size.z, -size.x},
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local number = tubelib.add_node(pos, "tubelib_addons2:industriallamp"..num) local number = tubelib.add_node(pos, "tubelib_addons2:industriallamp"..num)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -66,12 +66,13 @@ local function register_lamp(tbl)
end, end,
paramtype = "light", paramtype = "light",
light_source = 0, light_source = 0,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "wallmounted", paramtype2 = "wallmounted",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons2:industriallamp"..num.."_on", { minetest.register_node("tubelib_addons2:industriallamp"..num.."_on", {
@ -79,20 +80,20 @@ local function register_lamp(tbl)
tiles = tiles_on, tiles = tiles_on,
drawtype = "nodebox", drawtype = "nodebox",
node_box = node_box, node_box = node_box,
selection_box = { selection_box = {
type = "wallmounted", type = "wallmounted",
wall_top = {-size.x, 0.5 - size.y, -size.z, size.x, 0.5, size.z}, wall_top = {-size.x, 0.5 - size.y, -size.z, size.x, 0.5, size.z},
wall_bottom = {-size.x, -0.5, -size.z, size.x, -0.5 + size.y, size.z}, wall_bottom = {-size.x, -0.5, -size.z, size.x, -0.5 + size.y, size.z},
wall_side = {-0.5, -size.z, size.x, -0.5 + size.y, size.z, -size.x}, wall_side = {-0.5, -size.z, size.x, -0.5 + size.y, size.z, -size.x},
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local number = tubelib.add_node(pos, "tubelib_addons2:industriallamp"..num) local number = tubelib.add_node(pos, "tubelib_addons2:industriallamp"..num)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_string("infotext", S("Tubelib Industrial Lamp").." "..num..": "..number) meta:set_string("infotext", S("Tubelib Industrial Lamp").." "..num..": "..number)
end, end,
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
if not minetest.is_protected(pos, clicker:get_player_name()) then if not minetest.is_protected(pos, clicker:get_player_name()) then
node.name = "tubelib_addons2:industriallamp"..num node.name = "tubelib_addons2:industriallamp"..num
@ -108,13 +109,14 @@ local function register_lamp(tbl)
end, end,
paramtype = "light", paramtype = "light",
light_source = minetest.LIGHT_MAX, light_source = minetest.LIGHT_MAX,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "wallmounted", paramtype2 = "wallmounted",
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
drop = "tubelib_addons2:industriallamp"..num, drop = "tubelib_addons2:industriallamp"..num,
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
tubelib.register_node("tubelib_addons2:industriallamp"..num, {"tubelib_addons2:industriallamp"..num.."_on"}, { tubelib.register_node("tubelib_addons2:industriallamp"..num, {"tubelib_addons2:industriallamp"..num.."_on"}, {
@ -149,7 +151,7 @@ minetest.register_craft({
register_lamp({ register_lamp({
num = 1, num = 1,
tiles = { tiles = {
-- up, down, right, left, back, front -- up, down, right, left, back, front
'tubelib_addons2_industriallamp1.png', 'tubelib_addons2_industriallamp1.png',
@ -178,9 +180,9 @@ register_lamp({
}, },
size = {x = 8/16, y = 7/32, z = 3/32} size = {x = 8/16, y = 7/32, z = 3/32}
}) })
register_lamp({ register_lamp({
num = 2, num = 2,
tiles = { tiles = {
-- up, down, right, left, back, front -- up, down, right, left, back, front
'tubelib_addons2_industriallamp2.png', 'tubelib_addons2_industriallamp2.png',
@ -209,4 +211,3 @@ register_lamp({
}, },
size = {x = 8/32, y = 8/32, z = 5/32} size = {x = 8/32, y = 8/32, z = 5/32}
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
invisiblelamp.lua: invisiblelamp.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -18,7 +18,7 @@ local S = tubelib_addons2.S
local function switch_on(pos, node) local function switch_on(pos, node)
node.name = "tubelib_addons2:invisiblelamp_on" node.name = "tubelib_addons2:invisiblelamp_on"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
local function switch_off(pos, node) local function switch_off(pos, node)
node.name = "tubelib_addons2:invisiblelamp" node.name = "tubelib_addons2:invisiblelamp"
@ -26,14 +26,14 @@ local function switch_off(pos, node)
local pos1 = {x=pos.x-5, y=pos.y-5, z=pos.z-5} local pos1 = {x=pos.x-5, y=pos.y-5, z=pos.z-5}
local pos2 = {x=pos.x+5, y=pos.y+5, z=pos.z+5} local pos2 = {x=pos.x+5, y=pos.y+5, z=pos.z+5}
minetest.fix_light(pos1, pos2) minetest.fix_light(pos1, pos2)
end end
minetest.register_node("tubelib_addons2:invisiblelamp", { minetest.register_node("tubelib_addons2:invisiblelamp", {
description = S("Tubelib Invisible Lamp"), description = S("Tubelib Invisible Lamp"),
drawtype = "glasslike_framed_optional", drawtype = "glasslike_framed_optional",
tiles = {"tubelib_addons2_invisiblelamp.png"}, tiles = {"tubelib_addons2_invisiblelamp.png"},
inventory_image = 'tubelib_addons2_invisiblelamp_inventory.png', inventory_image = 'tubelib_addons2_invisiblelamp_inventory.png',
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local number = tubelib.add_node(pos, "tubelib_addons2:invisiblelamp") local number = tubelib.add_node(pos, "tubelib_addons2:invisiblelamp")
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -57,13 +57,14 @@ minetest.register_node("tubelib_addons2:invisiblelamp", {
is_ground_content = false, is_ground_content = false,
groups = {cracky = 3, oddly_breakable_by_hand = 3}, groups = {cracky = 3, oddly_breakable_by_hand = 3},
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons2:invisiblelamp_on", { minetest.register_node("tubelib_addons2:invisiblelamp_on", {
description = S("Tubelib Invisible Lamp"), description = S("Tubelib Invisible Lamp"),
drawtype = "glasslike_framed_optional", drawtype = "glasslike_framed_optional",
tiles = {"tubelib_addons2_invisiblelamp.png"}, tiles = {"tubelib_addons2_invisiblelamp.png"},
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
if not minetest.is_protected(pos, clicker:get_player_name()) then if not minetest.is_protected(pos, clicker:get_player_name()) then
switch_off(pos, node) switch_off(pos, node)
@ -73,7 +74,7 @@ minetest.register_node("tubelib_addons2:invisiblelamp_on", {
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
paramtype = "light", paramtype = "light",
light_source = minetest.LIGHT_MAX, light_source = minetest.LIGHT_MAX,
sunlight_propagates = true, sunlight_propagates = true,
@ -82,6 +83,7 @@ minetest.register_node("tubelib_addons2:invisiblelamp_on", {
drop = "tubelib_addons2:invisiblelamp", drop = "tubelib_addons2:invisiblelamp",
groups = {cracky = 3, oddly_breakable_by_hand = 3, not_in_creative_inventory=1}, groups = {cracky = 3, oddly_breakable_by_hand = 3, not_in_creative_inventory=1},
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -102,4 +104,4 @@ tubelib.register_node("tubelib_addons2:invisiblelamp", {"tubelib_addons2:invisib
switch_off(pos, node) switch_off(pos, node)
end end
end, end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
logic_not.lua: logic_not.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -20,7 +20,7 @@ local function formspec(meta)
return "size[7,5]".. return "size[7,5]"..
"field[0.5,2;6,1;number;"..S("Destination node numbers")..";"..numbers.."]" .. "field[0.5,2;6,1;number;"..S("Destination node numbers")..";"..numbers.."]" ..
"button_exit[1,3;2,1;exit;"..S("Save").."]" "button_exit[1,3;2,1;exit;"..S("Save").."]"
end end
minetest.register_node("tubelib_addons2:logic_not", { minetest.register_node("tubelib_addons2:logic_not", {
description = S("Tubelib Logic Not"), description = S("Tubelib Logic Not"),
@ -46,7 +46,7 @@ minetest.register_node("tubelib_addons2:logic_not", {
if owner ~= player:get_player_name() then if owner ~= player:get_player_name() then
return return
end end
if tubelib.check_numbers(fields.number) then if tubelib.check_numbers(fields.number) then
meta:set_string("numbers", fields.number) meta:set_string("numbers", fields.number)
local own_number = meta:get_string("own_number") local own_number = meta:get_string("own_number")
@ -54,7 +54,7 @@ minetest.register_node("tubelib_addons2:logic_not", {
meta:set_string("formspec", formspec(meta)) meta:set_string("formspec", formspec(meta))
end end
end, end,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
@ -65,6 +65,7 @@ minetest.register_node("tubelib_addons2:logic_not", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -96,4 +97,4 @@ tubelib.register_node("tubelib_addons2:logic_not", {}, {
end end
end end
end, end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
mesecons_converter.lua: mesecons_converter.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -22,7 +22,7 @@ local function formspec(meta)
return "size[7,5]".. return "size[7,5]"..
"field[0.5,2;6,1;number;"..S("Destination node numbers")..";"..numbers.."]" .. "field[0.5,2;6,1;number;"..S("Destination node numbers")..";"..numbers.."]" ..
"button_exit[1,3;2,1;exit;"..S("Save").."]" "button_exit[1,3;2,1;exit;"..S("Save").."]"
end end
local function send_message(pos, topic, payload) local function send_message(pos, topic, payload)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -71,20 +71,20 @@ minetest.register_node("tubelib_addons2:mesecons_converter", {
if owner ~= player:get_player_name() then if owner ~= player:get_player_name() then
return return
end end
if tubelib.check_numbers(fields.number) then if tubelib.check_numbers(fields.number) then
meta:set_string("numbers", fields.number) meta:set_string("numbers", fields.number)
local own_number = meta:get_string("own_number") local own_number = meta:get_string("own_number")
meta:set_string("infotext", S("Tubelib Mesecons Converter").." "..own_number..S(": connected with").." "..fields.number) meta:set_string("infotext", S("Tubelib Mesecons Converter").." "..own_number..S(": connected with").." "..fields.number)
meta:set_string("formspec", formspec(meta)) meta:set_string("formspec", formspec(meta))
end end
local timer = minetest.get_node_timer(pos) local timer = minetest.get_node_timer(pos)
if not timer:is_started() then if not timer:is_started() then
timer:start(1) timer:start(1)
end end
end, end,
mesecons = { mesecons = {
receptor = { receptor = {
state = mesecon.state.off, state = mesecon.state.off,
@ -109,7 +109,7 @@ minetest.register_node("tubelib_addons2:mesecons_converter", {
end, end,
} }
}, },
on_timer = function(pos,elapsed) on_timer = function(pos,elapsed)
if tubelib.data_not_corrupted(pos) then if tubelib.data_not_corrupted(pos) then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -118,7 +118,7 @@ minetest.register_node("tubelib_addons2:mesecons_converter", {
end end
return false return false
end, end,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
@ -129,6 +129,7 @@ minetest.register_node("tubelib_addons2:mesecons_converter", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -154,4 +155,4 @@ tubelib.register_node("tubelib_addons2:mesecons_converter", {}, {
return true return true
end end
end, end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
repeater.lua: repeater.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -22,7 +22,7 @@ local function formspec(meta)
return "size[7,5]".. return "size[7,5]"..
"field[0.5,2;6,1;number;"..S("Destination node numbers")..";"..numbers.."]" .. "field[0.5,2;6,1;number;"..S("Destination node numbers")..";"..numbers.."]" ..
"button_exit[1,3;2,1;exit;"..S("Save").."]" "button_exit[1,3;2,1;exit;"..S("Save").."]"
end end
minetest.register_node("tubelib_addons2:repeater", { minetest.register_node("tubelib_addons2:repeater", {
description = S("Tubelib Repeater"), description = S("Tubelib Repeater"),
@ -50,20 +50,20 @@ minetest.register_node("tubelib_addons2:repeater", {
if owner ~= player:get_player_name() then if owner ~= player:get_player_name() then
return return
end end
if tubelib.check_numbers(fields.number) then if tubelib.check_numbers(fields.number) then
meta:set_string("numbers", fields.number) meta:set_string("numbers", fields.number)
local own_number = meta:get_string("own_number") local own_number = meta:get_string("own_number")
meta:set_string("infotext", S("Tubelib Repeater").." "..own_number..S(": connected with").." "..fields.number) meta:set_string("infotext", S("Tubelib Repeater").." "..own_number..S(": connected with").." "..fields.number)
meta:set_string("formspec", formspec(meta)) meta:set_string("formspec", formspec(meta))
end end
local timer = minetest.get_node_timer(pos) local timer = minetest.get_node_timer(pos)
if not timer:is_started() then if not timer:is_started() then
timer:start(1) timer:start(1)
end end
end, end,
on_timer = function(pos,elapsed) on_timer = function(pos,elapsed)
if tubelib.data_not_corrupted(pos) then if tubelib.data_not_corrupted(pos) then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -72,7 +72,7 @@ minetest.register_node("tubelib_addons2:repeater", {
end end
return false return false
end, end,
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
@ -83,6 +83,7 @@ minetest.register_node("tubelib_addons2:repeater", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -120,4 +121,4 @@ tubelib.register_node("tubelib_addons2:repeater", {}, {
on_node_load = function(pos) on_node_load = function(pos)
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end, end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
sequencer.lua: sequencer.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -30,7 +30,7 @@ local function formspec(state, rules, endless)
default.gui_bg_img.. default.gui_bg_img..
default.gui_slots.. default.gui_slots..
"label[0,0;Number(s)]label[2.1,0;"..S("Command").."]label[6.4,0;Offset/s]"} "label[0,0;Number(s)]label[2.1,0;"..S("Command").."]label[6.4,0;Offset/s]"}
for idx, rule in ipairs(rules or {}) do for idx, rule in ipairs(rules or {}) do
tbl[#tbl+1] = "field[0.2,"..(-0.2+idx)..";2,1;num"..idx..";;"..(rule.num or "").."]" tbl[#tbl+1] = "field[0.2,"..(-0.2+idx)..";2,1;num"..idx..";;"..(rule.num or "").."]"
tbl[#tbl+1] = "dropdown[2,"..(-0.4+idx)..";3.9,1;act"..idx..";"..sAction..";"..(rule.act or "").."]" tbl[#tbl+1] = "dropdown[2,"..(-0.4+idx)..";3.9,1;act"..idx..";"..sAction..";"..(rule.act or "").."]"
@ -39,7 +39,7 @@ local function formspec(state, rules, endless)
tbl[#tbl+1] = "checkbox[0,8.5;endless;"..S("Run endless")..";"..endless.."]" tbl[#tbl+1] = "checkbox[0,8.5;endless;"..S("Run endless")..";"..endless.."]"
tbl[#tbl+1] = "image_button[5,8.5;1,1;".. tubelib.state_button(state) ..";button;]" tbl[#tbl+1] = "image_button[5,8.5;1,1;".. tubelib.state_button(state) ..";button;]"
tbl[#tbl+1] = "button[6.2,8.5;1.5,1;"..S("help")..";help]" tbl[#tbl+1] = "button[6.2,8.5;1.5,1;"..S("help")..";help]"
return table.concat(tbl) return table.concat(tbl)
end end
@ -89,7 +89,7 @@ local function restart_timer(pos, time)
if type(time) == "number" then if type(time) == "number" then
timer:start(time) timer:start(time)
end end
end end
local function check_rules(pos, elapsed) local function check_rules(pos, elapsed)
if tubelib.data_not_corrupted(pos) then if tubelib.data_not_corrupted(pos) then
@ -151,19 +151,19 @@ local function on_receive_fields(pos, formname, fields, player)
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return return
end end
if fields.help ~= nil then if fields.help ~= nil then
meta:set_string("formspec", formspec_help()) meta:set_string("formspec", formspec_help())
return return
end end
local endless = meta:get_int("endless") or 0 local endless = meta:get_int("endless") or 0
if fields.endless ~= nil then if fields.endless ~= nil then
endless = fields.endless == "true" and 1 or 0 endless = fields.endless == "true" and 1 or 0
meta:set_int("index", 1) meta:set_int("index", 1)
end end
meta:set_int("endless", endless) meta:set_int("endless", endless)
local rules = minetest.deserialize(meta:get_string("rules")) local rules = minetest.deserialize(meta:get_string("rules"))
if fields.exit ~= nil then if fields.exit ~= nil then
meta:set_string("formspec", formspec(tubelib.state(running), rules, endless)) meta:set_string("formspec", formspec(tubelib.state(running), rules, endless))
@ -206,7 +206,7 @@ minetest.register_node("tubelib_addons2:sequencer", {
'tubelib_front.png', 'tubelib_front.png',
'tubelib_front.png^tubelib_addons2_sequencer.png', 'tubelib_front.png^tubelib_addons2_sequencer.png',
}, },
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = tubelib.add_node(pos, "tubelib_addons2:sequencer") local number = tubelib.add_node(pos, "tubelib_addons2:sequencer")
@ -225,7 +225,7 @@ minetest.register_node("tubelib_addons2:sequencer", {
end, end,
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
on_dig = function(pos, node, puncher, pointed_thing) on_dig = function(pos, node, puncher, pointed_thing)
if minetest.is_protected(pos, puncher:get_player_name()) then if minetest.is_protected(pos, puncher:get_player_name()) then
return return
@ -237,15 +237,16 @@ minetest.register_node("tubelib_addons2:sequencer", {
tubelib.remove_node(pos) tubelib.remove_node(pos)
end end
end, end,
on_timer = check_rules, on_timer = check_rules,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
on_blast = function() end,
}) })
@ -276,4 +277,4 @@ tubelib.register_node("tubelib_addons2:sequencer", {}, {
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end end
end, end,
}) })

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
streetlamp.lua: streetlamp.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -18,12 +18,12 @@ local S = tubelib_addons2.S
local function switch_on(pos, node) local function switch_on(pos, node)
node.name = "tubelib_addons2:streetlamp_on" node.name = "tubelib_addons2:streetlamp_on"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
local function switch_off(pos, node) local function switch_off(pos, node)
node.name = "tubelib_addons2:streetlamp" node.name = "tubelib_addons2:streetlamp"
minetest.swap_node(pos, node) minetest.swap_node(pos, node)
end end
minetest.register_node("tubelib_addons2:streetlamp", { minetest.register_node("tubelib_addons2:streetlamp", {
description = S("Tubelib Street Lamp"), description = S("Tubelib Street Lamp"),
@ -66,12 +66,13 @@ minetest.register_node("tubelib_addons2:streetlamp", {
end, end,
paramtype = "light", paramtype = "light",
light_source = 0, light_source = 0,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons2:streetlamp_on", { minetest.register_node("tubelib_addons2:streetlamp_on", {
@ -95,7 +96,7 @@ minetest.register_node("tubelib_addons2:streetlamp_on", {
type = "fixed", type = "fixed",
fixed = {-8/16, -8/16, -8/16, 8/16, 8/16, 8/16}, fixed = {-8/16, -8/16, -8/16, 8/16, 8/16, 8/16},
}, },
on_rightclick = function(pos, node, clicker) on_rightclick = function(pos, node, clicker)
if not minetest.is_protected(pos, clicker:get_player_name()) then if not minetest.is_protected(pos, clicker:get_player_name()) then
switch_off(pos, node) switch_off(pos, node)
@ -103,12 +104,13 @@ minetest.register_node("tubelib_addons2:streetlamp_on", {
end, end,
paramtype = "light", paramtype = "light",
light_source = minetest.LIGHT_MAX, light_source = minetest.LIGHT_MAX,
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_craft({ minetest.register_craft({
@ -127,5 +129,5 @@ tubelib.register_node("tubelib_addons2:streetlamp", {"tubelib_addons2:streetlamp
switch_off(pos, node) switch_off(pos, node)
end end
end, end,
}) })
--------------------------------------------------------------- tubelib. --------------------------------------------------------------- tubelib.

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
timer.lua: timer.lua:
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -18,9 +18,9 @@ local S = tubelib_addons2.S
local CYCLE_TIME = 8 local CYCLE_TIME = 8
local tTime = { local tTime = {
["00:00"] = 1, ["02:00"] = 2, ["04:00"] = 3, ["00:00"] = 1, ["02:00"] = 2, ["04:00"] = 3,
["06:00"] = 4, ["08:00"] = 5, ["10:00"] = 6, ["06:00"] = 4, ["08:00"] = 5, ["10:00"] = 6,
["12:00"] = 7, ["14:00"] = 8, ["16:00"] = 9, ["12:00"] = 7, ["14:00"] = 8, ["16:00"] = 9,
["18:00"] =10, ["20:00"] =11, ["22:00"] =12, ["18:00"] =10, ["20:00"] =11, ["22:00"] =12,
} }
@ -39,32 +39,32 @@ local function formspec(events, numbers, actions)
default.gui_bg.. default.gui_bg..
default.gui_bg_img.. default.gui_bg_img..
default.gui_slots.. default.gui_slots..
"label[0,0;"..S("Time").."]label[2.3,0;"..S("Number(s)").."]label[4.5,0;"..S("Command").."]".. "label[0,0;"..S("Time").."]label[2.3,0;"..S("Number(s)").."]label[4.5,0;"..S("Command").."]"..
"dropdown[0,1;2,1;e1;"..sTime..";"..events[1].."]".. "dropdown[0,1;2,1;e1;"..sTime..";"..events[1].."]"..
"field[2.3,1.2;2,1;n1;;"..numbers[1].."]" .. "field[2.3,1.2;2,1;n1;;"..numbers[1].."]" ..
"dropdown[4.5,1;3,1;a1;"..sAction..";"..tAction[actions[1]].."]".. "dropdown[4.5,1;3,1;a1;"..sAction..";"..tAction[actions[1]].."]"..
"dropdown[0,2;2,1;e2;"..sTime..";"..events[2].."]".. "dropdown[0,2;2,1;e2;"..sTime..";"..events[2].."]"..
"field[2.3,2.2;2,1;n2;;"..numbers[2].."]" .. "field[2.3,2.2;2,1;n2;;"..numbers[2].."]" ..
"dropdown[4.5,2;3,1;a2;"..sAction..";"..tAction[actions[2]].."]".. "dropdown[4.5,2;3,1;a2;"..sAction..";"..tAction[actions[2]].."]"..
"dropdown[0,3;2,1;e3;"..sTime..";"..events[3].."]".. "dropdown[0,3;2,1;e3;"..sTime..";"..events[3].."]"..
"field[2.3,3.2;2,1;n3;;"..numbers[3].."]" .. "field[2.3,3.2;2,1;n3;;"..numbers[3].."]" ..
"dropdown[4.5,3;3,1;a3;"..sAction..";"..tAction[actions[3]].."]".. "dropdown[4.5,3;3,1;a3;"..sAction..";"..tAction[actions[3]].."]"..
"dropdown[0,4;2,1;e4;"..sTime..";"..events[4].."]".. "dropdown[0,4;2,1;e4;"..sTime..";"..events[4].."]"..
"field[2.3,4.2;2,1;n4;;"..numbers[4].."]" .. "field[2.3,4.2;2,1;n4;;"..numbers[4].."]" ..
"dropdown[4.5,4;3,1;a4;"..sAction..";"..tAction[actions[4]].."]".. "dropdown[4.5,4;3,1;a4;"..sAction..";"..tAction[actions[4]].."]"..
"dropdown[0,5;2,1;e5;"..sTime..";"..events[5].."]".. "dropdown[0,5;2,1;e5;"..sTime..";"..events[5].."]"..
"field[2.3,5.2;2,1;n5;;"..numbers[5].."]" .. "field[2.3,5.2;2,1;n5;;"..numbers[5].."]" ..
"dropdown[4.5,5;3,1;a5;"..sAction..";"..tAction[actions[5]].."]".. "dropdown[4.5,5;3,1;a5;"..sAction..";"..tAction[actions[5]].."]"..
"dropdown[0,6;2,1;e6;"..sTime..";"..events[6].."]".. "dropdown[0,6;2,1;e6;"..sTime..";"..events[6].."]"..
"field[2.3,6.2;2,1;n6;;"..numbers[6].."]" .. "field[2.3,6.2;2,1;n6;;"..numbers[6].."]" ..
"dropdown[4.5,6;3,1;a6;"..sAction..";"..tAction[actions[6]].."]".. "dropdown[4.5,6;3,1;a6;"..sAction..";"..tAction[actions[6]].."]"..
"button_exit[3,7;2,1;exit;close]" "button_exit[3,7;2,1;exit;close]"
end end
@ -79,7 +79,7 @@ local function check_rules(pos,elapsed)
local done = minetest.deserialize(meta:get_string("done")) local done = minetest.deserialize(meta:get_string("done"))
local placer_name = meta:get_string("placer_name") local placer_name = meta:get_string("placer_name")
local number = meta:get_string("number") local number = meta:get_string("number")
-- check all rules -- check all rules
for idx,act in ipairs(actions) do for idx,act in ipairs(actions) do
if act ~= "" and numbers[idx] ~= "" then if act ~= "" and numbers[idx] ~= "" then
@ -94,7 +94,7 @@ local function check_rules(pos,elapsed)
end end
end end
end end
-- prepare for the next day -- prepare for the next day
if hour == 23 then if hour == 23 then
done = {false,false,false,false,false,false} done = {false,false,false,false,false,false}
@ -138,7 +138,7 @@ minetest.register_node("tubelib_addons2:timer", {
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return return
end end
local events = minetest.deserialize(meta:get_string("events")) local events = minetest.deserialize(meta:get_string("events"))
for idx, evt in ipairs({fields.e1, fields.e2, fields.e3, fields.e4, fields.e5, fields.e6}) do for idx, evt in ipairs({fields.e1, fields.e2, fields.e3, fields.e4, fields.e5, fields.e6}) do
if evt ~= nil then if evt ~= nil then
@ -162,12 +162,12 @@ minetest.register_node("tubelib_addons2:timer", {
end end
end end
meta:set_string("actions", minetest.serialize(actions)) meta:set_string("actions", minetest.serialize(actions))
meta:set_string("formspec", formspec(events, numbers, actions)) meta:set_string("formspec", formspec(events, numbers, actions))
local done = {false,false,false,false,false,false} local done = {false,false,false,false,false,false}
meta:set_string("done", minetest.serialize(done)) meta:set_string("done", minetest.serialize(done))
end, end,
on_timer = check_rules, on_timer = check_rules,
after_dig_node = function(pos) after_dig_node = function(pos)
@ -180,6 +180,7 @@ minetest.register_node("tubelib_addons2:timer", {
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
on_blast = function() end,
}) })
@ -202,4 +203,3 @@ tubelib.register_node("tubelib_addons2:timer", {}, {
check_rules(pos,0) check_rules(pos,0)
end, end,
}) })

@ -7,9 +7,9 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
chest.lua chest.lua
A high performance chest A high performance chest
]]-- ]]--
@ -27,7 +27,7 @@ local function store_action(pos, player, action, stack)
local number = meta:get_string("number") local number = meta:get_string("number")
local item = stack:get_name().." "..stack:get_count() local item = stack:get_name().." "..stack:get_count()
PlayerActions[number] = {name, action, item} PlayerActions[number] = {name, action, item}
end end
local function send_off_command(pos) local function send_off_command(pos)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -95,7 +95,7 @@ minetest.register_node("tubelib_addons3:chest", {
local inv = meta:get_inventory() local inv = meta:get_inventory()
inv:set_size('main', 72) inv:set_size('main', 72)
end, end,
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local number = tubelib.add_node(pos, "tubelib_addons3:chest") local number = tubelib.add_node(pos, "tubelib_addons3:chest")
@ -113,7 +113,7 @@ minetest.register_node("tubelib_addons3:chest", {
local inv = meta:get_inventory() local inv = meta:get_inventory()
return inv:is_empty("main") return inv:is_empty("main")
end, end,
on_dig = function(pos, node, puncher, pointed_thing) on_dig = function(pos, node, puncher, pointed_thing)
minetest.node_dig(pos, node, puncher, pointed_thing) minetest.node_dig(pos, node, puncher, pointed_thing)
tubelib.remove_node(pos) tubelib.remove_node(pos)
@ -128,6 +128,7 @@ minetest.register_node("tubelib_addons3:chest", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -164,7 +165,7 @@ tubelib.register_node("tubelib_addons3:chest", {}, {
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
return tubelib.put_item(meta, "main", item) return tubelib.put_item(meta, "main", item)
end, end,
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
if topic == "state" then if topic == "state" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -185,4 +186,4 @@ tubelib.register_node("tubelib_addons3:chest", {}, {
return "unsupported" return "unsupported"
end end
end, end,
}) })

@ -7,9 +7,9 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
chest.lua chest.lua
A high performance chest A high performance chest
]]-- ]]--
@ -59,7 +59,7 @@ end
minetest.register_node("tubelib_addons3:chest_cart", { minetest.register_node("tubelib_addons3:chest_cart", {
description = S("TA Chest Cart"), description = S("TA Chest Cart"),
tiles = { tiles = {
-- up, down, right, left, back, front -- up, down, right, left, back, front
"tubelib_addons3_chest_cart_top.png", "tubelib_addons3_chest_cart_top.png",
"tubelib_addons3_chest_cart_bottom.png", "tubelib_addons3_chest_cart_bottom.png",
"tubelib_addons3_chest_cart_side.png", "tubelib_addons3_chest_cart_side.png",
@ -83,13 +83,14 @@ minetest.register_node("tubelib_addons3:chest_cart", {
groups = {cracky = 2, crumbly = 2, choppy = 2}, groups = {cracky = 2, crumbly = 2, choppy = 2},
node_placement_prediction = "", node_placement_prediction = "",
diggable = false, diggable = false,
on_place = minecart.on_nodecart_place, on_place = minecart.on_nodecart_place,
on_punch = minecart.on_nodecart_punch, on_punch = minecart.on_nodecart_punch,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
on_rightclick = on_rightclick, on_rightclick = on_rightclick,
on_blast = function() end,
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
local inv = M(pos):get_inventory() local inv = M(pos):get_inventory()
inv:set_size('main', 4) inv:set_size('main', 4)
@ -99,14 +100,14 @@ minetest.register_node("tubelib_addons3:chest_cart", {
M(pos):set_string("formspec", formspec()) M(pos):set_string("formspec", formspec())
end end
end, end,
set_cargo = function(pos, data) set_cargo = function(pos, data)
local inv = M(pos):get_inventory() local inv = M(pos):get_inventory()
for idx, stack in ipairs(data) do for idx, stack in ipairs(data) do
inv:set_stack("main", idx, stack) inv:set_stack("main", idx, stack)
end end
end, end,
get_cargo = function(pos) get_cargo = function(pos)
local inv = M(pos):get_inventory() local inv = M(pos):get_inventory()
local data = {} local data = {}
@ -151,7 +152,7 @@ tubelib.register_node("tubelib_addons3:chest_cart", {}, {
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
return tubelib.put_item(meta, "main", item) return tubelib.put_item(meta, "main", item)
end, end,
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
if topic == "state" then if topic == "state" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -160,7 +161,7 @@ tubelib.register_node("tubelib_addons3:chest_cart", {}, {
return "unsupported" return "unsupported"
end end
end, end,
}) })
minetest.register_craft({ minetest.register_craft({
output = "tubelib_addons3:chest_cart", output = "tubelib_addons3:chest_cart",

@ -9,7 +9,7 @@
See LICENSE.txt for more information See LICENSE.txt for more information
distributor.lua: distributor.lua:
A high performance distributor A high performance distributor
]]-- ]]--
@ -92,12 +92,12 @@ local function invlist_entries_as_list(list)
end end
local function AddToTbl(kvTbl, new_items, val) local function AddToTbl(kvTbl, new_items, val)
for _, l in ipairs(new_items) do for _, l in ipairs(new_items) do
if kvTbl[l] == nil then if kvTbl[l] == nil then
kvTbl[l] = {val} kvTbl[l] = {val}
else else
kvTbl[l][#kvTbl[l] + 1] = val kvTbl[l][#kvTbl[l] + 1] = val
end end
end end
return kvTbl return kvTbl
end end
@ -122,7 +122,7 @@ end
local Side2Color = {B="red", L="green", F="blue", R="yellow"} local Side2Color = {B="red", L="green", F="blue", R="yellow"}
local SlotColors = {"red", "green", "blue", "yellow"} local SlotColors = {"red", "green", "blue", "yellow"}
local Num2Ascii = {"B", "L", "F", "R"} local Num2Ascii = {"B", "L", "F", "R"}
local FilterCache = {} -- local cache for filter settings local FilterCache = {} -- local cache for filter settings
local function filter_settings(pos) local function filter_settings(pos)
@ -132,7 +132,7 @@ local function filter_settings(pos)
local filter = minetest.deserialize(meta:get_string("filter")) or {false,false,false,false} local filter = minetest.deserialize(meta:get_string("filter")) or {false,false,false,false}
local kvFilterItemNames = {} -- {<item:name> = side,...} local kvFilterItemNames = {} -- {<item:name> = side,...}
local OpenPorts = {} -- {side, ...} local OpenPorts = {} -- {side, ...}
-- collect all filter settings -- collect all filter settings
for idx,slot in ipairs(SlotColors) do for idx,slot in ipairs(SlotColors) do
local side = Num2Ascii[idx] local side = Num2Ascii[idx]
@ -145,9 +145,9 @@ local function filter_settings(pos)
end end
end end
end end
FilterCache[hash] = { FilterCache[hash] = {
kvFilterItemNames = kvFilterItemNames, kvFilterItemNames = kvFilterItemNames,
OpenPorts = OpenPorts, OpenPorts = OpenPorts,
} }
end end
@ -156,24 +156,24 @@ local function allow_metadata_inventory_put(pos, listname, index, stack, player)
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return 0 return 0
end end
local meta = M(pos) local meta = M(pos)
local inv = meta:get_inventory() local inv = meta:get_inventory()
local list = inv:get_list(listname) local list = inv:get_list(listname)
local stack_count = stack:get_count() local stack_count = stack:get_count()
if listname == "src" then if listname == "src" then
if State:get_state(M(pos)) == tubelib.STANDBY then if State:get_state(M(pos)) == tubelib.STANDBY then
State:start(pos, meta) State:start(pos, meta)
end end
return stack_count return stack_count
end end
local space_left = NUM_FILTER_ELEM - invlist_num_entries(list) local space_left = NUM_FILTER_ELEM - invlist_num_entries(list)
if space_left <= 0 then if space_left <= 0 then
return 0 return 0
end end
filter_settings(pos) filter_settings(pos)
return 1 return 1
end end
@ -198,39 +198,39 @@ end
-- move items to the output slots -- move items to the output slots
local function distributing(pos, meta) local function distributing(pos, meta)
local player_name = meta:get_string("player_name") local player_name = meta:get_string("player_name")
local counter = minetest.deserialize(meta:get_string("item_counter")) or local counter = minetest.deserialize(meta:get_string("item_counter")) or
{red=0, green=0, blue=0, yellow=0} {red=0, green=0, blue=0, yellow=0}
-- calculate the filter settings only once -- calculate the filter settings only once
local hash = minetest.hash_node_position(pos) local hash = minetest.hash_node_position(pos)
if FilterCache[hash] == nil then if FilterCache[hash] == nil then
filter_settings(pos) filter_settings(pos)
end end
-- read data from Cache -- read data from Cache
local kvFilterItemNames = FilterCache[hash].kvFilterItemNames local kvFilterItemNames = FilterCache[hash].kvFilterItemNames
local open_ports = table.copy(FilterCache[hash].OpenPorts) local open_ports = table.copy(FilterCache[hash].OpenPorts)
-- no filter configured? -- no filter configured?
if not next(kvFilterItemNames) and not next(open_ports) then if not next(kvFilterItemNames) and not next(open_ports) then
State:idle(pos, meta) State:idle(pos, meta)
return return
end end
local busy = false local busy = false
local inv = meta:get_inventory() local inv = meta:get_inventory()
local list = inv:get_list("src") local list = inv:get_list("src")
-- take one stack from inventory, which fits to one output port -- take one stack from inventory, which fits to one output port
local stack local stack
local start_idx = math.random(1, 8) local start_idx = math.random(1, 8)
for i = start_idx,start_idx+8 do for i = start_idx,start_idx+8 do
stack = list[(i % 8) + 1] stack = list[(i % 8) + 1]
if stack:get_count() > 0 and (kvFilterItemNames[stack:get_name()] or next(open_ports)) then if stack:get_count() > 0 and (kvFilterItemNames[stack:get_name()] or next(open_ports)) then
break break
end end
end end
if stack:get_count() > 0 then if stack:get_count() > 0 then
local name = stack:get_name() local name = stack:get_name()
local num = stack:get_count() local num = stack:get_count()
@ -252,7 +252,7 @@ local function distributing(pos, meta)
break break
end end
end end
-- try unconfigured open output ports -- try unconfigured open output ports
if not busy then if not busy then
local side = random_list_elem(open_ports) local side = random_list_elem(open_ports)
@ -271,7 +271,7 @@ local function distributing(pos, meta)
end end
end end
inv:set_list("src", list) inv:set_list("src", list)
meta:set_string("item_counter", minetest.serialize(counter)) meta:set_string("item_counter", minetest.serialize(counter))
if busy then if busy then
State:keep_running(pos, meta, COUNTDOWN_TICKS, 1) State:keep_running(pos, meta, COUNTDOWN_TICKS, 1)
@ -306,9 +306,9 @@ local function on_receive_fields(pos, formname, fields, player)
filter[4] = fields.filter4 == "true" filter[4] = fields.filter4 == "true"
end end
meta:set_string("filter", minetest.serialize(filter)) meta:set_string("filter", minetest.serialize(filter))
filter_settings(pos) filter_settings(pos)
if fields.state_button ~= nil then if fields.state_button ~= nil then
State:state_button_event(pos, fields) State:state_button_event(pos, fields)
else else
@ -326,9 +326,9 @@ local function change_filter_settings(pos, slot, val)
filter[num] = val == "on" filter[num] = val == "on"
end end
meta:set_string("filter", minetest.serialize(filter)) meta:set_string("filter", minetest.serialize(filter))
filter_settings(pos) filter_settings(pos)
meta:set_string("formspec", formspec(State, pos, meta)) meta:set_string("formspec", formspec(State, pos, meta))
return true return true
end end
@ -371,25 +371,26 @@ minetest.register_node("tubelib_addons3:distributor", {
local inv = M(pos):get_inventory() local inv = M(pos):get_inventory()
return inv:is_empty("src") return inv:is_empty("src")
end, end,
on_dig = function(pos, node, player) on_dig = function(pos, node, player)
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_move = allow_metadata_inventory_move,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -415,7 +416,7 @@ minetest.register_node("tubelib_addons3:distributor_active", {
}, },
on_receive_fields = on_receive_fields, on_receive_fields = on_receive_fields,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_move = allow_metadata_inventory_move,
@ -432,6 +433,7 @@ minetest.register_node("tubelib_addons3:distributor_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons3:distributor_defect", { minetest.register_node("tubelib_addons3:distributor_defect", {
@ -477,7 +479,7 @@ minetest.register_node("tubelib_addons3:distributor_defect", {
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
allow_metadata_inventory_move = allow_metadata_inventory_move, allow_metadata_inventory_move = allow_metadata_inventory_move,
@ -490,6 +492,7 @@ minetest.register_node("tubelib_addons3:distributor_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -503,7 +506,7 @@ minetest.register_craft({
}) })
tubelib.register_node("tubelib_addons3:distributor", tubelib.register_node("tubelib_addons3:distributor",
{"tubelib_addons3:distributor_active", "tubelib_addons3:distributor_defect"}, { {"tubelib_addons3:distributor_active", "tubelib_addons3:distributor_defect"}, {
on_pull_item = function(pos, side) on_pull_item = function(pos, side)
return tubelib.get_item(M(pos), "src") return tubelib.get_item(M(pos), "src")
@ -522,12 +525,12 @@ tubelib.register_node("tubelib_addons3:distributor",
return change_filter_settings(pos, payload.slot, payload.val) return change_filter_settings(pos, payload.slot, payload.val)
elseif topic == "counter" then elseif topic == "counter" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
return minetest.deserialize(meta:get_string("item_counter")) or return minetest.deserialize(meta:get_string("item_counter")) or
{red=0, green=0, blue=0, yellow=0} {red=0, green=0, blue=0, yellow=0}
elseif topic == "clear_counter" then elseif topic == "clear_counter" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
meta:set_string("item_counter", minetest.serialize({red=0, green=0, blue=0, yellow=0})) meta:set_string("item_counter", minetest.serialize({red=0, green=0, blue=0, yellow=0}))
else else
local resp = State:on_receive_message(pos, topic, payload) local resp = State:on_receive_message(pos, topic, payload)
if resp then if resp then
return resp return resp
@ -536,11 +539,11 @@ tubelib.register_node("tubelib_addons3:distributor",
end end
end end
end, end,
on_node_load = function(pos) on_node_load = function(pos)
State:on_node_load(pos) State:on_node_load(pos)
end, end,
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })

@ -7,11 +7,11 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
funnel.lua funnel.lua
A high performance funnel A high performance funnel
]]-- ]]--
-- Load support for I18n -- Load support for I18n
@ -58,7 +58,7 @@ local function scan_for_objects(pos, elapsed)
object:remove() object:remove()
end end
end end
end end
end end
return true return true
@ -94,7 +94,7 @@ minetest.register_node("tubelib_addons3:funnel", {
local inv = meta:get_inventory() local inv = meta:get_inventory()
inv:set_size('main', 16) inv:set_size('main', 16)
end, end,
after_place_node = function(pos, placer) after_place_node = function(pos, placer)
tubelib.add_node(pos, "tubelib_addons3:funnel") tubelib.add_node(pos, "tubelib_addons3:funnel")
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -104,7 +104,7 @@ minetest.register_node("tubelib_addons3:funnel", {
on_timer = scan_for_objects, on_timer = scan_for_objects,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
can_dig = function(pos, player) can_dig = function(pos, player)
if minetest.is_protected(pos, player:get_player_name()) then if minetest.is_protected(pos, player:get_player_name()) then
return false return false
@ -117,7 +117,7 @@ minetest.register_node("tubelib_addons3:funnel", {
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
allow_metadata_inventory_put = allow_metadata_inventory_put, allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_take = allow_metadata_inventory_take, allow_metadata_inventory_take = allow_metadata_inventory_take,
@ -127,6 +127,7 @@ minetest.register_node("tubelib_addons3:funnel", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -154,7 +155,7 @@ tubelib.register_node("tubelib_addons3:funnel", {}, {
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
return tubelib.put_item(meta, "main", item) return tubelib.put_item(meta, "main", item)
end, end,
on_recv_message = function(pos, topic, payload) on_recv_message = function(pos, topic, payload)
if topic == "state" then if topic == "state" then
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -167,6 +168,4 @@ tubelib.register_node("tubelib_addons3:funnel", {}, {
minetest.get_node_timer(pos):start(1) minetest.get_node_timer(pos):start(1)
end, end,
}) })

@ -7,9 +7,9 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
pusher.lua pusher.lua
A high performance pusher A high performance pusher
]]-- ]]--
@ -67,7 +67,7 @@ local function keep_running(pos, elapsed)
return State:is_active(meta) return State:is_active(meta)
end end
return false return false
end end
minetest.register_node("tubelib_addons3:pusher", { minetest.register_node("tubelib_addons3:pusher", {
description = S("HighPerf Pusher"), description = S("HighPerf Pusher"),
@ -98,7 +98,7 @@ minetest.register_node("tubelib_addons3:pusher", {
State:on_dig_node(pos, node, player) State:on_dig_node(pos, node, player)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
@ -108,6 +108,7 @@ minetest.register_node("tubelib_addons3:pusher", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -164,7 +165,7 @@ minetest.register_node("tubelib_addons3:pusher_active", {
State:stop(pos, M(pos)) State:stop(pos, M(pos))
end end
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
@ -177,6 +178,7 @@ minetest.register_node("tubelib_addons3:pusher_active", {
groups = {crumbly=0, not_in_creative_inventory=1}, groups = {crumbly=0, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons3:pusher_defect", { minetest.register_node("tubelib_addons3:pusher_defect", {
@ -202,7 +204,7 @@ minetest.register_node("tubelib_addons3:pusher_defect", {
after_dig_node = function(pos) after_dig_node = function(pos)
tubelib.remove_node(pos) tubelib.remove_node(pos)
end, end,
on_timer = keep_running, on_timer = keep_running,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
@ -212,6 +214,7 @@ minetest.register_node("tubelib_addons3:pusher_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
@ -224,7 +227,7 @@ minetest.register_craft({
}, },
}) })
tubelib.register_node("tubelib_addons3:pusher", tubelib.register_node("tubelib_addons3:pusher",
{"tubelib_addons3:pusher_active", "tubelib_addons3:pusher_defect"}, { {"tubelib_addons3:pusher_active", "tubelib_addons3:pusher_defect"}, {
is_pusher = true, -- is a pulling/pushing node is_pusher = true, -- is a pulling/pushing node
valid_sides = {"R","L"}, valid_sides = {"R","L"},
@ -243,4 +246,4 @@ tubelib.register_node("tubelib_addons3:pusher",
on_node_repair = function(pos) on_node_repair = function(pos)
return State:on_node_repair(pos) return State:on_node_repair(pos)
end, end,
}) })

@ -250,6 +250,7 @@ minetest.register_node("tubelib_addons3:pushing_chest", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })
minetest.register_node("tubelib_addons3:pushing_chest_defect", { minetest.register_node("tubelib_addons3:pushing_chest_defect", {
@ -304,6 +305,7 @@ minetest.register_node("tubelib_addons3:pushing_chest_defect", {
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })

@ -7,9 +7,9 @@
AGPL v3 AGPL v3
See LICENSE.txt for more information See LICENSE.txt for more information
teleporter.lua teleporter.lua
A node, moving items to the peer teleporter node. A node, moving items to the peer teleporter node.
]]-- ]]--
@ -49,13 +49,13 @@ minetest.register_node("tubelib_addons3:teleporter", {
Tube:pairing(pos, fields.channel) Tube:pairing(pos, fields.channel)
end end
end, end,
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
Tube:stop_pairing(pos, oldmetadata, sFormspec) Tube:stop_pairing(pos, oldmetadata, sFormspec)
local tube_dir = tonumber(oldmetadata.fields.tube_dir or 0) local tube_dir = tonumber(oldmetadata.fields.tube_dir or 0)
Tube:after_dig_node(pos, {tube_dir}) Tube:after_dig_node(pos, {tube_dir})
end, end,
on_rotate = screwdriver.disallow, on_rotate = screwdriver.disallow,
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
@ -63,6 +63,7 @@ minetest.register_node("tubelib_addons3:teleporter", {
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_blast = function() end,
}) })