blob: 4f8b34481cd37fafb29a592dc910dd0069ab4980 (
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
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
104
105
106
107
108
|
/*
* Copyright (C) 2019 Belle-Isle, Andrew <drumsetmonkey@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "vectors.hpp"
#include <glm/glm.hpp>
#include <iostream>
namespace Script
{
template<class T>
T to(sol::object obj)
{
(void)obj;
T fake;
return fake;
}
template<>
glm::vec2 to<glm::vec2>(sol::object obj)
{
glm::vec2 toReturn;
if (obj.get_type() == sol::type::table) {
sol::table table = obj;
// X
if (table["x"] == sol::type::number) {
toReturn.x = table["x"];
} else if (table[1] == sol::type::number) {
toReturn.x = table[1];
}
// Y
if (table["y"] == sol::type::number) {
toReturn.y = table["y"];
} else if (table[2] == sol::type::number) {
toReturn.y = table[2];
}
} else {
std::cerr << "Vectors must be in table form" << std::endl;
}
return toReturn;
}
template<>
glm::vec3 to<glm::vec3>(sol::object obj)
{
glm::vec3 toReturn;
if (obj.get_type() == sol::type::table) {
sol::table table = obj;
glm::vec2 base = to<glm::vec2>(table);
toReturn.x = base.x;
toReturn.y = base.y;
// Z
if (table["z"] == sol::type::number) {
toReturn.z = table["z"];
} else if (table[3] == sol::type::number) {
toReturn.z = table[3];
}
} else {
std::cerr << "Vectors must be in table form" << std::endl;
}
return toReturn;
}
template<>
glm::vec4 to<glm::vec4>(sol::object obj)
{
glm::vec4 toReturn;
if (obj.get_type() == sol::type::table) {
sol::table table = obj;
glm::vec3 base = to<glm::vec3>(table);
toReturn.x = base.x;
toReturn.y = base.y;
toReturn.z = base.z;
// W
if (table["w"] == sol::type::number) {
toReturn.w = table["w"];
} else if (table[4] == sol::type::number) {
toReturn.w = table[4];
}
} else {
std::cerr << "Vectors must be in table form" << std::endl;
}
return toReturn;
}
}
|