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
|
#pragma once
#include "openvic-simulation/types/IdentifierRegistry.hpp"
namespace OpenVic {
struct CultureManager;
struct Country;
struct CountryManager;
struct GraphicalCultureType : HasIdentifier {
friend struct CultureManager;
private:
GraphicalCultureType(std::string_view new_identifier);
public:
GraphicalCultureType(GraphicalCultureType&&) = default;
};
struct CultureGroup : HasIdentifier {
friend struct CultureManager;
private:
std::string PROPERTY(leader);
GraphicalCultureType const& PROPERTY(unit_graphical_culture_type);
bool PROPERTY(is_overseas);
Country const* PROPERTY(union_country);
CultureGroup(
std::string_view new_identifier, std::string_view new_leader,
GraphicalCultureType const& new_unit_graphical_culture_type, bool new_is_overseas, Country const* new_union_country
);
public:
CultureGroup(CultureGroup&&) = default;
};
struct Culture : HasIdentifierAndColour {
friend struct CultureManager;
private:
CultureGroup const& PROPERTY(group);
name_list_t PROPERTY(first_names);
name_list_t PROPERTY(last_names);
fixed_point_t PROPERTY(radicalism);
Country const* PROPERTY(primary_country);
Culture(
std::string_view new_identifier, colour_t new_colour, CultureGroup const& new_group, name_list_t&& new_first_names,
name_list_t&& new_last_names, fixed_point_t new_radicalism, Country const* new_primary_country
);
public:
Culture(Culture&&) = default;
};
struct CultureManager {
private:
IdentifierRegistry<GraphicalCultureType> IDENTIFIER_REGISTRY(graphical_culture_type);
IdentifierRegistry<CultureGroup> IDENTIFIER_REGISTRY(culture_group);
IdentifierRegistry<Culture> IDENTIFIER_REGISTRY(culture);
GraphicalCultureType const* PROPERTY(default_graphical_culture_type);
bool _load_culture_group(
CountryManager const& country_manager, size_t& total_expected_cultures,
std::string_view culture_group_key, ast::NodeCPtr culture_group_node
);
bool _load_culture(
CountryManager const& country_manager, CultureGroup const& culture_group, std::string_view culture_key,
ast::NodeCPtr node
);
public:
CultureManager();
bool add_graphical_culture_type(std::string_view identifier);
bool add_culture_group(
std::string_view identifier, std::string_view leader, GraphicalCultureType const* graphical_culture_type,
bool is_overseas, Country const* union_country
);
bool add_culture(
std::string_view identifier, colour_t colour, CultureGroup const& group, name_list_t&& first_names,
name_list_t&& last_names, fixed_point_t radicalism, Country const* primary_country
);
bool load_graphical_culture_type_file(ast::NodeCPtr root);
bool load_culture_file(CountryManager const& country_manager, ast::NodeCPtr root);
};
}
|