mirror of
https://github.com/Sokomine/locks.git
synced 2024-11-05 06:43:50 +01:00
82 lines
3.0 KiB
Lua
82 lines
3.0 KiB
Lua
|
|
-- allow aborting with ESC in newer Versions of MT again
|
|
|
|
-- a sign
|
|
minetest.register_node("locks:shared_locked_sign_wall", {
|
|
description = "Shared locked sign",
|
|
drawtype = "signlike",
|
|
tiles = {"default_sign_wall.png"},
|
|
inventory_image = "default_sign_wall.png",
|
|
wield_image = "default_sign_wall.png",
|
|
paramtype = "light",
|
|
paramtype2 = "wallmounted",
|
|
sunlight_propagates = true,
|
|
walkable = false,
|
|
selection_box = {
|
|
type = "wallmounted",
|
|
--wall_top = <default>
|
|
--wall_bottom = <default>
|
|
--wall_side = <default>
|
|
},
|
|
groups = {choppy=2,dig_immediate=2},
|
|
legacy_wallmounted = true,
|
|
|
|
|
|
on_construct = function(pos)
|
|
local meta = minetest.env:get_meta(pos)
|
|
-- prepare the lock of the sign
|
|
locks:lock_init( pos,
|
|
"size[8,4]"..
|
|
"field[0.3,0.6;6,0.7;text;Text:;]"..
|
|
"field[0.3,3.6;6,0.7;locks_sent_lock_command;Locked sign. Type /help for help:;]"..
|
|
"button_exit[6.3,3.2;1.7,0.7;locks_sent_input;Proceed]" );
|
|
end,
|
|
|
|
after_place_node = function(pos, placer)
|
|
locks:lock_set_owner( pos, placer, "Shared locked sign" );
|
|
end,
|
|
|
|
|
|
can_dig = function(pos,player)
|
|
return locks:lock_allow_dig( pos, player );
|
|
end,
|
|
|
|
on_receive_fields = function(pos, formname, fields, sender)
|
|
|
|
-- abort if no input has been sent
|
|
if( fields.quit ) then
|
|
return;
|
|
end
|
|
|
|
-- if the user already has the right to use this and did input text
|
|
if( fields.text
|
|
and ( not(fields.locks_sent_lock_command)
|
|
or fields.locks_sent_lock_command=="")
|
|
and locks:lock_allow_use( pos, sender )) then
|
|
|
|
--print("Sign at "..minetest.pos_to_string(pos).." got "..dump(fields))
|
|
local meta = minetest.env:get_meta(pos)
|
|
fields.text = fields.text or "";
|
|
print((sender:get_player_name() or "").." wrote \""..fields.text..
|
|
"\" to sign at "..minetest.pos_to_string(pos));
|
|
meta:set_string("text", fields.text.." ["..sender:get_player_name().."]");
|
|
meta:set_string("infotext", '"'..fields.text..'"'.." ["..sender:get_player_name().."]");
|
|
|
|
-- a command for the lock?
|
|
else
|
|
locks:lock_handle_input( pos, formname, fields, sender );
|
|
end
|
|
|
|
end,
|
|
});
|
|
|
|
|
|
minetest.register_craft({
|
|
output = 'locks:shared_locked_sign_wall',
|
|
recipe = {
|
|
{ 'default:sign_wall', 'locks:lock', '' },
|
|
},
|
|
})
|
|
|
|
print( "[Mod] locks: loading locks:shared_locked_sign_wall");
|