61 lines
1.6 KiB
Lua
61 lines
1.6 KiB
Lua
local Craft = require('turtle.craft')
|
|
local Milo = require('milo')
|
|
local sync = require('sync').sync
|
|
local Util = require('util')
|
|
|
|
local context = Milo:getContext()
|
|
local turtle = _G.turtle
|
|
|
|
local craftTask = {
|
|
name = 'crafting',
|
|
priority = 70,
|
|
}
|
|
|
|
function craftTask:craft(recipe, item)
|
|
if Milo:isCraftingPaused() then
|
|
return
|
|
end
|
|
|
|
Craft.processPending(item, context.storage)
|
|
|
|
item.ingredients = Craft.getResourceList(recipe, Milo:listItems(), item.count - item.crafted)
|
|
|
|
for k, v in pairs(item.ingredients) do
|
|
v.crafted = v.used
|
|
v.count = v.used
|
|
v.key = k
|
|
if v.need > 0 then
|
|
v.status = 'No recipe'
|
|
v.statusCode = Craft.STATUS_ERROR
|
|
end
|
|
end
|
|
item.ingredients[recipe.result] = Util.shallowCopy(item)
|
|
item.ingredients[recipe.result].total = item.count
|
|
item.ingredients[recipe.result].crafted = item.crafted
|
|
|
|
Craft.craftRecipe(recipe, item.count - item.crafted, context.storage, item)
|
|
Milo:clearGrid()
|
|
end
|
|
|
|
function craftTask:cycle()
|
|
for _,key in pairs(Util.keys(context.craftingQueue)) do
|
|
local item = context.craftingQueue[key]
|
|
if item.count - item.crafted > 0 then
|
|
local recipe = Craft.findRecipe(key)
|
|
if recipe then
|
|
sync(turtle, function()
|
|
self:craft(recipe, item)
|
|
end)
|
|
if item.callback and item.crafted >= item.count then
|
|
item.callback(item) -- invoke callback
|
|
end
|
|
elseif not context.controllerAdapter then
|
|
item.status = '(no recipe)'
|
|
item.statusCode = Craft.STATUS_ERROR
|
|
item.crafted = 0
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Milo:registerTask(craftTask) |