2024-01-20 18:04:46 -05:00
|
|
|
#include "legoloopinganimpresenter.h"
|
|
|
|
|
2024-05-15 14:34:36 -04:00
|
|
|
#include "anim/legoanim.h"
|
|
|
|
#include "legocameracontroller.h"
|
|
|
|
#include "legoworld.h"
|
|
|
|
#include "mxcompositepresenter.h"
|
|
|
|
#include "mxdsaction.h"
|
|
|
|
#include "mxdssubscriber.h"
|
|
|
|
|
2024-03-22 21:30:58 -04:00
|
|
|
DECOMP_SIZE_ASSERT(LegoLoopingAnimPresenter, 0xc0)
|
|
|
|
|
2024-05-15 14:34:36 -04:00
|
|
|
// FUNCTION: LEGO1 0x1006caa0
|
|
|
|
// FUNCTION: BETA10 0x1005223d
|
2024-01-20 18:04:46 -05:00
|
|
|
void LegoLoopingAnimPresenter::StreamingTickle()
|
|
|
|
{
|
2024-05-15 14:34:36 -04:00
|
|
|
if (m_subscriber->PeekData()) {
|
|
|
|
MxStreamChunk* chunk = m_subscriber->PopData();
|
|
|
|
m_subscriber->FreeDataChunk(chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_unk0x95) {
|
|
|
|
ProgressTickleState(e_done);
|
|
|
|
if (m_compositePresenter) {
|
|
|
|
if (m_compositePresenter->IsA("LegoAnimMMPresenter")) {
|
|
|
|
m_compositePresenter->VTable0x60(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (m_action->GetDuration() != -1) {
|
|
|
|
if (m_action->GetElapsedTime() > m_action->GetDuration() + m_action->GetStartTime()) {
|
|
|
|
m_unk0x95 = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
2024-05-15 14:34:36 -04:00
|
|
|
// FUNCTION: LEGO1 0x1006cb40
|
|
|
|
// FUNCTION: BETA10 0x1005239a
|
2024-01-20 18:04:46 -05:00
|
|
|
void LegoLoopingAnimPresenter::PutFrame()
|
|
|
|
{
|
2024-05-15 14:34:36 -04:00
|
|
|
MxLong time;
|
|
|
|
|
|
|
|
if (m_action->GetStartTime() <= m_action->GetElapsedTime()) {
|
|
|
|
time = (m_action->GetElapsedTime() - m_action->GetStartTime()) % m_anim->GetDuration();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
time = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
FUN_1006b9a0(m_anim, time, m_unk0x78);
|
|
|
|
|
|
|
|
if (m_unk0x8c != NULL && m_currentWorld != NULL && m_currentWorld->GetCamera() != NULL) {
|
|
|
|
for (MxS32 i = 0; i < m_unk0x94; i++) {
|
|
|
|
if (m_unk0x8c[i] != NULL) {
|
|
|
|
MxMatrix mat(m_unk0x8c[i]->GetLocal2World());
|
|
|
|
|
|
|
|
Vector3 pos(mat[0]);
|
|
|
|
Vector3 dir(mat[1]);
|
|
|
|
Vector3 up(mat[2]);
|
|
|
|
Vector3 und(mat[3]);
|
|
|
|
|
|
|
|
float possqr = sqrt(pos.LenSquared());
|
|
|
|
float dirsqr = sqrt(dir.LenSquared());
|
|
|
|
float upsqr = sqrt(up.LenSquared());
|
|
|
|
|
|
|
|
up = und;
|
|
|
|
|
|
|
|
#ifdef COMPAT_MODE
|
|
|
|
Mx3DPointFloat location = m_currentWorld->GetCamera()->GetWorldLocation();
|
|
|
|
((Vector3&) up).Sub(&location);
|
|
|
|
#else
|
|
|
|
((Vector3&) up).Sub(&m_currentWorld->GetCamera()->GetWorldLocation());
|
|
|
|
#endif
|
|
|
|
((Vector3&) dir).Div(dirsqr);
|
|
|
|
pos.EqualsCross(&dir, &up);
|
|
|
|
pos.Unitize();
|
|
|
|
up.EqualsCross(&pos, &dir);
|
|
|
|
((Vector3&) pos).Mul(possqr);
|
|
|
|
((Vector3&) dir).Mul(dirsqr);
|
|
|
|
((Vector3&) up).Mul(upsqr);
|
|
|
|
|
|
|
|
m_unk0x8c[i]->FUN_100a58f0(mat);
|
|
|
|
m_unk0x8c[i]->VTable0x14();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|