forked from CelestiaProject/Celestia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcelx_vector.cpp
More file actions
305 lines (259 loc) · 7.09 KB
/
celx_vector.cpp
File metadata and controls
305 lines (259 loc) · 7.09 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
// celx_vector.cpp
//
// Copyright (C) 2003-2008, the Celestia Development Team
//
// Lua script extensions for Celestia: vector object
//
// 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 2
// of the License, or (at your option) any later version.
#include "celx.h"
#include "celx_internal.h"
#include "celx_vector.h"
#include <celutil/align.h>
#include <Eigen/Geometry>
using namespace std;
using namespace Eigen;
int vector_new(lua_State* l, const Vector3d& v)
{
CelxLua celx(l);
auto v3 = reinterpret_cast<Vector3d*>(lua_newuserdata(l, aligned_sizeof<Vector3d>()));
*aligned_addr(v3) = v;
celx.setClass(Celx_Vec3);
return 1;
}
Vector3d* to_vector(lua_State* l, int index)
{
CelxLua celx(l);
auto v = reinterpret_cast<Vector3d*>(celx.checkUserData(index, Celx_Vec3));
return aligned_addr(v);
}
static Vector3d* this_vector(lua_State* l)
{
CelxLua celx(l);
auto v3 = to_vector(l, 1);
if (v3 == nullptr)
{
celx.doError("Bad vector object!");
}
return v3;
}
static int vector_sub(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(2, 2, "Need two operands for sub");
auto op1 = celx.toVector(1);
auto op2 = celx.toVector(2);
if (op1 == nullptr || op2 == nullptr)
{
celx.doError("Subtraction only defined for two vectors");
}
else
{
auto result = *op1 - *op2;
celx.newVector(result);
}
return 1;
}
static int vector_get(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(2, 2, "Invalid access of vector-component");
auto v3 = this_vector(l);
string key = celx.safeGetString(2, AllErrors, "Invalid key in vector-access");
double value = 0.0;
if (key == "x")
value = v3->x();
else if (key == "y")
value = v3->y();
else if (key == "z")
value = v3->z();
else
{
if (!lua_getmetatable(l, 1))
{
celx.doError("Internal error: couldn't get metatable");
return 0;
}
lua_pushvalue(l, 2);
lua_rawget(l, -2);
return 1;
}
lua_pushnumber(l, (lua_Number)value);
return 1;
}
static int vector_set(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(3, 3, "Invalid access of vector-component");
auto v3 = this_vector(l);
string key = celx.safeGetString(2, AllErrors, "Invalid key in vector-access");
double value = celx.safeGetNumber(3, AllErrors, "Vector components must be numbers");
if (key == "x")
v3->x() = value;
else if (key == "y")
v3->y() = value;
else if (key == "z")
v3->z() = value;
else
{
celx.doError("Invalid key in vector-access");
}
return 0;
}
static int vector_getx(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(1, 1, "No arguments expected for vector:getx");
auto v3 = this_vector(l);
lua_Number x;
x = static_cast<lua_Number>(v3->x());
lua_pushnumber(l, x);
return 1;
}
static int vector_gety(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(1, 1, "No arguments expected for vector:gety");
auto v3 = this_vector(l);
lua_Number y;
y = static_cast<lua_Number>(v3->y());
lua_pushnumber(l, y);
return 1;
}
static int vector_getz(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(1, 1, "No arguments expected for vector:getz");
auto v3 = this_vector(l);
lua_Number z;
z = static_cast<lua_Number>(v3->z());
lua_pushnumber(l, z);
return 1;
}
static int vector_normalize(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(1, 1, "No arguments expected for vector:normalize");
auto v = this_vector(l);
celx.newVector(v->normalized());
return 1;
}
static int vector_length(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(1, 1, "No arguments expected for vector:length");
auto v = this_vector(l);
double length = v->norm();
lua_pushnumber(l, (lua_Number)length);
return 1;
}
static int vector_add(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(2, 2, "Need two operands for addition");
Vector3d* v1 = nullptr;
Vector3d* v2 = nullptr;
UniversalCoord* p = nullptr;
if (celx.isType(1, Celx_Vec3) && celx.isType(2, Celx_Vec3))
{
v1 = celx.toVector(1);
v2 = celx.toVector(2);
celx.newVector(*v1 + *v2);
}
else
if (celx.isType(1, Celx_Vec3) && celx.isType(2, Celx_Position))
{
v1 = celx.toVector(1);
p = celx.toPosition(2);
celx.newPosition(p->offsetUly(*v1));
}
else
{
celx.doError("Bad vector addition!");
}
return 1;
}
static int vector_mult(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(2, 2, "Need two operands for multiplication");
Vector3d* v1 = nullptr;
Vector3d* v2 = nullptr;
Quaterniond* q = nullptr;
lua_Number s = 0.0;
if (celx.isType(1, Celx_Vec3) && celx.isType(2, Celx_Vec3))
{
v1 = celx.toVector(1);
v2 = celx.toVector(2);
lua_pushnumber(l, (lua_Number)v1->dot(*v2));
}
else
if (celx.isType(1, Celx_Vec3) && lua_isnumber(l, 2))
{
v1 = celx.toVector(1);
s = lua_tonumber(l, 2);
celx.newVector(*v1 * s);
}
else
if (celx.isType(1, Celx_Vec3) && celx.isType(2, Celx_Rotation))
{
v1 = celx.toVector(1);
q = celx.toRotation(2);
celx.newRotation(Quaterniond(0, v1->x(), v1->y(), v1->z()) * *q);
}
else
if (lua_isnumber(l, 1) && celx.isType(2, Celx_Vec3))
{
s = lua_tonumber(l, 1);
v1 = celx.toVector(2);
celx.newVector(*v1 * s);
}
else
{
celx.doError("Bad vector multiplication!");
}
return 1;
}
static int vector_cross(lua_State* l)
{
CelxLua celx(l);
celx.checkArgs(2, 2, "Need two operands for multiplication");
Vector3d* v1 = nullptr;
Vector3d* v2 = nullptr;
if (celx.isType(1, Celx_Vec3) && celx.isType(2, Celx_Vec3))
{
v1 = celx.toVector(1);
v2 = celx.toVector(2);
celx.newVector(v1->cross(*v2));
}
else
{
celx.doError("Bad vector multiplication!");
}
return 1;
}
static int vector_tostring(lua_State* l)
{
lua_pushstring(l, "[Vector]");
return 1;
}
void CreateVectorMetaTable(lua_State* l)
{
CelxLua celx(l);
celx.createClassMetatable(Celx_Vec3);
celx.registerMethod("__tostring", vector_tostring);
celx.registerMethod("__add", vector_add);
celx.registerMethod("__sub", vector_sub);
celx.registerMethod("__mul", vector_mult);
celx.registerMethod("__pow", vector_cross);
celx.registerMethod("__index", vector_get);
celx.registerMethod("__newindex", vector_set);
celx.registerMethod("getx", vector_getx);
celx.registerMethod("gety", vector_gety);
celx.registerMethod("getz", vector_getz);
celx.registerMethod("normalize", vector_normalize);
celx.registerMethod("length", vector_length);
lua_pop(l, 1); // remove metatable from stack
}