2013-12-18 01:15:20 +01:00
|
|
|
|
|
|
|
technic.chests.groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2,
|
|
|
|
tubedevice=1, tubedevice_receiver=1}
|
|
|
|
technic.chests.groups_noinv = {snappy=2, choppy=2, oddly_breakable_by_hand=2,
|
|
|
|
tubedevice=1, tubedevice_receiver=1, not_in_creative_inventory=1}
|
|
|
|
|
|
|
|
technic.chests.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, front=1, back=1, top=1, bottom=1},
|
|
|
|
}
|
|
|
|
|
|
|
|
technic.chests.can_dig = function(pos, player)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
return inv:is_empty("main")
|
|
|
|
end
|
|
|
|
|
|
|
|
local function inv_change(pos, count, player)
|
|
|
|
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 locked chest belonging to "..
|
|
|
|
meta:get_string("owner").." at "..
|
|
|
|
minetest.pos_to_string(pos))
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return count
|
|
|
|
end
|
|
|
|
|
|
|
|
function technic.chests.inv_move(pos, from_list, from_index, to_list, to_index, count, player)
|
|
|
|
return inv_change(pos, count, player)
|
|
|
|
end
|
|
|
|
function technic.chests.inv_put(pos, listname, index, stack, player)
|
2013-12-18 23:10:25 +01:00
|
|
|
return inv_change(pos, stack:get_count(), player)
|
2013-12-18 01:15:20 +01:00
|
|
|
end
|
|
|
|
function technic.chests.inv_take(pos, listname, index, stack, player)
|
2013-12-18 23:10:25 +01:00
|
|
|
return inv_change(pos, stack:get_count(), player)
|
2013-12-18 01:15:20 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function technic.chests.on_inv_move(pos, from_list, from_index, to_list, to_index, count, player)
|
|
|
|
minetest.log("action", player:get_player_name()..
|
2014-04-26 22:12:10 +02:00
|
|
|
" moves stuff in chest at "
|
2013-12-18 01:15:20 +01:00
|
|
|
..minetest.pos_to_string(pos))
|
|
|
|
end
|
|
|
|
|
|
|
|
function technic.chests.on_inv_put(pos, listname, index, stack, player)
|
|
|
|
minetest.log("action", player:get_player_name()..
|
2014-04-26 22:12:10 +02:00
|
|
|
" puts stuff in to chest at "
|
2013-12-18 01:15:20 +01:00
|
|
|
..minetest.pos_to_string(pos))
|
|
|
|
end
|
|
|
|
|
|
|
|
function technic.chests.on_inv_take(pos, listname, index, stack, player)
|
|
|
|
minetest.log("action", player:get_player_name()..
|
2014-04-26 22:12:10 +02:00
|
|
|
" takes stuff from chest at "
|
2013-12-18 01:15:20 +01:00
|
|
|
..minetest.pos_to_string(pos))
|
|
|
|
end
|
|
|
|
|
2017-01-15 15:51:53 +01:00
|
|
|
local function has_locked_chest_privilege(meta, player)
|
|
|
|
if player then
|
|
|
|
if minetest.check_player_privs(player, "protection_bypass") then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
-- is player wielding the right key?
|
|
|
|
local item = player:get_wielded_item()
|
|
|
|
if item:get_name() == "default:key" then
|
|
|
|
local key_meta = minetest.parse_json(item:get_metadata())
|
|
|
|
local secret = meta:get_string("key_lock_secret")
|
|
|
|
if secret ~= key_meta.secret then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if player:get_player_name() ~= meta:get_string("owner") then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
2013-12-18 01:15:20 +01:00
|
|
|
end
|
|
|
|
|