2016-02-16 21:52:05 +01:00
|
|
|
|
|
|
|
-- formspec
|
2015-09-17 15:38:52 +02:00
|
|
|
local function get_hopper_formspec(pos)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-09-17 15:38:52 +02:00
|
|
|
local spos = pos.x .. "," .. pos.y .. "," ..pos.z
|
|
|
|
local formspec =
|
|
|
|
"size[8,9]"
|
|
|
|
.. default.gui_bg
|
|
|
|
.. default.gui_bg_img
|
|
|
|
.. default.gui_slots
|
|
|
|
.. "list[nodemeta:" .. spos .. ";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[nodemeta:" .. spos .. ";main]"
|
|
|
|
.. "listring[current_player;main]"
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-09-17 15:38:52 +02:00
|
|
|
return formspec
|
|
|
|
end
|
|
|
|
|
2015-06-12 11:42:11 +02:00
|
|
|
-- hopper
|
|
|
|
minetest.register_node("hopper:hopper", {
|
|
|
|
description = "Hopper",
|
2015-11-04 11:23:14 +01:00
|
|
|
groups = {cracky = 3},
|
2015-06-12 11:42:11 +02:00
|
|
|
drawtype = "nodebox",
|
|
|
|
paramtype = "light",
|
2015-11-04 11:35:08 +01:00
|
|
|
tiles = {"hopper_top.png", "hopper_top.png", "hopper_front.png"},
|
|
|
|
inventory_image = "hopper_inv.png",
|
2015-06-12 11:42:11 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
--funnel walls
|
|
|
|
{-0.5, 0.0, 0.4, 0.5, 0.5, 0.5},
|
|
|
|
{0.4, 0.0, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
{-0.5, 0.0, -0.5, -0.4, 0.5, 0.5},
|
|
|
|
{-0.5, 0.0, -0.5, 0.5, 0.5, -0.4},
|
|
|
|
--funnel base
|
|
|
|
{-0.5, 0.0, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
--spout
|
|
|
|
{-0.3, -0.3, -0.3, 0.3, 0.0, 0.3},
|
|
|
|
{-0.15, -0.3, -0.15, 0.15, -0.5, 0.15},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
on_construct = function(pos)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
inv:set_size("main", 4*4)
|
2015-06-12 11:42:11 +02:00
|
|
|
end,
|
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
can_dig = function(pos, player)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
|
2015-06-12 11:42:11 +02:00
|
|
|
return inv:is_empty("main")
|
|
|
|
end,
|
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
on_rightclick = function(pos, node, clicker, itemstack)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-11-25 11:27:32 +01:00
|
|
|
if minetest.is_protected(pos, clicker:get_player_name()) then
|
|
|
|
return
|
|
|
|
end
|
2016-05-18 21:04:15 +02:00
|
|
|
|
|
|
|
minetest.show_formspec(clicker:get_player_name(),
|
|
|
|
"hopper:hopper", get_hopper_formspec(pos))
|
2015-09-17 12:11:01 +02:00
|
|
|
end,
|
|
|
|
|
2015-06-12 11:42:11 +02:00
|
|
|
on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
minetest.log("action", player:get_player_name()
|
|
|
|
.." moves stuff in hopper at "
|
|
|
|
..minetest.pos_to_string(pos))
|
2015-06-12 11:42:11 +02:00
|
|
|
end,
|
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
on_metadata_inventory_put = function(pos, listname, index, stack, player)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
minetest.log("action", player:get_player_name()
|
|
|
|
.." moves stuff to hopper at "
|
|
|
|
..minetest.pos_to_string(pos))
|
2015-06-12 11:42:11 +02:00
|
|
|
end,
|
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
minetest.log("action", player:get_player_name()
|
|
|
|
.." takes stuff from hopper at "
|
|
|
|
..minetest.pos_to_string(pos))
|
2015-06-12 11:42:11 +02:00
|
|
|
end,
|
2015-10-31 12:22:25 +01:00
|
|
|
|
|
|
|
on_rotate = screwdriver.disallow,
|
2015-06-12 11:42:11 +02:00
|
|
|
})
|
|
|
|
|
2015-11-04 11:23:14 +01:00
|
|
|
-- side hopper
|
2015-06-12 11:42:11 +02:00
|
|
|
minetest.register_node("hopper:hopper_side", {
|
|
|
|
description = "Side Hopper",
|
2015-11-04 11:23:14 +01:00
|
|
|
groups = {cracky = 3},
|
2015-06-12 11:42:11 +02:00
|
|
|
drawtype = "nodebox",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
2016-03-28 12:10:02 +02:00
|
|
|
tiles = {
|
|
|
|
"hopper_top.png", "hopper_top.png", "hopper_back.png",
|
|
|
|
"hopper_side.png", "hopper_back.png", "hopper_back.png"
|
|
|
|
},
|
2015-11-04 11:35:08 +01:00
|
|
|
inventory_image = "hopper_side_inv.png",
|
2015-06-12 11:42:11 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
--funnel walls
|
|
|
|
{-0.5, 0.0, 0.4, 0.5, 0.5, 0.5},
|
|
|
|
{0.4, 0.0, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
{-0.5, 0.0, -0.5, -0.4, 0.5, 0.5},
|
|
|
|
{-0.5, 0.0, -0.5, 0.5, 0.5, -0.4},
|
|
|
|
--funnel base
|
|
|
|
{-0.5, 0.0, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
--spout
|
|
|
|
{-0.3, -0.3, -0.3, 0.3, 0.0, 0.3},
|
|
|
|
{-0.7, -0.3, -0.15, 0.15, 0.0, 0.15},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
on_construct = function(pos)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
inv:set_size("main", 4*4)
|
2015-06-12 11:42:11 +02:00
|
|
|
end,
|
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
can_dig = function(pos, player)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
|
2015-06-12 11:42:11 +02:00
|
|
|
return inv:is_empty("main")
|
|
|
|
end,
|
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
on_rightclick = function(pos, node, clicker, itemstack)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-11-25 11:27:32 +01:00
|
|
|
if minetest.is_protected(pos, clicker:get_player_name()) then
|
|
|
|
return
|
|
|
|
end
|
2016-05-18 21:04:15 +02:00
|
|
|
|
|
|
|
minetest.show_formspec(clicker:get_player_name(),
|
|
|
|
"hopper:hopper_side", get_hopper_formspec(pos))
|
2015-09-17 12:11:01 +02:00
|
|
|
end,
|
|
|
|
|
2015-06-12 11:42:11 +02:00
|
|
|
on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
minetest.log("action", player:get_player_name()
|
|
|
|
.." moves stuff in hopper at "
|
|
|
|
..minetest.pos_to_string(pos))
|
2015-06-12 11:42:11 +02:00
|
|
|
end,
|
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
on_metadata_inventory_put = function(pos, listname, index, stack, player)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
minetest.log("action", player:get_player_name()
|
|
|
|
.." moves stuff to hopper at "
|
|
|
|
..minetest.pos_to_string(pos))
|
2015-06-12 11:42:11 +02:00
|
|
|
end,
|
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
2016-05-18 21:04:15 +02:00
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
minetest.log("action", player:get_player_name()
|
|
|
|
.." takes stuff from hopper at "
|
|
|
|
..minetest.pos_to_string(pos))
|
2015-06-12 11:42:11 +02:00
|
|
|
end,
|
2015-10-31 12:22:25 +01:00
|
|
|
|
|
|
|
on_rotate = screwdriver.rotate_simple,
|
2015-06-12 11:42:11 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- suck in items on top of hopper
|
|
|
|
minetest.register_abm({
|
2015-11-04 11:23:14 +01:00
|
|
|
|
2016-08-19 20:30:01 +02:00
|
|
|
label = "Hopper suction",
|
2015-09-17 12:11:01 +02:00
|
|
|
nodenames = {"hopper:hopper", "hopper:hopper_side"},
|
2015-06-12 11:42:11 +02:00
|
|
|
interval = 1.0,
|
|
|
|
chance = 1,
|
2015-11-07 21:48:49 +01:00
|
|
|
catch_up = false,
|
2015-11-04 11:23:14 +01:00
|
|
|
|
|
|
|
action = function(pos, node)
|
|
|
|
|
2016-05-18 21:04:15 +02:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
2015-06-12 11:42:11 +02:00
|
|
|
local posob
|
|
|
|
|
2016-02-16 21:52:05 +01:00
|
|
|
for _,object in pairs(minetest.get_objects_inside_radius(pos, 1)) do
|
2015-11-04 11:23:14 +01:00
|
|
|
|
2015-09-17 12:11:01 +02:00
|
|
|
if not object:is_player()
|
|
|
|
and object:get_luaentity()
|
2015-11-04 11:23:14 +01:00
|
|
|
and object:get_luaentity().name == "__builtin:item"
|
|
|
|
and inv
|
2016-05-18 21:04:15 +02:00
|
|
|
and inv:room_for_item("main",
|
|
|
|
ItemStack(object:get_luaentity().itemstring)) then
|
2015-11-04 11:23:14 +01:00
|
|
|
|
|
|
|
posob = object:getpos()
|
|
|
|
|
|
|
|
if math.abs(posob.x - pos.x) <= 0.5
|
|
|
|
and posob.y - pos.y <= 0.85
|
|
|
|
and posob.y - pos.y >= 0.3 then
|
|
|
|
|
2016-05-18 21:04:15 +02:00
|
|
|
inv:add_item("main",
|
|
|
|
ItemStack(object:get_luaentity().itemstring))
|
|
|
|
|
2015-11-04 11:23:14 +01:00
|
|
|
object:get_luaentity().itemstring = ""
|
|
|
|
object:remove()
|
2015-06-12 11:42:11 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- transfer function
|
2016-03-28 12:10:02 +02:00
|
|
|
local transfer = function(src, srcpos, dst, dstpos, name)
|
2015-06-12 11:42:11 +02:00
|
|
|
|
|
|
|
-- source inventory
|
2016-05-18 21:04:15 +02:00
|
|
|
local inv = minetest.get_meta(srcpos):get_inventory()
|
2015-06-12 11:42:11 +02:00
|
|
|
|
|
|
|
-- destination inventory
|
2016-05-18 21:04:15 +02:00
|
|
|
local inv2 = minetest.get_meta(dstpos):get_inventory()
|
2016-06-01 14:11:51 +02:00
|
|
|
|
|
|
|
-- check for empty source or no inventory
|
|
|
|
if not inv or not inv2 or inv:is_empty(src) == true then
|
|
|
|
return
|
|
|
|
end
|
2015-06-12 11:42:11 +02:00
|
|
|
|
|
|
|
local stack, item
|
|
|
|
|
|
|
|
-- transfer item
|
2016-06-01 14:11:51 +02:00
|
|
|
for i = 1, inv:get_size(src) do
|
2015-06-12 11:42:11 +02:00
|
|
|
|
|
|
|
stack = inv:get_stack(src, i)
|
|
|
|
item = stack:get_name()
|
|
|
|
|
|
|
|
-- if slot not empty
|
|
|
|
if item ~= "" then
|
|
|
|
|
|
|
|
-- room in destination?
|
|
|
|
if inv2:room_for_item(dst, item) == false then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- is item a tool
|
2015-11-04 11:23:14 +01:00
|
|
|
if stack:get_wear() > 0 then
|
|
|
|
inv2:add_item(dst, stack:take_item(stack:get_count()))
|
2015-06-12 11:42:11 +02:00
|
|
|
inv:set_stack(src, i, nil)
|
2015-11-04 11:23:14 +01:00
|
|
|
else -- not a tool
|
2015-06-12 11:42:11 +02:00
|
|
|
stack:take_item(1)
|
|
|
|
inv2:add_item(dst, item)
|
|
|
|
inv:set_stack(src, i, stack)
|
|
|
|
end
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
-- hopper workings
|
2015-06-12 11:42:11 +02:00
|
|
|
minetest.register_abm({
|
2015-11-04 11:23:14 +01:00
|
|
|
|
2016-08-19 20:30:01 +02:00
|
|
|
label = "Hopper transfer",
|
2016-03-28 12:10:02 +02:00
|
|
|
nodenames = {"hopper:hopper", "hopper:hopper_side"},
|
2015-06-12 11:42:11 +02:00
|
|
|
neighbors = {
|
2016-03-28 12:10:02 +02:00
|
|
|
"default:chest","default:chest_locked","protector:chest",
|
|
|
|
"hopper:hopper","hopper:hopper_side","default:furnace",
|
2015-11-25 11:43:42 +01:00
|
|
|
"default:furnace_active", "wine:wine_barrel"
|
2015-06-12 11:42:11 +02:00
|
|
|
},
|
|
|
|
interval = 1.0,
|
|
|
|
chance = 1,
|
2015-11-07 21:48:49 +01:00
|
|
|
catch_up = false,
|
2015-11-04 11:23:14 +01:00
|
|
|
|
|
|
|
action = function(pos, node)
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
local front = {}
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
-- if side hopper check which way it's facing
|
|
|
|
if node.name == "hopper:hopper_side" then
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
local face = minetest.get_node(pos).param2
|
2015-11-04 11:23:14 +01:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
if face == 0 then
|
|
|
|
front = {x = pos.x - 1, y = pos.y, z = pos.z}
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
elseif face == 1 then
|
|
|
|
front = {x = pos.x, y = pos.y, z = pos.z + 1}
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
elseif face == 2 then
|
|
|
|
front = {x = pos.x + 1, y = pos.y, z = pos.z}
|
2015-11-04 11:23:14 +01:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
elseif face == 3 then
|
|
|
|
front = {x = pos.x, y = pos.y, z = pos.z - 1}
|
|
|
|
else
|
|
|
|
return
|
|
|
|
end
|
2015-10-31 15:20:35 +01:00
|
|
|
else
|
2016-03-28 12:10:02 +02:00
|
|
|
-- otherwise normal hopper, output downwards
|
|
|
|
front = {x = pos.x, y = pos.y - 1, z = pos.z}
|
2015-06-12 11:42:11 +02:00
|
|
|
end
|
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
-- what is above hopper and on other end of funnel
|
|
|
|
local a = minetest.get_node({x = pos.x, y = pos.y + 1, z = pos.z}).name
|
|
|
|
local b = minetest.get_node(front).name
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
-- funnel input
|
2015-06-12 11:42:11 +02:00
|
|
|
|
|
|
|
if a == "default:chest"
|
|
|
|
or a == "default:chest_locked"
|
|
|
|
or a == "protector:chest"
|
|
|
|
or a == "hopper:hopper"
|
|
|
|
or a == "hopper:hopper_side" then
|
|
|
|
|
2015-11-04 11:23:14 +01:00
|
|
|
transfer("main", {
|
|
|
|
x = pos.x,
|
|
|
|
y = pos.y + 1,
|
|
|
|
z = pos.z
|
|
|
|
}, "main", pos)
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2015-11-04 11:23:14 +01:00
|
|
|
elseif a == "default:furnace"
|
2015-11-25 11:43:42 +01:00
|
|
|
or a == "default:furnace_active"
|
|
|
|
or a == "wine:wine_barrel" then
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2015-11-04 11:23:14 +01:00
|
|
|
transfer("dst", {
|
|
|
|
x = pos.x,
|
|
|
|
y = pos.y + 1,
|
|
|
|
z = pos.z
|
|
|
|
}, "main", pos)
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
-- re-start furnace timer
|
|
|
|
if a == "default:furnace"
|
|
|
|
or a == "default:furnace_active" then
|
|
|
|
|
|
|
|
minetest.get_node_timer({
|
|
|
|
x = pos.x,
|
|
|
|
y = pos.y + 1,
|
|
|
|
z = pos.z
|
|
|
|
}):start(1.0)
|
|
|
|
end
|
|
|
|
|
2015-06-12 11:42:11 +02:00
|
|
|
end
|
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
-- spout output
|
2015-06-12 11:42:11 +02:00
|
|
|
|
|
|
|
if b == "default:chest"
|
|
|
|
or b == "default:chest_locked"
|
2015-06-16 11:08:18 +02:00
|
|
|
or b == "protector:chest"
|
|
|
|
or b == "hopper:hopper"
|
|
|
|
or b == "hopper:hopper_side" then
|
2015-06-12 11:42:11 +02:00
|
|
|
|
|
|
|
transfer("main", pos, "main", front)
|
|
|
|
|
2015-11-04 11:23:14 +01:00
|
|
|
elseif b == "default:furnace"
|
|
|
|
or b == "default:furnace_active" then
|
2015-06-12 11:42:11 +02:00
|
|
|
|
2016-03-28 12:10:02 +02:00
|
|
|
if node.name == "hopper:hopper" then
|
|
|
|
-- hopper above to furnace source below
|
|
|
|
transfer("main", pos, "src", front)
|
|
|
|
else
|
|
|
|
-- hopper to furnace fuel beside
|
|
|
|
transfer("main", pos, "fuel", front)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- re-start furnace timer
|
|
|
|
minetest.get_node_timer(pos):start(1.0)
|
2015-11-25 11:43:42 +01:00
|
|
|
|
|
|
|
elseif b == "wine:wine_barrel" then
|
|
|
|
|
|
|
|
-- hopper to wine source beside
|
|
|
|
transfer("main", pos, "src", front)
|
2015-06-12 11:42:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- hopper recipe
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "hopper:hopper",
|
|
|
|
recipe = {
|
|
|
|
{"default:steel_ingot", "default:chest", "default:steel_ingot"},
|
|
|
|
{"", "default:steel_ingot", ""},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2015-11-04 11:23:14 +01:00
|
|
|
-- hopper to side hopper recipe
|
2015-06-12 11:42:11 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "hopper:hopper",
|
|
|
|
recipe = {
|
|
|
|
{"hopper:hopper_side"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2015-11-04 11:23:14 +01:00
|
|
|
-- side hopper back to hopper recipe
|
2015-06-12 11:42:11 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "hopper:hopper_side",
|
|
|
|
recipe = {
|
|
|
|
{"hopper:hopper"},
|
|
|
|
},
|
|
|
|
})
|
2016-02-16 21:52:05 +01:00
|
|
|
|
2016-11-12 12:00:09 +01:00
|
|
|
-- add lucky blocks
|
|
|
|
|
|
|
|
-- Hopper mod
|
|
|
|
if minetest.get_modpath("lucky_block") then
|
|
|
|
|
|
|
|
lucky_block:add_blocks({
|
|
|
|
{"dro", {"hopper:hopper"}, 3},
|
|
|
|
{"nod", "default:lava_source", 1},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2016-02-16 21:52:05 +01:00
|
|
|
print ("[MOD] Hopper loaded")
|