xhads/source/attribute.adb

59 lines
2.1 KiB
Ada
Raw Normal View History

-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
--
-- GNU General Public Licence (version 3 or later)
with core, ui;
2024-02-15 21:03:09 -05:00
package body attribute is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
icon : array (enumeration) of core.sprite;
2024-04-23 16:19:29 -04:00
------------------------------------------------------------------------------------------
procedure configure is
structure : ui.structure;
begin
2024-03-11 08:42:25 -04:00
core.echo (core.comment, "Configuring attribute components...");
--
structure.title := "Attribute Menu ";
structure.toggle := core.signal_a;
structure.show := false;
structure.center := false;
structure.resize := true;
structure.x := 60;
2024-05-20 15:30:40 -04:00
structure.y := 100;
structure.gui_n := count;
--
2024-05-13 09:55:14 -04:00
ui.add_structure (data => structure);
--
for index in enumeration loop
icon (index) := core.import_sprite (core.folder & "/icon/attribute/" & core.lowercase (enumeration'image (index)) & ".png", 1, 1);
--
ui.add_structure_button (icon => icon (index),
2024-05-13 09:55:14 -04:00
name => trait (index).name,
text => trait (index).text);
end loop;
end configure;
------------------------------------------------------------------------------------------
procedure draw_points (data : in points := (others => (0, 0));
2024-05-13 09:55:14 -04:00
x : in integer := 0;
y : in integer := 0) is
move_x : integer := x;
begin
for index in enumeration loop
ui.draw_icon (icon (index), trait (index).text, move_x, y);
ui.draw_text_box (move_x, y + core.icon, core.icon, core.icon);
ui.write (data (index).value'image, move_x + 4, y + core.icon + 8, (255, 255, 255, 255), 15, true);
--
move_x := move_x + core.icon;
end loop;
end draw_points;
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end attribute;