xhads/source/construction.ads

42 lines
1.6 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;
2024-02-15 21:03:09 -05:00
package construction is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
type enumeration is (
house, cottage, shack, homestead, hut, den
2024-02-15 21:03:09 -05:00
);
------------------------------------------------------------------------------------------
type definition is record
2024-06-01 17:27:18 -04:00
name : core.unstring;
kind : faction.enumeration;
price : resource.price;
2024-02-15 21:03:09 -05:00
frames : integer;
evoke : effect.information;
2024-02-15 21:03:09 -05:00
end record;
------------------------------------------------------------------------------------------
count : constant natural := enumeration'pos (enumeration'last) + 1;
2024-06-01 17:27:18 -04:00
description : array (enumeration) of definition;
sprite : array (enumeration) of core.sprite;
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------
procedure configure;
2024-05-11 06:01:07 -04:00
procedure draw (index : in enumeration; x, y : in integer);
procedure draw_plus (index : in enumeration; x, y : in integer);
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end construction;