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
|
#pragma once
#include "openvic-simulation/types/IdentifierRegistry.hpp"
#include "openvic-simulation/utility/Getters.hpp"
namespace OpenVic {
template<typename... Context>
class LoadBase {
protected:
LoadBase() = default;
virtual bool _fill_key_map(NodeTools::case_insensitive_key_map_t&, Context...) = 0;
public:
LoadBase(LoadBase&&) = default;
virtual ~LoadBase() = default;
bool load(ast::NodeCPtr node, Context... context) {
NodeTools::case_insensitive_key_map_t key_map;
bool ret = _fill_key_map(key_map, context...);
ret &= NodeTools::expect_dictionary_key_map(std::move(key_map))(node);
return ret;
}
template<std::derived_from<LoadBase<Context...>> T>
static NodeTools::node_callback_t _expect_value(
NodeTools::callback_t<T&&> callback, Context... context
) {
return [callback, &context...](ast::NodeCPtr node) -> bool {
T value {};
bool ret = value.load(node, context...);
ret &= callback(std::move(value));
return ret;
};
}
template<std::derived_from<LoadBase<Context...>> T, std::derived_from<T> U>
static NodeTools::node_callback_t _expect_instance(
NodeTools::callback_t<std::unique_ptr<T>&&> callback, Context... context
) {
return [callback, &context...](ast::NodeCPtr node) -> bool {
std::unique_ptr<T> instance { std::make_unique<U>() };
bool ret = instance->load(node, context...);
ret &= callback(std::move(instance));
return ret;
};
}
OV_DETAIL_GET_TYPE_BASE_CLASS(LoadBase)
};
template<typename... Context>
class Named : public LoadBase<Context...> {
std::string PROPERTY(name);
protected:
Named() = default;
virtual bool _fill_key_map(NodeTools::case_insensitive_key_map_t& key_map, Context...) override {
using namespace OpenVic::NodeTools;
return add_key_map_entries(key_map, "name", ONE_EXACTLY, expect_string(assign_variable_callback_string(name)));
}
void _set_name(std::string_view new_name) {
if (!name.empty()) {
Logger::warning("Overriding scene name ", name, " with ", new_name);
}
name = new_name;
}
public:
Named(Named&&) = default;
virtual ~Named() = default;
OV_DETAIL_GET_TYPE
};
template<typename Value, typename... Context>
requires std::derived_from<Value, Named<Context...>>
struct RegistryValueInfoNamed {
using internal_value_type = Value;
using external_value_type = Value;
static constexpr std::string_view get_identifier(internal_value_type const& item) {
return item.get_name();
}
static constexpr external_value_type& get_external_value(internal_value_type& item) {
return item;
}
static constexpr external_value_type const& get_external_value(internal_value_type const& item) {
return item;
}
};
template<typename Value, typename... Context>
requires std::derived_from<Value, Named<Context...>>
using NamedRegistry = ValueRegistry<RegistryValueInfoNamed<Value, Context...>>;
template<typename Value, typename... Context>
requires std::derived_from<Value, Named<Context...>>
using NamedInstanceRegistry = InstanceRegistry<RegistryValueInfoNamed<Value, Context...>>;
}
|