Allow detaching chests from storage

This commit is contained in:
Gabriel Tofvesson 2024-10-03 16:18:04 +02:00
parent b760dcdbbb
commit 25244a9355

View File

@ -50,23 +50,31 @@ function Storage:fromSerializable(ser)
return obj return obj
end end
function Storage:hasChest(name) function Storage:isAttached(name)
for _,chest in ipairs(self) do for index,chest in ipairs(self) do
if chest:getName() == name then if chest:getName() == name then
return true, chest return true, chest, index
end end
end end
return false, nil return false, nil, nil
end end
function Storage:attach(name, homogeneous) function Storage:attach(name, homogeneous)
if self:hasChest(name) then if self:isAttached(name) then
return return
end end
table.insert(self, Chest:fromPeripheral(name, homogeneous)) table.insert(self, Chest:fromPeripheral(name, homogeneous))
end end
function Storage:detach(name)
local attached, _, index = self:isAttached(name)
if attached then
return table.remove(self, index)
end
return nil
end
function Storage:find(query) function Storage:find(query)
local result = {} local result = {}
for _,chest in ipairs(self) do for _,chest in ipairs(self) do
@ -90,10 +98,10 @@ end
function Storage:findExtractTargets(query) function Storage:findExtractTargets(query)
local result = self:find(query) local result = self:find(query)
-- Extraction should prioritize emptying populated stacks -- Extraction should prioritize emptying populated stacks
table.sort(result, function(a, b) return a:getcount() < b:getCount() end) table.sort(result, function(a, b) return a:getcount() < b:getCount() end)
return result return result
end end