2024-04-25 00:27:13 -04:00
|
|
|
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
|
|
--
|
|
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
|
2024-05-08 15:43:44 -04:00
|
|
|
with core, ui;
|
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-02-16 06:24:49 -05:00
|
|
|
procedure configure is
|
2024-05-04 07:12:00 -04:00
|
|
|
structure : ui.structure;
|
2024-02-16 06:24:49 -05:00
|
|
|
begin
|
2024-03-11 08:42:25 -04:00
|
|
|
core.echo (core.comment, "Configuring skill components...");
|
|
|
|
--
|
2024-05-04 07:12:00 -04:00
|
|
|
structure.title := "Skill Menu ";
|
|
|
|
structure.toggle := core.signal_s;
|
|
|
|
structure.show := false;
|
2024-05-04 09:29:48 -04:00
|
|
|
structure.center := true;
|
2024-05-04 07:12:00 -04:00
|
|
|
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;
|
2024-05-04 07:12:00 -04:00
|
|
|
--
|
|
|
|
ui.add_structure (structure);
|
2024-05-01 09:15:38 -04:00
|
|
|
--
|
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-05-03 10:13:49 -04:00
|
|
|
--
|
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);
|
2024-05-03 08:16:50 -04:00
|
|
|
end loop;
|
2024-02-16 06:24:49 -05:00
|
|
|
end configure;
|
|
|
|
|
2024-05-11 00:49:15 -04:00
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-17 21:00:50 -04:00
|
|
|
procedure draw_points (data : in points; x, y : in integer) is
|
|
|
|
move_x : integer := x;
|
|
|
|
move_y : integer := y;
|
2024-05-11 00:49:15 -04:00
|
|
|
begin
|
|
|
|
for index in enumeration loop
|
2024-05-17 21:00:50 -04:00
|
|
|
if (enumeration'pos (index) + 1) mod (count / 2 + 1) = 0 then
|
|
|
|
move_x := x + 2 * core.icon + 120;
|
|
|
|
move_y := y;
|
|
|
|
end if;
|
|
|
|
--
|
|
|
|
ui.draw_icon (sprite (index), trait (index).text, move_x, move_y);
|
|
|
|
ui.draw_text_box (move_x + core.icon, move_y, core.icon, core.icon);
|
|
|
|
ui.write (data (index)'image, move_x + core.icon + 4, move_y + 8, (255, 255, 255, 255), 15, true);
|
2024-05-11 00:49:15 -04:00
|
|
|
--
|
2024-05-17 21:00:50 -04:00
|
|
|
ui.write (trait (index).name, move_x + 2 * core.icon + 4, move_y + 8, (255, 255, 255, 255), 15, true);
|
2024-05-11 00:49:15 -04:00
|
|
|
--
|
2024-05-17 21:00:50 -04:00
|
|
|
move_y := move_y + core.icon;
|
2024-05-11 00:49:15 -04:00
|
|
|
end loop;
|
|
|
|
end draw_points;
|
|
|
|
|
2024-02-15 21:03:09 -05:00
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end skill;
|