2013-10-04 17:56:03 +02:00
|
|
|
local autocrafterCache = {} -- caches some recipe data to avoid to call the slow function minetest.get_craft_result() every second
|
2013-01-19 15:37:27 +01:00
|
|
|
|
2015-01-27 05:27:36 +01:00
|
|
|
local craft_time = 1
|
|
|
|
|
2015-01-26 21:27:47 +01:00
|
|
|
local function count_index(invlist)
|
|
|
|
local index = {}
|
2015-01-27 03:45:38 +01:00
|
|
|
for _, stack in pairs(invlist) do
|
|
|
|
if not stack:is_empty() then
|
|
|
|
local stack_name = stack:get_name()
|
|
|
|
index[stack_name] = (index[stack_name] or 0) + stack:get_count()
|
|
|
|
end
|
2013-10-30 08:33:09 +01:00
|
|
|
end
|
2015-01-26 21:27:47 +01:00
|
|
|
return index
|
2013-10-30 08:33:09 +01:00
|
|
|
end
|
|
|
|
|
2015-01-27 20:19:48 +01:00
|
|
|
local function set_infotext(pos, text)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("infotext", text or "unconfigured Autocrafter")
|
|
|
|
end
|
|
|
|
|
2015-01-27 03:45:38 +01:00
|
|
|
local function get_craft(pos, inventory, hash)
|
|
|
|
local hash = hash or minetest.hash_node_position(pos)
|
|
|
|
local craft = autocrafterCache[hash]
|
|
|
|
if not craft then
|
|
|
|
local recipe = inventory:get_list("recipe")
|
|
|
|
local output, decremented_input = minetest.get_craft_result({method = "normal", width = 3, items = recipe})
|
|
|
|
craft = {recipe = recipe, consumption=count_index(recipe), output = output, decremented_input = decremented_input}
|
|
|
|
autocrafterCache[hash] = craft
|
|
|
|
end
|
2015-01-28 06:23:46 +01:00
|
|
|
return craft
|
2015-01-26 18:34:05 +01:00
|
|
|
end
|
|
|
|
|
2015-01-27 21:55:19 +01:00
|
|
|
local function start_crafter(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
if meta:get_int("enabled") == 1 then
|
|
|
|
local timer = minetest.get_node_timer(pos)
|
|
|
|
if not timer:is_started() then
|
|
|
|
timer:start(craft_time)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-26 21:27:47 +01:00
|
|
|
-- note, that this function assumes allready being updated to virtual items
|
|
|
|
-- and doesn't handle recipes with stacksizes > 1
|
2015-01-28 00:27:17 +01:00
|
|
|
local function after_recipe_change(pos, inventory)
|
2015-01-27 03:45:38 +01:00
|
|
|
-- if we emptied the grid, there's no point in keeping it running or cached
|
|
|
|
if inventory:is_empty("recipe") then
|
|
|
|
minetest.get_node_timer(pos):stop()
|
|
|
|
autocrafterCache[minetest.hash_node_position(pos)] = nil
|
2015-01-27 20:19:48 +01:00
|
|
|
set_infotext(pos, nil)
|
2015-01-27 03:45:38 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
local recipe_changed = false
|
2013-10-04 17:03:27 +02:00
|
|
|
local recipe = inventory:get_list("recipe")
|
2013-10-04 16:41:23 +02:00
|
|
|
|
2015-01-27 03:45:38 +01:00
|
|
|
local hash = minetest.hash_node_position(pos)
|
|
|
|
local craft = autocrafterCache[hash]
|
2015-01-26 21:27:47 +01:00
|
|
|
|
2015-01-27 03:45:38 +01:00
|
|
|
if craft then
|
2015-01-26 21:27:47 +01:00
|
|
|
-- check if it changed
|
2015-01-27 03:45:38 +01:00
|
|
|
local cached_recipe = craft.recipe
|
2013-10-30 08:33:09 +01:00
|
|
|
for i = 1, 9 do
|
2015-01-26 21:27:47 +01:00
|
|
|
if recipe[i]:get_name() ~= cached_recipe[i]:get_name() then
|
2015-01-27 03:45:38 +01:00
|
|
|
autocrafterCache[hash] = nil -- invalidate recipe
|
|
|
|
craft = nil
|
2013-10-30 08:33:09 +01:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-10-04 16:41:23 +02:00
|
|
|
|
2015-01-28 06:23:46 +01:00
|
|
|
craft = craft or get_craft(pos, inventory, hash)
|
|
|
|
local output_item = craft.output.item
|
|
|
|
set_infotext(pos, "Autocrafter: " .. output_item:get_name())
|
|
|
|
inventory:set_stack("output", 1, output_item)
|
|
|
|
|
2015-01-27 21:55:19 +01:00
|
|
|
start_crafter(pos)
|
2013-01-19 15:37:27 +01:00
|
|
|
end
|
|
|
|
|
2015-01-28 00:27:17 +01:00
|
|
|
local function after_inventory_change(pos, inventory)
|
2015-01-27 21:55:19 +01:00
|
|
|
start_crafter(pos)
|
2015-01-26 21:27:47 +01:00
|
|
|
end
|
|
|
|
|
2015-01-26 22:04:56 +01:00
|
|
|
local function autocraft(inventory, craft)
|
2015-01-27 03:45:38 +01:00
|
|
|
if not craft then return false end
|
2015-01-26 21:27:47 +01:00
|
|
|
local output_item = craft.output.item
|
2015-01-27 03:45:38 +01:00
|
|
|
|
2015-01-26 22:04:56 +01:00
|
|
|
-- check if we have enough room in dst
|
|
|
|
if not inventory:room_for_item("dst", output_item) then return false end
|
2015-01-26 21:34:32 +01:00
|
|
|
local consumption = craft.consumption
|
2015-01-26 21:27:47 +01:00
|
|
|
local inv_index = count_index(inventory:get_list("src"))
|
2015-01-27 03:45:38 +01:00
|
|
|
-- check if we have enough material available
|
2015-01-26 21:27:47 +01:00
|
|
|
for itemname, number in pairs(consumption) do
|
2015-01-26 22:04:56 +01:00
|
|
|
if (not inv_index[itemname]) or inv_index[itemname] < number then return false end
|
2015-01-26 21:27:47 +01:00
|
|
|
end
|
2015-01-27 03:45:38 +01:00
|
|
|
-- consume material
|
2015-01-26 21:27:47 +01:00
|
|
|
for itemname, number in pairs(consumption) do
|
|
|
|
for i = 1, number do -- We have to do that since remove_item does not work if count > stack_max
|
|
|
|
inventory:remove_item("src", ItemStack(itemname))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- craft the result into the dst inventory and add any "replacements" as well
|
|
|
|
inventory:add_item("dst", output_item)
|
|
|
|
for i = 1, 9 do
|
|
|
|
inventory:add_item("dst", craft.decremented_input.items[i])
|
2014-11-02 09:35:43 +01:00
|
|
|
end
|
2015-01-26 22:04:56 +01:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2015-01-27 03:45:38 +01:00
|
|
|
-- returns false to stop the timer, true to continue running
|
|
|
|
-- is started only from start_autocrafter(pos) after sanity checks and cached recipe
|
|
|
|
local function run_autocrafter(pos, elapsed)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inventory = meta:get_inventory()
|
|
|
|
local craft = get_craft(pos, inventory)
|
2015-01-27 05:27:36 +01:00
|
|
|
|
2015-01-28 06:23:46 +01:00
|
|
|
-- only use crafts that have an actual result
|
|
|
|
if craft.output.item:is_empty() then
|
|
|
|
set_infotext(pos, "Autocrafter: unknown recipe")
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2015-01-27 05:27:36 +01:00
|
|
|
for step = 1, math.floor(elapsed/craft_time) do
|
|
|
|
local continue = autocraft(inventory, craft)
|
|
|
|
if not continue then return false end
|
|
|
|
end
|
|
|
|
return true
|
2015-01-27 03:45:38 +01:00
|
|
|
end
|
2015-01-26 22:04:56 +01:00
|
|
|
|
2015-01-27 03:45:38 +01:00
|
|
|
local function update_autocrafter(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
if meta:get_string("virtual_items") == "" then
|
|
|
|
meta:set_string("virtual_items", "1")
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
for idx, stack in ipairs(inv:get_list("recipe")) do
|
|
|
|
minetest.item_drop(stack, "", pos)
|
|
|
|
stack:set_count(1)
|
|
|
|
stack:set_wear(0)
|
|
|
|
inv:set_stack("recipe", idx, stack)
|
|
|
|
end
|
2015-01-28 00:27:17 +01:00
|
|
|
after_recipe_change(pos, inv)
|
2015-01-26 22:04:56 +01:00
|
|
|
end
|
2014-11-02 09:35:43 +01:00
|
|
|
end
|
|
|
|
|
2015-01-27 21:55:19 +01:00
|
|
|
local function set_formspec(meta, enabled)
|
|
|
|
local state = enabled and "on" or "off"
|
|
|
|
meta:set_string("formspec",
|
|
|
|
"size[8,11]"..
|
|
|
|
"list[context;recipe;0,0;3,3;]"..
|
2015-01-28 06:23:46 +01:00
|
|
|
"image[3,1;1,1;gui_hb_bg.png^[colorize:#141318:255]"..
|
|
|
|
"list[context;output;3,1;1,1;]"..
|
2015-01-27 21:55:19 +01:00
|
|
|
"image_button[3,2;1,1;pipeworks_button_" .. state .. ".png;" .. state .. ";;;false;pipeworks_button_interm.png]" ..
|
|
|
|
"list[context;src;0,3.5;8,3;]"..
|
|
|
|
"list[context;dst;4,0;4,3;]"..
|
2015-01-28 01:36:13 +01:00
|
|
|
default.gui_bg..
|
|
|
|
default.gui_bg_img..
|
|
|
|
default.gui_slots..
|
|
|
|
default.get_hotbar_bg(0,7) ..
|
2015-01-27 21:55:19 +01:00
|
|
|
"list[current_player;main;0,7;8,4;]")
|
|
|
|
end
|
|
|
|
|
2015-01-28 00:33:07 +01:00
|
|
|
local function add_virtual_item(inv, listname, index, stack)
|
|
|
|
local stack_copy = ItemStack(stack)
|
|
|
|
stack_copy:set_count(1)
|
|
|
|
inv:set_stack(listname, index, stack_copy)
|
|
|
|
end
|
|
|
|
|
2015-01-28 06:23:46 +01:00
|
|
|
local function on_output_change(pos, inventory, stack)
|
|
|
|
if not stack then
|
|
|
|
inventory:set_list("output", {})
|
|
|
|
inventory:set_list("recipe", {})
|
|
|
|
else
|
|
|
|
local input = minetest.get_craft_recipe(stack:get_name())
|
|
|
|
if not input.items or input.type ~= "normal" then return end
|
|
|
|
inventory:set_list("recipe", input.items)
|
|
|
|
add_virtual_item(inventory, "output", 1, stack)
|
|
|
|
end
|
|
|
|
after_recipe_change(pos, inventory)
|
|
|
|
end
|
|
|
|
|
2013-10-04 17:03:27 +02:00
|
|
|
minetest.register_node("pipeworks:autocrafter", {
|
|
|
|
description = "Autocrafter",
|
|
|
|
drawtype = "normal",
|
|
|
|
tiles = {"pipeworks_autocrafter.png"},
|
|
|
|
groups = {snappy = 3, tubedevice = 1, tubedevice_receiver = 1},
|
|
|
|
tube = {insert_object = function(pos, node, stack, direction)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
2015-01-27 03:45:38 +01:00
|
|
|
local added = inv:add_item("src", stack)
|
2015-01-28 00:27:17 +01:00
|
|
|
after_inventory_change(pos, inv)
|
2015-01-27 03:45:38 +01:00
|
|
|
return added
|
2013-10-04 17:03:27 +02:00
|
|
|
end,
|
|
|
|
can_insert = function(pos, node, stack, direction)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
return inv:room_for_item("src", stack)
|
|
|
|
end,
|
|
|
|
input_inventory = "dst",
|
|
|
|
connect_sides = {left = 1, right = 1, front = 1, back = 1, top = 1, bottom = 1}},
|
2013-01-19 15:37:27 +01:00
|
|
|
on_construct = function(pos)
|
2013-07-01 05:55:07 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
2015-01-27 21:55:19 +01:00
|
|
|
set_formspec(meta)
|
2015-01-27 20:19:48 +01:00
|
|
|
meta:set_string("infotext", "unconfigured Autocrafter")
|
2014-11-02 09:35:43 +01:00
|
|
|
meta:set_string("virtual_items", "1")
|
2013-01-19 15:37:27 +01:00
|
|
|
local inv = meta:get_inventory()
|
2013-10-04 17:03:27 +02:00
|
|
|
inv:set_size("src", 3*8)
|
|
|
|
inv:set_size("recipe", 3*3)
|
|
|
|
inv:set_size("dst", 4*3)
|
2015-01-28 06:23:46 +01:00
|
|
|
inv:set_size("output", 1)
|
2014-11-02 09:35:43 +01:00
|
|
|
end,
|
2015-01-27 21:55:19 +01:00
|
|
|
on_receive_fields = function(pos, formname, fields, sender)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
if fields.on then
|
|
|
|
meta:set_int("enabled", 0)
|
|
|
|
set_formspec(meta, false)
|
|
|
|
minetest.get_node_timer(pos):stop()
|
|
|
|
meta:set_string("infotext", text or "paused Autocrafter")
|
|
|
|
elseif fields.off then
|
|
|
|
meta:set_int("enabled", 1)
|
|
|
|
set_formspec(meta, true)
|
|
|
|
start_crafter(pos)
|
|
|
|
else -- update formspec on esc for now
|
|
|
|
set_formspec(meta, meta:get_int("enabled") == 1)
|
|
|
|
end
|
|
|
|
end,
|
2014-11-02 09:35:43 +01:00
|
|
|
on_punch = update_autocrafter,
|
2013-10-04 17:03:27 +02:00
|
|
|
can_dig = function(pos, player)
|
2014-11-02 09:35:43 +01:00
|
|
|
update_autocrafter(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
2013-01-19 15:37:27 +01:00
|
|
|
local inv = meta:get_inventory()
|
2014-11-02 09:35:43 +01:00
|
|
|
return (inv:is_empty("src") and inv:is_empty("dst"))
|
2013-10-04 17:03:27 +02:00
|
|
|
end,
|
2013-10-04 20:36:17 +02:00
|
|
|
after_place_node = function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(pos)
|
2013-10-04 20:36:17 +02:00
|
|
|
end,
|
2013-10-04 17:56:03 +02:00
|
|
|
after_dig_node = function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(pos)
|
2013-10-04 20:36:17 +02:00
|
|
|
autocrafterCache[minetest.hash_node_position(pos)] = nil
|
2014-11-02 09:35:43 +01:00
|
|
|
end,
|
|
|
|
allow_metadata_inventory_put = function(pos, listname, index, stack, player)
|
|
|
|
update_autocrafter(pos)
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
if listname == "recipe" then
|
2015-01-28 00:33:07 +01:00
|
|
|
add_virtual_item(inv, listname, index, stack)
|
2015-01-28 00:27:17 +01:00
|
|
|
after_recipe_change(pos, inv)
|
2014-11-02 09:35:43 +01:00
|
|
|
return 0
|
2015-01-28 06:23:46 +01:00
|
|
|
elseif listname == "output" then
|
|
|
|
on_output_change(pos, inv, stack)
|
|
|
|
return 0
|
2014-11-02 09:35:43 +01:00
|
|
|
end
|
2015-01-28 06:23:46 +01:00
|
|
|
after_inventory_change(pos, inv)
|
|
|
|
return stack:get_count()
|
2014-11-02 09:35:43 +01:00
|
|
|
end,
|
|
|
|
allow_metadata_inventory_take = function(pos, listname, index, stack, player)
|
|
|
|
update_autocrafter(pos)
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
if listname == "recipe" then
|
|
|
|
inv:set_stack(listname, index, ItemStack(""))
|
2015-01-28 00:27:17 +01:00
|
|
|
after_recipe_change(pos, inv)
|
2014-11-02 09:35:43 +01:00
|
|
|
return 0
|
2015-01-28 06:23:46 +01:00
|
|
|
elseif listname == "output" then
|
|
|
|
on_output_change(pos, inv, nil)
|
|
|
|
return 0
|
2014-11-02 09:35:43 +01:00
|
|
|
end
|
2015-01-28 06:23:46 +01:00
|
|
|
after_inventory_change(pos, inv)
|
|
|
|
return stack:get_count()
|
2014-11-02 09:35:43 +01:00
|
|
|
end,
|
|
|
|
allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player)
|
|
|
|
update_autocrafter(pos)
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
local stack = inv:get_stack(from_list, from_index)
|
|
|
|
stack:set_count(count)
|
2015-01-28 06:23:46 +01:00
|
|
|
|
|
|
|
if to_list == "output" then
|
|
|
|
on_output_change(pos, inv, stack)
|
|
|
|
return 0
|
|
|
|
elseif from_list == "output" then
|
|
|
|
on_output_change(pos, inv, nil)
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
2014-11-02 09:35:43 +01:00
|
|
|
if from_list == "recipe" then
|
|
|
|
inv:set_stack(from_list, from_index, ItemStack(""))
|
2015-01-28 00:42:22 +01:00
|
|
|
end
|
|
|
|
if to_list == "recipe" then
|
2015-01-28 00:33:07 +01:00
|
|
|
add_virtual_item(inv, to_list, to_index, stack)
|
2015-01-28 00:42:22 +01:00
|
|
|
end
|
|
|
|
if from_list == "recipe" or to_list == "recipe" then
|
2015-01-28 00:27:17 +01:00
|
|
|
after_recipe_change(pos, inv)
|
2014-11-02 09:35:43 +01:00
|
|
|
return 0
|
|
|
|
end
|
2015-01-28 00:42:22 +01:00
|
|
|
|
|
|
|
after_inventory_change(pos, inv)
|
|
|
|
return stack:get_count()
|
2014-11-02 09:35:43 +01:00
|
|
|
end,
|
2015-01-27 03:45:38 +01:00
|
|
|
on_timer = run_autocrafter
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
})
|