From 4071e380b10df875a1ff20874fd9e26f3bc56970 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 11 Oct 2024 23:15:57 +0200 Subject: [PATCH] Conditionally display item damage in detail --- itemcontroller.lua | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index ce43cb2..6e21ebb 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -6,6 +6,7 @@ local List = require("gfx.list") local Event = require("gfx.event") local Padding = require("gfx.padding") local Container = require("gfx.container") +local Progress = require("gfx.progress") local Children = require("gfx.prop.children") local Orientation = require("gfx.prop.orientation") @@ -295,8 +296,11 @@ local PAGES = { state:setPage("MAIN") return NOOP end + + local itemData = group:getItemData() + local title = Text:new{ - text = "Detail: "..group:getSimpleName(), + text = itemData:getSimpleName(), bgColor = colors.gray } @@ -316,11 +320,21 @@ local PAGES = { 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{ [Children:getId()] = { paddedTitle, itemCount, - itemSlots + itemSlots, + damageBar }, [Orientation:getId()] = Orientation.VERTICAL, width = state.width