mirror of
https://github.com/mt-mods/pipeworks.git
synced 2024-11-08 16:33:58 +01:00
129 lines
4.3 KiB
Lua
129 lines
4.3 KiB
Lua
local S = minetest.get_translator("pipeworks")
|
|
if pipeworks.enable_sand_tube then
|
|
pipeworks.register_tube("pipeworks:sand_tube", {
|
|
description = S("Vacuuming Pneumatic Tube Segment"),
|
|
inventory_image = "pipeworks_sand_tube_inv.png",
|
|
short = "pipeworks_sand_tube_short.png",
|
|
noctr = {"pipeworks_sand_tube_noctr.png"},
|
|
plain = {"pipeworks_sand_tube_plain.png"},
|
|
ends = {"pipeworks_sand_tube_end.png"},
|
|
node_def = {groups = {vacuum_tube = 1}},
|
|
})
|
|
|
|
minetest.register_craft( {
|
|
output = "pipeworks:sand_tube_1 2",
|
|
recipe = {
|
|
{"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"},
|
|
{"group:sand", "group:sand", "group:sand"},
|
|
{"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"}
|
|
},
|
|
})
|
|
|
|
minetest.register_craft( {
|
|
output = "pipeworks:sand_tube_1",
|
|
recipe = {
|
|
{"group:sand", "pipeworks:tube_1", "group:sand"},
|
|
},
|
|
})
|
|
end
|
|
|
|
if pipeworks.enable_mese_sand_tube then
|
|
pipeworks.register_tube("pipeworks:mese_sand_tube", {
|
|
description = S("Adjustable Vacuuming Pneumatic Tube Segment"),
|
|
inventory_image = "pipeworks_mese_sand_tube_inv.png",
|
|
short = "pipeworks_mese_sand_tube_short.png",
|
|
noctr = {"pipeworks_mese_sand_tube_noctr.png"},
|
|
plain = {"pipeworks_mese_sand_tube_plain.png"},
|
|
ends = {"pipeworks_mese_sand_tube_end.png"},
|
|
node_def = {
|
|
groups = {vacuum_tube = 1},
|
|
on_construct = function(pos)
|
|
local meta = minetest.get_meta(pos)
|
|
meta:set_int("dist", 0)
|
|
meta:set_string("formspec",
|
|
"size[6.0,2.2]"..
|
|
"image[0.2,0;1,1;pipeworks_mese_sand_tube_inv.png]"..
|
|
"label[1.2,0.2;"..S("Adjustable Vacuuming Tube").."]"..
|
|
"field[0.5,1.6;2.1,1;dist;"..S("Radius")..";${dist}]"..
|
|
"button[2.3,1.3;1.5,1;set_dist;"..S("Set").."]"..
|
|
"button_exit[3.8,1.3;2,1;close;"..S("Close").."]"..
|
|
default.gui_bg..
|
|
default.gui_bg_img)
|
|
meta:set_string("infotext", S("Adjustable Vacuuming Pneumatic Tube Segment"))
|
|
end,
|
|
on_receive_fields = function(pos,formname,fields,sender)
|
|
if (fields.quit and not fields.key_enter_field)
|
|
or (fields.key_enter_field ~= "dist" and not fields.set_dist)
|
|
or not pipeworks.may_configure(pos, sender) then
|
|
return
|
|
end
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
local dist = tonumber(fields.dist)
|
|
if dist then
|
|
dist = math.max(0, dist)
|
|
dist = math.min(8, dist)
|
|
meta:set_int("dist", dist)
|
|
meta:set_string("infotext", S("Adjustable Vacuuming Pneumatic Tube Segment (@1m)", dist))
|
|
end
|
|
end,
|
|
},
|
|
})
|
|
|
|
minetest.register_craft( {
|
|
output = "pipeworks:mese_sand_tube_1 2",
|
|
recipe = {
|
|
{"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
{"group:sand", "default:mese_crystal", "group:sand" },
|
|
{"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
|
|
},
|
|
})
|
|
|
|
minetest.register_craft( {
|
|
type = "shapeless",
|
|
output = "pipeworks:mese_sand_tube_1",
|
|
recipe = {
|
|
"pipeworks:sand_tube_1",
|
|
"default:mese_crystal_fragment",
|
|
"default:mese_crystal_fragment",
|
|
"default:mese_crystal_fragment",
|
|
"default:mese_crystal_fragment"
|
|
},
|
|
})
|
|
end
|
|
|
|
local function vacuum(pos, radius)
|
|
radius = radius + 0.5
|
|
for _, object in pairs(minetest.get_objects_inside_radius(pos, math.sqrt(3) * radius)) do
|
|
local lua_entity = object:get_luaentity()
|
|
if not object:is_player() and lua_entity and lua_entity.name == "__builtin:item" then
|
|
local obj_pos = object:get_pos()
|
|
local minpos = vector.subtract(pos, radius)
|
|
local maxpos = vector.add(pos, radius)
|
|
if obj_pos.x >= minpos.x and obj_pos.x <= maxpos.x
|
|
and obj_pos.y >= minpos.y and obj_pos.y <= maxpos.y
|
|
and obj_pos.z >= minpos.z and obj_pos.z <= maxpos.z then
|
|
if lua_entity.itemstring ~= "" then
|
|
pipeworks.tube_inject_item(pos, pos, vector.new(0, 0, 0), lua_entity.itemstring)
|
|
lua_entity.itemstring = ""
|
|
end
|
|
object:remove()
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
minetest.register_abm({nodenames = {"group:vacuum_tube"},
|
|
interval = 1,
|
|
chance = 1,
|
|
label = "Vacuum tubes",
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
if node.name:find("pipeworks:sand_tube") then
|
|
vacuum(pos, 2)
|
|
else
|
|
local radius = minetest.get_meta(pos):get_int("dist")
|
|
vacuum(pos, radius)
|
|
end
|
|
end
|
|
})
|