2024-04-25 00:27:13 -04:00
|
|
|
-- 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
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2024-04-26 16:05:48 -04:00
|
|
|
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
|
|
|
);
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-06-01 11:46:17 -04:00
|
|
|
type definition is record
|
2024-06-04 07:52:44 -04:00
|
|
|
base : core.point;
|
|
|
|
name : access string;
|
|
|
|
text : access 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;
|
2024-05-23 03:34:45 -04:00
|
|
|
type price is array (enumeration) of natural;
|
2024-02-16 09:59:19 -05:00
|
|
|
|
2024-02-15 21:03:09 -05:00
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-04-26 16:05:48 -04:00
|
|
|
count : constant natural := enumeration'pos (enumeration'last) + 1;
|
2024-02-19 16:20:38 -05:00
|
|
|
|
2024-06-05 08:29:55 -04:00
|
|
|
default : constant points := (others => (12, 240));
|
|
|
|
|
2024-06-02 04:34:59 -04:00
|
|
|
description : constant array (enumeration) of definition := (
|
2024-06-05 07:55:45 -04:00
|
|
|
gold => ((24, 480), new string'("Gold"), new string'("Gold is precious yellowish shiny metal, valued since ancient times.")),
|
|
|
|
wood => ((12, 240), new string'("Wood"), new string'("Wood is just bundle of lignin and cellulose, nothing more.")),
|
|
|
|
stone => ((12, 240), new string'("Stone"), new string'("Stone is essential building block for most constructions in this world.")),
|
|
|
|
metal => ((12, 240), new string'("Metal"), new string'("Metal as a resource is mixture of commonly found metalic elements.")),
|
|
|
|
leather => ((12, 240), new string'("Leather"), new string'("Leather is general purpose resource, used for armours and decorations.")),
|
|
|
|
gem => ((12, 240), new string'("Gem"), new string'("Gem as a resource is same as metal, just mixture of various gems."))
|
2024-06-02 04:34:59 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
icon : array (enumeration) of core.sprite;
|
2024-05-29 10:20:35 -04:00
|
|
|
|
2024-02-15 21:03:09 -05:00
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end resource;
|