41 lines
1.4 KiB
Ada
41 lines
1.4 KiB
Ada
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
--
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
with core, ui;
|
|
|
|
package body resource is
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
sprite : array (enumeration) of core.sprite;
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
procedure configure is
|
|
structure : ui.structure;
|
|
begin
|
|
core.echo (core.comment, "Configuring resource components...");
|
|
--
|
|
structure.title := "Resource Menu ";
|
|
structure.toggle := core.signal_r;
|
|
structure.show := false;
|
|
structure.center := false;
|
|
structure.resize := true;
|
|
structure.x := 60;
|
|
structure.y := 480;
|
|
structure.gui_n := count;
|
|
--
|
|
ui.add_structure (structure);
|
|
--
|
|
for index in enumeration loop
|
|
sprite (index) := core.import_sprite ("./sprite/resource/" & core.lowercase (enumeration'image (index)) & ".png", 1, 1);
|
|
--
|
|
ui.add_structure_button (sprite (index), trait (index).name, trait (index).text);
|
|
end loop;
|
|
end configure;
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
end resource;
|