aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic2/map/Province.cpp
blob: b3d455bac4596979a19d59d48c25ae5fbed5ee2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include "Province.hpp"

#include <cassert>
#include <sstream>
#include <iomanip>

using namespace OpenVic2;

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);
   assert(new_colour != NULL_COLOUR);
}

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();
}

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();
}

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);
}