Compatibility shenanigans
This commit is contained in:
parent
11c95679ef
commit
077e8465d5
32
init.lua
32
init.lua
@ -11,17 +11,22 @@ local function splurp_node(name, def)
|
|||||||
local allow_put = def.allow_metadata_inventory_put
|
local allow_put = def.allow_metadata_inventory_put
|
||||||
local on_put = def.on_metadata_inventory_put or function() end
|
local on_put = def.on_metadata_inventory_put or function() end
|
||||||
local on_construct = def.on_construct or function() end
|
local on_construct = def.on_construct or function() end
|
||||||
local on_timer = def.on_timer
|
local on_timer = def.on_timer or function() end
|
||||||
if not on_timer then return end
|
|
||||||
if not allow_put then return end
|
if not allow_put then return end
|
||||||
|
if not on_timer then return end
|
||||||
local function construct(pos)
|
local function construct(pos)
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
local inv = meta:get_inventory()
|
local inv = meta:get_inventory()
|
||||||
if inv:get_list("src")
|
if inv:get_size("src") == 1
|
||||||
and inv:get_list("dst")
|
and inv:get_size("dst") > 0
|
||||||
and inv:get_list("fuel")
|
and inv:get_size("fuel") == 1
|
||||||
then
|
then
|
||||||
inv:set_size("cooksneak",1)
|
inv:set_size("cooksneak",1)
|
||||||
|
if meta:get_string("formspec") ~= ""
|
||||||
|
and meta:get_string("cooksneak_injection") == ""
|
||||||
|
then
|
||||||
|
meta:set_string("formspec",meta:get_string("formspec"))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
def.on_construct = function(...)
|
def.on_construct = function(...)
|
||||||
@ -55,9 +60,7 @@ local function splurp_node(name, def)
|
|||||||
local inv = minetest.get_meta(pos):get_inventory()
|
local inv = minetest.get_meta(pos):get_inventory()
|
||||||
local output = cooklist(stack)
|
local output = cooklist(stack)
|
||||||
local ret, ret_t = pack(allow_put(pos, output, index, stack, ...))
|
local ret, ret_t = pack(allow_put(pos, output, index, stack, ...))
|
||||||
print(output..ret_t[1])
|
|
||||||
ret_t[1] = math.min(ret_t[1], room_in_list(inv, output, stack))
|
ret_t[1] = math.min(ret_t[1], room_in_list(inv, output, stack))
|
||||||
print(ret_t[1])
|
|
||||||
return ret()
|
return ret()
|
||||||
end
|
end
|
||||||
over.on_metadata_inventory_put = function(pos, listname, index, stack, ...)
|
over.on_metadata_inventory_put = function(pos, listname, index, stack, ...)
|
||||||
@ -86,7 +89,7 @@ minetest.after(0, function()
|
|||||||
local meta = getmetatable(minetest.get_meta(vector.new(0,0,0)))
|
local meta = getmetatable(minetest.get_meta(vector.new(0,0,0)))
|
||||||
local set_string = meta.set_string
|
local set_string = meta.set_string
|
||||||
function meta.set_string(self, k, v, ...)
|
function meta.set_string(self, k, v, ...)
|
||||||
if k == "formspec" then
|
if k == "formspec" and self:get_inventory():get_list("cooksneak") then
|
||||||
v = v:gsub(table.concat({
|
v = v:gsub(table.concat({
|
||||||
"listring[context;dst]",
|
"listring[context;dst]",
|
||||||
"listring[current_player;main]",
|
"listring[current_player;main]",
|
||||||
@ -94,17 +97,18 @@ minetest.after(0, function()
|
|||||||
"listring[current_player;main]",
|
"listring[current_player;main]",
|
||||||
"listring[context;fuel]",
|
"listring[context;fuel]",
|
||||||
"listring[current_player;main]",
|
"listring[current_player;main]",
|
||||||
}):gsub("%p","%%%0"), table.concat {
|
}):gsub("%p","%%%0"):gsub("context","([%%w_]+)"), table.concat {
|
||||||
"listring[context;cooksneak]",
|
"listring[%1;cooksneak]",
|
||||||
"listring[current_player;main]",
|
"listring[current_player;main]",
|
||||||
"listring[context;cooksneak]",
|
"listring[%1;cooksneak]",
|
||||||
"listring[context;dst]",
|
"listring[%1;dst]",
|
||||||
"listring[current_player;main]",
|
"listring[current_player;main]",
|
||||||
"listring[context;src]",
|
"listring[%1;src]",
|
||||||
"listring[current_player;main]",
|
"listring[current_player;main]",
|
||||||
"listring[context;fuel]",
|
"listring[%1;fuel]",
|
||||||
"listring[current_player;main]",
|
"listring[current_player;main]",
|
||||||
})
|
})
|
||||||
|
self:set_string("cooksneak_injection", "1")
|
||||||
end
|
end
|
||||||
return set_string(self, k, v, ...)
|
return set_string(self, k, v, ...)
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user