aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/map/Region.hpp
blob: 420d221f87ace1c5347abacaf327a91bc4e60f52 (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
#pragma once

#include "openvic-simulation/map/Province.hpp"

namespace OpenVic {

   struct ProvinceSet {
      using provinces_t = std::vector<Province const*>;

   private:
      provinces_t provinces;
      bool locked = false;

   public:
      /* Returns true if the province is successfully added, false if not (including if it's already in the set). */
      bool add_province(Province const* province);
      bool add_provinces(provinces_t const& new_provinces);
      /* Returns true if the province is successfully removed, false if not (including if it's not in the set). */
      bool remove_province(Province const* province);
      void lock(bool log = false);
      bool is_locked() const;
      void reset();
      bool empty() const;
      size_t size() const;
      void reserve(size_t size);
      void reserve_more(size_t size);
      bool contains_province(Province const* province) const;
      provinces_t const& get_provinces() const;
   };

   struct ProvinceSetModifier : Modifier, ProvinceSet {
      friend struct Map;
   private:
      ProvinceSetModifier(std::string_view new_identifier, ModifierValue&& new_values);
   public:
      ProvinceSetModifier(ProvinceSetModifier&&) = default;
   };

   /* REQUIREMENTS:
    * MAP-6, MAP-44, MAP-48
    */
   struct Region : HasIdentifierAndColour, ProvinceSet {
      friend struct Map;

   private:
      /* A meta region cannot be the template for a state.
       * Any region containing a province already listed in a
       * previously defined region is considered a meta region.
       */
      const bool meta;

      Region(std::string_view new_identifier, colour_t new_colour, bool new_meta);

   public:
      Region(Region&&) = default;

      bool get_meta() const;
   };
}