28 lines
1.2 KiB
Ada
28 lines
1.2 KiB
Ada
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
--
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
with core, ui;
|
|
|
|
package body resource is
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
procedure draw_points (data : in points; x, y : in integer) is
|
|
frame_width : constant integer := 4 * core.icon;
|
|
begin
|
|
for index in enumeration loop
|
|
ui.draw_icon (icon (index), -(description (index).text), x + (core.icon + frame_width) * enumeration'pos (index), y);
|
|
ui.draw_frame (-(description (index).text), x + (core.icon + frame_width) * enumeration'pos (index) + core.icon, y, frame_width, core.icon);
|
|
--
|
|
ui.write (text => data (index).value'image & " /" & data (index).limit'image,
|
|
x => x + (core.icon + frame_width) * enumeration'pos (index) + core.icon - 1,
|
|
y => y + 7,
|
|
size => 18);
|
|
end loop;
|
|
end draw_points;
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
end resource;
|