xdecor-libre/handlers/registration.lua

94 lines
2.7 KiB
Lua
Raw Normal View History

2016-01-06 02:08:58 +03:00
xbg = default.gui_bg..default.gui_bg_img..default.gui_slots
2015-06-09 15:04:57 +03:00
local default_inventory_size = 32
2015-12-21 02:46:16 +03:00
2015-06-09 15:04:57 +03:00
local default_inventory_formspecs = {
2015-12-30 22:08:39 +03:00
["8"] = [[ size[8,6]
list[context;main;0,0;8,1;]
list[current_player;main;0,2;8,4;]
listring[current_player;main]
2016-01-06 02:08:58 +03:00
listring[context;main] ]]
..default.get_hotbar_bg(0,2),
2015-06-09 15:04:57 +03:00
2015-12-30 22:08:39 +03:00
["16"] = [[ size[8,7]
list[context;main;0,0;8,2;]
list[current_player;main;0,3;8,4;]
listring[current_player;main]
2016-01-06 02:08:58 +03:00
listring[context;main] ]]
..default.get_hotbar_bg(0,3),
2015-06-09 15:04:57 +03:00
2015-12-30 22:08:39 +03:00
["24"] = [[ size[8,8]
list[context;main;0,0;8,3;]
list[current_player;main;0,4;8,4;]
listring[current_player;main]
2016-01-06 02:08:58 +03:00
listring[context;main]" ]]
..default.get_hotbar_bg(0,4),
2015-06-09 15:04:57 +03:00
2015-12-30 22:08:39 +03:00
["32"] = [[ size[8,9]
list[context;main;0,0.3;8,4;]
list[current_player;main;0,4.85;8,1;]
list[current_player;main;0,6.08;8,3;8]
listring[current_player;main]
2016-01-06 02:08:58 +03:00
listring[context;main] ]]
..default.get_hotbar_bg(0,4.85)
2015-06-09 15:04:57 +03:00
}
local function get_formspec_by_size(size)
local formspec = default_inventory_formspecs[tostring(size)]
return formspec or default_inventory_formspecs
end
local default_can_dig = function(pos)
local inv = minetest.get_meta(pos):get_inventory()
return inv:is_empty("main")
2015-12-06 20:39:30 +03:00
end
2015-06-09 15:04:57 +03:00
function xdecor.register(name, def)
def.drawtype = def.drawtype
or (def.mesh and "mesh")
or (def.node_box and "nodebox")
2015-06-16 19:47:29 +03:00
def.sounds = def.sounds or default.node_sound_defaults()
2015-12-21 02:46:16 +03:00
if not (def.drawtype == "normal" or def.drawtype == "signlike" or
def.drawtype == "plantlike" or def.drawtype == "glasslike_framed" or
def.drawtype == "glasslike_framed_optional") then
2015-06-13 15:43:36 +03:00
def.paramtype2 = def.paramtype2 or "facedir"
end
2015-06-09 15:04:57 +03:00
if def.sunlight_propagates ~= false and
(def.drawtype == "plantlike" or def.drawtype == "torchlike" or
def.drawtype == "signlike" or def.drawtype == "fencelike") then
def.sunlight_propagates = true
end
if not def.paramtype and
(def.light_source or def.sunlight_propagates or
def.drawtype == "nodebox" or def.drawtype == "mesh") then
def.paramtype = "light"
end
2015-06-09 15:04:57 +03:00
local infotext = def.infotext
local inventory = def.inventory
def.inventory = nil
if inventory then
def.on_construct = def.on_construct or function(pos)
local meta = minetest.get_meta(pos)
if infotext then meta:set_string("infotext", infotext) end
2015-12-21 02:46:16 +03:00
2015-06-09 15:04:57 +03:00
local size = inventory.size or default_inventory_size
2015-08-16 22:57:17 +03:00
local inv = meta:get_inventory()
inv:set_size("main", size)
2016-01-06 02:08:58 +03:00
meta:set_string("formspec", (inventory.formspec or get_formspec_by_size(size))..xbg)
2015-06-09 15:04:57 +03:00
end
def.can_dig = def.can_dig or default_can_dig
2015-06-09 15:04:57 +03:00
elseif infotext and not def.on_construct then
def.on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("infotext", infotext)
end
end
2016-01-06 02:08:58 +03:00
minetest.register_node("xdecor:"..name, def)
2015-06-09 15:04:57 +03:00
end