diff options
author | Hop311 <hop3114@gmail.com> | 2023-05-16 20:59:39 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-05-16 20:59:39 +0200 |
commit | 42d9d1d5417deb5979a9d5775cfe97dcff4b77ba (patch) | |
tree | 440634772615531e704a5554aa59c9890cd9cd85 /src/openvic/map/Province.cpp | |
parent | 339e0278a2064f7eeb152fe8c5778840b609e9f3 (diff) |
Changed from OpenVic2 to OpenVic
Diffstat (limited to 'src/openvic/map/Province.cpp')
-rw-r--r-- | src/openvic/map/Province.cpp | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/src/openvic/map/Province.cpp b/src/openvic/map/Province.cpp new file mode 100644 index 0000000..b169021 --- /dev/null +++ b/src/openvic/map/Province.cpp @@ -0,0 +1,75 @@ +#include "Province.hpp" + +#include <cassert> +#include <sstream> +#include <iomanip> + +using namespace OpenVic; + +Province::Province(index_t new_index, std::string const& new_identifier, colour_t new_colour) : + HasIdentifier{ new_identifier }, HasColour{ new_colour }, index{ new_index }, buildings{ "buildings" } { + assert(index != NULL_INDEX); +} + +index_t Province::get_index() const { + return index; +} + +Region* Province::get_region() const { + return region; +} + +bool Province::is_water() const { + return water; +} + +Province::life_rating_t Province::get_life_rating() const { + return life_rating; +} + +return_t Province::add_building(BuildingType const& type) { + return buildings.add_item({ type }); +} + +void Province::lock_buildings() { + buildings.lock(false); +} + +void Province::reset_buildings() { + buildings.reset(); +} + +Building const* Province::get_building_by_identifier(std::string const& identifier) const { + return buildings.get_item_by_identifier(identifier); +} + +std::vector<Building> const& Province::get_buildings() const { + return buildings.get_items(); +} + +return_t Province::expand_building(std::string const& building_type_identifier) { + Building* building = buildings.get_item_by_identifier(building_type_identifier); + if (building == nullptr) return FAILURE; + return building->expand(); +} + +Good const* Province::get_rgo() const { + return rgo; +} + +std::string Province::to_string() const { + std::stringstream stream; + stream << "(#" << std::to_string(index) << ", " << get_identifier() << ", 0x" << colour_to_hex_string() << ")"; + return stream.str(); +} + +void Province::update_state(Date const& today) { + for (Building& building : buildings.get_items()) + building.update_state(today); + +} + +void Province::tick(Date const& today) { + for (Building& building : buildings.get_items()) + building.tick(today); +} |