mirror of
https://github.com/minetest-mods/more_chests.git
synced 2025-06-29 22:00:33 +02:00
Version MFF.
This commit is contained in:
41
shared.lua
Normal file → Executable file
41
shared.lua
Normal file → Executable file
@ -15,6 +15,8 @@ local function get_formspec(string)
|
||||
return "size[8,10]"..
|
||||
"list[current_name;main;0,0;8,4;]"..
|
||||
"list[current_player;main;0,5;8,4;]"..
|
||||
"listring[current_name;main]" ..
|
||||
"listring[current_player;main]"..
|
||||
"field[.25,9.5;6,1;shared;Shared with (separate names with spaces):;"..string.."]"..
|
||||
"button[6,9;2,1;submit;submit]"
|
||||
end
|
||||
@ -24,32 +26,17 @@ minetest.register_node("more_chests:shared", {
|
||||
tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
||||
"default_chest_side.png", "default_chest_side.png", "shared_front.png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, tubedevice = 1, tubedevice_receiver = 1},
|
||||
-- Pipeworks
|
||||
tube = {
|
||||
insert_object = function(pos, node, stack, direction)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
return inv:add_item("main", stack)
|
||||
end,
|
||||
can_insert = function(pos, node, stack, direction)
|
||||
local meta = minetest.get_meta(pos)
|
||||
local inv = meta:get_inventory()
|
||||
return inv:room_for_item("main", stack)
|
||||
end,
|
||||
input_inventory = "main",
|
||||
connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1}
|
||||
},
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
||||
legacy_facedir_simple = true,
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
after_place_node = function(pos, placer)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("owner", placer:get_player_name() or "")
|
||||
meta:set_string("infotext", "Shared Chest (owned by "..
|
||||
meta:get_string("owner")..")")
|
||||
end,
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("formspec", get_formspec(""))
|
||||
meta:set_string("infotext", "Shared Chest")
|
||||
meta:set_string("owner", "")
|
||||
@ -57,12 +44,12 @@ minetest.register_node("more_chests:shared", {
|
||||
inv:set_size("main", 8*4)
|
||||
end,
|
||||
can_dig = function(pos,player)
|
||||
local meta = minetest.env:get_meta(pos);
|
||||
local meta = minetest.get_meta(pos);
|
||||
local inv = meta:get_inventory()
|
||||
return inv:is_empty("main")
|
||||
end,
|
||||
allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
if not has_locked_chest_privilege(meta, player) then
|
||||
minetest.log("action", player:get_player_name()..
|
||||
" tried to access a shared chest belonging to "..
|
||||
@ -73,7 +60,7 @@ minetest.register_node("more_chests:shared", {
|
||||
return count
|
||||
end,
|
||||
allow_metadata_inventory_put = function(pos, listname, index, stack, player)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
if not has_locked_chest_privilege(meta, player) then
|
||||
minetest.log("action", player:get_player_name()..
|
||||
" tried to access a shared chest belonging to "..
|
||||
@ -84,7 +71,7 @@ minetest.register_node("more_chests:shared", {
|
||||
return stack:get_count()
|
||||
end,
|
||||
allow_metadata_inventory_take = function(pos, listname, index, stack, player)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
if not has_locked_chest_privilege(meta, player) then
|
||||
minetest.log("action", player:get_player_name()..
|
||||
" tried to access a shared chest belonging to "..
|
||||
@ -107,8 +94,8 @@ minetest.register_node("more_chests:shared", {
|
||||
" takes stuff from shared chest at "..minetest.pos_to_string(pos))
|
||||
end,
|
||||
on_receive_fields = function(pos, formspec, fields, sender)
|
||||
local meta = minetest.env:get_meta(pos);
|
||||
if fields.shared then
|
||||
local meta = minetest.get_meta(pos);
|
||||
if fields.shared then
|
||||
if meta:get_string("owner") == sender:get_player_name() then
|
||||
meta:set_string("shared", fields.shared);
|
||||
meta:set_string("formspec", get_formspec(fields.shared))
|
||||
@ -120,9 +107,9 @@ minetest.register_node("more_chests:shared", {
|
||||
minetest.register_craft({
|
||||
output = 'more_chests:shared',
|
||||
recipe = {
|
||||
{'default:wood','default:leaves','default:wood'},
|
||||
{'default:wood','default:steel_ingot','default:wood'},
|
||||
{'default:wood','default:wood','default:wood'}
|
||||
{'group:wood','group:leaves','group:wood'},
|
||||
{'group:wood','group:ingot','group:wood'},
|
||||
{'group:wood','group:wood','group:wood'}
|
||||
}
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user