aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/country/CountryInstance.hpp
blob: c43f0cd6a8a2026ec17d47914c00a1bbb8617495 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
#pragma once

#include <vector>

#include <plf_colony.h>

#include "openvic-simulation/military/Leader.hpp"
#include "openvic-simulation/military/UnitInstanceGroup.hpp"
#include "openvic-simulation/pop/Pop.hpp"
#include "openvic-simulation/types/Date.hpp"
#include "openvic-simulation/types/IdentifierRegistry.hpp"
#include "openvic-simulation/types/IndexedMap.hpp"
#include "openvic-simulation/utility/Getters.hpp"

namespace OpenVic {
   struct CountryInstanceManager;
   struct CountryDefinition;
   struct ProvinceInstance;
   struct State;
   struct Technology;
   struct Invention;
   struct TechnologySchool;
   struct NationalValue;
   struct GovernmentType;
   struct CountryParty;
   struct Ideology;
   struct Reform;
   struct Culture;
   struct Religion;
   struct CountryHistoryEntry;
   struct MapInstance;
   struct DefineManager;

   /* Representation of a country's mutable attributes, with a CountryDefinition that is unique at any single time
    * but can be swapped with other CountryInstance's CountryDefinition when switching tags. */
   struct CountryInstance {
      friend struct CountryInstanceManager;

      /*
         Westernisation Progress vs Status for Uncivilised Countries:
            15 - primitive
            16 - uncivilised
            50 - uncivilised
            51 - partially westernised
      */

      enum struct country_status_t : uint8_t {
         COUNTRY_STATUS_GREAT_POWER,
         COUNTRY_STATUS_SECONDARY_POWER,
         COUNTRY_STATUS_CIVILISED,
         COUNTRY_STATUS_PARTIALLY_CIVILISED,
         COUNTRY_STATUS_UNCIVILISED,
         COUNTRY_STATUS_PRIMITIVE
      };

   private:
      /* Main attributes */
      // We can always assume country_definition is not null, as it is initialised from a reference and only ever changed
      // by swapping with another CountryInstance's country_definition.
      CountryDefinition const* PROPERTY(country_definition);
      colour_t PROPERTY(colour); // Cached to avoid searching government overrides for every province
      ProvinceInstance const* PROPERTY(capital);
      string_set_t PROPERTY(country_flags);
      bool PROPERTY_CUSTOM_PREFIX(releasable_vassal, is);

      country_status_t PROPERTY(country_status);
      Date PROPERTY(lose_great_power_date);
      fixed_point_t PROPERTY(total_score);
      size_t PROPERTY(total_rank);

      ordered_set<ProvinceInstance*> PROPERTY(owned_provinces);
      ordered_set<ProvinceInstance*> PROPERTY(controlled_provinces);
      ordered_set<ProvinceInstance*> PROPERTY(core_provinces);
      ordered_set<State*> PROPERTY(states);

      /* Production */
      fixed_point_t PROPERTY(industrial_power);
      std::vector<std::pair<State const*, fixed_point_t>> PROPERTY(industrial_power_from_states);
      std::vector<std::pair<CountryInstance const*, fixed_point_t>> PROPERTY(industrial_power_from_investments);
      size_t PROPERTY(industrial_rank);
      fixed_point_map_t<CountryInstance const*> PROPERTY(foreign_investments);
      // TODO - total amount of each good produced

      /* Budget */
      fixed_point_t PROPERTY(cash_stockpile);
      // TODO - cash stockpile change over last 30 days

      /* Technology */
      IndexedMap<Technology, bool> PROPERTY(technologies);
      IndexedMap<Invention, bool> PROPERTY(inventions);
      Technology const* PROPERTY(current_research);
      fixed_point_t PROPERTY(invested_research_points);
      Date PROPERTY(expected_completion_date);
      fixed_point_t PROPERTY(research_point_stockpile);
      fixed_point_t PROPERTY(daily_research_points); // TODO - breakdown by source
      fixed_point_t PROPERTY(national_literacy);
      TechnologySchool const* PROPERTY(tech_school);
      // TODO - cached possible inventions with %age chance

