2024-04-25 00:27:13 -04:00
|
|
|
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
|
|
--
|
|
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
|
2024-05-08 15:43:44 -04:00
|
|
|
with core, ui;
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
package body resource is
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-11 03:03:28 -04:00
|
|
|
procedure draw_points (data : in points; x, y : in integer) is
|
2024-05-23 03:34:45 -04:00
|
|
|
frame_width : constant integer := 4 * core.icon;
|
2024-05-11 00:49:15 -04:00
|
|
|
begin
|
|
|
|
for index in enumeration loop
|
2024-06-02 07:14:06 -04:00
|
|
|
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);
|
2024-05-23 03:34:45 -04:00
|
|
|
--
|
|
|
|
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);
|
2024-05-11 00:49:15 -04:00
|
|
|
end loop;
|
|
|
|
end draw_points;
|
|
|
|
|
2024-02-15 21:03:09 -05:00
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end resource;
|