Compare commits
No commits in common. "b9582d8d4ba1709bbded637640428638d691f90c" and "349ce2bc3494b320f27b26e06e40e8c9e77b3029" have entirely different histories.
b9582d8d4b
...
349ce2bc34
@ -165,7 +165,7 @@ function Element:isVisible()
|
|||||||
return self.visible
|
return self.visible
|
||||||
end
|
end
|
||||||
|
|
||||||
function Element:setDirty(fullInvalidate)
|
function Element:setDirty()
|
||||||
self.dirty = true
|
self.dirty = true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -66,15 +66,6 @@ function List:isHorizontal()
|
|||||||
return not self:isVertical()
|
return not self:isVertical()
|
||||||
end
|
end
|
||||||
|
|
||||||
function List:setDirty(fullInvalidate)
|
|
||||||
Element.setDirty(self, fullInvalidate)
|
|
||||||
if fullInvalidate then
|
|
||||||
for _,child in self.children do
|
|
||||||
child:setDirty(fullInvalidate)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function List:draw()
|
function List:draw()
|
||||||
local dirty = Element.draw(self)
|
local dirty = Element.draw(self)
|
||||||
if dirty then
|
if dirty then
|
||||||
|
@ -37,13 +37,6 @@ function Padding:draw()
|
|||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
function Padding:setDirty(fullInvalidate)
|
|
||||||
Element.setDirty(self, fullInvalidate)
|
|
||||||
if fullInvalidate then
|
|
||||||
self.element:setDirty(fullInvalidate)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function Padding:getPaddingLeft()
|
function Padding:getPaddingLeft()
|
||||||
return self.left
|
return self.left
|
||||||
end
|
end
|
||||||
|
@ -70,7 +70,15 @@ local function loadState(fname, node)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local function itemList(groups, wBudget, onClick)
|
local accessNode = Chest:fromPeripheral("minecraft:trapped_chest", true)
|
||||||
|
---@diagnostic disable-next-line: need-check-nil
|
||||||
|
local controller = loadState(CACHE_FILE, accessNode:getInventory())
|
||||||
|
local monitor = peripheral.find("monitor")
|
||||||
|
|
||||||
|
local width, height = monitor.getSize()
|
||||||
|
|
||||||
|
|
||||||
|
local function itemList(groups, wBudget)
|
||||||
local bgColors = {
|
local bgColors = {
|
||||||
colors.gray,
|
colors.gray,
|
||||||
colors.black
|
colors.black
|
||||||
@ -111,7 +119,9 @@ local function itemList(groups, wBudget, onClick)
|
|||||||
countLabel
|
countLabel
|
||||||
},
|
},
|
||||||
vertical = false,
|
vertical = false,
|
||||||
onClick = onClick
|
onClick = function(table, x, y, source)
|
||||||
|
print("Clicked: "..group:getDisplayName())
|
||||||
|
end
|
||||||
}
|
}
|
||||||
table.insert(entries, list)
|
table.insert(entries, list)
|
||||||
end
|
end
|
||||||
@ -122,79 +132,18 @@ local function itemList(groups, wBudget, onClick)
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
local function renderDefault(state, rootElement)
|
local found = ItemGroup.collectStacks(controller:find(function(stack)
|
||||||
local event = {os.pullEvent()}
|
return not stack:isEmpty()
|
||||||
local handled = rootElement:handleEvent(event)
|
end))
|
||||||
if not handled and event[1] == "monitor_resize" then
|
|
||||||
local width, height = state.monitor.getSize()
|
|
||||||
if state.width ~= width or state.height ~= height then
|
|
||||||
state.width = width
|
|
||||||
state.height = height
|
|
||||||
|
|
||||||
-- Trigger re-render
|
table.sort(found, function(a, b) return a:getItemCount() > b:getItemCount() end)
|
||||||
rootElement:setDirty(true)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if not handled then
|
local subset = {}
|
||||||
os.queueEvent(table.unpack(event))
|
for i=1,math.min(13, #found) do
|
||||||
end
|
table.insert(subset, found[i])
|
||||||
end
|
end
|
||||||
|
|
||||||
local PAGES = {
|
local listResult = itemList(subset, width)
|
||||||
MAIN = function(state)
|
|
||||||
local found = ItemGroup.collectStacks(state.controller:find(function(stack)
|
|
||||||
return not stack:isEmpty()
|
|
||||||
end))
|
|
||||||
|
|
||||||
table.sort(found, function(a, b) return a:getItemCount() > b:getItemCount() end)
|
listResult:setParent(monitor)
|
||||||
|
listResult:draw()
|
||||||
local subset = {}
|
|
||||||
for i=1,math.min(13, #found) do
|
|
||||||
table.insert(subset, found[i])
|
|
||||||
end
|
|
||||||
|
|
||||||
local listResult = itemList(subset, state.width, function(group, x, y, source)
|
|
||||||
print("Clicked: "..group:getDisplayName())
|
|
||||||
end)
|
|
||||||
listResult:setParent(state.monitor)
|
|
||||||
|
|
||||||
return function()
|
|
||||||
renderDefault(state, listResult)
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
|
|
||||||
GROUP_DETAIL = function(state)
|
|
||||||
|
|
||||||
end,
|
|
||||||
|
|
||||||
REQUEST = function(state)
|
|
||||||
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
local accessNode = Chest:fromPeripheral("minecraft:trapped_chest", true)
|
|
||||||
---@diagnostic disable-next-line: need-check-nil
|
|
||||||
local controller = loadState(CACHE_FILE, accessNode:getInventory())
|
|
||||||
local monitor = peripheral.find("monitor")
|
|
||||||
local width, height = monitor.getSize()
|
|
||||||
|
|
||||||
local CONTROLLER_STATE = {
|
|
||||||
controller = controller,
|
|
||||||
width = width,
|
|
||||||
height = height,
|
|
||||||
monitor = monitor,
|
|
||||||
currentPage = "MAIN",
|
|
||||||
exit = false
|
|
||||||
}
|
|
||||||
|
|
||||||
os.queueEvent("dummy_event")
|
|
||||||
while not CONTROLLER_STATE.exit do
|
|
||||||
PAGES[CONTROLLER_STATE.currentPage](CONTROLLER_STATE)
|
|
||||||
|
|
||||||
if CONTROLLER_STATE.nextPage ~= nil then
|
|
||||||
CONTROLLER_STATE.currentPage = CONTROLLER_STATE.nextPage
|
|
||||||
CONTROLLER_STATE.nextPage = nil
|
|
||||||
end
|
|
||||||
end
|
|
Loading…
x
Reference in New Issue
Block a user