xhads/source/resource.ads

51 lines
2.4 KiB
Ada
Raw Normal View History

-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
--
-- GNU General Public Licence (version 3 or later)
2024-02-15 21:03:09 -05:00
with core;
package resource is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
type enumeration is (
2024-05-07 03:58:41 -04:00
gold, wood, stone, metal, leather, gem
2024-02-15 21:03:09 -05:00
);
------------------------------------------------------------------------------------------
type information is record
2024-02-15 21:03:09 -05:00
name : core.short_string;
base : core.point;
text : core.long_string;
2024-02-15 21:03:09 -05:00
end record;
2024-05-23 02:58:30 -04:00
type points is array (enumeration) of core.point;
type price is array (enumeration) of natural;
2024-02-16 09:59:19 -05:00
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------
count : constant natural := enumeration'pos (enumeration'last) + 1;
trait : constant array (enumeration) of information := (
gold => ("Gold ", (24, 480), "Gold is precious yellowish shiny metal, valued since ancient times. "),
wood => ("Wood ", (12, 240), "Wood is just bundle of lignin and cellulose, nothing more. "),
stone => ("Stone ", (12, 240), "Stone is essential building block for most constructions in this world. "),
metal => ("Metal ", (12, 240), "Metal as a resource is mixture of commonly found metalic elements. "),
leather => ("Leather ", (12, 240), "Leather is general purpose resource, used for armours and decorations. "),
gem => ("Gem ", (12, 240), "Gem as a resource is same as metal, just mixture of various gems. ")
2024-02-15 21:03:09 -05:00
);
------------------------------------------------------------------------------------------
procedure configure;
2024-05-11 03:03:28 -04:00
procedure draw_points (data : in points; x, y : in integer);
procedure save_points (here : in core.io.file_type; data : in points);
procedure load_points (here : in core.io.file_type; data : out points);
2024-05-25 03:19:58 -04:00
2024-02-15 21:03:09 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end resource;