2022-06-08 18:16:05 +00:00
|
|
|
-- Horizontal Bar Graphics Element
|
|
|
|
|
|
|
|
local util = require("scada-common.util")
|
|
|
|
|
|
|
|
local element = require("graphics.element")
|
|
|
|
|
|
|
|
---@class hbar_args
|
2022-06-09 15:59:55 +00:00
|
|
|
---@field show_percent? boolean whether or not to show the percent
|
|
|
|
---@field bar_fg_bg? cpair bar foreground/background colors if showing percent
|
2022-06-08 18:16:05 +00:00
|
|
|
---@field parent graphics_element
|
|
|
|
---@field x? integer 1 if omitted
|
|
|
|
---@field y? integer 1 if omitted
|
|
|
|
---@field width? integer parent width if omitted
|
2022-06-09 15:59:55 +00:00
|
|
|
---@field height? integer parent height if omitted
|
|
|
|
---@field gframe? graphics_frame frame instead of x/y/width/height
|
2022-06-11 21:06:32 +00:00
|
|
|
---@field fg_bg? cpair foreground/background colors
|
2022-06-08 18:16:05 +00:00
|
|
|
|
|
|
|
-- new horizontal bar
|
|
|
|
---@param args hbar_args
|
|
|
|
local function hbar(args)
|
2022-06-09 15:59:55 +00:00
|
|
|
-- properties/state
|
2022-06-08 18:16:05 +00:00
|
|
|
local bkg = ""
|
|
|
|
local last_num_bars = -1
|
|
|
|
|
|
|
|
-- create new graphics element base object
|
|
|
|
local e = element.new(args)
|
|
|
|
|
2022-06-09 15:59:55 +00:00
|
|
|
-- bar width is width - 5 characters for " 100%" if showing percent
|
|
|
|
local bar_width = util.trinary(args.show_percent, e.frame.w - 5, e.frame.w)
|
2022-06-08 18:16:05 +00:00
|
|
|
|
|
|
|
assert(bar_width > 0, "graphics.elements.hbar: too small for bar")
|
|
|
|
|
2022-06-09 15:59:55 +00:00
|
|
|
-- determine bar colors
|
|
|
|
local bar_bkg = util.trinary(args.bar_fg_bg == nil, e.fg_bg.blit_bkg, args.bar_fg_bg.blit_bkg)
|
|
|
|
local bar_fgd = util.trinary(args.bar_fg_bg == nil, e.fg_bg.blit_fgd, args.bar_fg_bg.blit_fgd)
|
|
|
|
|
2022-06-08 18:16:05 +00:00
|
|
|
-- set background blit string
|
2022-06-08 21:22:20 +00:00
|
|
|
bkg = util.strrep(args.bar_fg_bg.blit_bkg, bar_width)
|
2022-06-08 18:16:05 +00:00
|
|
|
|
|
|
|
-- handle data changes
|
|
|
|
function e.on_update(fraction)
|
|
|
|
-- enforce minimum and maximum
|
|
|
|
if fraction < 0 then
|
|
|
|
fraction = 0.0
|
|
|
|
elseif fraction > 1 then
|
|
|
|
fraction = 1.0
|
|
|
|
end
|
|
|
|
|
|
|
|
-- compute number of bars
|
|
|
|
local num_bars = util.round((fraction * 100) / (bar_width * 2))
|
|
|
|
|
|
|
|
-- redraw bar if changed
|
|
|
|
if num_bars ~= last_num_bars then
|
|
|
|
last_num_bars = num_bars
|
|
|
|
|
2022-06-09 15:59:55 +00:00
|
|
|
local fgd = ""
|
2022-06-08 18:16:05 +00:00
|
|
|
local spaces = ""
|
|
|
|
|
|
|
|
-- fill percentage
|
|
|
|
for _ = 1, num_bars / 2 do
|
|
|
|
spaces = spaces .. " "
|
2022-06-09 15:59:55 +00:00
|
|
|
fgd = fgd .. bar_fgd
|
2022-06-08 18:16:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- add fractional bar if needed
|
|
|
|
if num_bars % 2 == 1 then
|
|
|
|
spaces = spaces .. "\x95"
|
2022-06-09 15:59:55 +00:00
|
|
|
fgd = fgd .. bar_fgd
|
2022-06-08 18:16:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- pad background
|
|
|
|
for _ = 1, bar_width - ((num_bars / 2) + num_bars % 2) do
|
|
|
|
spaces = spaces .. " "
|
2022-06-09 15:59:55 +00:00
|
|
|
fgd = fgd .. bar_bkg
|
2022-06-08 18:16:05 +00:00
|
|
|
end
|
|
|
|
|
2022-06-09 15:59:55 +00:00
|
|
|
-- draw bar
|
|
|
|
for y = 1, e.frame.h do
|
|
|
|
e.window.setCursorPos(1, y)
|
|
|
|
e.window.blit(spaces, fgd, bkg)
|
|
|
|
end
|
2022-06-08 18:16:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- update percentage
|
2022-06-09 15:59:55 +00:00
|
|
|
if args.show_percent then
|
|
|
|
e.window.setCursorPos(bar_width + 1, math.max(1, math.ceil(e.frame.h / 2)))
|
|
|
|
e.window.write(util.sprintf("%3.0f%%", fraction * 100))
|
|
|
|
end
|
2022-06-08 18:16:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return e.get()
|
|
|
|
end
|
|
|
|
|
|
|
|
return hbar
|