xhads/source/skill.adb

52 lines
2.3 KiB
Ada
Raw Normal View History

-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
--
-- GNU General Public Licence (version 3 or later)
with core, ui, skill;
2024-02-15 21:03:09 -05:00
package body skill is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
sprite : array (enumeration) of core.sprite;
2024-04-23 16:19:29 -04:00
2024-05-01 10:16:25 -04:00
menu_data : ui.structure := ("Skill Menu ", core.signal_o, false, true, false, 0, 0, 320, 160);
2024-05-01 09:15:38 -04:00
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 skill components...");
--
2024-05-01 09:15:38 -04:00
ui.add_structure (menu_data);
--
for index in enumeration loop
sprite (index) := core.import_sprite ("./sprite/skill/" & core.lowercase (enumeration'image (index)) & ".png", 1, 1);
end loop;
end configure;
------------------------------------------------------------------------------------------
2024-05-01 09:15:38 -04:00
2024-05-01 10:16:25 -04:00
procedure e is begin core.echo (core.warning, "Heyo world!"); end e;
2024-03-10 16:41:31 -04:00
procedure menu (x, y : in integer; center : in boolean) is
column : constant integer := 2;
2024-04-30 19:42:17 -04:00
offset : constant integer := 32;
2024-03-15 18:21:07 -04:00
width : constant integer := 216 * column + 2 * offset;
height : constant integer := (count / column) * core.icon + 2 * offset;
2024-03-10 16:41:31 -04:00
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, "Skills");
--
for index in enumeration loop
2024-05-01 10:16:25 -04:00
ui.draw_icon (sprite (index), trait (index).text, move_x + 216 * (enumeration'pos (index) mod column) + offset, move_y + core.icon * (enumeration'pos (index) / column) + offset, e'access);
ui.write (trait (index).name, move_x + 216 * (enumeration'pos (index) mod column) + offset + core.icon, move_y + core.icon * (enumeration'pos (index) / column) + offset);
2024-03-10 16:41:31 -04:00
end loop;
end menu;
2024-02-19 21:29:11 -05:00
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end skill;