forked from mtcontrib/scifi_nodes
109 lines
3.4 KiB
Lua
109 lines
3.4 KiB
Lua
|
|
||
|
--chest code from default(Copyright (C) 2012 celeron55, Perttu Ahola <celeron55@gmail.com>)
|
||
|
|
||
|
local chest_formspec =
|
||
|
"size[8,9]" ..
|
||
|
default.gui_bg ..
|
||
|
default.gui_bg_img ..
|
||
|
default.gui_slots ..
|
||
|
"list[current_name;main;0,0.3;8,4;]" ..
|
||
|
"list[current_player;main;0,4.85;8,1;]" ..
|
||
|
"list[current_player;main;0,6.08;8,3;8]" ..
|
||
|
"listring[current_name;main]" ..
|
||
|
"listring[current_player;main]" ..
|
||
|
default.get_hotbar_bg(0,4.85)
|
||
|
|
||
|
|
||
|
|
||
|
-- Helper functions
|
||
|
|
||
|
local function drop_chest_stuff()
|
||
|
return function(pos, oldnode, oldmetadata, digger)
|
||
|
local meta = minetest.get_meta(pos)
|
||
|
meta:from_table(oldmetadata)
|
||
|
local inv = meta:get_inventory()
|
||
|
for i = 1, inv:get_size("main") do
|
||
|
local stack = inv:get_stack("main", i)
|
||
|
if not stack:is_empty() then
|
||
|
local p = {
|
||
|
x = pos.x + math.random(0, 5)/5 - 0.5,
|
||
|
y = pos.y,
|
||
|
z = pos.z + math.random(0, 5)/5 - 0.5}
|
||
|
minetest.add_item(p, stack)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
--chest code Copyright (C) 2011-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
|
||
|
minetest.register_node("scifi_nodes:crate", {
|
||
|
description = "Crate",
|
||
|
tiles = {"scifi_nodes_crate.png"},
|
||
|
paramtype2 = "facedir",
|
||
|
groups = {cracky = 1, oddly_breakable_by_hand = 2, fuel = 8},
|
||
|
legacy_facedir_simple = true,
|
||
|
is_ground_content = false,
|
||
|
sounds = default.node_sound_wood_defaults(),
|
||
|
|
||
|
after_dig_node = drop_chest_stuff(),
|
||
|
on_construct = function(pos)
|
||
|
local meta = minetest.get_meta(pos)
|
||
|
meta:set_string("formspec", chest_formspec)
|
||
|
meta:set_string("infotext", "Crate")
|
||
|
local inv = meta:get_inventory()
|
||
|
inv:set_size("main", 8 * 4)
|
||
|
end,
|
||
|
on_metadata_inventory_move = function(pos, from_list, from_index,
|
||
|
to_list, to_index, count, player)
|
||
|
minetest.log("action", player:get_player_name() ..
|
||
|
" moves stuff in chest at " .. minetest.pos_to_string(pos))
|
||
|
end,
|
||
|
on_metadata_inventory_put = function(pos, listname, index, stack, player)
|
||
|
minetest.log("action", player:get_player_name() ..
|
||
|
" moves stuff to chest at " .. minetest.pos_to_string(pos))
|
||
|
end,
|
||
|
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
||
|
minetest.log("action", player:get_player_name() ..
|
||
|
" takes stuff from chest at " .. minetest.pos_to_string(pos))
|
||
|
end,
|
||
|
})
|
||
|
|
||
|
minetest.register_node("scifi_nodes:box", {
|
||
|
description = "Storage box",
|
||
|
tiles = {
|
||
|
"scifi_nodes_box_top.png",
|
||
|
"scifi_nodes_box_top.png",
|
||
|
"scifi_nodes_box.png",
|
||
|
"scifi_nodes_box.png",
|
||
|
"scifi_nodes_box.png",
|
||
|
"scifi_nodes_box.png"
|
||
|
},
|
||
|
paramtype2 = "facedir",
|
||
|
groups = {cracky = 1},
|
||
|
legacy_facedir_simple = true,
|
||
|
is_ground_content = false,
|
||
|
sounds = default.node_sound_metal_defaults(),
|
||
|
|
||
|
after_dig_node = drop_chest_stuff(),
|
||
|
on_construct = function(pos)
|
||
|
local meta = minetest.get_meta(pos)
|
||
|
meta:set_string("formspec", chest_formspec)
|
||
|
meta:set_string("infotext", "Box")
|
||
|
local inv = meta:get_inventory()
|
||
|
inv:set_size("main", 8 * 4)
|
||
|
end,
|
||
|
on_metadata_inventory_move = function(pos, from_list, from_index,
|
||
|
to_list, to_index, count, player)
|
||
|
minetest.log("action", player:get_player_name() ..
|
||
|
" moves stuff in chest at " .. minetest.pos_to_string(pos))
|
||
|
end,
|
||
|
on_metadata_inventory_put = function(pos, listname, index, stack, player)
|
||
|
minetest.log("action", player:get_player_name() ..
|
||
|
" moves stuff to chest at " .. minetest.pos_to_string(pos))
|
||
|
end,
|
||
|
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
||
|
minetest.log("action", player:get_player_name() ..
|
||
|
" takes stuff from chest at " .. minetest.pos_to_string(pos))
|
||
|
end,
|
||
|
})
|
||
|
--end of chest code
|