aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic2/Map.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/openvic2/Map.hpp')
-rw-r--r--extension/src/openvic2/Map.hpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/extension/src/openvic2/Map.hpp b/extension/src/openvic2/Map.hpp
index f3fd1ef..365d78b 100644
--- a/extension/src/openvic2/Map.hpp
+++ b/extension/src/openvic2/Map.hpp
@@ -8,16 +8,20 @@ namespace OpenVic2 {
struct Province {
using colour_t = uint32_t;
+ using index_t = uint16_t;
friend struct Map;
static const colour_t NULL_COLOUR = 0, MAX_COLOUR = 0xFFFFFF;
+ static const index_t NULL_INDEX = 0, MAX_INDEX = 0xFFFF;
private:
+ index_t index;
std::string identifier;
colour_t colour;
- Province(std::string const& identifier, colour_t colour);
+ Province(index_t index, std::string const& identifier, colour_t colour);
public:
static std::string colour_to_hex_string(colour_t colour);
+ index_t get_index() const;
std::string const& get_identifier() const;
colour_t get_colour() const;
std::string to_string() const;
@@ -26,9 +30,14 @@ namespace OpenVic2 {
struct Map {
private:
std::vector<Province> provinces;
+ bool provinces_locked = false;
public:
bool add_province(std::string const& identifier, Province::colour_t colour, std::string& error_message);
+ void lock_provinces();
+ size_t get_province_count() const;
+
+ Province* get_province_by_index(Province::index_t index);
Province* get_province_by_identifier(std::string const& identifier);
Province* get_province_by_colour(Province::colour_t colour);
};