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

#include "openvic-simulation/dataloader/NodeTools.hpp"
#include "openvic-simulation/types/IdentifierRegistry.hpp"

namespace OpenVic {

   struct ReligionManager;

   struct ReligionGroup : HasIdentifier {
      friend struct ReligionManager;

   private:
      ReligionGroup(std::string_view new_identifier);

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

   struct Religion : HasIdentifierAndColour {
      friend struct ReligionManager;

      using icon_t = uint8_t;

   private:
      ReligionGroup const& group;
      const icon_t icon;
      const bool pagan;

      Religion(std::string_view new_identifier, colour_t new_colour, ReligionGroup const& new_group, icon_t new_icon, bool new_pagan);

   public:
      Religion(Religion&&) = default;

      ReligionGroup const& get_group() const;
      icon_t get_icon() const;
      bool get_pagan() const;
   };

   struct ReligionManager {
   private:
      IdentifierRegistry<ReligionGroup> religion_groups;
      IdentifierRegistry<Religion> religions;

   public:
      ReligionManager();

      bool add_religion_group(std::string_view identifier);
      IDENTIFIER_REGISTRY_ACCESSORS(religion_group)

      bool add_religion(std::string_view identifier, colour_t colour, ReligionGroup const* group, Religion::icon_t icon, bool pagan);
      IDENTIFIER_REGISTRY_ACCESSORS(religion)

      bool load_religion_file(ast::NodeCPtr root);
   };
}