aboutsummaryrefslogtreecommitdiff
path: root/src/openvic2/map/Province.hpp
diff options
context:
space:
mode:
author Hop311 <hop3114@gmail.com>2023-05-16 20:59:39 +0200
committer Hop311 <hop3114@gmail.com>2023-05-16 20:59:39 +0200
commit42d9d1d5417deb5979a9d5775cfe97dcff4b77ba (patch)
tree440634772615531e704a5554aa59c9890cd9cd85 /src/openvic2/map/Province.hpp
parent339e0278a2064f7eeb152fe8c5778840b609e9f3 (diff)
Changed from OpenVic2 to OpenVic
Diffstat (limited to 'src/openvic2/map/Province.hpp')
-rw-r--r--src/openvic2/map/Province.hpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/openvic2/map/Province.hpp b/src/openvic2/map/Province.hpp
deleted file mode 100644
index 44d0dee..0000000
--- a/src/openvic2/map/Province.hpp
+++ /dev/null
@@ -1,47 +0,0 @@
-#pragma once
-
-#include "Building.hpp"
-
-namespace OpenVic2 {
- struct Map;
- struct Region;
- struct Good;
-
- /* REQUIREMENTS:
- * MAP-5, MAP-7, MAP-8, MAP-43, MAP-47
- */
- struct Province : HasIdentifier, HasColour {
- friend struct Map;
-
- using life_rating_t = int8_t;
-
- private:
- const index_t index;
- Region* region = nullptr;
- bool water = false;
- life_rating_t life_rating = 0;
- IdentifierRegistry<Building> buildings;
- // TODO - change this into a factory-like structure
- Good const* rgo = nullptr;
-
- Province(index_t new_index, std::string const& new_identifier, colour_t new_colour);
- public:
- Province(Province&&) = default;
-
- index_t get_index() const;
- Region* get_region() const;
- bool is_water() const;
- life_rating_t get_life_rating() const;
- return_t add_building(BuildingType const& type);
- void lock_buildings();
- void reset_buildings();
- Building const* get_building_by_identifier(std::string const& identifier) const;
- std::vector<Building> const& get_buildings() const;
- return_t expand_building(std::string const& building_type_identifier);
- Good const* get_rgo() const;
- std::string to_string() const;
-
- void update_state(Date const& today);
- void tick(Date const& today);
- };
-}