Conditionally display item damage in detail

This commit is contained in:
Gabriel Tofvesson 2024-10-11 23:15:57 +02:00
parent bad85564b1
commit 4071e380b1

View File

@ -6,6 +6,7 @@ local List = require("gfx.list")
local Event = require("gfx.event") local Event = require("gfx.event")
local Padding = require("gfx.padding") local Padding = require("gfx.padding")
local Container = require("gfx.container") local Container = require("gfx.container")
local Progress = require("gfx.progress")
local Children = require("gfx.prop.children") local Children = require("gfx.prop.children")
local Orientation = require("gfx.prop.orientation") local Orientation = require("gfx.prop.orientation")
@ -295,8 +296,11 @@ local PAGES = {
state:setPage("MAIN") state:setPage("MAIN")
return NOOP return NOOP
end end
local itemData = group:getItemData()
local title = Text:new{ local title = Text:new{
text = "Detail: "..group:getSimpleName(), text = itemData:getSimpleName(),
bgColor = colors.gray bgColor = colors.gray
} }
@ -316,11 +320,21 @@ local PAGES = {
text = "Slots: "..tostring(group:getStackCount()) text = "Slots: "..tostring(group:getStackCount())
} }
local damage = group:getDamage()
local maxDamage = group:getMaxDamage()
local damageBar = nil
if damage ~= nil and maxDamage ~= nil then
damageBar = Progress:new{
progress = (damage / maxDamage)
}
end
local infoElements = List:new{ local infoElements = List:new{
[Children:getId()] = { [Children:getId()] = {
paddedTitle, paddedTitle,
itemCount, itemCount,
itemSlots itemSlots,
damageBar
}, },
[Orientation:getId()] = Orientation.VERTICAL, [Orientation:getId()] = Orientation.VERTICAL,
width = state.width width = state.width