2023-11-19 01:48:35 +01:00
|
|
|
local S = minetest.get_translator()
|
|
|
|
|
|
|
|
local formspec =
|
|
|
|
"size["..(exchangeclone.mcl and 9 or 8)..",9]"..
|
|
|
|
"label[2,1;"..S("Input").."]"..
|
|
|
|
"list[context;src;2,2;1,1;]"..
|
|
|
|
"label[5,1;"..S("Orb").."]"..
|
|
|
|
"list[context;fuel;5,2;1,1;]"..
|
|
|
|
exchangeclone.inventory_formspec(0,5)..
|
|
|
|
"listring[current_player;main]"..
|
|
|
|
"listring[context;src]"..
|
|
|
|
"listring[current_player;main]"..
|
|
|
|
"listring[context;fuel]"..
|
|
|
|
"listring[current_player;main]"..
|
|
|
|
"listring[context;dst]"
|
|
|
|
if exchangeclone.mcl then
|
|
|
|
formspec = formspec..
|
|
|
|
mcl_formspec.get_itemslot_bg(2,2,1,1)..
|
|
|
|
mcl_formspec.get_itemslot_bg(5,2,1,1)
|
2021-08-25 18:01:36 +02:00
|
|
|
end
|
|
|
|
|
2023-10-07 17:26:21 +02:00
|
|
|
minetest.register_alias("exchangeclone:element_deconstructor", "exchangeclone:deconstructor")
|
|
|
|
|
2023-11-19 01:48:35 +01:00
|
|
|
local function deconstructor_action(pos, elapsed)
|
2023-10-07 17:26:21 +02:00
|
|
|
local limit = exchangeclone.orb_max
|
|
|
|
local using_orb = true
|
|
|
|
local player
|
2021-08-25 18:01:36 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
2023-11-19 01:48:35 +01:00
|
|
|
|
2023-10-07 17:26:21 +02:00
|
|
|
if inv:get_stack("fuel", 1):get_name() ~= "exchangeclone:exchange_orb" then
|
2023-10-31 00:54:59 +01:00
|
|
|
limit = exchangeclone.limit
|
2023-10-07 17:26:21 +02:00
|
|
|
using_orb = false
|
|
|
|
player = minetest.get_player_by_name(meta:get_string("exchangeclone_placer"))
|
|
|
|
if not (player and player ~= "") then return end
|
|
|
|
end
|
2023-11-19 01:48:35 +01:00
|
|
|
|
2023-10-06 02:19:48 +02:00
|
|
|
local stack = inv:get_stack("src", 1)
|
|
|
|
local individual_energy_value = exchangeclone.get_item_energy(stack:get_name())
|
2023-11-13 02:30:16 +01:00
|
|
|
if not (individual_energy_value and individual_energy_value > 0) then return end
|
2023-10-06 02:19:48 +02:00
|
|
|
local wear = stack:get_wear()
|
2023-12-21 01:52:46 +01:00
|
|
|
if wear and wear > 0 then
|
2024-01-04 16:48:04 +01:00
|
|
|
individual_energy_value = math.max(math.floor(individual_energy_value * ((65536 - wear)/65536)), 1)
|
2023-10-06 02:19:48 +02:00
|
|
|
end
|
|
|
|
if stack:get_name() == "exchangeclone:exchange_orb" then
|
|
|
|
individual_energy_value = individual_energy_value + exchangeclone.get_orb_itemstack_energy(stack)
|
2021-08-25 18:01:36 +02:00
|
|
|
end
|
2023-11-19 01:48:35 +01:00
|
|
|
|
2023-10-07 17:26:21 +02:00
|
|
|
local current_energy
|
|
|
|
if using_orb then
|
|
|
|
current_energy = exchangeclone.get_orb_energy(inv, "fuel", 1)
|
|
|
|
else
|
|
|
|
current_energy = exchangeclone.get_player_energy(player)
|
|
|
|
end
|
|
|
|
local max_count = math.floor((limit - current_energy)/individual_energy_value)
|
2023-10-06 02:19:48 +02:00
|
|
|
local add_count = math.min(max_count, stack:get_count())
|
|
|
|
local energy_value = individual_energy_value * add_count
|
2023-10-07 17:26:21 +02:00
|
|
|
local result = current_energy + energy_value
|
|
|
|
if result < 0 or result > limit then return end
|
2023-11-19 01:48:35 +01:00
|
|
|
|
2023-10-07 17:26:21 +02:00
|
|
|
if using_orb then
|
|
|
|
exchangeclone.set_orb_energy(inv, "fuel", 1, result)
|
|
|
|
else
|
|
|
|
exchangeclone.set_player_energy(player, result)
|
|
|
|
end
|
2023-10-06 02:19:48 +02:00
|
|
|
stack:set_count(stack:get_count() - add_count)
|
|
|
|
if stack:get_count() == 0 then stack = ItemStack("") end
|
|
|
|
inv:set_stack("src", 1, stack)
|
2023-11-19 01:48:35 +01:00
|
|
|
|
|
|
|
local timer = minetest.get_node_timer(pos)
|
|
|
|
if inv:get_stack("src", 1):is_empty() then
|
|
|
|
timer:stop()
|
|
|
|
else
|
|
|
|
if not timer:is_started() then
|
|
|
|
timer:start(1) -- keep trying to deconstruct if there are items in the src stack
|
|
|
|
end
|
|
|
|
end
|
2021-08-25 18:01:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function on_construct(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
2023-10-06 02:19:48 +02:00
|
|
|
inv:set_size("src", 1)
|
|
|
|
inv:set_size("fuel", 1)
|
2023-11-19 01:48:35 +01:00
|
|
|
meta:set_string("formspec", formspec)
|
|
|
|
meta:set_string("infotext", S("Deconstructor"))
|
2023-10-06 02:19:48 +02:00
|
|
|
deconstructor_action(pos, 0)
|
2021-08-25 18:01:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
2023-11-20 18:17:17 +01:00
|
|
|
if player and player.get_player_name and minetest.is_protected(pos, player:get_player_name()) then
|
2021-08-25 18:40:33 +02:00
|
|
|
return 0
|
|
|
|
end
|
2023-10-06 02:19:48 +02:00
|
|
|
if listname == "fuel" then
|
2023-03-25 18:27:13 +01:00
|
|
|
if stack:get_name() == "exchangeclone:exchange_orb" then
|
2021-08-25 18:01:36 +02:00
|
|
|
return stack:get_count()
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
2023-10-06 02:19:48 +02:00
|
|
|
elseif listname == "src" then
|
2021-08-25 18:01:36 +02:00
|
|
|
return stack:get_count()
|
2023-10-06 02:19:48 +02:00
|
|
|
else
|
|
|
|
return 0
|
2021-08-25 18:01:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player)
|
2021-08-25 18:40:33 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
local stack = inv:get_stack(from_list, from_index)
|
|
|
|
return allow_metadata_inventory_put(pos, to_list, to_index, stack, player)
|
2021-08-25 18:01:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
|
2021-08-25 18:40:33 +02:00
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return stack:get_count()
|
2021-08-25 18:01:36 +02:00
|
|
|
end
|
|
|
|
|
2023-12-25 16:57:42 +01:00
|
|
|
local pipeworks_connect = exchangeclone.pipeworks and "^pipeworks_tube_connection_metallic.png" or ""
|
2021-08-25 18:01:36 +02:00
|
|
|
|
2023-10-06 02:19:48 +02:00
|
|
|
minetest.register_node("exchangeclone:deconstructor", {
|
2023-11-19 01:48:35 +01:00
|
|
|
description = S("Deconstructor"),
|
2021-12-30 18:51:45 +01:00
|
|
|
tiles = {
|
2023-12-25 16:57:42 +01:00
|
|
|
"exchangeclone_deconstructor_up.png"..pipeworks_connect,
|
|
|
|
"exchangeclone_deconstructor_down.png"..pipeworks_connect,
|
|
|
|
"exchangeclone_deconstructor_right.png"..pipeworks_connect,
|
|
|
|
"exchangeclone_deconstructor_right.png"..pipeworks_connect,
|
|
|
|
"exchangeclone_deconstructor_right.png"..pipeworks_connect,
|
|
|
|
"exchangeclone_deconstructor_right.png"..pipeworks_connect,
|
2021-12-30 18:51:45 +01:00
|
|
|
},
|
2023-12-25 16:57:42 +01:00
|
|
|
groups = {cracky = 2, container = exchangeclone.mcl2 and 2 or 4, pickaxey = 2, tubedevice = 1, tubedevice_receiver = 1},
|
2023-05-26 18:55:55 +02:00
|
|
|
_mcl_hardness = 3,
|
|
|
|
_mcl_blast_resistance = 6,
|
2023-09-25 16:41:23 +02:00
|
|
|
sounds = exchangeclone.sound_mod.node_sound_metal_defaults(),
|
2021-08-25 18:40:33 +02:00
|
|
|
is_ground_content = false,
|
2023-12-25 16:57:42 +01:00
|
|
|
can_dig = exchangeclone.can_dig,
|
|
|
|
after_dig_node = exchangeclone.drop_after_dig({"src", "fuel"}),
|
2023-10-07 17:26:21 +02:00
|
|
|
after_place_node = function(pos, player, itemstack, pointed_thing)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("exchangeclone_placer", player:get_player_name())
|
2023-11-20 18:17:17 +01:00
|
|
|
if exchangeclone.pipeworks then
|
|
|
|
pipeworks.after_place(pos, player, itemstack, pointed_thing)
|
|
|
|
end
|
2023-10-07 17:26:21 +02:00
|
|
|
end,
|
2021-08-25 18:40:33 +02:00
|
|
|
on_construct = on_construct,
|
2023-10-06 02:19:48 +02:00
|
|
|
on_metadata_inventory_move = deconstructor_action,
|
|
|
|
on_metadata_inventory_put = deconstructor_action,
|
2023-10-07 17:26:21 +02:00
|
|
|
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
|
|
|
deconstructor_action(pos)
|
|
|
|
end,
|
2023-12-25 16:57:42 +01:00
|
|
|
on_blast = exchangeclone.on_blast({"src", "fuel"}),
|
2021-08-25 18:01:36 +02:00
|
|
|
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
|
|
|
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
|
|
|
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
2023-12-25 16:57:42 +01:00
|
|
|
on_timer = deconstructor_action,
|
|
|
|
_mcl_hoppers_on_try_push = exchangeclone.mcl2_hoppers_on_try_push(nil, function(stack) return stack:get_name() == "exchangeclone:exchange_orb" end),
|
2023-12-21 01:52:46 +01:00
|
|
|
_mcl_hoppers_on_after_push = function(pos)
|
|
|
|
minetest.get_node_timer(pos):start(1.0)
|
|
|
|
end,
|
2023-12-25 16:57:42 +01:00
|
|
|
_on_hopper_in = exchangeclone.mcla_on_hopper_in(
|
|
|
|
nil,
|
|
|
|
function(stack) return stack:get_name() == "exchangeclone:exchange_orb" end
|
|
|
|
),
|
2021-08-25 18:01:36 +02:00
|
|
|
})
|
2021-08-26 16:10:40 +02:00
|
|
|
|
2023-11-20 18:17:17 +01:00
|
|
|
if exchangeclone.pipeworks then
|
|
|
|
local function get_list(direction)
|
|
|
|
return (direction.y == 0 and "src") or "fuel"
|
|
|
|
end
|
|
|
|
minetest.override_item("exchangeclone:deconstructor", {
|
|
|
|
tube = {
|
2023-12-25 16:57:42 +01:00
|
|
|
input_inventory = "src",
|
2023-11-20 18:17:17 +01:00
|
|
|
connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1},
|
|
|
|
insert_object = function(pos, node, stack, direction)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
local result = inv:add_item(get_list(direction), stack)
|
|
|
|
if result then
|
|
|
|
deconstructor_action(pos)
|
|
|
|
end
|
|
|
|
return result
|
|
|
|
end,
|
|
|
|
can_insert = function(pos, node, stack, direction)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
if get_list(direction) == "fuel" then
|
|
|
|
if stack:get_name() == "exchangeclone:exchange_orb" then
|
|
|
|
return inv:room_for_item("fuel", stack)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
return inv:room_for_item("src", stack)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
on_rotate = pipeworks.on_rotate,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2023-03-25 18:27:13 +01:00
|
|
|
local recipe_ingredient = "default:furnace"
|
|
|
|
|
2023-09-29 01:23:49 +02:00
|
|
|
if exchangeclone.mcl then
|
2023-03-25 18:27:13 +01:00
|
|
|
recipe_ingredient = "mcl_furnaces:furnace"
|
|
|
|
end
|
|
|
|
|
2021-08-26 16:10:40 +02:00
|
|
|
minetest.register_craft({
|
2023-10-06 02:19:48 +02:00
|
|
|
output = "exchangeclone:deconstructor",
|
2021-08-26 16:10:40 +02:00
|
|
|
recipe = {
|
2023-11-10 23:43:10 +01:00
|
|
|
{"exchangeclone:exchange_orb"},
|
|
|
|
{recipe_ingredient},
|
|
|
|
{"exchangeclone:exchange_orb"}
|
2021-08-26 16:10:40 +02:00
|
|
|
}
|
2023-10-06 02:19:48 +02:00
|
|
|
})
|