trash_can-cd2025/init.lua
4Evergreen4 f942d765b4 Cleanup
2016-01-11 17:06:14 -05:00

94 lines
2.8 KiB
Lua

-- Include dumpster
dofile(minetest.get_modpath("trash_can").."/dumpster.lua")
--
-- Node Registration
--
-- Normal Trash Can
minetest.register_node("trash_can:trash_can_wooden",{
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3},
tiles = {"trash_can_wooden_top.png", "trash_can_wooden_top.png", "trash_can_wooden.png"},
description = "Wooden Trash Can",
drawtype="nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.375000,-0.500000,0.312500,0.375000,0.500000,0.375000},
{0.312500,-0.500000,-0.375000,0.375000,0.500000,0.375000},
{-0.375000,-0.500000,-0.375000,0.375000,0.500000,-0.312500},
{-0.375000,-0.500000,-0.375000,-0.312500,0.500000,0.375000},
{-0.312500,-0.500000,-0.312500,0.312500,-0.437500,0.312500},
}
},
on_construct = function(pos)
local meta = minetest.env:get_meta(pos)
meta:set_string("formspec",
"size[8,9]"..
"button[0,0;2,1;empty;Empty Trash]"..
"list[current_name;main;3,1;2,3;]"..
"list[current_player;main;0,5;8,4;]"
)
meta:set_string("infotext", "Trash Can")
local inv = meta:get_inventory()
inv:set_size("main", 8*4)
end,
can_dig = function(pos,player)
local meta = minetest.env:get_meta(pos);
local inv = meta:get_inventory()
return inv:is_empty("main")
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 trash can 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 trash can 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 trash can at "..minetest.pos_to_string(pos))
end,
on_receive_fields = function(pos, formname, fields, sender)
if fields.empty then
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
for i = 1, inv:get_size("main") do
inv:set_stack("main", i, nil)
end
minetest.sound_play("trash", {to_player=sender:get_player_name(), gain = 1.0})
end
end,
})
--
-- Crafting
--
-- Normal Trash Can
minetest.register_craft({
output = 'trash_can:trash_can_wooden',
recipe = {
{'group:wood', '', 'group:wood'},
{'group:wood', '', 'group:wood'},
{'group:wood', 'group:wood', 'group:wood'},
}
})
--
-- Misc
--
-- Remove any items thrown in trash can.
local old_on_step = minetest.registered_entities["__builtin:item"].on_step
minetest.registered_entities["__builtin:item"].on_step = function(self, dtime)
if minetest.get_node(self.object:getpos()).name == "trash_can:trash_can_wooden" then
self.object:remove()
return
end
old_on_step(self, dtime)
end