      /* Politics */
      NationalValue const* PROPERTY(national_value);
      GovernmentType const* PROPERTY(government_type);
      Date PROPERTY(last_election);
      CountryParty const* PROPERTY(ruling_party);
      IndexedMap<Ideology, fixed_point_t> PROPERTY(upper_house);
      std::vector<Reform const*> PROPERTY(reforms); // TODO: should be map of reform groups to active reforms: must set defaults & validate applied history
      // TODO - national issue support distribution (for just voters and for everyone)
      IndexedMap<GovernmentType, GovernmentType const*> PROPERTY(government_flag_overrides);
      GovernmentType const* PROPERTY(flag_government_type);
      fixed_point_t PROPERTY(suppression_points);
      fixed_point_t PROPERTY(infamy);
      fixed_point_t PROPERTY(plurality);
      fixed_point_t PROPERTY(revanchism);
      // TODO - rebel movements

      /* Population */
      Culture const* PROPERTY(primary_culture);
      ordered_set<Culture const*> PROPERTY(accepted_cultures);
      Religion const* PROPERTY(religion);
      Pop::pop_size_t PROPERTY(total_population);
      // TODO - population change over last 30 days
      fixed_point_t PROPERTY(national_consciousness);
      fixed_point_t PROPERTY(national_militancy);
      IndexedMap<PopType, fixed_point_t> PROPERTY(pop_type_distribution);
      size_t PROPERTY(national_focus_capacity)
      // TODO - national foci

      /* Trade */
      // TODO - total amount of each good exported and imported

      /* Diplomacy */
      fixed_point_t PROPERTY(prestige);
      size_t PROPERTY(prestige_rank);
      fixed_point_t PROPERTY(diplomatic_points);
      // TODO - colonial power, current wars

      /* Military */
      fixed_point_t PROPERTY(military_power);
      fixed_point_t PROPERTY(military_power_from_land);
      fixed_point_t PROPERTY(military_power_from_sea);
      fixed_point_t PROPERTY(military_power_from_leaders);
      size_t PROPERTY(military_rank);
      plf::colony<General> PROPERTY(generals);
      plf::colony<Admiral> PROPERTY(admirals);
      ordered_set<ArmyInstance*> PROPERTY(armies);
      ordered_set<NavyInstance*> PROPERTY(navies);
      size_t PROPERTY(regiment_count);
      size_t PROPERTY(max_supported_regiment_count);
      size_t PROPERTY(mobilisation_potential_regiment_count);
      size_t PROPERTY(mobilisation_max_regiment_count);
      fixed_point_t PROPERTY(mobilisation_impact);
      fixed_point_t PROPERTY(supply_consumption);
      size_t PROPERTY(ship_count);
      fixed_point_t PROPERTY(total_consumed_ship_supply);
      fixed_point_t PROPERTY(max_ship_supply);
      fixed_point_t PROPERTY(leadership_points);
      fixed_point_t PROPERTY(war_exhaustion);
      bool PROPERTY_CUSTOM_PREFIX(mobilised, is);
      bool PROPERTY_CUSTOM_PREFIX(disarmed, is);
      IndexedMap<RegimentType, bool> PROPERTY(unlocked_regiment_types);
      RegimentType::allowed_cultures_t PROPERTY(allowed_regiment_cultures);
      IndexedMap<ShipType, bool> PROPERTY(unlocked_ship_types);

      UNIT_BRANCHED_GETTER(get_unit_instance_groups, armies, navies);
      UNIT_BRANCHED_GETTER(get_leaders, generals, admirals);
      UNIT_BRANCHED_GETTER(get_unlocked_unit_types, unlocked_regiment_types, unlocked_ship_types);

      CountryInstance(
         CountryDefinition const* new_country_definition,
         decltype(technologies)::keys_t const& technology_keys,
         decltype(inventions)::keys_t const& invention_keys,
         decltype(upper_house)::keys_t const& ideology_keys,
         decltype(government_flag_overrides)::keys_t const& government_type_keys,
         decltype(pop_type_distribution)::keys_t const& pop_type_keys,
         decltype(unlocked_regiment_types)::keys_t const& unlocked_regiment_types_keys,
         decltype(unlocked_ship_types)::keys_t const& unlocked_ship_types_keys
      );

   public:
      std::string_view get_identifier() const;

      bool exists() const;
      bool is_civilised() const;
      bool can_colonise() const;
      bool is_great_power() const;
      bool is_secondary_power() const;

