Simplify attaching multiple chests after initializing storage

This commit is contained in:
Gabriel Tofvesson 2024-12-07 02:05:38 +01:00
parent 6b78404821
commit 8d3b351083

View File

@ -4,6 +4,10 @@ local Sentinel = require("storage.sentinel")
local Storage = Sentinel:tag({}, Sentinel.STORAGE) local Storage = Sentinel:tag({}, Sentinel.STORAGE)
Storage.__index = Storage Storage.__index = Storage
local function _attach(stor, name, homogeneous)
table.insert(stor, Chest:fromPeripheral(name, homogeneous))
end
function Storage.assumeHomogeneous(names) function Storage.assumeHomogeneous(names)
local mappings = {} local mappings = {}
for _,name in ipairs(names) do for _,name in ipairs(names) do
@ -12,12 +16,13 @@ function Storage.assumeHomogeneous(names)
return mappings return mappings
end end
function Storage:fromPeripherals(names) function Storage:fromPeripherals(peripheralDefs)
local obj = { local obj = {
count = #names count = #peripheralDefs
} }
for name,homogeneous in pairs(names) do
table.insert(obj, Chest:fromPeripheral(name, homogeneous)) for name,homogeneous in pairs(peripheralDefs) do
_attach(obj, name, homogeneous)
end end
setmetatable(obj, self) setmetatable(obj, self)
@ -30,6 +35,7 @@ function Storage:toSerializable()
local ser = { local ser = {
count = self.count count = self.count
} }
for _,chest in ipairs(self) do for _,chest in ipairs(self) do
table.insert(ser, chest:toSerializable()) table.insert(ser, chest:toSerializable())
end end
@ -67,7 +73,14 @@ function Storage:attach(name, homogeneous)
return return
end end
table.insert(self, Chest:fromPeripheral(name, homogeneous)) _attach(self, name, homogeneous)
end
function Storage:attachAll(peripheralDefs)
for name,homogeneous in pairs(peripheralDefs) do
self:attach(name, homogeneous)
end
return self
end end
function Storage:detach(name) function Storage:detach(name)