2019-09-22 21:52:05 +00:00
|
|
|
#include "Runtime/GuiSys/CGuiObject.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/Graphics/CTexture.hpp"
|
|
|
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
|
|
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
|
|
|
#include "Runtime/GuiSys/CGuiWidgetDrawParms.hpp"
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CGuiObject::Update(float dt) {
|
|
|
|
if (x68_child)
|
|
|
|
x68_child->Update(dt);
|
|
|
|
if (x6c_nextSibling)
|
|
|
|
x6c_nextSibling->Update(dt);
|
2016-03-10 03:47:37 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CGuiObject::Draw(const CGuiWidgetDrawParms& parms) const {
|
|
|
|
if (x68_child)
|
|
|
|
x68_child->Draw(parms);
|
|
|
|
if (x6c_nextSibling)
|
|
|
|
x6c_nextSibling->Draw(parms);
|
2016-03-10 03:47:37 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CGuiObject::MoveInWorld(const zeus::CVector3f& vec) {
|
2019-01-22 04:23:51 +00:00
|
|
|
//if (x64_parent)
|
|
|
|
// x64_parent->RotateW2O(vec);
|
2018-12-08 05:30:43 +00:00
|
|
|
x4_localXF.origin += vec;
|
|
|
|
RecalculateTransforms();
|
2016-03-14 00:58:19 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CGuiObject::SetLocalPosition(const zeus::CVector3f& pos) { MoveInWorld(pos - x4_localXF.origin); }
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CGuiObject::RotateReset() {
|
2019-02-24 07:15:54 +00:00
|
|
|
x4_localXF.basis = zeus::CMatrix3f();
|
2018-12-08 05:30:43 +00:00
|
|
|
RecalculateTransforms();
|
2016-03-10 03:47:37 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CVector3f CGuiObject::RotateW2O(const zeus::CVector3f& vec) const { return x34_worldXF.transposeRotate(vec); }
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CVector3f CGuiObject::RotateO2P(const zeus::CVector3f& vec) const { return x4_localXF.rotate(vec); }
|
2016-03-10 03:47:37 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CVector3f CGuiObject::RotateTranslateW2O(const zeus::CVector3f& vec) const {
|
|
|
|
return x34_worldXF.transposeRotate(vec - x34_worldXF.origin);
|
2016-03-10 03:47:37 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CGuiObject::MultiplyO2P(const zeus::CTransform& xf) {
|
|
|
|
x4_localXF = xf * x4_localXF;
|
|
|
|
RecalculateTransforms();
|
2016-03-10 03:47:37 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CGuiObject::AddChildObject(CGuiObject* obj, bool makeWorldLocal, bool atEnd) {
|
|
|
|
obj->x64_parent = this;
|
|
|
|
|
|
|
|
if (!x68_child) {
|
|
|
|
x68_child = obj;
|
|
|
|
} else if (atEnd) {
|
2016-03-10 03:47:37 +00:00
|
|
|
CGuiObject* prev = nullptr;
|
2017-01-22 01:40:12 +00:00
|
|
|
CGuiObject* cur = x68_child;
|
2018-12-08 05:30:43 +00:00
|
|
|
for (; cur; cur = cur->x6c_nextSibling) {
|
|
|
|
prev = cur;
|
2016-03-10 03:47:37 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
if (prev)
|
|
|
|
prev->x6c_nextSibling = obj;
|
|
|
|
} else {
|
|
|
|
obj->x6c_nextSibling = x68_child;
|
|
|
|
x68_child = obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (makeWorldLocal) {
|
|
|
|
zeus::CVector3f negParentWorld = -x34_worldXF.origin;
|
|
|
|
zeus::CMatrix3f basisMat(x34_worldXF.basis[0] / x34_worldXF.basis[0].magnitude(),
|
|
|
|
x34_worldXF.basis[1] / x34_worldXF.basis[1].magnitude(),
|
|
|
|
x34_worldXF.basis[2] / x34_worldXF.basis[2].magnitude());
|
|
|
|
zeus::CVector3f xfWorld = basisMat * negParentWorld;
|
|
|
|
obj->x4_localXF = zeus::CTransform(basisMat, xfWorld) * obj->x34_worldXF;
|
|
|
|
}
|
|
|
|
|
|
|
|
RecalculateTransforms();
|
|
|
|
}
|
|
|
|
|
|
|
|
CGuiObject* CGuiObject::RemoveChildObject(CGuiObject* obj, bool makeWorldLocal) {
|
|
|
|
CGuiObject* prev = nullptr;
|
|
|
|
CGuiObject* cur = x68_child;
|
|
|
|
for (; cur && cur != obj; cur = cur->x6c_nextSibling) {
|
|
|
|
prev = cur;
|
|
|
|
}
|
|
|
|
if (!cur)
|
|
|
|
return nullptr;
|
|
|
|
if (prev)
|
|
|
|
prev->x6c_nextSibling = cur->x6c_nextSibling;
|
|
|
|
cur->x6c_nextSibling = nullptr;
|
|
|
|
cur->x64_parent = nullptr;
|
|
|
|
|
|
|
|
if (makeWorldLocal)
|
|
|
|
cur->x4_localXF = cur->x34_worldXF;
|
|
|
|
cur->RecalculateTransforms();
|
|
|
|
|
|
|
|
return cur;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiObject::RecalculateTransforms() {
|
|
|
|
if (x64_parent)
|
|
|
|
x34_worldXF = x64_parent->x34_worldXF * x4_localXF;
|
|
|
|
else
|
|
|
|
x34_worldXF = x4_localXF;
|
|
|
|
|
|
|
|
if (x6c_nextSibling)
|
|
|
|
x6c_nextSibling->RecalculateTransforms();
|
|
|
|
if (x68_child)
|
|
|
|
x68_child->RecalculateTransforms();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiObject::SetO2WTransform(const zeus::CTransform& xf) {
|
|
|
|
x4_localXF = GetParent()->x34_worldXF.inverse() * xf;
|
|
|
|
RecalculateTransforms();
|
2016-12-16 04:35:49 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CGuiObject::SetLocalTransform(const zeus::CTransform& xf) {
|
|
|
|
x4_localXF = xf;
|
|
|
|
RecalculateTransforms();
|
2016-03-10 03:47:37 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
} // namespace urde
|