      bool set_country_flag(std::string_view flag, bool warn);
      bool clear_country_flag(std::string_view flag, bool warn);
      bool add_owned_province(ProvinceInstance& new_province);
      bool remove_owned_province(ProvinceInstance& province_to_remove);
      bool add_controlled_province(ProvinceInstance& new_province);
      bool remove_controlled_province(ProvinceInstance& province_to_remove);
      bool add_core_province(ProvinceInstance& new_core);
      bool remove_core_province(ProvinceInstance& core_to_remove);
      bool add_state(State& new_state);
      bool remove_state(State& state_to_remove);

      bool add_accepted_culture(Culture const& new_accepted_culture);
      bool remove_accepted_culture(Culture const& culture_to_remove);
      /* Set a party's popularity in the upper house. */
      bool set_upper_house(Ideology const* ideology, fixed_point_t popularity);
      bool add_reform(Reform const* new_reform);
      bool remove_reform(Reform const* reform_to_remove);

      template<UnitType::branch_t Branch>
      bool add_unit_instance_group(UnitInstanceGroup<Branch>& group);
      template<UnitType::branch_t Branch>
      bool remove_unit_instance_group(UnitInstanceGroup<Branch>& group);

      template<UnitType::branch_t Branch>
      void add_leader(LeaderBranched<Branch>&& leader);
      template<UnitType::branch_t Branch>
      bool remove_leader(LeaderBranched<Branch> const* leader);

      template<UnitType::branch_t Branch>
      void unlock_unit_type(UnitTypeBranched<Branch> const& unit_type);

      bool is_primary_culture(Culture const& culture) const;
      // This only checks the accepted cultures list, ignoring the primary culture.
      bool is_accepted_culture(Culture const& culture) const;
      bool is_primary_or_accepted_culture(Culture const& culture) const;

      // Sets the investment of each country in the map (rather than adding to them), leaving the rest unchanged.
      void apply_foreign_investments(
         fixed_point_map_t<CountryDefinition const*> const& investments,
         CountryInstanceManager const& country_instance_manager
      );

      bool apply_history_to_country(
         CountryHistoryEntry const& entry, MapInstance& map_instance, CountryInstanceManager const& country_instance_manager
      );

   private:
      void _update_production(DefineManager const& define_manager);
      void _update_budget();
      void _update_technology();
      void _update_politics();
      void _update_population();
      void _update_trade();
      void _update_diplomacy();
      void _update_military(DefineManager const& define_manager, UnitTypeManager const& unit_type_manager);

   public:

      void update_gamestate(DefineManager const& define_manager, UnitTypeManager const& unit_type_manager);
      void tick();
   };

   struct CountryDefinitionManager;
   struct CountryHistoryManager;
   struct UnitInstanceManager;

   struct CountryInstanceManager {
   private:
      IdentifierRegistry<CountryInstance> IDENTIFIER_REGISTRY(country_instance);

      std::vector<CountryInstance*> PROPERTY(great_powers);
      std::vector<CountryInstance*> PROPERTY(secondary_powers);

      std::vector<CountryInstance*> PROPERTY(total_ranking);
      std::vector<CountryInstance*> PROPERTY(prestige_ranking);
      std::vector<CountryInstance*> PROPERTY(industrial_power_ranking);
      std::vector<CountryInstance*> PROPERTY(military_power_ranking);

      void update_rankings(Date today, DefineManager const& define_manager);

   public:
      CountryInstance& get_country_instance_from_definition(CountryDefinition const& country);
      CountryInstance const& get_country_instance_from_definition(CountryDefinition const& country) const;

      bool generate_country_instances(
         CountryDefinitionManager const& country_definition_manager,
         decltype(CountryInstance::technologies)::keys_t const& technology_keys,
         decltype(CountryInstance::inventions)::keys_t const& invention_keys,
         decltype(CountryInstance::upper_house)::keys_t const& ideology_keys,
         decltype(CountryInstance::government_flag_overrides)::keys_t const& government_type_keys,
         decltype(CountryInstance::pop_type_distribution)::keys_t const& pop_type_keys,
         decltype(CountryInstance::unlocked_regiment_types)::keys_t const& unlocked_regiment_types_keys,
         decltype(CountryInstance::unlocked_ship_types)::keys_t const& unlocked_ship_types_keys
      );

      bool apply_history_to_countries(
         CountryHistoryManager const& history_manager, Date date, UnitInstanceManager& unit_instance_manager,
         MapInstance& map_instance
      );

      void update_gamestate(Date today, DefineManager const& define_manager, UnitTypeManager const& unit_type_manager);
      void tick();
   };
}