first commit
This commit is contained in:
commit
2440235a74
5
README.md
Normal file
5
README.md
Normal file
@ -0,0 +1,5 @@
|
||||
This is a fork of thexyz's mod xDoors2.
|
||||
Only the player who placed the door may open, close and dig it up.
|
||||
In theory. Hasn't been tested on multiplayer so far.
|
||||
|
||||
Take the textures from the xdoor2-mod.
|
1
depends.txt
Normal file
1
depends.txt
Normal file
@ -0,0 +1 @@
|
||||
default
|
226
init.lua
Normal file
226
init.lua
Normal file
@ -0,0 +1,226 @@
|
||||
-- xDoors² mod by xyz
|
||||
-- modified by Sokomine to allow locked doors that can only be opened/closed/dig up by the player who placed them
|
||||
|
||||
-- remove default doors (or left/right version) and drop new doors
|
||||
local REMOVE_OTHER_DOORS = false
|
||||
|
||||
local door_bottom = {-0.5, -0.5, -0.5, 0.5, 0.5, -0.4}
|
||||
local door_top = {
|
||||
{-0.5, -0.5, -0.5, -0.3, 0.5, -0.4},
|
||||
{0.3, -0.5, -0.5, 0.5, 0.5, -0.4},
|
||||
{-0.3, 0.3, -0.5, 0.3, 0.5, -0.4},
|
||||
{-0.3, -0.5, -0.5, 0.3, -0.4, -0.4},
|
||||
{-0.05, -0.4, -0.5, 0.05, 0.3, -0.4},
|
||||
{-0.3, -0.1, -0.5, -0.05, 0, -0.4},
|
||||
{0.05, -0.1, -0.5, 0.3, 0, -0.4}
|
||||
}
|
||||
|
||||
local is_top = function(name)
|
||||
return name:sub(20, 20) == "t"
|
||||
end
|
||||
|
||||
local function is_door_owner( pos, player )
|
||||
|
||||
local meta = minetest.env:get_meta(pos);
|
||||
-- doors who lost their owner can be opened/digged by anyone
|
||||
if( meta == nil or meta:get_string("owner") == nil or meta:get_string("owner") == "") then
|
||||
return true;
|
||||
end
|
||||
|
||||
if( player:get_player_name() ~= meta:get_string("owner")) then
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
-- has to be called for both parts of the door (upper and lower)
|
||||
local function set_door_owner( pos, name )
|
||||
|
||||
-- lower part of the door
|
||||
local meta = minetest.env:get_meta( pos );
|
||||
if( meta == nil ) then
|
||||
minetest.chat_send_player(name, "Error: Can not set owner of this door.");
|
||||
end
|
||||
|
||||
meta:set_string("owner", name or "");
|
||||
meta:set_string("infotext", "Locked door (owned by "..
|
||||
meta:get_string("owner")..")");
|
||||
end
|
||||
|
||||
|
||||
|
||||
local xdoors2_transform = function(pos, node, puncher)
|
||||
|
||||
if( not( is_door_owner( pos, puncher ))) then
|
||||
minetest.chat_send_player( puncher:get_player_name(), "This door is locked. It can only be opened by its owner.");
|
||||
return;
|
||||
end
|
||||
|
||||
if is_top(node.name) then
|
||||
pos = {x = pos.x, y = pos.y - 1, z = pos.z}
|
||||
end
|
||||
local t = 3 - node.name:sub(-1)
|
||||
local p2 = 0
|
||||
if t == 2 then
|
||||
p2 = (node.param2 + 1) % 4
|
||||
else
|
||||
p2 = (node.param2 + 3) % 4
|
||||
end
|
||||
minetest.env:add_node(pos, {name = "xdoors2locked:door_bottom_"..t, param2 = p2})
|
||||
minetest.env:add_node({x = pos.x, y = pos.y + 1, z = pos.z}, {name = "xdoors2locked:door_top_"..t, param2 = p2})
|
||||
|
||||
owner_name = puncher:get_player_name();
|
||||
-- remember who owns the door
|
||||
set_door_owner( pos, owner_name);
|
||||
set_door_owner( {x = pos.x, y = pos.y + 1, z = pos.z}, owner_name);
|
||||
end
|
||||
|
||||
|
||||
local xdoors2_destruct = function(pos, oldnode)
|
||||
if is_top(oldnode.name) then
|
||||
pos = {x = pos.x, y = pos.y - 1, z = pos.z}
|
||||
end
|
||||
minetest.env:remove_node(pos)
|
||||
minetest.env:remove_node({x = pos.x, y = pos.y + 1, z = pos.z})
|
||||
end
|
||||
|
||||
for i = 1, 2 do
|
||||
minetest.register_node("xdoors2locked:door_top_"..i, {
|
||||
tile_images = {"xdoors2_side.png", "xdoors2_side.png", "xdoors2_top.png", "xdoors2_bottom.png", "xdoors2_top_"..(3 - i)..".png", "xdoors2_top_"..i..".png"},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
drawtype = "nodebox",
|
||||
drop = "xdoors2locked:door",
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = door_top
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = door_bottom
|
||||
},
|
||||
on_punch = xdoors2_transform,
|
||||
after_dig_node = xdoors2_destruct,
|
||||
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
meta:set_string("infotext", "Locked door")
|
||||
meta:set_string("owner", "")
|
||||
end,
|
||||
|
||||
can_dig = function(pos,player)
|
||||
return is_door_owner( pos, player );
|
||||
end
|
||||
})
|
||||
minetest.register_node("xdoors2locked:door_bottom_"..i, {
|
||||
tile_images = {"xdoors2_side.png", "xdoors2_side.png", "xdoors2_top.png", "xdoors2_bottom.png", "xdoors2_bottom_"..(3 - i)..".png", "xdoors2_bottom_"..i..".png"},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
drawtype = "nodebox",
|
||||
drop = "xdoors2locked:door",
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = door_bottom
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = door_bottom
|
||||
},
|
||||
on_punch = xdoors2_transform,
|
||||
after_dig_node = xdoors2_destruct,
|
||||
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
meta:set_string("infotext", "Locked door")
|
||||
meta:set_string("owner", "")
|
||||
end,
|
||||
|
||||
can_dig = function(pos,player)
|
||||
return is_door_owner( pos, player );
|
||||
end
|
||||
})
|
||||
end
|
||||
|
||||
local delta = {
|
||||
{x = -1, z = 0},
|
||||
{x = 0, z = 1},
|
||||
{x = 1, z = 0},
|
||||
{x = 0, z = -1}
|
||||
}
|
||||
|
||||
minetest.register_node("xdoors2locked:door", {
|
||||
description = "Wooden Door",
|
||||
node_placement_prediction = "",
|
||||
inventory_image = 'xdoors2_door.png',
|
||||
wield_image = 'xdoors2_door.png',
|
||||
stack_max = 1,
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
local above = pointed_thing.above
|
||||
|
||||
-- there should be 2 empty nodes
|
||||
if minetest.env:get_node({x = above.x, y = above.y + 1, z = above.z}).name ~= "air" then
|
||||
return itemstack
|
||||
end
|
||||
|
||||
local fdir = 0
|
||||
local placer_pos = placer:getpos()
|
||||
if placer_pos then
|
||||
dir = {
|
||||
x = above.x - placer_pos.x,
|
||||
y = above.y - placer_pos.y,
|
||||
z = above.z - placer_pos.z
|
||||
}
|
||||
fdir = minetest.dir_to_facedir(dir)
|
||||
end
|
||||
|
||||
local t = 1
|
||||
local another_door = minetest.env:get_node({x = above.x + delta[fdir + 1].x, y = above.y, z = above.z + delta[fdir + 1].z})
|
||||
if (another_door.name:sub(-1) == "1" and another_door.param2 == fdir)
|
||||
or (another_door.name:sub(-1) == "2" and another_door.param2 == (fdir + 1) % 4) then
|
||||
t = 2
|
||||
end
|
||||
|
||||
minetest.env:add_node(above, {name = "xdoors2locked:door_bottom_"..t, param2 = fdir})
|
||||
minetest.env:add_node({x = above.x, y = above.y + 1, z = above.z}, {name = "xdoors2locked:door_top_"..t, param2 = fdir})
|
||||
|
||||
-- store who owns the door
|
||||
set_door_owner( above, placer:get_player_name() or "");
|
||||
set_door_owner( {x = above.x, y = above.y + 1, z = above.z}, placer:get_player_name() or "");
|
||||
|
||||
return ItemStack("")
|
||||
end
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'xdoors2locked:door',
|
||||
recipe = {
|
||||
{ 'default:wood', 'default:wood', '' },
|
||||
{ 'default:wood', 'default:wood', '' },
|
||||
{ 'default:wood', 'default:wood', '' },
|
||||
},
|
||||
})
|
||||
|
||||
if REMOVE_OTHER_DOORS then
|
||||
minetest.register_abm({
|
||||
nodenames = {"doors:door_wood_a_c", "doors:door_wood_b_c", "doors:door_wood_a_o", "doors:door_wood_b_o",
|
||||
"doors:door_wood_right_a_c", "doors:door_wood_right_b_c", "doors:door_wood_right_a_o", "doors:door_wood_right_b_o",
|
||||
"doors:door_wood_left_a_c", "doors:door_wood_left_b_c", "doors:door_wood_left_a_o", "doors:door_wood_left_b_o",
|
||||
"xdoors:door_1_1", "xdoors:door_1_2", "xdoors:door_2_1", "xdoors:door_2_2",
|
||||
"xdoors:door_3_1", "xdoors:door_3_2", "xdoors:door_4_1", "xdoors:door_4_2"},
|
||||
interval = 0.1,
|
||||
chance = 1,
|
||||
action = function(pos, node)
|
||||
minetest.env:remove_node(pos)
|
||||
if node.name:find("_b") ~= nil or node.name:find("xdoors:door") ~= nil then
|
||||
minetest.env:add_item(pos, "xdoors2locked:door")
|
||||
end
|
||||
end
|
||||
})
|
||||
minetest.register_alias("doors:door_wood_right", "xdoors2locked:door")
|
||||
minetest.register_alias("doors:door_wood_left", "xdoors2locked:door")
|
||||
minetest.register_alias("doors:door_wood", "xdoors2locked:door")
|
||||
end
|
Loading…
x
Reference in New Issue
Block a user