Use simple names

This commit is contained in:
Gabriel Tofvesson 2024-10-08 20:05:24 +02:00
parent c0f37e1630
commit f6e61c839c

View File

@ -143,7 +143,7 @@ local function itemList(groups, wBudget, hBudget, savedState, onClick, setPage,
for i=entryStart,entryEnd do for i=entryStart,entryEnd do
local group = groups[i] local group = groups[i]
local text = group:getDisplayName() local text = group:getSimpleName()
local count = tostring(group:getItemCount()) local count = tostring(group:getItemCount())
-- Fit text inside of width budget -- Fit text inside of width budget
@ -241,7 +241,7 @@ local PAGES = {
state.height, state.height,
state.pageState[state.currentPage], state.pageState[state.currentPage],
function(element, x, y, source, group) function(element, x, y, source, group)
print("Clicked: "..group:getDisplayName()) print("Clicked: "..group:getSimpleName())
return true return true
end, end,
function(page) function(page)
@ -253,7 +253,7 @@ local PAGES = {
state:itemTransaction(function() state:itemTransaction(function()
for _,nodeStack in ipairs(state.node:find(function(s) return not s:isEmpty() end)) do for _,nodeStack in ipairs(state.node:find(function(s) return not s:isEmpty() end)) do
if not state.controller:insertStack(nodeStack) then if not state.controller:insertStack(nodeStack) then
print("Couldn't find a free slot for: "..(nodeStack:getDisplayName() or nodeStack:getName() or "[EMPTY]")) print("Couldn't find a free slot for: "..nodeStack:getSimpleName())
end end
end end
end) end)
@ -291,16 +291,14 @@ local CONTROLLER_STATE = {
monitor = monitor, monitor = monitor,
nextPage = "MAIN", nextPage = "MAIN",
exit = false, exit = false,
pageState = {}, pageState = {}
lock = lock,
unlock = unlock,
isLocked = isLocked
} }
function CONTROLLER_STATE:itemTransaction(transact) function CONTROLLER_STATE:itemTransaction(transact)
self.lock() lock()
transact() transact()
self.unlock() saveState(CACHE_FILE, self.controller)
unlock()
end end
os.queueEvent("dummy_event") os.queueEvent("dummy_event")