2019-06-10 22:31:58 +03:00
|
|
|
--[[
|
|
|
|
|
|
|
|
TechAge
|
|
|
|
=======
|
|
|
|
|
|
|
|
Copyright (C) 2019 Joachim Stolberg
|
|
|
|
|
2019-08-22 21:49:47 +03:00
|
|
|
GPL v3
|
2019-06-10 22:31:58 +03:00
|
|
|
See LICENSE.txt for more information
|
|
|
|
|
|
|
|
Cooking routines for furnace
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
|
|
|
-- for lazy programmers
|
|
|
|
local P = minetest.string_to_pos
|
|
|
|
local M = minetest.get_meta
|
2019-07-02 22:33:12 +03:00
|
|
|
local S = techage.S
|
2019-06-10 22:31:58 +03:00
|
|
|
|
2019-06-21 18:45:15 +03:00
|
|
|
local range = techage.range
|
|
|
|
|
2019-06-10 22:31:58 +03:00
|
|
|
local Recipes = {} -- registered recipes
|
2019-06-21 18:45:15 +03:00
|
|
|
local Ingredients = {}
|
2019-06-10 22:31:58 +03:00
|
|
|
local KeyList = {} -- index to Recipes key translation
|
|
|
|
|
|
|
|
techage.furnace = {}
|
|
|
|
|
2019-06-29 00:46:44 +03:00
|
|
|
|
|
|
|
local function all_ingredients_available(output, ingr)
|
2019-08-19 00:16:13 +03:00
|
|
|
if Recipes[output] then
|
|
|
|
for idx,recipe in ipairs(Recipes[output]) do
|
|
|
|
local not_in_list = false
|
|
|
|
for _,item in ipairs(recipe.input) do
|
|
|
|
if not techage.in_list(ingr, item) then
|
|
|
|
not_in_list = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if not_in_list == false then
|
|
|
|
return idx -- list number of the recipe
|
|
|
|
end
|
2019-06-29 00:46:44 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-21 18:45:15 +03:00
|
|
|
-- Return a list with all outputs of the given list of ingredients
|
|
|
|
local function get_recipes(ingr)
|
|
|
|
if #ingr > 0 then
|
|
|
|
local tbl = {}
|
|
|
|
for _,item in ipairs(ingr) do
|
|
|
|
if Ingredients[item] then
|
|
|
|
for _,output in ipairs(Ingredients[item]) do
|
2019-06-29 00:46:44 +03:00
|
|
|
if all_ingredients_available(output, ingr) then
|
|
|
|
techage.add_to_set(tbl, output)
|
|
|
|
end
|
2019-06-21 18:45:15 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return tbl
|
|
|
|
else
|
|
|
|
return KeyList
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function techage.furnace.get_ingredients(pos)
|
|
|
|
local inv = M(pos):get_inventory()
|
|
|
|
local tbl = {}
|
|
|
|
for _,stack in ipairs(inv:get_list('src')) do
|
|
|
|
if stack:get_name() ~= "" then
|
|
|
|
tbl[#tbl+1] = stack:get_name()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return tbl
|
|
|
|
end
|
|
|
|
|
2019-06-10 22:31:58 +03:00
|
|
|
-- move recipe src items to output inventory
|
2019-06-21 19:53:30 +03:00
|
|
|
local function process(inv, recipe, output)
|
2019-06-10 22:31:58 +03:00
|
|
|
-- check if all ingredients are available
|
|
|
|
for _,item in ipairs(recipe.input) do
|
|
|
|
if not inv:contains_item("src", item) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
-- remove items
|
|
|
|
for _,item in ipairs(recipe.input) do
|
|
|
|
inv:remove_item("src", item)
|
|
|
|
end
|
|
|
|
-- add to dst
|
2019-06-21 19:53:30 +03:00
|
|
|
local stack = ItemStack(output)
|
2019-06-10 22:31:58 +03:00
|
|
|
stack:set_count(recipe.number)
|
|
|
|
inv:add_item("dst", stack)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function techage.furnace.smelting(pos, mem, elapsed)
|
|
|
|
local inv = M(pos):get_inventory()
|
2019-06-21 19:53:30 +03:00
|
|
|
local state = techage.RUNNING
|
2019-06-10 22:31:58 +03:00
|
|
|
if inv and not inv:is_empty("src") then
|
2019-08-19 00:16:13 +03:00
|
|
|
if not mem.output or not mem.num_recipe then
|
2019-11-03 23:21:03 +03:00
|
|
|
return techage.FAULT, "recipe error"
|
2019-06-21 19:53:30 +03:00
|
|
|
end
|
2019-08-19 00:16:13 +03:00
|
|
|
local recipe = Recipes[mem.output][mem.num_recipe]
|
2019-06-21 19:53:30 +03:00
|
|
|
if not recipe then
|
2019-11-03 23:21:03 +03:00
|
|
|
return techage.FAULT, "recipe error"
|
2019-06-21 19:53:30 +03:00
|
|
|
end
|
2019-06-10 22:31:58 +03:00
|
|
|
-- check dst inv
|
2019-06-21 19:53:30 +03:00
|
|
|
local item = ItemStack(mem.output)
|
2019-06-10 22:31:58 +03:00
|
|
|
if not inv:room_for_item("dst", item) then
|
|
|
|
return techage.BLOCKED
|
|
|
|
end
|
|
|
|
|
|
|
|
elapsed = elapsed + (mem.leftover or 0)
|
|
|
|
while elapsed >= recipe.time do
|
2019-06-21 19:53:30 +03:00
|
|
|
if process(inv, recipe, mem.output) == false then
|
2019-06-10 22:31:58 +03:00
|
|
|
mem.leftover = 0
|
|
|
|
return techage.STANDBY
|
|
|
|
else
|
|
|
|
state = techage.RUNNING
|
|
|
|
end
|
|
|
|
elapsed = elapsed - recipe.time
|
|
|
|
end
|
|
|
|
mem.leftover = elapsed
|
2019-08-22 21:22:52 +03:00
|
|
|
if recipe.time >= 10 then
|
|
|
|
mem.item_percent = math.min(math.floor((mem.leftover * 100.0) / recipe.time), 100)
|
|
|
|
else
|
|
|
|
mem.item_percent = 100
|
|
|
|
end
|
2019-06-10 22:31:58 +03:00
|
|
|
return state
|
|
|
|
end
|
|
|
|
return techage.STANDBY
|
|
|
|
end
|
|
|
|
|
2019-06-21 19:53:30 +03:00
|
|
|
function techage.furnace.get_output(mem, ingr, idx)
|
2019-06-21 18:45:15 +03:00
|
|
|
local tbl = get_recipes(ingr)
|
|
|
|
idx = range(idx, 1, #tbl)
|
2019-06-21 19:53:30 +03:00
|
|
|
mem.output = tbl[idx] or tbl[1]
|
2019-08-19 00:16:13 +03:00
|
|
|
mem.num_recipe = all_ingredients_available(mem.output, ingr)
|
2019-06-21 19:53:30 +03:00
|
|
|
return mem.output
|
2019-06-10 22:31:58 +03:00
|
|
|
end
|
|
|
|
|
2019-06-21 18:45:15 +03:00
|
|
|
function techage.furnace.get_num_recipes(ingr)
|
|
|
|
return #get_recipes(ingr)
|
2019-06-10 22:31:58 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
function techage.furnace.reset_cooking(mem)
|
|
|
|
mem.leftover = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
if minetest.global_exists("unified_inventory") then
|
|
|
|
unified_inventory.register_craft_type("ta3_melting", {
|
2019-07-02 22:33:12 +03:00
|
|
|
description = S("TA3 Melting"),
|
2019-06-10 22:31:58 +03:00
|
|
|
icon = "techage_concrete.png^techage_appl_furnace.png^techage_frame_ta3.png",
|
|
|
|
width = 2,
|
|
|
|
height = 2,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function techage.furnace.register_recipe(recipe)
|
2019-06-21 19:53:30 +03:00
|
|
|
local words = string.split(recipe.output, " ")
|
|
|
|
local output = words[1]
|
|
|
|
local number = tonumber(words[2] or 1)
|
2019-06-10 22:31:58 +03:00
|
|
|
table.insert(KeyList, output)
|
2019-08-19 00:16:13 +03:00
|
|
|
--print(recipe.output, dump(recipe.recipe))
|
|
|
|
if not Recipes[output] then
|
|
|
|
Recipes[output] = {}
|
|
|
|
end
|
|
|
|
table.insert(Recipes[output], {
|
2019-06-10 22:31:58 +03:00
|
|
|
input = recipe.recipe,
|
|
|
|
number = number,
|
|
|
|
time = math.max((recipe.time or 3) * number, 2),
|
2019-08-19 00:16:13 +03:00
|
|
|
})
|
2019-06-21 18:45:15 +03:00
|
|
|
for _,item in ipairs(recipe.recipe) do
|
|
|
|
if Ingredients[item] then
|
|
|
|
techage.add_to_set(Ingredients[item], output)
|
|
|
|
else
|
|
|
|
Ingredients[item] = {output}
|
|
|
|
end
|
|
|
|
end
|
2019-06-10 22:31:58 +03:00
|
|
|
|
|
|
|
if minetest.global_exists("unified_inventory") then
|
|
|
|
recipe.items = recipe.recipe
|
|
|
|
recipe.type = "ta3_melting"
|
|
|
|
unified_inventory.register_craft(recipe)
|
|
|
|
end
|
|
|
|
end
|