aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/pop/Pop.hpp
blob: 3d523625d266c89c598263021c3a332c3ff5d2c8 (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
#pragma once

#include "openvic-simulation/economy/Good.hpp"
#include "openvic-simulation/military/Unit.hpp"
#include "openvic-simulation/pop/Culture.hpp"
#include "openvic-simulation/pop/Religion.hpp"

namespace OpenVic {

   struct PopManager;
   struct PopType;
   struct RebelType;
   struct RebelManager;

   /* REQUIREMENTS:
    * POP-18, POP-19, POP-20, POP-21, POP-34, POP-35, POP-36, POP-37
    */
   struct Pop {
      friend struct PopManager;

      using pop_size_t = int64_t;

   private:
      PopType const& PROPERTY(type);
      Culture const& PROPERTY(culture);
      Religion const& PROPERTY(religion);
      pop_size_t PROPERTY(size);
      pop_size_t PROPERTY(num_promoted);
      pop_size_t PROPERTY(num_demoted);
      pop_size_t PROPERTY(num_migrated);

      fixed_point_t PROPERTY(militancy);
      fixed_point_t PROPERTY(consciousness);
      RebelType const* PROPERTY(rebel_type);

      Pop(
         PopType const& new_type, Culture const& new_culture, Religion const& new_religion, pop_size_t new_size,
         fixed_point_t new_militancy, fixed_point_t new_consciousness, RebelType const* new_rebel_type
      );

   public:
      Pop(Pop const&) = default;
      Pop(Pop&&) = default;
      Pop& operator=(Pop const&) = delete;
      Pop& operator=(Pop&&) = delete;

      pop_size_t get_pop_daily_change() const;
   };

   struct Strata : HasIdentifier {
      friend struct PopManager;

   private:
      Strata(std::string_view new_identifier);

   public:
      Strata(Strata&&) = default;
   };

   /* REQUIREMENTS:
    * POP-15, POP-16, POP-17, POP-26
    */
   struct PopType : HasIdentifierAndColour {
      friend struct PopManager;

      using sprite_t = uint8_t;
      using rebel_units_t = fixed_point_map_t<Unit const*>;

   private:
      Strata const& PROPERTY(strata);
      const sprite_t PROPERTY(sprite);
      const Good::good_map_t PROPERTY(life_needs);
      const Good::good_map_t PROPERTY(everyday_needs);
      const Good::good_map_t PROPERTY(luxury_needs);
      const rebel_units_t PROPERTY(rebel_units);
      const Pop::pop_size_t PROPERTY(max_size);
      const Pop::pop_size_t PROPERTY(merge_max_size);
      const bool PROPERTY(state_capital_only);
      const bool PROPERTY(demote_migrant);
      const bool PROPERTY(is_artisan);
      const bool PROPERTY(allowed_to_vote);
      const bool PROPERTY(is_slave);
      const bool PROPERTY(can_be_recruited);
      const bool PROPERTY(can_reduce_consciousness);
      const bool PROPERTY(administrative_efficiency);
      const bool PROPERTY(can_build);
      const bool PROPERTY(factory);
      const bool PROPERTY(can_work_factory);
      const bool PROPERTY(unemployment);

      // TODO - country and province migration targets, promote_to targets, ideologies and issues

      PopType(
         std::string_view new_identifier, colour_t new_colour, Strata const& new_strata, sprite_t new_sprite,
         Good::good_map_t&& new_life_needs, Good::good_map_t&& new_everyday_needs, Good::good_map_t&& new_luxury_needs,
         rebel_units_t&& new_rebel_units, Pop::pop_size_t new_max_size, Pop::pop_size_t new_merge_max_size,
         bool new_state_capital_only, bool new_demote_migrant, bool new_is_artisan, bool new_allowed_to_vote,
         bool new_is_slave, bool new_can_be_recruited, bool new_can_reduce_consciousness,
         bool new_administrative_efficiency, bool new_can_build, bool new_factory, bool new_can_work_factory,
         bool new_unemployment
      );

   public:
      PopType(PopType&&) = default;
   };

   struct Province;

   struct PopManager {
   private:
      /* Using strata/stratas instead of stratum/strata to avoid confusion. */
      IdentifierRegistry<Strata> IDENTIFIER_REGISTRY(strata);
      IdentifierRegistry<PopType> IDENTIFIER_REGISTRY(pop_type);
      PopType::sprite_t PROPERTY(slave_sprite);
      PopType::sprite_t PROPERTY(administrative_sprite);

      CultureManager PROPERTY_REF(culture_manager);
      ReligionManager PROPERTY_REF(religion_manager);

   public:
      PopManager();

      bool add_strata(std::string_view identifier);

      bool add_pop_type(
         std::string_view identifier, colour_t new_colour, Strata const* strata, PopType::sprite_t sprite,
         Good::good_map_t&& life_needs, Good::good_map_t&& everyday_needs, Good::good_map_t&& luxury_needs,
         PopType::rebel_units_t&& rebel_units, Pop::pop_size_t max_size, Pop::pop_size_t merge_max_size,
         bool state_capital_only, bool demote_migrant, bool is_artisan, bool allowed_to_vote, bool is_slave,
         bool can_be_recruited, bool can_reduce_consciousness, bool administrative_efficiency, bool can_build, bool factory,
         bool can_work_factory, bool unemployment
      );

      void reserve_pop_types(size_t count);

      bool load_pop_type_file(
         std::string_view filestem, UnitManager const& unit_manager, GoodManager const& good_manager, ast::NodeCPtr root
      );
      bool load_pop_into_vector(
         RebelManager const& rebel_manager, std::vector<Pop>& vec, PopType const& type, ast::NodeCPtr pop_node,
         bool *non_integer_size
      ) const;

      bool generate_modifiers(ModifierManager& modifier_manager);
   };
}