blob: 7539b44811ce778c04499ffa7fc0ef8139c8399f (
plain)
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
|
#include "persistance.h"
#include <map>
namespace Persistanace {
using NamedTypeFactories = std::map<std::string_view, std::function<std::unique_ptr<Persistable>()>>;
static NamedTypeFactories namedTypeFactories;
void
Persistable::addFactory(const std::string_view t, std::function<std::unique_ptr<Persistable>()> f)
{
namedTypeFactories.emplace(t, std::move(f));
}
std::unique_ptr<Persistable>
Persistable::callFactory(const std::string_view t)
{
return namedTypeFactories.at(t)();
}
void
Selection::operator()(float &)
{
throw std::runtime_error("Unexpected float");
}
void
Selection::operator()(bool &)
{
throw std::runtime_error("Unexpected bool");
}
void
Selection::operator()(const std::nullptr_t &)
{
throw std::runtime_error("Unexpected null");
}
void
Selection::operator()(std::string &)
{
throw std::runtime_error("Unexpected string");
}
void
Selection::BeginArray(Stack &)
{
throw std::runtime_error("Unexpected array");
}
SelectionPtr
Selection::BeginObject()
{
throw std::runtime_error("Unexpected object");
}
void
Selection::beforeValue(Stack &)
{
throw std::runtime_error("Unexpected value");
}
SelectionPtr
Selection::select(const std::string &)
{
throw std::runtime_error("Unexpected persist");
}
static_assert(!SelectionT<float>::ArrayLike);
static_assert(!SelectionT<bool>::ArrayLike);
static_assert(!SelectionT<std::string>::ArrayLike);
static_assert(SelectionT<std::vector<float>>::ArrayLike);
static_assert(SelectionT<glm::vec3>::ArrayLike);
static_assert(SelectionT<std::vector<glm::vec3>>::ArrayLike);
}
|