2024-04-25 00:27:13 -04:00
|
|
|
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
|
|
--
|
|
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
|
2024-02-16 06:24:49 -05:00
|
|
|
with core, ui, skill;
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
package body skill is
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2024-04-26 16:05:48 -04:00
|
|
|
sprite : array (enumeration) of core.sprite;
|
2024-04-23 16:19:29 -04:00
|
|
|
|
2024-05-01 09:26:06 -04:00
|
|
|
menu_data : ui.structure := ("Skill Menu ", core.signal_o, true, true, false, 0, 0, 320, 160);
|
2024-05-01 09:15:38 -04:00
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
procedure archery_menu is
|
|
|
|
begin
|
|
|
|
ui.draw_text_box ("Heyo world!");
|
|
|
|
end archery_menu;
|
|
|
|
|
2024-04-23 16:19:29 -04:00
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-02-16 06:24:49 -05: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);
|
|
|
|
--
|
2024-04-27 10:01:54 -04:00
|
|
|
for index in enumeration loop
|
2024-04-26 16:05:48 -04:00
|
|
|
sprite (index) := core.import_sprite ("./sprite/skill/" & core.lowercase (enumeration'image (index)) & ".png", 1, 1);
|
2024-02-16 06:24:49 -05:00
|
|
|
end loop;
|
|
|
|
end configure;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
2024-05-01 09:15:38 -04:00
|
|
|
|
2024-03-10 16:41:31 -04:00
|
|
|
procedure menu (x, y : in integer; center : in boolean) is
|
2024-04-23 19:26:55 -04:00
|
|
|
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");
|
|
|
|
--
|
2024-04-27 10:01:54 -04:00
|
|
|
for index in enumeration loop
|
2024-05-01 09:15:38 -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, archery_menu'access);
|
2024-04-26 16:05:48 -04:00
|
|
|
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;
|