2011-08-27 05:38:33 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "QF/mathlib.h"
|
|
|
|
|
2018-10-09 03:44:46 +00:00
|
|
|
static struct {
|
|
|
|
quat_t q1;
|
|
|
|
quat_t q2;
|
|
|
|
quat_t expect;
|
|
|
|
} quat_mult_tests[] = {
|
2018-10-12 05:33:55 +00:00
|
|
|
{{1, 2, 3, 4}, {5, 6, 7, 8}, {24, 48, 48, -6}},
|
2018-10-09 03:44:46 +00:00
|
|
|
};
|
|
|
|
#define num_quat_mult_tests (sizeof (quat_mult_tests) / sizeof (quat_mult_tests[0]))
|
|
|
|
|
2011-08-27 05:38:33 +00:00
|
|
|
//PITCH YAW ROLL
|
|
|
|
static vec3_t test_angles[] = {
|
|
|
|
{0, 0, 0},
|
|
|
|
{45, 0, 0},
|
|
|
|
{0, 45, 0},
|
|
|
|
{0, 0, 45},
|
|
|
|
{45, 45, 0},
|
|
|
|
{0, 45, 45},
|
|
|
|
{45, 0, 45},
|
|
|
|
{45, 45, 45},
|
2012-05-09 03:06:17 +00:00
|
|
|
{0, 180, 180},
|
|
|
|
{180, 0, 180},
|
|
|
|
{180, 180, 0},
|
2011-08-27 05:38:33 +00:00
|
|
|
};
|
|
|
|
#define num_angle_tests (sizeof (test_angles) / sizeof (test_angles[0]))
|
|
|
|
|
|
|
|
// return true if a and b are close enough (yay, floats)
|
|
|
|
static int
|
|
|
|
compare (vec_t a, vec_t b)
|
|
|
|
{
|
|
|
|
vec_t diff = a - b;
|
|
|
|
return diff * diff < 0.001;
|
|
|
|
}
|
|
|
|
|
2018-10-09 03:44:46 +00:00
|
|
|
static int
|
|
|
|
test_quat_mult(const quat_t q1, const quat_t q2, const quat_t expect)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
quat_t r;
|
|
|
|
|
|
|
|
QuatMult (q1, q2, r);
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
if (!compare (r[i], expect[i]))
|
|
|
|
goto fail;
|
|
|
|
return 1;
|
|
|
|
fail:
|
2018-10-12 05:33:55 +00:00
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (q1));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (q2));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (r));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (expect));
|
2018-10-09 03:44:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
rotate_vec (const quat_t r, const vec3_t v, vec3_t out)
|
|
|
|
{
|
|
|
|
quat_t qv = {0, 0, 0, 0};
|
|
|
|
quat_t t;
|
|
|
|
|
2018-10-12 05:33:55 +00:00
|
|
|
VectorCopy (v, qv);
|
2018-10-09 03:44:46 +00:00
|
|
|
|
|
|
|
QuatConj (r, t);
|
|
|
|
QuatMult (qv, t, t);
|
|
|
|
QuatMult (r, t, t);
|
2018-10-12 05:33:55 +00:00
|
|
|
VectorCopy (t, out);
|
2018-10-09 03:44:46 +00:00
|
|
|
}
|
|
|
|
|
2011-08-27 05:38:33 +00:00
|
|
|
static int
|
|
|
|
test_rotation (const vec3_t angles)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
vec3_t forward, right, up;
|
|
|
|
|
2018-10-12 05:33:55 +00:00
|
|
|
quat_t quat, conj, f, r, u, t;
|
|
|
|
quat_t qf = {1, 0, 0, 0};
|
|
|
|
quat_t qr = {0, -1, 0, 0};
|
|
|
|
quat_t qu = {0, 0, 1, 0};
|
2011-08-27 05:38:33 +00:00
|
|
|
|
|
|
|
AngleVectors (angles, forward, right, up);
|
|
|
|
|
|
|
|
AngleQuat (angles, quat);
|
2018-10-12 05:33:55 +00:00
|
|
|
QuatConj (quat, conj);
|
2011-08-27 05:38:33 +00:00
|
|
|
// rotate forward vector
|
2018-10-12 05:33:55 +00:00
|
|
|
QuatMult (qf, conj, t);
|
2011-08-27 05:38:33 +00:00
|
|
|
QuatMult (quat, t, f);
|
|
|
|
// rotate right vector
|
2018-10-12 05:33:55 +00:00
|
|
|
QuatMult (qr, conj, t);
|
2011-08-27 05:38:33 +00:00
|
|
|
QuatMult (quat, t, r);
|
|
|
|
// rotate up vector
|
2018-10-12 05:33:55 +00:00
|
|
|
QuatMult (qu, conj, t);
|
2011-08-27 05:38:33 +00:00
|
|
|
QuatMult (quat, t, u);
|
|
|
|
|
2018-10-12 05:33:55 +00:00
|
|
|
if (!compare (f[3], 0))
|
2011-08-27 05:38:33 +00:00
|
|
|
goto fail;
|
|
|
|
for (i = 0; i < 3; i++)
|
2018-10-12 05:33:55 +00:00
|
|
|
if (!compare (forward[i], f[i]))
|
2011-08-27 05:38:33 +00:00
|
|
|
goto fail;
|
|
|
|
|
2018-10-12 05:33:55 +00:00
|
|
|
if (!compare (r[3], 0))
|
2011-08-27 05:38:33 +00:00
|
|
|
goto fail;
|
|
|
|
for (i = 0; i < 3; i++)
|
2018-10-12 05:33:55 +00:00
|
|
|
if (!compare (right[i], r[i]))
|
2011-08-27 05:38:33 +00:00
|
|
|
goto fail;
|
|
|
|
|
2018-10-12 05:33:55 +00:00
|
|
|
if (!compare (u[3], 0))
|
2011-08-27 05:38:33 +00:00
|
|
|
goto fail;
|
|
|
|
for (i = 0; i < 3; i++)
|
2018-10-12 05:33:55 +00:00
|
|
|
if (!compare (up[i], u[i]))
|
2011-08-27 05:38:33 +00:00
|
|
|
goto fail;
|
|
|
|
return 1;
|
|
|
|
fail:
|
2018-10-12 05:33:55 +00:00
|
|
|
printf ("\ntest_rotation\n");
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", VectorExpand (angles));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (quat));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n\n", QuatExpand (conj));
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", VectorExpand (forward));
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", VectorExpand (right));
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n\n", VectorExpand (up));
|
|
|
|
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (f));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (r));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (u));
|
2011-08-27 05:38:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-26 00:24:05 +00:00
|
|
|
static int
|
|
|
|
test_rotation2 (const vec3_t angles)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
vec3_t forward, right, up;
|
|
|
|
|
|
|
|
quat_t quat;
|
|
|
|
vec3_t f, r, u;
|
|
|
|
vec3_t vf = {1, 0, 0};
|
|
|
|
vec3_t vr = {0, -1, 0};
|
|
|
|
vec3_t vu = {0, 0, 1};
|
|
|
|
|
|
|
|
AngleVectors (angles, forward, right, up);
|
|
|
|
|
|
|
|
AngleQuat (angles, quat);
|
|
|
|
// rotate forward vector
|
|
|
|
QuatMultVec (quat, vf, f);
|
|
|
|
// rotate right vector
|
|
|
|
QuatMultVec (quat, vr, r);
|
|
|
|
// rotate up vector
|
|
|
|
QuatMultVec (quat, vu, u);
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
if (!compare (forward[i], f[i]))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
if (!compare (right[i], r[i]))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
if (!compare (up[i], u[i]))
|
|
|
|
goto fail;
|
|
|
|
return 1;
|
|
|
|
fail:
|
2018-10-12 05:33:55 +00:00
|
|
|
printf ("\ntest_rotation2\n");
|
|
|
|
printf ("\n\n%11.9g %11.9g %11.9g\n\n", angles[0], angles[1], angles[2]);
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", forward[0], forward[1], forward[2]);
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", right[0], right[1], right[2]);
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n\n", up[0], up[1], up[2]);
|
|
|
|
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", f[0], f[1], f[2]);
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", r[0], r[1], r[2]);
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", u[0], u[1], u[2]);
|
2012-04-26 00:24:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-09 03:44:46 +00:00
|
|
|
static int
|
|
|
|
test_rotation3 (const vec3_t angles)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
quat_t quat;
|
|
|
|
vec3_t v = {1, 1, 1};
|
|
|
|
vec3_t a, b;
|
|
|
|
|
|
|
|
AngleQuat (angles, quat);
|
|
|
|
QuatMultVec (quat, v, a);
|
|
|
|
rotate_vec (quat, v, b);
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
if (!compare (a[i], b[i]))
|
|
|
|
goto fail;
|
|
|
|
return 1;
|
|
|
|
fail:
|
2018-10-12 05:33:55 +00:00
|
|
|
printf ("\ntest_rotation3\n");
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", VectorExpand(a));
|
|
|
|
printf ("%11.9g %11.9g %11.9g\n", VectorExpand(b));
|
2018-10-09 03:44:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-22 23:52:15 +00:00
|
|
|
#define s05 0.70710678118654757
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
quat_t q;
|
|
|
|
vec_t expect[9];
|
|
|
|
} quat_mat_tests[] = {
|
|
|
|
{{0, 0, 0, 1},
|
|
|
|
{1, 0, 0,
|
|
|
|
0, 1, 0,
|
|
|
|
0, 0, 1}},
|
|
|
|
{{1, 0, 0, 0},
|
|
|
|
{1, 0, 0,
|
|
|
|
0, -1, 0,
|
|
|
|
0, 0, -1}},
|
|
|
|
{{0, 1, 0, 0},
|
|
|
|
{-1, 0, 0,
|
|
|
|
0, 1, 0,
|
|
|
|
0, 0, -1}},
|
|
|
|
{{0, 0, 1, 0},
|
|
|
|
{-1, 0, 0,
|
|
|
|
0, -1, 0,
|
|
|
|
0, 0, 1}},
|
|
|
|
{{0.5, 0.5, 0.5, 0.5},
|
|
|
|
{0, 0, 1,
|
|
|
|
1, 0, 0,
|
|
|
|
0, 1, 0}},
|
|
|
|
{{s05, 0.0, 0.0, s05},
|
|
|
|
{1, 0, 0,
|
|
|
|
0, 5.96046448e-8, -0.99999994,
|
|
|
|
0, 0.99999994, 5.96046448e-8}},
|
|
|
|
};
|
|
|
|
#define num_quat_mat_tests (sizeof (quat_mat_tests) / sizeof (quat_mat_tests[0]))
|
|
|
|
|
|
|
|
static int
|
|
|
|
test_quat_mat(const quat_t q, const quat_t expect)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
vec_t m[9];
|
|
|
|
|
|
|
|
QuatToMatrix (q, m, 0, 0);
|
|
|
|
|
|
|
|
for (i = 0; i < 9; i++)
|
|
|
|
if (m[i] != expect[i]) // exact tests here
|
|
|
|
goto fail;
|
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g\n", QuatExpand (q));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g %11.9g %11.9g\n",
|
|
|
|
VectorExpand (m + 0), VectorExpand (expect + 0));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g %11.9g %11.9g\n",
|
|
|
|
VectorExpand (m + 3), VectorExpand (expect + 3));
|
|
|
|
printf ("%11.9g %11.9g %11.9g %11.9g %11.9g %11.9g\n",
|
|
|
|
VectorExpand (m + 6), VectorExpand (expect + 6));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-27 05:38:33 +00:00
|
|
|
int
|
|
|
|
main (int argc, const char **argv)
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
size_t i;
|
|
|
|
|
2018-10-09 03:44:46 +00:00
|
|
|
for (i = 0; i < num_quat_mult_tests; i ++) {
|
|
|
|
vec_t *q1 = quat_mult_tests[i].q1;
|
|
|
|
vec_t *q2 = quat_mult_tests[i].q2;
|
|
|
|
vec_t *expect = quat_mult_tests[i].expect;
|
|
|
|
if (!test_quat_mult (q1, q2, expect))
|
|
|
|
res = 1;
|
|
|
|
}
|
|
|
|
|
2011-08-27 05:38:33 +00:00
|
|
|
for (i = 0; i < num_angle_tests; i ++) {
|
|
|
|
if (!test_rotation (test_angles[i]))
|
|
|
|
res = 1;
|
|
|
|
}
|
2012-04-26 00:24:05 +00:00
|
|
|
|
|
|
|
for (i = 0; i < num_angle_tests; i ++) {
|
|
|
|
if (!test_rotation2 (test_angles[i]))
|
|
|
|
res = 1;
|
|
|
|
}
|
2018-10-09 03:44:46 +00:00
|
|
|
|
|
|
|
for (i = 0; i < num_angle_tests; i ++) {
|
|
|
|
if (!test_rotation3 (test_angles[i]))
|
|
|
|
res = 1;
|
|
|
|
}
|
2019-07-22 23:52:15 +00:00
|
|
|
|
|
|
|
for (i = 0; i < num_quat_mat_tests; i ++) {
|
|
|
|
vec_t *q = quat_mat_tests[i].q;
|
|
|
|
vec_t *expect = quat_mat_tests[i].expect;
|
|
|
|
if (!test_quat_mat (q, expect))
|
|
|
|
res = 1;
|
|
|
|
}
|
|
|
|
|
2011-08-27 05:38:33 +00:00
|
|
|
return res;
|
|
|
|
}
|