2018-06-19 12:48:57 +00:00
|
|
|
|
2018-06-20 11:53:07 +00:00
|
|
|
-- How many seconds there are between runs
|
|
|
|
local HARVESTER_TICK = 10
|
|
|
|
|
|
|
|
-- How many plants we can collect in one run
|
|
|
|
local HARVESTER_SWEEP = 9
|
2018-06-19 12:48:57 +00:00
|
|
|
|
2018-06-21 08:09:01 +00:00
|
|
|
-- How much sludge is generated as a by-product
|
|
|
|
local SLUDGE_PRODUCED = 10
|
|
|
|
|
2018-06-19 12:48:57 +00:00
|
|
|
local function can_dig(pos, player)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
return inv:is_empty("dst")
|
|
|
|
end
|
|
|
|
|
|
|
|
local fdir_areas = {
|
|
|
|
{ -- NEG Z (0)
|
|
|
|
{x = -4, z = -8, y = 0},
|
|
|
|
{x = 4, z = 0, y = 0},
|
|
|
|
},
|
|
|
|
{ -- NEG X (1)
|
|
|
|
{x = -8, z = -4, y = 0},
|
|
|
|
{x = 0, z = 4, y = 0},
|
|
|
|
},
|
|
|
|
{ -- POS Z (2)
|
2018-06-19 14:21:32 +00:00
|
|
|
{x = -4, z = 0, y = 0},
|
|
|
|
{x = 4, z = 8, y = 0},
|
2018-06-19 12:48:57 +00:00
|
|
|
},
|
|
|
|
{ -- POS X (3)
|
2018-06-19 14:21:32 +00:00
|
|
|
{x = 0, z = -4, y = 0},
|
|
|
|
{x = 8, z = 4, y = 0},
|
2018-06-19 12:48:57 +00:00
|
|
|
},
|
|
|
|
nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
local function harvest(pos, harvested, fdir)
|
2018-06-19 14:21:32 +00:00
|
|
|
local front = ele.helpers.face_front(pos, fdir)
|
|
|
|
local ranges = fdir_areas[fdir + 1]
|
|
|
|
|
|
|
|
if not ranges then return nil end
|
|
|
|
|
2018-06-19 12:48:57 +00:00
|
|
|
local range_st = vector.add(front, ranges[1])
|
|
|
|
local range_end = vector.add(front, ranges[2])
|
|
|
|
|
2018-06-20 11:53:07 +00:00
|
|
|
local shots = HARVESTER_SWEEP
|
2018-06-19 12:48:57 +00:00
|
|
|
|
|
|
|
for x = range_st.x, range_end.x do
|
|
|
|
for z = range_st.z, range_end.z do
|
|
|
|
if shots == 0 then break end
|
|
|
|
local check_pos = {x = x, y = range_st.y, z = z}
|
|
|
|
local check_node = minetest.get_node_or_nil(check_pos)
|
|
|
|
if check_node and ele.helpers.get_item_group(check_node.name, "plant") then
|
|
|
|
local nodedef = minetest.registered_nodes[check_node.name]
|
2018-06-19 18:08:28 +00:00
|
|
|
if (not nodedef['next_plant'] or not minetest.registered_nodes[nodedef.next_plant])
|
|
|
|
and not ele.helpers.get_item_group(check_node.name, "growing") then
|
2018-06-19 12:48:57 +00:00
|
|
|
-- Can harvest
|
|
|
|
local drop = minetest.get_node_drops(check_node.name)
|
|
|
|
if drop then
|
|
|
|
for _,item in ipairs(drop) do
|
|
|
|
harvested[#harvested + 1] = item
|
|
|
|
end
|
|
|
|
minetest.remove_node(check_pos)
|
|
|
|
shots = shots - 1
|
|
|
|
end
|
|
|
|
end
|
2018-08-04 19:10:07 +00:00
|
|
|
elseif check_node and ele.helpers.get_item_group(check_node.name, "tree") then
|
|
|
|
local success = elefarm.tc.capitate_tree(vector.subtract(check_pos, {x=0,y=1,z=0}))
|
|
|
|
if success then
|
|
|
|
shots = 0
|
|
|
|
for _,i in pairs(success) do
|
|
|
|
harvested[#harvested + 1] = i
|
|
|
|
end
|
|
|
|
end
|
2018-06-19 12:48:57 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return harvested
|
|
|
|
end
|
|
|
|
|
2018-08-11 12:47:25 +00:00
|
|
|
local function get_formspec(timer, power, sludge, state)
|
2018-07-21 23:03:17 +00:00
|
|
|
return "size[8,8.5]"..
|
|
|
|
default.gui_bg..
|
|
|
|
default.gui_bg_img..
|
|
|
|
default.gui_slots..
|
2018-08-11 12:47:25 +00:00
|
|
|
ele.formspec.state_switcher(7, 2.5, state)..
|
2018-07-21 23:03:17 +00:00
|
|
|
ele.formspec.power_meter(power)..
|
|
|
|
ele.formspec.fluid_bar(7, 0, sludge)..
|
|
|
|
ele.formspec.create_bar(1, 0, 100 - timer, "#00ff11", true)..
|
|
|
|
"list[context;dst;1.5,0;5,3;]"..
|
|
|
|
"list[current_player;main;0,4.25;8,1;]"..
|
|
|
|
"list[current_player;main;0,5.5;8,3;8]"..
|
|
|
|
"listring[context;dst]"..
|
|
|
|
"listring[current_player;main]"..
|
|
|
|
default.get_hotbar_bg(0, 4.25)
|
|
|
|
end
|
|
|
|
|
2018-06-19 12:48:57 +00:00
|
|
|
local function on_timer(pos, elapsed)
|
|
|
|
local refresh = false
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
|
|
|
|
local capacity = ele.helpers.get_node_property(meta, pos, "capacity")
|
|
|
|
local usage = ele.helpers.get_node_property(meta, pos, "usage")
|
|
|
|
local storage = ele.helpers.get_node_property(meta, pos, "storage")
|
|
|
|
|
2018-06-21 08:09:01 +00:00
|
|
|
local work = meta:get_int("src_time")
|
|
|
|
local sludge = fluid_lib.get_buffer_data(pos, "sludge")
|
2018-06-19 12:48:57 +00:00
|
|
|
|
2018-08-11 12:47:25 +00:00
|
|
|
local state = meta:get_int("state")
|
|
|
|
local is_enabled = ele.helpers.state_enabled(meta, pos, state)
|
|
|
|
local active = "Idle"
|
|
|
|
|
2018-08-12 15:05:39 +00:00
|
|
|
local pow_buffer = {capacity = capacity, storage = storage, usage = 0}
|
2018-08-11 15:36:15 +00:00
|
|
|
|
2018-08-12 15:05:39 +00:00
|
|
|
if pow_buffer.storage > usage and sludge.amount + SLUDGE_PRODUCED < sludge.capacity and is_enabled then
|
2018-06-19 12:48:57 +00:00
|
|
|
if work == HARVESTER_TICK then
|
|
|
|
local harvested = {}
|
|
|
|
|
|
|
|
harvest(pos, harvested, node.param2)
|
|
|
|
|
|
|
|
work = 0
|
|
|
|
if #harvested > 0 then
|
2018-08-12 15:05:39 +00:00
|
|
|
pow_buffer.storage = pow_buffer.storage - usage
|
2018-06-21 08:09:01 +00:00
|
|
|
sludge.amount = sludge.amount + SLUDGE_PRODUCED
|
2018-06-19 12:48:57 +00:00
|
|
|
for _,itm in ipairs(harvested) do
|
|
|
|
local stack = ItemStack(itm)
|
|
|
|
if inv:room_for_item("dst", stack) then
|
|
|
|
inv:add_item("dst", stack)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
work = work + 1
|
|
|
|
end
|
|
|
|
|
2018-08-11 12:47:25 +00:00
|
|
|
active = "Active"
|
2018-06-19 12:48:57 +00:00
|
|
|
refresh = true
|
2018-08-12 15:05:39 +00:00
|
|
|
pow_buffer.usage = usage
|
2018-06-19 12:48:57 +00:00
|
|
|
ele.helpers.swap_node(pos, "elepower_farming:harvester_active")
|
|
|
|
else
|
2018-08-11 12:47:25 +00:00
|
|
|
if not is_enabled then
|
|
|
|
active = "Off"
|
|
|
|
end
|
|
|
|
|
2018-06-19 12:48:57 +00:00
|
|
|
ele.helpers.swap_node(pos, "elepower_farming:harvester")
|
|
|
|
end
|
|
|
|
|
|
|
|
local work_percent = math.floor((work / HARVESTER_TICK)*100)
|
|
|
|
|
2018-08-12 15:05:39 +00:00
|
|
|
meta:set_string("formspec", get_formspec(work_percent, pow_buffer, sludge, state))
|
2018-08-11 12:47:25 +00:00
|
|
|
meta:set_string("infotext", ("Harvester %s\n%s"):format(active,
|
|
|
|
ele.capacity_text(capacity, storage)))
|
|
|
|
|
2018-08-12 15:05:39 +00:00
|
|
|
meta:set_int("storage", pow_buffer.storage)
|
2018-06-19 12:48:57 +00:00
|
|
|
meta:set_int("src_time", work)
|
|
|
|
|
2018-06-21 08:09:01 +00:00
|
|
|
meta:set_string("sludge_fluid", "elepower_farming:sludge_source")
|
|
|
|
meta:set_int("sludge_fluid_storage", sludge.amount)
|
|
|
|
|
2018-06-19 12:48:57 +00:00
|
|
|
return refresh
|
|
|
|
end
|
|
|
|
|
|
|
|
ele.register_machine("elepower_farming:harvester", {
|
|
|
|
description = "Automatic Harvester",
|
|
|
|
ele_capacity = 12000,
|
|
|
|
ele_inrush = 288,
|
|
|
|
ele_usage = 128,
|
|
|
|
tiles = {
|
|
|
|
"elefarming_machine_base.png", "elefarming_machine_base.png", "elefarming_machine_side.png",
|
|
|
|
"elefarming_machine_side.png", "elefarming_machine_side.png", "elefarming_machine_harvester.png",
|
|
|
|
},
|
|
|
|
groups = {
|
|
|
|
oddly_breakable_by_hand = 1,
|
|
|
|
ele_machine = 1,
|
|
|
|
ele_user = 1,
|
|
|
|
cracky = 1,
|
2018-06-19 14:21:32 +00:00
|
|
|
tubedevice = 1,
|
2018-06-21 08:09:01 +00:00
|
|
|
fluid_container = 1,
|
|
|
|
},
|
|
|
|
fluid_buffers = {
|
|
|
|
sludge = {
|
|
|
|
capacity = 8000,
|
|
|
|
drainable = true,
|
|
|
|
}
|
2018-06-19 12:48:57 +00:00
|
|
|
},
|
|
|
|
on_construct = function (pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
inv:set_size("layout", 9)
|
2018-06-21 08:09:01 +00:00
|
|
|
inv:set_size("dst", 15)
|
2018-06-19 12:48:57 +00:00
|
|
|
|
|
|
|
meta:set_int("src_time", 0)
|
|
|
|
|
2018-08-06 09:53:00 +00:00
|
|
|
local capacity = ele.helpers.get_node_property(meta, pos, "capacity")
|
2018-08-07 19:47:59 +00:00
|
|
|
meta:set_string("formspec", get_formspec(0, {capacity = capacity, storage = 0, usage = 0}))
|
2018-06-19 12:48:57 +00:00
|
|
|
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
end,
|
|
|
|
ele_active_node = true,
|
|
|
|
ele_active_nodedef = {
|
|
|
|
tiles = {
|
|
|
|
"elefarming_machine_base.png", "elefarming_machine_base.png", "elefarming_machine_side.png",
|
|
|
|
"elefarming_machine_side.png", "elefarming_machine_side.png", {
|
|
|
|
name = "elefarming_machine_harvester_animated.png",
|
|
|
|
animation = {
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
type = "vertical_frames",
|
|
|
|
length = 0.25,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
can_dig = can_dig,
|
|
|
|
on_timer = on_timer,
|
|
|
|
})
|