blob: 3de726304224f6a41c0c45ae77c0d9215a6d2e5c (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
#include "Province.hpp"
#include <cassert>
#include <iomanip>
#include <sstream>
using namespace OpenVic;
Province::Province(const std::string_view new_identifier, colour_t new_colour, index_t new_index)
: HasIdentifierAndColour { new_identifier, new_colour, false },
index { new_index },
buildings { "buildings" } {
assert(index != NULL_INDEX);
}
Province::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(Building&& building) {
return buildings.add_item(std::move(building));
}
void Province::lock_buildings() {
buildings.lock(false);
}
void Province::reset_buildings() {
buildings.reset();
}
Building const* Province::get_building_by_identifier(const std::string_view 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(const std::string_view 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::add_pop(Pop&& pop) {
if (is_water()) {
Logger::error("Trying to add pop to water province ", get_identifier());
} else {
pops.push_back(std::move(pop));
}
}
void Province::clear_pops() {
pops.clear();
}
Pop::pop_size_t Province::get_total_population() const {
return total_population;
}
distribution_t const& Province::get_pop_type_distribution() const {
return pop_types;
}
distribution_t const& Province::get_culture_distribution() const {
return cultures;
}
/* REQUIREMENTS:
* MAP-65
*/
void Province::update_pops() {
total_population = 0;
pop_types.clear();
cultures.clear();
for (Pop const& pop : pops) {
total_population += pop.get_size();
pop_types[&pop.get_type()] += pop.get_size();
cultures[&pop.get_culture()] += pop.get_size();
}
}
void Province::update_state(Date const& today) {
for (Building& building : buildings.get_items())
building.update_state(today);
update_pops();
}
void Province::tick(Date const& today) {
for (Building& building : buildings.get_items())
building.tick(today);
}
|