xhads/source/skill.adb

45 lines
1.5 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 skill is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
sprite : 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 skill components...");
--
structure.title := "Skill Menu ";
structure.toggle := core.signal_s;
structure.show := false;
2024-05-04 09:29:48 -04:00
structure.center := true;
structure.resize := true;
structure.x := 80;
structure.y := (core.window_height - 320) / 2;
2024-05-07 09:06:08 -04:00
structure.gui_n := count + 1;
--
ui.add_structure (structure);
2024-05-01 09:15:38 -04:00
--
for index in enumeration loop
sprite (index) := core.import_sprite ("./sprite/skill/" & core.lowercase (enumeration'image (index)) & ".png", 1, 1);
--
2024-05-07 09:06:08 -04:00
if enumeration'pos (index) = 9 then
ui.add_structure_orient;
end if;
--
2024-05-04 08:26:51 -04:00
ui.add_structure_button (sprite (index), trait (index).name, trait (index).text);
end loop;
end configure;
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end skill;