2015-01-21 19:19:14 +01:00
|
|
|
homedecor = homedecor or {}
|
|
|
|
local S = homedecor.gettext
|
|
|
|
|
|
|
|
--wrapper around minetest.register_node that sets sane defaults and interprets some specialized settings
|
|
|
|
function homedecor.register(name, def)
|
|
|
|
def.drawtype = def.drawtype
|
2015-08-19 16:14:17 +02:00
|
|
|
or (def.mesh and "mesh")
|
|
|
|
or (def.node_box and "nodebox")
|
2015-01-21 19:19:14 +01:00
|
|
|
|
2015-02-05 10:34:17 +01:00
|
|
|
def.paramtype = def.paramtype or "light"
|
2015-02-05 10:51:34 +01:00
|
|
|
|
|
|
|
-- avoid facedir for some drawtypes as they might be used internally for something else
|
|
|
|
-- even if undocumented
|
|
|
|
if not (def.drawtype == "glasslike_framed"
|
|
|
|
or def.drawtype == "raillike"
|
|
|
|
or def.drawtype == "plantlike"
|
|
|
|
or def.drawtype == "firelike") then
|
|
|
|
|
2015-02-05 10:34:17 +01:00
|
|
|
def.paramtype2 = def.paramtype2 or "facedir"
|
|
|
|
end
|
|
|
|
|
2015-08-19 16:14:17 +02:00
|
|
|
homedecor.handle_inventory(name, def)
|
|
|
|
|
2015-01-21 19:19:14 +01:00
|
|
|
local infotext = def.infotext
|
2015-01-22 22:54:08 +01:00
|
|
|
--def.infotext = nil -- currently used to set locked refrigerator infotexts
|
2015-01-21 19:19:14 +01:00
|
|
|
|
2015-08-19 17:30:37 +02:00
|
|
|
if infotext then
|
|
|
|
local on_construct = def.on_construct
|
2015-01-21 19:19:14 +01:00
|
|
|
def.on_construct = function(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("infotext", infotext)
|
2015-08-19 17:30:37 +02:00
|
|
|
if on_construct then on_construct(pos) end
|
2015-01-21 19:19:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-23 00:48:53 +01:00
|
|
|
local expand = def.expand
|
2015-01-23 00:01:08 +01:00
|
|
|
def.expand = nil
|
2015-01-23 00:48:53 +01:00
|
|
|
local after_unexpand = def.after_unexpand
|
|
|
|
def.after_unexpand = nil
|
2015-01-23 00:01:08 +01:00
|
|
|
|
|
|
|
if expand then
|
|
|
|
def.on_place = def.on_place or function(itemstack, placer, pointed_thing)
|
|
|
|
if expand.top then
|
2015-01-26 15:58:37 +01:00
|
|
|
return homedecor.stack_vertically(itemstack, placer, pointed_thing, itemstack:get_name(), expand.top)
|
|
|
|
elseif expand.right then
|
|
|
|
return homedecor.stack_sideways(itemstack, placer, pointed_thing, itemstack:get_name(), expand.right, true)
|
|
|
|
elseif expand.forward then
|
|
|
|
return homedecor.stack_sideways(itemstack, placer, pointed_thing, itemstack:get_name(), expand.forward, false)
|
2015-01-23 00:01:08 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
def.after_dig_node = def.after_dig_node or function(pos, oldnode, oldmetadata, digger)
|
2015-01-23 00:08:06 +01:00
|
|
|
if expand.top and expand.forward ~= "air" then
|
2015-01-23 00:01:08 +01:00
|
|
|
local top_pos = { x=pos.x, y=pos.y+1, z=pos.z }
|
|
|
|
if minetest.get_node(top_pos).name == expand.top then
|
|
|
|
minetest.remove_node(top_pos)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local fdir = oldnode.param2
|
|
|
|
if not fdir or fdir > 3 then return end
|
|
|
|
|
2015-01-23 00:08:06 +01:00
|
|
|
if expand.right and expand.forward ~= "air" then
|
2015-01-23 00:01:08 +01:00
|
|
|
local right_pos = { x=pos.x+homedecor.fdir_to_right[fdir+1][1], y=pos.y, z=pos.z+homedecor.fdir_to_right[fdir+1][2] }
|
|
|
|
if minetest.get_node(right_pos).name == expand.right then
|
|
|
|
minetest.remove_node(right_pos)
|
|
|
|
end
|
|
|
|
end
|
2015-01-23 00:08:06 +01:00
|
|
|
if expand.forward and expand.forward ~= "air" then
|
2015-01-23 00:01:08 +01:00
|
|
|
local forward_pos = { x=pos.x+homedecor.fdir_to_fwd[fdir+1][1], y=pos.y, z=pos.z+homedecor.fdir_to_fwd[fdir+1][2] }
|
|
|
|
if minetest.get_node(forward_pos).name == expand.forward then
|
|
|
|
minetest.remove_node(forward_pos)
|
|
|
|
end
|
|
|
|
end
|
2015-01-23 00:48:53 +01:00
|
|
|
|
|
|
|
if after_unexpand then
|
|
|
|
after_unexpand(pos)
|
|
|
|
end
|
2015-01-23 00:01:08 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-21 19:19:14 +01:00
|
|
|
-- register the actual minetest node
|
|
|
|
minetest.register_node("homedecor:" .. name, def)
|
|
|
|
end
|