xhads/source/attribute.adb

58 lines
2.4 KiB
Ada
Raw Normal View History

-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
--
-- GNU General Public Licence (version 3 or later)
with core, ui, attribute;
2024-02-15 21:03:09 -05:00
package body attribute is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
sprite : array (enumeration) of core.sprite;
2024-04-23 16:19:29 -04:00
------------------------------------------------------------------------------------------
procedure configure is
begin
2024-03-11 08:42:25 -04:00
core.echo (core.comment, "Configuring attribute components...");
--
ui.add_structure ((title => "Attribute Menu ",
toggle => core.signal_a,
show => false,
2024-05-03 10:39:28 -04:00
center => false,
resize => true,
2024-05-03 10:39:28 -04:00
x => 880,
y => (core.window_height - 320) / 2,
gui_n => 0,
gui_list => (others => ui.empty),
others => 0));
--
for index in enumeration loop
sprite (index) := core.import_sprite ("./sprite/attribute/" & core.lowercase (enumeration'image (index)) & ".png", 1, 1);
--
ui.add_structure_button (sprite (index), trait (index).name);
end loop;
end configure;
------------------------------------------------------------------------------------------
2024-03-10 16:41:31 -04:00
procedure menu (x, y : in integer; center : in boolean) is
offset : constant integer := 16;
width : constant integer := 180 + 2 * offset;
height : constant integer := count * core.icon + 2 * offset;
move_x : constant integer := (if center then (core.window_width - width) / 2 else x);
move_y : constant integer := (if center then (core.window_height - height) / 2 else y);
begin
2024-04-27 12:34:16 -04:00
ui.draw_tiny_menu (move_x, move_y, width, height);
2024-03-10 16:41:31 -04:00
ui.draw_title_bar (move_x, move_y, width, "Attributes");
--
for index in enumeration loop
ui.draw_icon (sprite (index), trait (index).text, move_x + offset, move_y + offset + enumeration'pos (index) * core.icon);
ui.write (trait (index).name, move_x + offset + core.icon, move_y + offset + enumeration'pos (index) * core.icon);
2024-03-10 16:41:31 -04:00
end loop;
end menu;
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end attribute;