2015-04-19 20:39:16 +00:00
|
|
|
#ifndef CTRANSFORM_HPP
|
|
|
|
#define CTRANSFORM_HPP
|
|
|
|
|
|
|
|
#include "Global.hpp"
|
|
|
|
#include "CMatrix3f.hpp"
|
2015-05-06 07:05:06 +00:00
|
|
|
#include "CMatrix4f.hpp"
|
2015-04-19 20:39:16 +00:00
|
|
|
#include "CVector3f.hpp"
|
2015-08-25 22:04:15 +00:00
|
|
|
#include "CQuaternion.hpp"
|
2015-04-19 20:39:16 +00:00
|
|
|
|
|
|
|
class ZE_ALIGN(16) CTransform
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ZE_DECLARE_ALIGNED_ALLOCATOR();
|
2015-07-29 21:59:03 +00:00
|
|
|
|
2015-04-19 20:39:16 +00:00
|
|
|
CTransform() : m_basis(false) {}
|
|
|
|
CTransform(const CMatrix3f& basis, const CVector3f& offset=CVector3f::skZero) :
|
|
|
|
m_basis(basis), m_origin(offset) {}
|
2015-07-29 21:59:03 +00:00
|
|
|
|
2015-04-19 20:39:16 +00:00
|
|
|
inline CTransform operator*(const CTransform& rhs) const
|
|
|
|
{return CTransform(m_basis * rhs.m_basis, m_origin + (m_basis * rhs.m_origin));}
|
|
|
|
|
|
|
|
inline CTransform inverse() const
|
|
|
|
{
|
|
|
|
CMatrix3f inv = m_basis.inverted();
|
|
|
|
return CTransform(inv, inv * -m_origin);
|
|
|
|
}
|
2015-08-12 01:41:28 +00:00
|
|
|
|
|
|
|
inline void translate(const CVector3f& position)
|
|
|
|
{
|
|
|
|
m_basis = CMatrix3f::skIdentityMatrix3f;
|
|
|
|
m_origin = position;
|
|
|
|
}
|
2015-08-25 22:04:15 +00:00
|
|
|
|
|
|
|
inline void rotate(const CVector3f& euler)
|
|
|
|
{
|
|
|
|
*this = *this * CMatrix3f(CQuaternion(euler));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void scaleBy(float factor)
|
|
|
|
{
|
|
|
|
CTransform xfrm(CMatrix3f(CVector3f(factor, factor, factor)));
|
|
|
|
*this = *this * xfrm;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void scale(const CVector3f& scale)
|
|
|
|
{
|
|
|
|
m_basis = CMatrix3f(true);
|
|
|
|
m_basis[0][0] = scale.x;
|
|
|
|
m_basis[1][1] = scale.y;
|
|
|
|
m_basis[2][2] = scale.z;
|
|
|
|
m_origin.zeroOut();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void scale(float x, float y, float z)
|
|
|
|
{
|
|
|
|
scale({x, y, z});
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void multiplyIgnoreTranslation(const CTransform& xfrm)
|
|
|
|
{
|
|
|
|
m_basis = m_basis*xfrm.m_basis;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline CTransform getRotation()
|
|
|
|
{
|
|
|
|
CTransform ret = *this;
|
|
|
|
ret.m_origin.zeroOut();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief buildMatrix3f Returns the stored matrix
|
|
|
|
* buildMatrix3f is here for compliance with Retro's Math API
|
|
|
|
* @return The Matrix (Neo, you are the one)
|
|
|
|
*/
|
|
|
|
inline CMatrix3f buildMatrix3f()
|
|
|
|
{
|
|
|
|
return m_basis;
|
|
|
|
}
|
|
|
|
|
2015-04-19 20:39:16 +00:00
|
|
|
inline CVector3f operator*(const CVector3f& other) const
|
|
|
|
{return m_origin + m_basis * other;}
|
|
|
|
|
2015-05-06 07:05:06 +00:00
|
|
|
inline void toMatrix4f(CMatrix4f& mat) const
|
2015-04-19 20:39:16 +00:00
|
|
|
{
|
|
|
|
#if __SSE__
|
2015-05-06 07:05:06 +00:00
|
|
|
mat.vec[0].mVec128 = m_basis[0].mVec128; mat.m[0][3] = 0.0f;
|
|
|
|
mat.vec[1].mVec128 = m_basis[1].mVec128; mat.m[1][3] = 0.0f;
|
|
|
|
mat.vec[2].mVec128 = m_basis[2].mVec128; mat.m[2][3] = 0.0f;
|
|
|
|
mat.vec[3].mVec128 = m_origin.mVec128; mat.m[3][3] = 1.0f;
|
2015-04-19 20:39:16 +00:00
|
|
|
#else
|
|
|
|
mat.m[0][0] = m_basis[0][0]; mat.m[0][1] = m_basis[0][1]; mat.m[0][2] = m_basis[0][2]; mat.m[0][3] = 0.0f;
|
|
|
|
mat.m[1][0] = m_basis[1][0]; mat.m[1][1] = m_basis[1][1]; mat.m[1][2] = m_basis[1][2]; mat.m[1][3] = 0.0f;
|
|
|
|
mat.m[2][0] = m_basis[2][0]; mat.m[2][1] = m_basis[2][1]; mat.m[2][2] = m_basis[2][2]; mat.m[2][3] = 0.0f;
|
|
|
|
mat.m[3][0] = m_origin[0]; mat.m[3][1] = m_origin[1]; mat.m[3][2] = m_origin[2]; mat.m[3][3] = 1.0f;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-08-25 22:04:15 +00:00
|
|
|
static inline CTransform fromColumns(const CVector3f& m0, const CVector3f& m1, const CVector3f& m2, const CVector3f& m3)
|
|
|
|
{
|
|
|
|
CTransform ret;
|
|
|
|
ret.m_basis[0][0] = m0[0];
|
|
|
|
ret.m_basis[0][1] = m1[0];
|
|
|
|
ret.m_basis[0][2] = m2[0];
|
|
|
|
ret.m_origin[0] = m3[0];
|
|
|
|
ret.m_basis[1][0] = m0[1];
|
|
|
|
ret.m_basis[1][1] = m1[1];
|
|
|
|
ret.m_basis[1][2] = m2[1];
|
|
|
|
ret.m_origin[1] = m3[1];
|
|
|
|
ret.m_basis[2][0] = m0[2];
|
|
|
|
ret.m_basis[2][1] = m1[2];
|
|
|
|
ret.m_basis[2][2] = m2[2];
|
|
|
|
ret.m_origin[2] = m3[2];
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-04-19 20:39:16 +00:00
|
|
|
CMatrix3f m_basis;
|
|
|
|
CVector3f m_origin;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline CTransform CTransformFromScaleVector(const CVector3f& scale)
|
|
|
|
{
|
|
|
|
return CTransform(CMatrix3f(scale));
|
|
|
|
}
|
|
|
|
CTransform CTransformFromEditorEuler(const CVector3f& eulerVec);
|
|
|
|
CTransform CTransformFromAxisAngle(const CVector3f& axis, float angle);
|
|
|
|
|
|
|
|
#endif // CTRANSFORM_HPP
|