2013-05-18 16:05:16 +02:00
|
|
|
doors = {}
|
|
|
|
|
|
|
|
-- Registers a door
|
|
|
|
-- name: The name of the door
|
|
|
|
-- def: a table with the folowing fields:
|
|
|
|
-- description
|
|
|
|
-- inventory_image
|
|
|
|
-- groups
|
|
|
|
-- tiles_bottom: the tiles of the bottom part of the door {front, side}
|
|
|
|
-- tiles_top: the tiles of the bottom part of the door {front, side}
|
|
|
|
-- If the following fields are not defined the default values are used
|
|
|
|
-- node_box_bottom
|
|
|
|
-- node_box_top
|
|
|
|
-- selection_box_bottom
|
|
|
|
-- selection_box_top
|
|
|
|
-- only_placer_can_open: if true only the player who placed the door can
|
|
|
|
-- open it
|
|
|
|
function doors:register_door(name, def)
|
|
|
|
def.groups.not_in_creative_inventory = 1
|
|
|
|
|
|
|
|
local box = {{-0.5, -0.5, -0.5, 0.5, 0.5, -0.5+1.5/16}}
|
|
|
|
|
|
|
|
if not def.node_box_bottom then
|
|
|
|
def.node_box_bottom = box
|
|
|
|
end
|
|
|
|
if not def.node_box_top then
|
|
|
|
def.node_box_top = box
|
|
|
|
end
|
|
|
|
if not def.selection_box_bottom then
|
|
|
|
def.selection_box_bottom= box
|
|
|
|
end
|
|
|
|
if not def.selection_box_top then
|
|
|
|
def.selection_box_top = box
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_craftitem(name, {
|
|
|
|
description = def.description,
|
|
|
|
inventory_image = def.inventory_image,
|
|
|
|
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
if not pointed_thing.type == "node" then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
|
|
|
local ptu = pointed_thing.under
|
2013-05-25 00:40:03 +02:00
|
|
|
local nu = minetest.get_node(ptu)
|
2013-05-18 16:05:16 +02:00
|
|
|
if minetest.registered_nodes[nu.name].on_rightclick then
|
|
|
|
return minetest.registered_nodes[nu.name].on_rightclick(ptu, nu, placer, itemstack)
|
|
|
|
end
|
|
|
|
|
|
|
|
local pt = pointed_thing.above
|
|
|
|
local pt2 = {x=pt.x, y=pt.y, z=pt.z}
|
|
|
|
pt2.y = pt2.y+1
|
|
|
|
if
|
2013-05-25 00:40:03 +02:00
|
|
|
not minetest.registered_nodes[minetest.get_node(pt).name].buildable_to or
|
|
|
|
not minetest.registered_nodes[minetest.get_node(pt2).name].buildable_to or
|
2013-05-18 16:05:16 +02:00
|
|
|
not placer or
|
|
|
|
not placer:is_player()
|
|
|
|
then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
|
|
|
local p2 = minetest.dir_to_facedir(placer:get_look_dir())
|
|
|
|
local pt3 = {x=pt.x, y=pt.y, z=pt.z}
|
|
|
|
if p2 == 0 then
|
|
|
|
pt3.x = pt3.x-1
|
|
|
|
elseif p2 == 1 then
|
|
|
|
pt3.z = pt3.z+1
|
|
|
|
elseif p2 == 2 then
|
|
|
|
pt3.x = pt3.x+1
|
|
|
|
elseif p2 == 3 then
|
|
|
|
pt3.z = pt3.z-1
|
|
|
|
end
|
2013-05-25 00:40:03 +02:00
|
|
|
if not string.find(minetest.get_node(pt3).name, name.."_b_") then
|
|
|
|
minetest.set_node(pt, {name=name.."_b_1", param2=p2})
|
|
|
|
minetest.set_node(pt2, {name=name.."_t_1", param2=p2})
|
2013-05-18 16:05:16 +02:00
|
|
|
else
|
2013-05-25 00:40:03 +02:00
|
|
|
minetest.set_node(pt, {name=name.."_b_2", param2=p2})
|
|
|
|
minetest.set_node(pt2, {name=name.."_t_2", param2=p2})
|
2013-05-18 16:05:16 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
if def.only_placer_can_open then
|
|
|
|
local pn = placer:get_player_name()
|
2013-05-25 00:40:03 +02:00
|
|
|
local meta = minetest.get_meta(pt)
|
2013-05-18 16:05:16 +02:00
|
|
|
meta:set_string("doors_owner", pn)
|
|
|
|
meta:set_string("infotext", "Owned by "..pn)
|
2013-05-25 00:40:03 +02:00
|
|
|
meta = minetest.get_meta(pt2)
|
2013-05-18 16:05:16 +02:00
|
|
|
meta:set_string("doors_owner", pn)
|
|
|
|
meta:set_string("infotext", "Owned by "..pn)
|
|
|
|
end
|
|
|
|
|
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
|
|
|
itemstack:take_item()
|
|
|
|
end
|
|
|
|
return itemstack
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
local tt = def.tiles_top
|
|
|
|
local tb = def.tiles_bottom
|
|
|
|
|
|
|
|
local function after_dig_node(pos, name)
|
2013-05-25 00:40:03 +02:00
|
|
|
if minetest.get_node(pos).name == name then
|
|
|
|
minetest.remove_node(pos)
|
2013-05-18 16:05:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function on_rightclick(pos, dir, check_name, replace, replace_dir, params)
|
|
|
|
pos.y = pos.y+dir
|
2013-05-25 00:40:03 +02:00
|
|
|
if not minetest.get_node(pos).name == check_name then
|
2013-05-18 16:05:16 +02:00
|
|
|
return
|
|
|
|
end
|
2013-05-25 00:40:03 +02:00
|
|
|
local p2 = minetest.get_node(pos).param2
|
2013-05-18 16:05:16 +02:00
|
|
|
p2 = params[p2+1]
|
|
|
|
|
2013-12-08 18:12:44 +01:00
|
|
|
minetest.swap_node(pos, {name=replace_dir, param2=p2})
|
2013-05-18 16:05:16 +02:00
|
|
|
|
|
|
|
pos.y = pos.y-dir
|
2013-12-08 18:12:44 +01:00
|
|
|
minetest.swap_node(pos, {name=replace, param2=p2})
|
2013-05-18 16:05:16 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function check_player_priv(pos, player)
|
|
|
|
if not def.only_placer_can_open then
|
|
|
|
return true
|
|
|
|
end
|
2013-05-25 00:40:03 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
2013-05-18 16:05:16 +02:00
|
|
|
local pn = player:get_player_name()
|
|
|
|
return meta:get_string("doors_owner") == pn
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_node(name.."_b_1", {
|
|
|
|
tiles = {tb[2], tb[2], tb[2], tb[2], tb[1], tb[1].."^[transformfx"},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
drop = name,
|
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = def.node_box_bottom
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = def.selection_box_bottom
|
|
|
|
},
|
|
|
|
groups = def.groups,
|
|
|
|
|
|
|
|
after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|
|
|
pos.y = pos.y+1
|
|
|
|
after_dig_node(pos, name.."_t_1")
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if check_player_priv(pos, clicker) then
|
|
|
|
on_rightclick(pos, 1, name.."_t_1", name.."_b_2", name.."_t_2", {1,2,3,0})
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
can_dig = check_player_priv,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node(name.."_t_1", {
|
|
|
|
tiles = {tt[2], tt[2], tt[2], tt[2], tt[1], tt[1].."^[transformfx"},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
drop = name,
|
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = def.node_box_top
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = def.selection_box_top
|
|
|
|
},
|
|
|
|
groups = def.groups,
|
|
|
|
|
|
|
|
after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|
|
|
pos.y = pos.y-1
|
|
|
|
after_dig_node(pos, name.."_b_1")
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if check_player_priv(pos, clicker) then
|
|
|
|
on_rightclick(pos, -1, name.."_b_1", name.."_t_2", name.."_b_2", {1,2,3,0})
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
can_dig = check_player_priv,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node(name.."_b_2", {
|
|
|
|
tiles = {tb[2], tb[2], tb[2], tb[2], tb[1].."^[transformfx", tb[1]},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
drop = name,
|
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = def.node_box_bottom
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = def.selection_box_bottom
|
|
|
|
},
|
|
|
|
groups = def.groups,
|
|
|
|
|
|
|
|
after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|
|
|
pos.y = pos.y+1
|
|
|
|
after_dig_node(pos, name.."_t_2")
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if check_player_priv(pos, clicker) then
|
|
|
|
on_rightclick(pos, 1, name.."_t_2", name.."_b_1", name.."_t_1", {3,0,1,2})
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
can_dig = check_player_priv,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node(name.."_t_2", {
|
|
|
|
tiles = {tt[2], tt[2], tt[2], tt[2], tt[1].."^[transformfx", tt[1]},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
drop = name,
|
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = def.node_box_top
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = def.selection_box_top
|
|
|
|
},
|
|
|
|
groups = def.groups,
|
|
|
|
|
|
|
|
after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|
|
|
pos.y = pos.y-1
|
|
|
|
after_dig_node(pos, name.."_b_2")
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if check_player_priv(pos, clicker) then
|
|
|
|
on_rightclick(pos, -1, name.."_b_2", name.."_t_1", name.."_b_1", {3,0,1,2})
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
can_dig = check_player_priv,
|
|
|
|
})
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
doors:register_door("doors:door_wood", {
|
|
|
|
description = "Wooden Door",
|
|
|
|
inventory_image = "door_wood.png",
|
|
|
|
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1},
|
|
|
|
tiles_bottom = {"door_wood_b.png", "door_brown.png"},
|
|
|
|
tiles_top = {"door_wood_a.png", "door_brown.png"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "doors:door_wood",
|
|
|
|
recipe = {
|
|
|
|
{"group:wood", "group:wood"},
|
|
|
|
{"group:wood", "group:wood"},
|
|
|
|
{"group:wood", "group:wood"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
doors:register_door("doors:door_steel", {
|
|
|
|
description = "Steel Door",
|
|
|
|
inventory_image = "door_steel.png",
|
|
|
|
groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1},
|
|
|
|
tiles_bottom = {"door_steel_b.png", "door_grey.png"},
|
|
|
|
tiles_top = {"door_steel_a.png", "door_grey.png"},
|
|
|
|
only_placer_can_open = true,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "doors:door_steel",
|
|
|
|
recipe = {
|
|
|
|
{"default:steel_ingot", "default:steel_ingot"},
|
|
|
|
{"default:steel_ingot", "default:steel_ingot"},
|
|
|
|
{"default:steel_ingot", "default:steel_ingot"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_alias("doors:door_wood_a_c", "doors:door_wood_t_1")
|
|
|
|
minetest.register_alias("doors:door_wood_a_o", "doors:door_wood_t_1")
|
|
|
|
minetest.register_alias("doors:door_wood_b_c", "doors:door_wood_b_1")
|
|
|
|
minetest.register_alias("doors:door_wood_b_o", "doors:door_wood_b_1")
|