42 lines
1.4 KiB
Ada
42 lines
1.4 KiB
Ada
with core, item;
|
|
|
|
use item;
|
|
|
|
package body item is
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
type sprite_array is array (codex) of core.sprite;
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
sprite : sprite_array;
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
procedure configure is
|
|
begin
|
|
core.echo (core.comment, "Configuring item components...");
|
|
--
|
|
for index in codex
|
|
loop
|
|
declare
|
|
folder : constant string := core.lowercase (slot'image (trait (index).kind));
|
|
file : constant string := core.lowercase (codex'image (index));
|
|
begin
|
|
sprite (index) := core.load_sprite ("./sprite/item/" & folder & "/" & file & ".png", 1, 1);
|
|
end;
|
|
end loop;
|
|
end configure;
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
procedure draw (index : in codex; x, y : in integer) is
|
|
begin
|
|
core.draw (sprite (index), x, y);
|
|
end draw;
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
end item;
|