2024-03-11 16:47:28 -04:00
|
|
|
with core, ui, effect, magic;
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
use magic;
|
|
|
|
|
|
|
|
package body magic is
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
type sprite_array is array (codex) of core.sprite;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-03-11 16:47:28 -04:00
|
|
|
view_width : constant integer := 90;
|
|
|
|
view_height : constant integer := 90;
|
|
|
|
|
|
|
|
view_sprite : sprite_array;
|
|
|
|
icon_sprite : sprite_array;
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
procedure configure is
|
|
|
|
begin
|
2024-03-11 08:42:25 -04:00
|
|
|
core.echo (core.comment, "Configuring magic components...");
|
|
|
|
--
|
2024-02-15 21:03:09 -05:00
|
|
|
for index in codex
|
|
|
|
loop
|
|
|
|
declare
|
|
|
|
folder : constant string := core.lowercase (school'image (trait (index).kind));
|
|
|
|
file : constant string := core.lowercase (codex'image (index));
|
|
|
|
begin
|
2024-03-17 16:45:46 -04:00
|
|
|
view_sprite (index) := core.import_sprite ("./sprite/magic/" & folder & "/" & file & ".png", 1, 1);
|
|
|
|
icon_sprite (index) := core.import_sprite ("./sprite/magic/icon/" & file & ".png", 1, 1);
|
2024-02-15 21:03:09 -05:00
|
|
|
end;
|
|
|
|
end loop;
|
|
|
|
end configure;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-03-11 16:47:28 -04:00
|
|
|
procedure icon (index : in codex; x, y : in integer) is
|
|
|
|
begin
|
|
|
|
core.draw (icon_sprite (index), x + 2, y + 2);
|
2024-03-13 19:34:55 -04:00
|
|
|
ui.draw_overicon (trait (index).text, x, y);
|
2024-03-11 16:47:28 -04:00
|
|
|
end icon;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
procedure view (index : in codex; x, y : in integer) is
|
|
|
|
offset : constant integer := 4;
|
|
|
|
begin
|
|
|
|
core.draw (view_sprite (index), x + offset, y + offset);
|
2024-03-13 19:34:55 -04:00
|
|
|
ui.draw_icon_menu (trait (index).text, x, y, view_width + 2 * offset, view_height + 2 * offset);
|
2024-03-11 16:47:28 -04:00
|
|
|
end view;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
procedure menu (x, y : in integer; center : in boolean) is
|
|
|
|
offset : constant integer := 16;
|
|
|
|
width : constant integer := 168 * 8 + 2 * offset;
|
|
|
|
height : constant integer := 12 * 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);
|
|
|
|
--
|
|
|
|
next : array (0 .. 7) of integer := (others => 0);
|
2024-02-15 21:03:09 -05:00
|
|
|
begin
|
2024-03-11 16:47:28 -04:00
|
|
|
ui.draw_tiny_menu (move_x, move_y, width, height, true);
|
|
|
|
ui.draw_title_bar (move_x, move_y, width, "Magic Abilities");
|
|
|
|
--
|
|
|
|
for index in codex
|
|
|
|
loop
|
|
|
|
icon (index, move_x + offset + school'pos (trait (index).kind) * 168, move_y + offset + next (school'pos (trait (index).kind)) * core.icon);
|
2024-03-18 16:37:14 -04:00
|
|
|
core.write (trait (index).name, move_x + offset + school'pos (trait (index).kind) * 168 + core.icon, move_y + offset + next (school'pos (trait (index).kind)) * core.icon, ui.glyphs (ui.active));
|
2024-03-11 16:47:28 -04:00
|
|
|
--
|
|
|
|
next (school'pos (trait (index).kind)) := next (school'pos (trait (index).kind)) + 1;
|
|
|
|
end loop;
|
|
|
|
end menu;
|
2024-02-15 21:03:09 -05:00
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end magic;
|