Workbench : move formspecs table outside of function to avoid overhead
This commit is contained in:
parent
5afbde77a3
commit
5185d49a0c
@ -2,7 +2,7 @@ local workbench = {}
|
|||||||
screwdriver = screwdriver or {}
|
screwdriver = screwdriver or {}
|
||||||
|
|
||||||
-- Nodes allowed to be cut.
|
-- Nodes allowed to be cut.
|
||||||
-- Only the regular, solid blocks without formspec or explosivity can be cut.
|
-- Only the regular, solid blocks without metas or explosivity can be cut.
|
||||||
local nodes = {}
|
local nodes = {}
|
||||||
for node, def in pairs(minetest.registered_nodes) do
|
for node, def in pairs(minetest.registered_nodes) do
|
||||||
if (def.drawtype == "normal" or def.drawtype:find("glass")) and
|
if (def.drawtype == "normal" or def.drawtype:find("glass")) and
|
||||||
@ -12,7 +12,8 @@ for node, def in pairs(minetest.registered_nodes) do
|
|||||||
def.on_blast and not def.allow_metadata_inventory_take and not
|
def.on_blast and not def.allow_metadata_inventory_take and not
|
||||||
(def.groups.not_in_creative_inventory == 1) and not
|
(def.groups.not_in_creative_inventory == 1) and not
|
||||||
def.groups.wool and not def.description:find("Ore") and
|
def.groups.wool and not def.description:find("Ore") and
|
||||||
def.description and def.description ~= "" and def.light_source == 0 then
|
def.description and def.description ~= "" and def.light_source == 0
|
||||||
|
then
|
||||||
nodes[#nodes+1] = node
|
nodes[#nodes+1] = node
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -64,7 +65,6 @@ function workbench:get_output(inv, input, name)
|
|||||||
inv:set_list("forms", output)
|
inv:set_list("forms", output)
|
||||||
end
|
end
|
||||||
|
|
||||||
function workbench:formspecs(meta, id)
|
|
||||||
local formspecs = {
|
local formspecs = {
|
||||||
-- Main formspec.
|
-- Main formspec.
|
||||||
[[ label[0.9,1.23;Cut]
|
[[ label[0.9,1.23;Cut]
|
||||||
@ -95,6 +95,7 @@ function workbench:formspecs(meta, id)
|
|||||||
listring[current_player;main] ]]
|
listring[current_player;main] ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function workbench:set_formspec(meta, id)
|
||||||
meta:set_string("formspec", "size[8,7;]list[current_player;main;0,3.25;8,4;]"..
|
meta:set_string("formspec", "size[8,7;]list[current_player;main;0,3.25;8,4;]"..
|
||||||
formspecs[id]..xbg..default.get_hotbar_bg(0,3.25))
|
formspecs[id]..xbg..default.get_hotbar_bg(0,3.25))
|
||||||
end
|
end
|
||||||
@ -110,15 +111,14 @@ function workbench.construct(pos)
|
|||||||
inv:set_size("storage", 8*2)
|
inv:set_size("storage", 8*2)
|
||||||
|
|
||||||
meta:set_string("infotext", "Work Bench")
|
meta:set_string("infotext", "Work Bench")
|
||||||
workbench:formspecs(meta, 1)
|
workbench:set_formspec(meta, 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
function workbench.fields(pos, _, fields)
|
function workbench.fields(pos, _, fields)
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
if fields.back then workbench:formspecs(meta, 1)
|
if fields.back then workbench:set_formspec(meta, 1)
|
||||||
elseif fields.craft then workbench:formspecs(meta, 2)
|
elseif fields.craft then workbench:set_formspec(meta, 2)
|
||||||
elseif fields.storage then workbench:formspecs(meta, 3)
|
elseif fields.storage then workbench:set_formspec(meta, 3) end
|
||||||
elseif fields.backcraft then workbench:formspecs(meta, 1) end -- Legacy code for older formspecs.
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function workbench.dig(pos)
|
function workbench.dig(pos)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user