1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
-- Dumpster nodes
-- by Mossmanikin
-- License: WTFPL
--Custom Sounds
function default.node_sound_metal_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name="default_hard_footstep", gain=0.4}
table.dig = table.dig or
{name="metal_bang", gain=0.6}
table.dug = table.dug or
{name="default_dug_node", gain=1.0}
default.node_sound_defaults(table)
return table
end
--Nodeboxes(some are unused)
local cube = {-0.5 , -0.5 , -0.5 , 0.5 , 0.5 , 0.5 }
local selectah = {-0.4375, -0.5 , -0.9375, 1.4375, 0.75 , 0.4375}
local container = {
{-0.4375, -0.5 , -0.9375, 1.4375, 0.75 , 0.4375},
{-0.5 , 0.75 , -1.0 , 1.5 , 0.875 , 0.5 },
}
local container2 = { -- the one on Container.png
{-0.4375, -0.4375, -0.9375, -0.375 , 0.625 , 0.4375},
{ 1.375 , -0.4375, -0.9375, 1.4375, 0.625 , 0.4375},
{-0.4375, -0.4375, -0.9375, 1.4375, 0.625 , -0.875 },
{-0.4375, -0.4375, 0.375 , 1.4375, 0.625 , 0.4375},
{-0.375 , -0.5 , -0.875 , 1.375 , -0.4375, 0.375 },
{-0.5 , 0.625 , -1.0 , -0.375 , 0.75 , 0.5 },
{ 1.375 , 0.625 , -1.0 , 1.5 , 0.75 , 0.5 },
{-0.5 , 0.625 , -1.0 , 1.5 , 0.75 , -0.875 },
{-0.5 , 0.625 , 0.375 , 1.5 , 0.75 , 0.5 },
}
local container3 = {
-- Top
{-0.4375, 1.125 , 0.1875, 1.4375, 1.1875, 0.4375},
{-0.4375, 1.0625, 0.0 , 1.4375, 1.125 , 0.4375},
{-0.4375, 1.0 , -0.1875, 1.4375, 1.0625, 0.4375},
{-0.4375, 0.9375, -0.375 , 1.4375, 1.0 , 0.4375},
{-0.4375, 0.875 , -0.5625, 1.4375, 0.9375, 0.4375},
{-0.4375, 0.8125, -0.75 , 1.4375, 0.875 , 0.4375},
{-0.4375, 0.75 , -0.9375, 1.4375, 0.8125, 0.4375},
-- Border
{-0.5 , 0.625 , -1.0 , 1.5 , 0.75 , 0.5 },
-- Main Body
{-0.4375, -0.4375, -0.9375, 1.4375, 0.625 , 0.4375},
-- Grip
{-0.5 , 0.0 , -1.0 , -0.25 , 0.25 , 0.5 },
{ 1.25 , 0.0 , -1.0 , 1.5 , 0.25 , 0.5 },
-- Feet
{-0.4375, -0.5 , -0.9375, -0.1875, -0.4375, -0.6875},
{ 1.1875, -0.5 , -0.9375, 1.4375, -0.4375, -0.6875},
{-0.4375, -0.5 , 0.1875, -0.1875, -0.4375, 0.4375},
{ 1.1875, -0.5 , 0.1875, 1.4375, -0.4375, 0.4375},
}
local container4 = { -- the one on Dumpster.png
-- Top
{-0.4375, 0.75 , -0.9375, 1.4375, 0.875 , 0.4375},
-- Border
{-0.5 , 0.625 , -1.0 , 1.5 , 0.75 , 0.5 },
-- Main Body
{-0.4375, -0.4375, -0.9375, 1.4375, 0.625 , 0.4375},
-- Feet
{-0.4375, -0.5 , -0.9375, -0.1875, -0.4375, -0.6875},
{ 1.1875, -0.5 , -0.9375, 1.4375, -0.4375, -0.6875},
{-0.4375, -0.5 , 0.1875, -0.1875, -0.4375, 0.4375},
{ 1.1875, -0.5 , 0.1875, 1.4375, -0.4375, 0.4375},
}
--Node Registration
minetest.register_node("trash_can:dumpster", {
description = "Dumpster",
paramtype = "light",
paramtype2 = "facedir",
tiles = {
"dumpster_top.png",
"dumpster_bottom.png",
"dumpster_side.png",
"dumpster_side.png",
"dumpster_side.png",
"dumpster_side.png"
},
drawtype = "nodebox",
selection_box = {
type = "fixed",
fixed = selectah,
},
node_box = {
type = "fixed",
fixed = container4,
},
groups = {
cracky = 3,
oddly_breakable_by_hand = 1,
},
sounds = default.node_sound_metal_defaults(),
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;1,1;6,3;]"..
"list[current_player;main;0,5;8,4;]")
meta:set_string("infotext", "Dumpster")
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 dumpster 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 dumpster 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 dumpster 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=player_name, gain = 2.0})
end
end,
})
--Crafting
minetest.register_craft({
output = 'trash_can:dumpster',
recipe = {
{'default:coalblock', 'default:coalblock', 'default:coalblock'},
{'default:steel_ingot', 'dye:dark_green', 'default:steel_ingot'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
}
})
|