2024-05-12 20:15:36 -04:00
|
|
|
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
|
|
--
|
|
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
|
|
|
|
with core, ui;
|
|
|
|
|
|
|
|
package body material is
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-28 06:08:45 -04:00
|
|
|
procedure draw_points (data : in points := (others => (0, 0));
|
|
|
|
x : in integer := 0;
|
|
|
|
y : in integer := 0) is
|
|
|
|
move_x : integer := x;
|
2024-05-12 20:15:36 -04:00
|
|
|
begin
|
2024-05-28 06:08:45 -04:00
|
|
|
for index in enumeration loop
|
|
|
|
if data (index).value > 0 then
|
2024-06-02 07:14:06 -04:00
|
|
|
ui.draw_icon (icon (index), -(description (index).name), move_x, y);
|
2024-05-28 06:08:45 -04:00
|
|
|
ui.draw_text_box (move_x, y + core.icon, core.icon, core.icon);
|
2024-06-02 09:48:57 -04:00
|
|
|
ui.write (data (index).value'image, move_x, y + core.icon + 8, (255, 255, 255, 255), 15, true);
|
2024-05-28 06:08:45 -04:00
|
|
|
--
|
|
|
|
move_x := move_x + core.icon;
|
|
|
|
end if;
|
|
|
|
end loop;
|
|
|
|
end draw_points;
|
|
|
|
|
2024-05-12 20:15:36 -04:00
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end material;
|