2013-07-11 20:33:02 +02:00
|
|
|
-- Load translation library if intllib is installed
|
|
|
|
|
|
|
|
local S
|
2014-03-09 10:38:18 +01:00
|
|
|
if intllib then
|
2013-07-11 20:33:02 +02:00
|
|
|
S = intllib.Getter(minetest.get_current_modname())
|
2014-03-09 10:38:18 +01:00
|
|
|
else
|
|
|
|
S = function(s) return s end
|
2013-07-11 20:33:02 +02:00
|
|
|
end
|
|
|
|
|
2014-03-09 10:38:18 +01:00
|
|
|
-- Node will be called <modname>:panel_<subname>
|
2013-07-11 20:33:02 +02:00
|
|
|
|
|
|
|
function register_panel(modname, subname, recipeitem, groups, images, description, drop, light)
|
2014-03-09 10:38:18 +01:00
|
|
|
return stairsplus:register_panel(modname, subname, recipeitem, {
|
2013-07-11 20:33:02 +02:00
|
|
|
groups = groups,
|
2013-10-27 09:57:21 +01:00
|
|
|
tiles = images,
|
2014-03-09 10:38:18 +01:00
|
|
|
description = description,
|
|
|
|
drop = drop,
|
2013-10-27 09:57:21 +01:00
|
|
|
light_source = light,
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2013-10-27 09:57:21 +01:00
|
|
|
})
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function stairsplus:register_panel(modname, subname, recipeitem, fields)
|
|
|
|
local defs = {
|
|
|
|
[""] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0.5, 0, 0.5},
|
|
|
|
},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2014-03-09 10:38:18 +01:00
|
|
|
["_1"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0.5, -0.4375, 0.5},
|
|
|
|
},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2014-03-09 10:38:18 +01:00
|
|
|
["_2"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0.5, -0.375, 0.5},
|
|
|
|
},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2014-03-09 10:38:18 +01:00
|
|
|
["_4"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0.5, -0.25, 0.5},
|
|
|
|
},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2014-03-09 10:38:18 +01:00
|
|
|
["_12"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0.5, 0.25, 0.5},
|
|
|
|
},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2014-03-09 10:38:18 +01:00
|
|
|
["_14"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0.5, 0.375, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
["_15"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0.5, 0.4375, 0.5},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
local desc = S("%s Panel"):format(fields.description)
|
|
|
|
for alternate, def in pairs(defs) do
|
|
|
|
def.drawtype = "nodebox"
|
|
|
|
def.paramtype = "light"
|
|
|
|
def.paramtype2 = "facedir"
|
|
|
|
def.on_place = minetest.rotate_node
|
|
|
|
for k, v in pairs(fields) do
|
|
|
|
def[k] = v
|
|
|
|
end
|
|
|
|
def.description = desc
|
|
|
|
if fields.drop then
|
|
|
|
def.drop = modname..":panel_"..fields.drop..alternate
|
|
|
|
end
|
|
|
|
minetest.register_node(":"..modname..":panel_"..subname..alternate, def)
|
|
|
|
end
|
2013-07-11 20:33:02 +02:00
|
|
|
|
|
|
|
minetest.register_alias(modname..":panel_"..subname.."_bottom", modname..":panel_"..subname)
|
|
|
|
end
|
|
|
|
|