MATH: Add some quaternion-math from plib.

This commit is contained in:
Einar Johan T. Sømåen 2011-12-30 14:49:01 +01:00
parent 3b87c4f66b
commit b863569294
4 changed files with 154 additions and 1 deletions

View File

@ -6,6 +6,7 @@ MODULE_OBJS := \
matrix4.o \
line3d.o \
line2d.o \
quat.o \
rect2d.o \
vector2d.o \
vector3d.o \

93
math/quat.cpp Normal file
View File

@ -0,0 +1,93 @@
/* Residual - A 3D game interpreter
*
* Residual is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
* $URL$
* $Id$
*/
// Quaternion-math borrowed from plib http://plib.sourceforge.net/index.html
// Which is covered by LGPL2
#include "common/streamdebug.h"
#include "math/quat.h"
namespace Math {
void Quaternion::slerpQuat(Quaternion dst, const Quaternion from, const Quaternion to, const float t) {
float co, scale0, scale1;
bool flip = false ;
/* SWC - Interpolate between to quaternions */
co = from.scalarProduct(to);
if (co < 0.0f) {
co = -co;
flip = true;
}
if ( co < 1.0f - (float) 1e-6 ) {
float o = (float) acos ( co );
float so = 1.0f / (float) sin ( o );
scale0 = (float) sin ( (1.0f - t) * o ) * so;
scale1 = (float) sin ( t * o ) * so;
} else {
scale0 = 1.0f - t;
scale1 = t;
}
if (flip) {
scale1 = -scale1 ;
}
dst.x() = scale0 * from.x() + scale1 * to.x() ;
dst.x() = scale0 * from.w() + scale1 * to.y() ;
dst.x() = scale0 * from.w() + scale1 * to.z() ;
dst.x() = scale0 * from.w() + scale1 * to.w() ;
}
Matrix4 Quaternion::toMatrix() {
float two_xx = x() * (x() + x());
float two_xy = x() * (y() + y());
float two_xz = x() * (z() + z());
float two_wx = w() * (x() + x());
float two_wy = w() * (y() + y());
float two_wz = w() * (z() + z());
float two_yy = y() * (y() + y());
float two_yz = y() * (z() + z());
float two_zz = z() * (z() + z());
float newMat[16] = {
1.0f-(two_yy+two_zz), two_xy-two_wz, two_xz+two_wy, 0.0f,
two_xy+two_wz, 1.0f-(two_xx+two_zz), two_yz-two_wx, 0.0f,
two_xz-two_wy, two_yz+two_wx, 1.0f-(two_xx+two_yy), 0.0f,
0.0f, 0.0f, 0.0f, 1.0f
};
Matrix4 dst;
dst.setData(newMat);
return dst;
}
}

57
math/quat.h Normal file
View File

@ -0,0 +1,57 @@
/* Residual - A 3D game interpreter
*
* Residual is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library 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
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
* $URL$
* $Id$
*/
// Quaternion-math borrowed from plib http://plib.sourceforge.net/index.html
// Which is covered by LGPL2
#ifndef MATH_QUAT_H
#define MATH_QUAT_H
#include "common/scummsys.h"
#include "common/endian.h"
#include "math/vector.h"
#include "math/angle.h"
#include "math/vector4d.h"
#include "matrix4.h"
namespace Math {
class Quaternion : public Vector4d {
public:
Quaternion() : Vector4d(0, 0, 0, 0) {}
Quaternion(float lx, float ly, float lz, float lw) : Vector4d(lx, ly, lz, lw) {}
Quaternion(const Quaternion &q) : Vector4d(q.x(), q.y(), q.z(), q.w()) {}
Matrix4 toMatrix();
void slerpQuat(Quaternion dst, const Quaternion from, const Quaternion to, const float t);
inline static Quaternion get_quaternion(const char *data) {
return Quaternion(get_float(data), get_float(data + 4), get_float(data + 8), get_float(data + 12));
}
};
} // end of namespace Math
#endif

View File

@ -54,7 +54,9 @@ public:
void set(float lx, float ly, float lz, float lw);
// TODO Add math.
inline float scalarProduct(const Vector4d b) const {
return x()*b.x() + y()*b.y() + z()*b.z() + w()*b.w();
}
inline static Vector4d get_vector4d(const char *data) {
return Vector4d(get_float(data), get_float(data + 4), get_float(data + 8), get_float(data + 12));