2014-03-25 14:16:47 +01:00
|
|
|
local S = homedecor.gettext
|
2013-03-26 12:05:22 +01:00
|
|
|
|
2015-02-25 11:17:42 +01:00
|
|
|
function homedecor.sit(pos, node, clicker)
|
2015-01-24 20:10:54 +01:00
|
|
|
local name = clicker:get_player_name()
|
|
|
|
local meta = minetest:get_meta(pos)
|
|
|
|
local param2 = node.param2
|
|
|
|
if clicker:get_player_name() == meta:get_string("player") then
|
|
|
|
meta:set_string("player", "")
|
|
|
|
pos.y = pos.y-0.5
|
|
|
|
clicker:setpos(pos)
|
|
|
|
clicker:set_eye_offset({x=0,y=0,z=0}, {x=0,y=0,z=0})
|
|
|
|
clicker:set_physics_override(1, 1, 1)
|
|
|
|
default.player_attached[name] = false
|
|
|
|
default.player_set_animation(clicker, "stand", 30)
|
|
|
|
else
|
|
|
|
meta:set_string("player", clicker:get_player_name())
|
|
|
|
clicker:set_eye_offset({x=0,y=-7,z=2}, {x=0,y=0,z=0})
|
|
|
|
clicker:set_physics_override(0, 0, 0)
|
|
|
|
default.player_attached[name] = true
|
|
|
|
if param2 == 1 then
|
|
|
|
clicker:set_look_yaw(7.9)
|
|
|
|
elseif param2 == 3 then
|
|
|
|
clicker:set_look_yaw(4.75)
|
|
|
|
elseif param2 == 0 then
|
|
|
|
clicker:set_look_yaw(3.15)
|
|
|
|
else
|
|
|
|
clicker:set_look_yaw(6.28)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-02-25 11:17:42 +01:00
|
|
|
function homedecor.sit_exec(pos, node, clicker) -- don't move these functions inside sit()
|
2015-01-27 19:43:12 +01:00
|
|
|
if not clicker or not clicker:is_player()
|
|
|
|
or clicker:get_player_control().up == true or clicker:get_player_control().down == true
|
|
|
|
or clicker:get_player_control().left == true or clicker:get_player_control().right == true
|
|
|
|
or clicker:get_player_control().jump == true then -- make sure that the player is immobile.
|
|
|
|
return end
|
2015-02-25 11:17:42 +01:00
|
|
|
homedecor.sit(pos, node, clicker)
|
2015-01-27 19:43:12 +01:00
|
|
|
clicker:setpos(pos)
|
|
|
|
default.player_set_animation(clicker, "sit", 30)
|
|
|
|
end
|
|
|
|
|
2015-02-25 10:35:29 +01:00
|
|
|
local table_colors = { "", "mahogany", "white" }
|
|
|
|
|
|
|
|
for _, i in ipairs(table_colors) do
|
|
|
|
local color = "_"..i
|
|
|
|
local desc = S("Table ("..i..")")
|
|
|
|
|
|
|
|
if i == "" then
|
|
|
|
color = ""
|
|
|
|
desc = S("Table")
|
|
|
|
end
|
|
|
|
|
|
|
|
homedecor.register("table"..color, {
|
|
|
|
description = desc,
|
|
|
|
tiles = { "forniture_wood"..color..".png" },
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.4, -0.5, -0.4, -0.3, 0.4, -0.3 },
|
|
|
|
{ 0.3, -0.5, -0.4, 0.4, 0.4, -0.3 },
|
|
|
|
{ -0.4, -0.5, 0.3, -0.3, 0.4, 0.4 },
|
|
|
|
{ 0.3, -0.5, 0.3, 0.4, 0.4, 0.4 },
|
|
|
|
{ -0.5, 0.4, -0.5, 0.5, 0.5, 0.5 },
|
|
|
|
{ -0.4, -0.2, -0.3, -0.3, -0.1, 0.3 },
|
|
|
|
{ 0.3, -0.2, -0.4, 0.4, -0.1, 0.3 },
|
|
|
|
{ -0.3, -0.2, -0.4, 0.4, -0.1, -0.3 },
|
|
|
|
{ -0.3, -0.2, 0.3, 0.3, -0.1, 0.4 },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2013-04-03 23:03:42 +02:00
|
|
|
local chaircolors = {
|
2014-06-27 05:20:13 +02:00
|
|
|
{ "", "plain" },
|
2013-04-03 23:03:42 +02:00
|
|
|
{ "black", "Black" },
|
|
|
|
{ "red", "Red" },
|
|
|
|
{ "pink", "Pink" },
|
|
|
|
{ "violet", "Violet" },
|
|
|
|
{ "blue", "Blue" },
|
|
|
|
{ "dark_green", "Dark Green" },
|
|
|
|
}
|
|
|
|
|
|
|
|
for i in ipairs(chaircolors) do
|
2014-06-27 05:20:13 +02:00
|
|
|
|
|
|
|
local color = "_"..chaircolors[i][1]
|
|
|
|
local color2 = chaircolors[i][1]
|
2014-03-25 14:16:47 +01:00
|
|
|
local name = S(chaircolors[i][2])
|
2015-01-20 23:59:50 +01:00
|
|
|
local chairtiles = {
|
2014-12-10 19:34:16 +01:00
|
|
|
"forniture_kitchen_chair_top"..color..".png",
|
|
|
|
"forniture_wood.png",
|
|
|
|
"forniture_kitchen_chair_sides"..color..".png",
|
|
|
|
"forniture_kitchen_chair_sides"..color..".png^[transformFX",
|
|
|
|
"forniture_kitchen_chair_back"..color..".png",
|
|
|
|
"forniture_kitchen_chair_front"..color..".png",
|
|
|
|
}
|
2015-01-20 23:59:50 +01:00
|
|
|
if chaircolors[i][1] == "" then
|
2014-06-27 05:20:13 +02:00
|
|
|
color = ""
|
2014-12-10 19:34:16 +01:00
|
|
|
chairtiles = { "forniture_wood.png" }
|
2014-06-27 05:20:13 +02:00
|
|
|
end
|
|
|
|
|
2015-01-24 00:34:02 +01:00
|
|
|
homedecor.register("chair"..color, {
|
2015-01-23 22:14:00 +01:00
|
|
|
description = S("Kitchen chair (%s)"):format(name),
|
2014-12-10 19:34:16 +01:00
|
|
|
tiles = chairtiles,
|
2014-06-27 05:20:13 +02:00
|
|
|
node_box = {
|
2015-01-23 22:14:00 +01:00
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
2014-06-27 05:20:13 +02:00
|
|
|
{-0.3125, -0.5, 0.1875, -0.1875, 0.5, 0.3125},
|
|
|
|
{0.1875, -0.5, 0.1875, 0.3125, 0.5, 0.3125},
|
|
|
|
{-0.3125, -0.5, -0.3125, -0.1875, 0, -0.1875},
|
|
|
|
{0.1875, -0.5, -0.3125, 0.3125, 0, -0.1875},
|
|
|
|
{-0.3125, -0.125, -0.3125, 0.3125, 0, 0.3125},
|
|
|
|
{-0.25, 0.0625, 0.25, 0.25, 0.4375, 0.25},
|
2015-01-23 22:14:00 +01:00
|
|
|
},
|
2013-04-03 23:03:42 +02:00
|
|
|
},
|
2014-06-27 05:20:13 +02:00
|
|
|
selection_box = {
|
2015-01-23 22:14:00 +01:00
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3},
|
2014-06-27 05:20:13 +02:00
|
|
|
},
|
|
|
|
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
2015-01-27 19:43:12 +01:00
|
|
|
on_rightclick = function(pos, node, clicker)
|
2015-01-24 20:10:54 +01:00
|
|
|
pos.y = pos.y-0 -- player's sit position.
|
2015-02-25 11:17:42 +01:00
|
|
|
homedecor.sit_exec(pos, node, clicker)
|
2015-01-24 20:10:54 +01:00
|
|
|
end,
|
2013-04-03 23:03:42 +02:00
|
|
|
})
|
|
|
|
|
2015-01-20 23:59:50 +01:00
|
|
|
if color ~= "" then
|
2015-01-24 00:34:02 +01:00
|
|
|
homedecor.register("armchair"..color, {
|
2014-06-27 05:20:13 +02:00
|
|
|
description = S("Armchair (%s)"):format(name),
|
|
|
|
tiles = { "forniture_armchair_top"..color..".png" },
|
|
|
|
sunlight_propagates = true,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.50, -0.50, -0.45, -0.30, 0.05, 0.30 },
|
|
|
|
{ -0.45, -0.50, -0.50, -0.35, 0.05, -0.45 },
|
|
|
|
{ -0.45, 0.05, -0.45, -0.35, 0.10, 0.15 },
|
|
|
|
{ 0.30, -0.50, -0.45, 0.50, 0.05, 0.30 },
|
|
|
|
{ 0.35, -0.50, -0.50, 0.45, 0.05, -0.45 },
|
|
|
|
{ 0.35, 0.05, -0.45, 0.45, 0.10, 0.15 },
|
|
|
|
{ -0.50, -0.50, 0.30, 0.50, 0.45, 0.50 },
|
|
|
|
{ -0.45, 0.45, 0.35, 0.45, 0.50, 0.45 },
|
|
|
|
{ -0.30, -0.45, -0.35, 0.30, -0.10, 0.30 },
|
|
|
|
{ -0.30, -0.45, -0.40, 0.30, -0.15, -0.35 },
|
|
|
|
{ -0.50, 0.05, 0.15, -0.30, 0.45, 0.30 },
|
|
|
|
{ -0.45, 0.10, 0.10, -0.35, 0.45, 0.15 },
|
|
|
|
{ -0.45, 0.45, 0.15, -0.35, 0.50, 0.35 },
|
|
|
|
{ 0.30, 0.05, 0.15, 0.50, 0.45, 0.30 },
|
|
|
|
{ 0.35, 0.10, 0.10, 0.45, 0.45, 0.15 },
|
|
|
|
{ 0.35, 0.45, 0.15, 0.45, 0.50, 0.35 },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
2015-01-27 19:43:12 +01:00
|
|
|
on_rightclick = function(pos, node, clicker)
|
2015-01-24 20:10:54 +01:00
|
|
|
pos.y = pos.y-0.1 -- player's sit position.
|
2015-02-25 11:17:42 +01:00
|
|
|
homedecor.sit_exec(pos, node, clicker)
|
2015-01-24 20:10:54 +01:00
|
|
|
clicker:set_hp(20)
|
|
|
|
end,
|
2014-06-27 05:20:13 +02:00
|
|
|
})
|
2013-04-03 23:03:42 +02:00
|
|
|
|
2014-06-27 05:20:13 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "homedecor:armchair"..color.." 2",
|
|
|
|
recipe = {
|
|
|
|
{ "wool:"..color2,""},
|
|
|
|
{ "group:wood","group:wood" },
|
|
|
|
{ "wool:"..color2,"wool:"..color2 },
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
2013-04-03 23:03:42 +02:00
|
|
|
end
|
2013-03-26 12:05:22 +01:00
|
|
|
|
2014-07-13 14:35:16 +02:00
|
|
|
minetest.register_node(":homedecor:openframe_bookshelf", {
|
|
|
|
description = "Bookshelf (open-frame)",
|
2015-01-24 01:29:51 +01:00
|
|
|
drawtype = "mesh",
|
2014-12-14 07:19:36 +01:00
|
|
|
mesh = "homedecor_openframe_bookshelf.obj",
|
|
|
|
tiles = { "homedecor_openframe_bookshelf.png" },
|
2015-01-24 01:29:51 +01:00
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
2014-07-13 14:35:16 +02:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, 0, 0.5, 0.5, 0.5 }
|
|
|
|
},
|
2014-12-14 07:19:36 +01:00
|
|
|
collision_box = {
|
2014-07-13 14:35:16 +02:00
|
|
|
type = "fixed",
|
2014-12-14 07:19:36 +01:00
|
|
|
fixed = { -0.5, -0.5, 0, 0.5, 0.5, 0.5 }
|
|
|
|
},
|
2014-07-13 14:35:16 +02:00
|
|
|
})
|
|
|
|
|
2014-08-20 16:11:08 +02:00
|
|
|
local bedcolors = {
|
|
|
|
"red",
|
|
|
|
"green",
|
|
|
|
"blue",
|
|
|
|
"violet",
|
2014-08-21 10:21:59 +02:00
|
|
|
"brown",
|
2014-09-16 20:39:21 +02:00
|
|
|
"darkgrey",
|
|
|
|
"orange",
|
|
|
|
"yellow",
|
|
|
|
"pink",
|
2014-08-20 16:11:08 +02:00
|
|
|
}
|
2014-09-18 20:46:26 +02:00
|
|
|
|
|
|
|
local function bed_extension(pos, color)
|
|
|
|
|
|
|
|
local topnode = minetest.get_node({x=pos.x, y=pos.y+1.0, z=pos.z})
|
|
|
|
local thisnode = minetest.get_node(pos)
|
|
|
|
local bottomnode = minetest.get_node({x=pos.x, y=pos.y-1.0, z=pos.z})
|
|
|
|
|
|
|
|
local fdir = thisnode.param2
|
|
|
|
|
|
|
|
if string.find(topnode.name, "homedecor:bed_.*_foot$") then
|
|
|
|
if fdir == topnode.param2 then
|
|
|
|
local newnode = string.gsub(thisnode.name, "_foot", "_footext")
|
|
|
|
minetest.set_node(pos, { name = newnode, param2 = fdir})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-23 22:14:00 +01:00
|
|
|
if string.find(bottomnode.name, "homedecor:bed_.*_foot$") then
|
2014-09-18 20:46:26 +02:00
|
|
|
if fdir == bottomnode.param2 then
|
|
|
|
local newnode = string.gsub(bottomnode.name, "_foot", "_footext")
|
2015-01-23 22:14:00 +01:00
|
|
|
minetest.set_node({x=pos.x, y=pos.y-1.0, z=pos.z}, { name = newnode, param2 = fdir})
|
2014-09-18 20:46:26 +02:00
|
|
|
end
|
2015-01-23 22:14:00 +01:00
|
|
|
end
|
2014-09-18 20:46:26 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function unextend_bed(pos, color)
|
|
|
|
local bottomnode = minetest.get_node({x=pos.x, y=pos.y-1.0, z=pos.z})
|
|
|
|
local fdir = bottomnode.param2
|
|
|
|
if string.find(bottomnode.name, "homedecor:bed_.*_footext$") then
|
|
|
|
local newnode = string.gsub(bottomnode.name, "_footext", "_foot")
|
|
|
|
minetest.set_node({x=pos.x, y=pos.y-1.0, z=pos.z}, { name = newnode, param2 = fdir})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-20 16:11:08 +02:00
|
|
|
for _, color in ipairs(bedcolors) do
|
2015-01-20 23:59:50 +01:00
|
|
|
|
2015-01-23 00:48:53 +01:00
|
|
|
homedecor.register("bed_"..color.."_head", {
|
2014-08-20 16:11:08 +02:00
|
|
|
tiles = {
|
|
|
|
"homedecor_bed_"..color.."_top1.png",
|
|
|
|
"homedecor_bed_bottom1.png",
|
|
|
|
"homedecor_bed_"..color.."_side1.png",
|
|
|
|
"homedecor_bed_"..color.."_side1.png^[transformFX",
|
2014-10-13 11:29:36 +02:00
|
|
|
"homedecor_bed_head1.png",
|
2014-08-20 16:11:08 +02:00
|
|
|
"homedecor_bed_"..color.."_head2.png"
|
|
|
|
},
|
|
|
|
groups = {snappy=3, not_in_creative_inventory=1},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, 0.4375, -0.375, 0.5, 0.5}, -- NodeBox1
|
|
|
|
{0.375, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox2
|
|
|
|
{-0.5, 0.25, 0.4375, 0.5, 0.4375, 0.5}, -- NodeBox3
|
2014-10-13 11:29:36 +02:00
|
|
|
{-0.5, -0.0625, 0.4375, 0.5, 0.1875, 0.5}, -- NodeBox4
|
|
|
|
{-0.5, -0.375, -0.5, 0.5, -0.125, 0.5}, -- NodeBox5
|
|
|
|
{0.375, -0.375, -0.5, 0.4375, -0.125, 0.5}, -- NodeBox6
|
|
|
|
{-0.4375, -0.3125, -0.5, 0.4375, -0.0625, 0.4375}, -- NodeBox7
|
|
|
|
{-0.3125, -0.125, 0.0625, 0.3125, 0.0625, 0.4375}, -- NodeBox8
|
2014-08-20 16:11:08 +02:00
|
|
|
}
|
|
|
|
},
|
2015-01-23 17:40:57 +01:00
|
|
|
selection_box = homedecor.nodebox.null
|
2014-08-20 16:11:08 +02:00
|
|
|
})
|
2014-09-18 20:46:26 +02:00
|
|
|
|
2015-01-23 00:48:53 +01:00
|
|
|
homedecor.register("bed_"..color.."_foot", {
|
2014-08-20 16:11:08 +02:00
|
|
|
tiles = {
|
|
|
|
"homedecor_bed_"..color.."_top2.png",
|
|
|
|
"homedecor_bed_bottom2.png",
|
|
|
|
"homedecor_bed_"..color.."_side2.png",
|
|
|
|
"homedecor_bed_"..color.."_side2.png^[transformFX",
|
2014-09-16 20:39:21 +02:00
|
|
|
"homedecor_bed_foot2.png",
|
2014-08-20 16:11:08 +02:00
|
|
|
"homedecor_bed_"..color.."_foot1.png"
|
|
|
|
},
|
|
|
|
inventory_image = "homedecor_bed_"..color.."_inv.png",
|
|
|
|
description = S("Bed (%s)"):format(color),
|
|
|
|
groups = {snappy=3},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, -0.375, 0.1875, -0.4375}, -- NodeBox1
|
|
|
|
{0.375, -0.5, -0.5, 0.5, 0.1875, -0.4375}, -- NodeBox2
|
|
|
|
{-0.5, 0, -0.5, 0.5, 0.125, -0.4375}, -- NodeBox3
|
2015-01-27 19:43:12 +01:00
|
|
|
{-0.5, -0.375, -0.5, 0.5, -0.125, 0.5}, -- NodeBox4
|
|
|
|
{-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5}, -- NodeBox5
|
2014-08-20 16:11:08 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 1.5 }
|
|
|
|
},
|
2014-09-16 20:39:21 +02:00
|
|
|
on_construct = function(pos)
|
2014-09-18 20:46:26 +02:00
|
|
|
bed_extension(pos, color)
|
2014-09-16 20:39:21 +02:00
|
|
|
end,
|
2015-01-23 00:48:53 +01:00
|
|
|
expand = { forward = "homedecor:bed_"..color.."_head" },
|
|
|
|
after_unexpand = function(pos)
|
2014-09-18 20:46:26 +02:00
|
|
|
unextend_bed(pos, color)
|
2015-01-23 00:48:53 +01:00
|
|
|
end,
|
2014-09-16 20:39:21 +02:00
|
|
|
})
|
2015-01-20 23:59:50 +01:00
|
|
|
|
2015-01-23 00:48:53 +01:00
|
|
|
homedecor.register("bed_"..color.."_footext", {
|
2014-09-16 20:39:21 +02:00
|
|
|
tiles = {
|
|
|
|
"homedecor_bed_"..color.."_top2.png",
|
|
|
|
"homedecor_bed_bottom2.png",
|
|
|
|
"homedecor_bed_"..color.."_side2ext.png",
|
|
|
|
"homedecor_bed_"..color.."_side2ext.png^[transformFX",
|
|
|
|
"homedecor_bed_foot2ext.png",
|
|
|
|
"homedecor_bed_"..color.."_foot1ext.png"
|
|
|
|
},
|
|
|
|
groups = {snappy=3, not_in_creative_inventory=1},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, -0.375, 0.5, -0.4375}, -- NodeBox1
|
|
|
|
{0.375, -0.5, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox2
|
|
|
|
{-0.5, 0, -0.5, 0.5, 0.125, -0.4375}, -- NodeBox3
|
2014-10-31 20:33:28 +01:00
|
|
|
{-0.5, -0.375, -0.5, 0.5, -0.125, 0.5}, -- NodeBox4
|
2014-10-31 22:29:05 +01:00
|
|
|
{-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5}, -- NodeBox5
|
2014-09-16 20:39:21 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 1.5 }
|
|
|
|
},
|
2015-01-23 00:48:53 +01:00
|
|
|
expand = { forward = "homedecor:bed_"..color.."_head" },
|
|
|
|
after_unexpand = function(pos)
|
2014-09-18 20:46:26 +02:00
|
|
|
unextend_bed(pos, color)
|
2014-09-18 08:23:11 +02:00
|
|
|
end,
|
|
|
|
drop = "homedecor:bed_"..color.."_foot"
|
2014-08-20 16:11:08 +02:00
|
|
|
})
|
2015-01-20 23:59:50 +01:00
|
|
|
|
2014-08-20 16:11:08 +02:00
|
|
|
end
|
2014-08-07 20:49:26 +02:00
|
|
|
|
2015-01-23 00:01:08 +01:00
|
|
|
homedecor.register("wardrobe_top", {
|
2014-08-07 20:49:26 +02:00
|
|
|
tiles = {
|
2014-11-03 12:46:45 +01:00
|
|
|
"forniture_wood.png",
|
|
|
|
"forniture_wood.png",
|
|
|
|
"forniture_wood.png^[transformR90",
|
|
|
|
"forniture_wood.png^[transformR270",
|
|
|
|
"forniture_wood.png^[transformR90",
|
2014-08-07 20:49:26 +02:00
|
|
|
"homedecor_wardrobe_frontt.png"
|
|
|
|
},
|
2014-08-20 16:11:08 +02:00
|
|
|
groups = {snappy=3, not_in_creative_inventory=1},
|
2014-08-07 20:49:26 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
2014-08-10 08:33:20 +02:00
|
|
|
{-0.5, -0.5, -0.4375, 0.5, 0.5, 0.5}, -- NodeBox1
|
|
|
|
{0.0625, -0.4375, -0.5, 0.4375, 0.4375, -0.4375}, -- NodeBox2
|
|
|
|
{-0.4375, -0.4375, -0.5, -0.0625, 0.4375, -0.4375}, -- NodeBox3
|
2014-08-07 20:49:26 +02:00
|
|
|
}
|
|
|
|
},
|
2015-01-23 17:40:57 +01:00
|
|
|
selection_box = homedecor.nodebox.null,
|
2014-08-07 20:49:26 +02:00
|
|
|
})
|
|
|
|
|
2015-01-21 19:19:14 +01:00
|
|
|
homedecor.register("wardrobe_bottom", {
|
2014-08-07 20:49:26 +02:00
|
|
|
tiles = {
|
2014-11-03 12:46:45 +01:00
|
|
|
"forniture_wood.png",
|
|
|
|
"forniture_wood.png^[transformR180",
|
|
|
|
"forniture_wood.png^[transformR90",
|
|
|
|
"forniture_wood.png^[transformR270",
|
|
|
|
"forniture_wood.png^[transformR90",
|
2014-08-07 20:49:26 +02:00
|
|
|
"homedecor_wardrobe_frontb.png"
|
|
|
|
},
|
|
|
|
inventory_image = "homedecor_wardrobe_inv.png",
|
|
|
|
description = "Wardrobe",
|
2015-02-25 11:17:42 +01:00
|
|
|
groups = {snappy=3},
|
2014-08-07 20:49:26 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
2014-08-10 08:33:20 +02:00
|
|
|
{-0.5, -0.5, -0.4375, 0.5, 0.5, 0.5}, -- NodeBox1
|
|
|
|
{-0.4375, -0.375, -0.5, 0.4375, -0.125, -0.4375}, -- NodeBox2
|
|
|
|
{-0.4375, -0.0625, -0.5, 0.4375, 0.1875, -0.4375}, -- NodeBox3
|
|
|
|
{-0.4375, 0.25, -0.5, 0.4375, 0.5, -0.4375}, -- NodeBox4
|
2014-08-07 20:49:26 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, -0.5, 0.5, 1.5, 0.5 }
|
|
|
|
},
|
2015-01-23 00:01:08 +01:00
|
|
|
expand = { top="homedecor:wardrobe_top" },
|
|
|
|
infotext = S("Wardrobe cabinet"),
|
2015-01-21 19:19:14 +01:00
|
|
|
inventory = {
|
|
|
|
size=24,
|
|
|
|
},
|
2014-08-07 20:49:26 +02:00
|
|
|
})
|
|
|
|
|
2015-01-24 00:34:02 +01:00
|
|
|
homedecor.register("wall_shelf", {
|
2014-09-10 16:09:06 +02:00
|
|
|
description = "Wall Shelf",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_wood_table_large_edges.png",
|
|
|
|
},
|
2014-09-10 18:00:51 +02:00
|
|
|
groups = { snappy = 3 },
|
2014-09-10 16:09:06 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, 0.4, 0.47, 0.5, 0.47, 0.5},
|
|
|
|
{-0.5, 0.47, -0.1875, 0.5, 0.5, 0.5}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2015-01-23 00:01:08 +01:00
|
|
|
homedecor.register("grandfather_clock_bottom", {
|
2014-09-10 18:00:51 +02:00
|
|
|
description = "Grandfather Clock",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_bottom.png"
|
|
|
|
},
|
|
|
|
inventory_image = "homedecor_grandfather_clock_inv.png",
|
|
|
|
groups = { snappy = 3 },
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.4, -0.5, -0.4, -0.3125, 0.5, 0.4}, -- NodeBox1
|
|
|
|
{-0.3125, -0.4375, -0.3125, 0.3125, 0.5, 0.4}, -- NodeBox2
|
|
|
|
{0.3125, -0.5, -0.4, 0.4, 0.5, 0.4}, -- NodeBox3
|
|
|
|
{-0.3125, -0.5, -0.4, 0.3125, -0.405, 0.4}, -- NodeBox4
|
|
|
|
}
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.4, -0.5, -0.4, 0.4, 1.5, 0.4 }
|
|
|
|
},
|
2015-01-23 00:01:08 +01:00
|
|
|
expand = { top="homedecor:grandfather_clock_top" },
|
2014-09-10 18:00:51 +02:00
|
|
|
})
|
|
|
|
|
2015-01-23 00:01:08 +01:00
|
|
|
homedecor.register("grandfather_clock_top", {
|
2014-09-10 18:00:51 +02:00
|
|
|
tiles = {
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_sides.png",
|
|
|
|
"homedecor_grandfather_clock_top.png"
|
|
|
|
},
|
|
|
|
groups = { snappy = 3, not_in_creative_inventory=1 },
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.4, -0.5, -0.4, -0.3125, 0.5, 0.4}, -- NodeBox1
|
|
|
|
{-0.3125, -0.1875, -0.4, 0.3125, 0.5, 0.4}, -- NodeBox2
|
|
|
|
{0.3125, -0.5, -0.4, 0.4, 0.5, 0.4}, -- NodeBox3
|
|
|
|
{-0.3125, -0.5, -0.3125, 0.3125, 0.5, 0.4}, -- NodeBox4
|
|
|
|
}
|
|
|
|
},
|
2015-01-23 17:40:57 +01:00
|
|
|
selection_box = homedecor.nodebox.null,
|
2014-09-10 18:00:51 +02:00
|
|
|
})
|
|
|
|
|
2015-02-28 10:14:46 +01:00
|
|
|
local ofchairs_sbox = {
|
2015-01-27 12:01:29 +01:00
|
|
|
type = "fixed",
|
|
|
|
fixed = { -8/16, -8/16, -8/16, 8/16, 29/32, 8/16 }
|
2015-02-28 10:14:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
local ofchairs_cbox = {
|
2015-01-27 12:01:29 +01:00
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -5/16, 1/16, -7/16, 5/16, 4/16, 7/16 }, -- seat
|
|
|
|
{ -5/16, 4/16, 4/16, 5/16, 29/32, 15/32 }, -- seatback
|
|
|
|
{ -1/16, -11/32, -1/16, 1/16, 1/16, 1/16 }, -- cylinder
|
|
|
|
{ -8/16, -8/16, -8/16, 8/16, -11/32, 8/16 } -- legs/wheels
|
|
|
|
}
|
2015-02-28 10:14:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
local ofchairs = {"basic", "upscale"}
|
2015-01-27 12:01:29 +01:00
|
|
|
|
2015-02-28 10:14:46 +01:00
|
|
|
for _, c in ipairs(ofchairs) do
|
|
|
|
|
|
|
|
homedecor.register("office_chair_"..c, {
|
|
|
|
description = "Office chair ("..c..")",
|
2015-01-27 12:01:29 +01:00
|
|
|
drawtype = "mesh",
|
2015-02-28 10:14:46 +01:00
|
|
|
tiles = { "homedecor_office_chair_"..c..".png" },
|
|
|
|
mesh = "homedecor_office_chair_"..c..".obj",
|
2015-01-27 12:01:29 +01:00
|
|
|
groups = { snappy = 3 },
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2015-02-28 10:14:46 +01:00
|
|
|
selection_box = ofchairs_sbox,
|
|
|
|
collision_box = ofchairs_cbox,
|
2015-01-27 12:45:29 +01:00
|
|
|
expand = { top = "air" },
|
2015-01-27 19:43:12 +01:00
|
|
|
on_rightclick = function(pos, node, clicker)
|
2015-01-27 12:45:29 +01:00
|
|
|
pos.y = pos.y+0.14 -- player's sit position.
|
2015-02-25 11:17:42 +01:00
|
|
|
homedecor.sit_exec(pos, node, clicker)
|
2015-01-27 12:45:29 +01:00
|
|
|
end,
|
2015-01-27 12:01:29 +01:00
|
|
|
})
|
|
|
|
|
2015-02-28 10:14:46 +01:00
|
|
|
end
|
|
|
|
|
2013-03-26 12:05:22 +01:00
|
|
|
-- Aliases for 3dforniture mod.
|
2014-08-07 20:49:26 +02:00
|
|
|
|
2013-03-26 12:05:22 +01:00
|
|
|
minetest.register_alias("3dforniture:table", "homedecor:table")
|
|
|
|
minetest.register_alias("3dforniture:chair", "homedecor:chair")
|
2013-04-03 23:03:42 +02:00
|
|
|
minetest.register_alias("3dforniture:armchair", "homedecor:armchair_black")
|
|
|
|
minetest.register_alias("homedecor:armchair", "homedecor:armchair_black")
|
2013-03-26 12:05:22 +01:00
|
|
|
|
|
|
|
minetest.register_alias('table', 'homedecor:table')
|
|
|
|
minetest.register_alias('chair', 'homedecor:chair')
|
|
|
|
minetest.register_alias('armchair', 'homedecor:armchair')
|