xhads/source/construction.adb

40 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, effect, resource, faction, construction;
2024-02-15 21:03:09 -05:00
package body construction is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2024-04-23 16:19:29 -04:00
sprite : array (codex) of core.sprite;
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 construction components...");
--
2024-02-15 21:03:09 -05:00
for index in codex
loop
declare
folder : constant string := core.lowercase (faction.codex'image (trait (index).kind));
file : constant string := core.lowercase (codex'image (index));
begin
sprite (index) := core.import_sprite ("./sprite/construction/" & folder & "/" & file & ".png", trait (index).frames, 1);
2024-02-15 21:03:09 -05:00
end;
end loop;
end configure;
------------------------------------------------------------------------------------------
procedure draw (index : in codex; x, y : in integer) is
begin
core.move (sprite (index), x, y, trait (index).frames, 1);
end draw;
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end construction;