List item groups instead of item stacks

This commit is contained in:
Gabriel Tofvesson 2024-10-04 15:03:19 +02:00
parent a13cbe5bd5
commit 349ce2bc34

View File

@ -1,4 +1,5 @@
local Chest = require("storage.chest") local Chest = require("storage.chest")
local ItemGroup = require("storage.itemgroup")
local Storage = require("storage") local Storage = require("storage")
local Text = require("gfx.text") local Text = require("gfx.text")
local List = require("gfx.list") local List = require("gfx.list")
@ -77,17 +78,17 @@ local monitor = peripheral.find("monitor")
local width, height = monitor.getSize() local width, height = monitor.getSize()
local function itemList(stacks, wBudget) local function itemList(groups, wBudget)
local bgColors = { local bgColors = {
colors.gray, colors.gray,
colors.black colors.black
} }
local entries = {} local entries = {}
for i=1,#stacks do for i=1,#groups do
local stack = stacks[i] local group = groups[i]
local text = stack:getDisplayName() local text = group:getDisplayName()
local count = tostring(stack:getCount()) local count = tostring(group:getItemCount())
-- Fit text inside of width budget -- Fit text inside of width budget
local countLen = #count local countLen = #count
@ -119,28 +120,30 @@ local function itemList(stacks, wBudget)
}, },
vertical = false, vertical = false,
onClick = function(table, x, y, source) onClick = function(table, x, y, source)
print("Clicked: "..stack:getDisplayName()) print("Clicked: "..group:getDisplayName())
end end
} }
table.insert(entries, list) table.insert(entries, list)
end end
return List:new{ return List:new{
children = entries, children = entries,
vertical = true vertical = true
} }
end end
local count = 0 local found = ItemGroup.collectStacks(controller:find(function(stack)
local found = controller:find(function(stack) return not stack:isEmpty()
local match = not stack:isEmpty() end))
if match then
count = count + 1
end
return match and count <= 10
end)
local listResult = itemList(found, width) table.sort(found, function(a, b) return a:getItemCount() > b:getItemCount() end)
local subset = {}
for i=1,math.min(13, #found) do
table.insert(subset, found[i])
end
local listResult = itemList(subset, width)
listResult:setParent(monitor) listResult:setParent(monitor)
listResult:draw() listResult:draw()