2023-06-29 04:10:08 -04:00
|
|
|
#include "mxdsaction.h"
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "legoutil.h"
|
2023-10-07 11:30:04 -04:00
|
|
|
#include "mxomni.h"
|
|
|
|
#include "mxtimer.h"
|
|
|
|
|
2023-08-06 13:39:22 -04:00
|
|
|
#include <float.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
2023-08-10 13:57:19 -04:00
|
|
|
DECOMP_SIZE_ASSERT(MxDSAction, 0x94)
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// GLOBAL: LEGO1 0x10101410
|
2023-12-13 05:48:14 -05:00
|
|
|
MxU16 g_sep = TWOCC(',', ' ');
|
2023-08-10 13:57:19 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ad810
|
2023-06-29 04:10:08 -04:00
|
|
|
MxDSAction::MxDSAction()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
this->m_flags = MxDSAction::Flag_Enabled;
|
|
|
|
this->m_startTime = INT_MIN;
|
|
|
|
this->m_extraData = NULL;
|
|
|
|
this->m_extraLength = 0;
|
|
|
|
this->m_duration = INT_MIN;
|
|
|
|
this->m_loopCount = -1;
|
|
|
|
|
|
|
|
this->SetType(MxDSType_Action);
|
|
|
|
this->m_location.Fill(FLT_MAX);
|
|
|
|
this->m_direction.Fill(FLT_MAX);
|
|
|
|
this->m_up.Fill(FLT_MAX);
|
2023-12-13 05:48:14 -05:00
|
|
|
this->m_unk0x84 = NULL;
|
|
|
|
this->m_unk0x88 = 0;
|
2023-12-11 16:35:50 -05:00
|
|
|
this->m_origin = NULL;
|
2023-12-13 05:48:14 -05:00
|
|
|
this->m_unk0x90 = INT_MIN;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ad940
|
2023-11-21 03:44:45 -05:00
|
|
|
MxLong MxDSAction::GetDuration()
|
|
|
|
{
|
|
|
|
return this->m_duration;
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ad950
|
2023-11-21 03:44:45 -05:00
|
|
|
void MxDSAction::SetDuration(MxLong p_duration)
|
|
|
|
{
|
|
|
|
this->m_duration = p_duration;
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ad960
|
2023-11-21 03:44:45 -05:00
|
|
|
MxBool MxDSAction::HasId(MxU32 p_objectId)
|
|
|
|
{
|
|
|
|
return this->GetObjectId() == p_objectId;
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ada40
|
2023-12-13 05:48:14 -05:00
|
|
|
void MxDSAction::SetUnknown90(MxLong p_unk0x90)
|
2023-11-21 03:44:45 -05:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
this->m_unk0x90 = p_unk0x90;
|
2023-11-21 03:44:45 -05:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ada50
|
2023-12-13 05:48:14 -05:00
|
|
|
MxLong MxDSAction::GetUnknown90()
|
2023-11-21 03:44:45 -05:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return this->m_unk0x90;
|
2023-11-21 03:44:45 -05:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ada80
|
2023-06-29 04:10:08 -04:00
|
|
|
MxDSAction::~MxDSAction()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
delete[] this->m_extraData;
|
2023-08-06 13:39:22 -04:00
|
|
|
}
|
2023-08-08 22:38:07 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100adaf0
|
2023-10-24 19:38:27 -04:00
|
|
|
void MxDSAction::CopyFrom(MxDSAction& p_dsAction)
|
2023-08-08 22:38:07 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
this->SetObjectId(p_dsAction.GetObjectId());
|
|
|
|
this->m_flags = p_dsAction.m_flags;
|
|
|
|
this->m_startTime = p_dsAction.m_startTime;
|
|
|
|
this->m_duration = p_dsAction.m_duration;
|
|
|
|
this->m_loopCount = p_dsAction.m_loopCount;
|
|
|
|
|
|
|
|
this->m_location.CopyFrom(p_dsAction.m_location);
|
|
|
|
this->m_direction.CopyFrom(p_dsAction.m_direction);
|
|
|
|
this->m_up.CopyFrom(p_dsAction.m_up);
|
|
|
|
|
|
|
|
AppendData(p_dsAction.m_extraLength, p_dsAction.m_extraData);
|
2023-12-13 05:48:14 -05:00
|
|
|
this->m_unk0x84 = p_dsAction.m_unk0x84;
|
|
|
|
this->m_unk0x88 = p_dsAction.m_unk0x88;
|
2023-12-11 16:35:50 -05:00
|
|
|
this->m_origin = p_dsAction.m_origin;
|
2023-12-13 05:48:14 -05:00
|
|
|
this->m_unk0x90 = p_dsAction.m_unk0x90;
|
2023-08-08 22:38:07 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100adbe0
|
2023-08-08 22:38:07 -04:00
|
|
|
MxU32 MxDSAction::GetSizeOnDisk()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
MxU32 totalSizeOnDisk;
|
2023-08-08 22:38:07 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
totalSizeOnDisk = MxDSObject::GetSizeOnDisk() + 90 + this->m_extraLength;
|
|
|
|
this->m_sizeOnDisk = totalSizeOnDisk - MxDSObject::GetSizeOnDisk();
|
2023-08-08 22:38:07 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
return totalSizeOnDisk;
|
2023-08-08 22:38:07 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100adc10
|
2023-11-21 03:44:45 -05:00
|
|
|
MxDSAction& MxDSAction::operator=(MxDSAction& p_dsAction)
|
2023-08-08 22:38:07 -04:00
|
|
|
{
|
2023-11-21 03:44:45 -05:00
|
|
|
if (this == &p_dsAction)
|
|
|
|
return *this;
|
2023-08-08 22:38:07 -04:00
|
|
|
|
2023-11-21 03:44:45 -05:00
|
|
|
MxDSObject::operator=(p_dsAction);
|
|
|
|
this->CopyFrom(p_dsAction);
|
|
|
|
return *this;
|
2023-08-08 22:38:07 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100adc40
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSAction* MxDSAction::Clone()
|
2023-08-08 22:38:07 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSAction* clone = new MxDSAction();
|
2023-08-08 22:38:07 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
if (clone)
|
|
|
|
*clone = *this;
|
2023-08-08 22:38:07 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
return clone;
|
2023-08-08 22:38:07 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100adcd0
|
2023-11-21 03:44:45 -05:00
|
|
|
MxLong MxDSAction::GetElapsedTime()
|
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return Timer()->GetTime() - this->m_unk0x90;
|
2023-11-21 03:44:45 -05:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100add00
|
2023-10-24 19:38:27 -04:00
|
|
|
void MxDSAction::MergeFrom(MxDSAction& p_dsAction)
|
2023-08-08 22:38:07 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
if (p_dsAction.m_startTime != INT_MIN)
|
|
|
|
this->m_startTime = p_dsAction.m_startTime;
|
|
|
|
|
|
|
|
if (p_dsAction.GetDuration() != INT_MIN)
|
|
|
|
this->m_duration = p_dsAction.GetDuration();
|
|
|
|
|
|
|
|
if (p_dsAction.m_loopCount != -1)
|
|
|
|
this->m_loopCount = p_dsAction.m_loopCount;
|
|
|
|
|
|
|
|
if (p_dsAction.m_location[0] != FLT_MAX)
|
|
|
|
this->m_location[0] = p_dsAction.m_location[0];
|
|
|
|
if (p_dsAction.m_location[1] != FLT_MAX)
|
|
|
|
this->m_location[1] = p_dsAction.m_location[1];
|
|
|
|
if (p_dsAction.m_location[2] != FLT_MAX)
|
|
|
|
this->m_location[2] = p_dsAction.m_location[2];
|
|
|
|
|
|
|
|
if (p_dsAction.m_direction[0] != FLT_MAX)
|
|
|
|
this->m_direction[0] = p_dsAction.m_direction[0];
|
|
|
|
if (p_dsAction.m_direction[1] != FLT_MAX)
|
|
|
|
this->m_direction[1] = p_dsAction.m_direction[1];
|
|
|
|
if (p_dsAction.m_direction[2] != FLT_MAX)
|
|
|
|
this->m_direction[2] = p_dsAction.m_up[2]; // This is correct
|
|
|
|
|
|
|
|
if (p_dsAction.m_up[0] != FLT_MAX)
|
|
|
|
this->m_up[0] = p_dsAction.m_up[0];
|
|
|
|
if (p_dsAction.m_up[1] != FLT_MAX)
|
|
|
|
this->m_up[1] = p_dsAction.m_up[1];
|
|
|
|
if (p_dsAction.m_up[2] != FLT_MAX)
|
|
|
|
this->m_up[2] = p_dsAction.m_up[2];
|
|
|
|
|
|
|
|
MxU16 extraLength = p_dsAction.m_extraLength;
|
|
|
|
char* extraData = p_dsAction.m_extraData;
|
|
|
|
|
|
|
|
// Taking those references forces the compiler to move the values onto the stack.
|
|
|
|
// The original code most likely looked different, but this yields a 100% match.
|
2023-12-13 05:48:14 -05:00
|
|
|
MxU16& extraLengthRef = extraLength;
|
|
|
|
char*& extraDataRef = extraData;
|
2023-10-24 19:38:27 -04:00
|
|
|
if (extraLength && extraData) {
|
|
|
|
if (!this->m_extraData || !strncmp("XXX", this->m_extraData, 3)) {
|
|
|
|
delete[] this->m_extraData;
|
|
|
|
this->m_extraLength = 0;
|
|
|
|
AppendData(extraLength, extraData);
|
|
|
|
}
|
|
|
|
}
|
2023-08-08 22:38:07 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ade60
|
2023-10-24 19:38:27 -04:00
|
|
|
void MxDSAction::AppendData(MxU16 p_extraLength, const char* p_extraData)
|
2023-08-08 22:38:07 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
if (this->m_extraData == p_extraData || !p_extraData)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (this->m_extraLength) {
|
2023-12-13 05:48:14 -05:00
|
|
|
char* concat = new char[p_extraLength + this->m_extraLength + sizeof(g_sep)];
|
2023-10-24 19:38:27 -04:00
|
|
|
memcpy(concat, this->m_extraData, this->m_extraLength);
|
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
*(MxU16*) &concat[this->m_extraLength] = g_sep;
|
|
|
|
memcpy(&concat[this->m_extraLength + sizeof(g_sep)], p_extraData, p_extraLength);
|
2023-10-24 19:38:27 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
this->m_extraLength += p_extraLength + sizeof(g_sep);
|
2023-10-24 19:38:27 -04:00
|
|
|
delete[] this->m_extraData;
|
|
|
|
this->m_extraData = concat;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
char* copy = new char[p_extraLength];
|
|
|
|
this->m_extraData = copy;
|
|
|
|
|
|
|
|
if (copy) {
|
|
|
|
this->m_extraLength = p_extraLength;
|
|
|
|
memcpy(copy, p_extraData, p_extraLength);
|
|
|
|
}
|
|
|
|
}
|
2023-08-09 19:48:49 -04:00
|
|
|
}
|
2023-11-21 03:44:45 -05:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100adf70
|
2023-12-17 12:24:39 -05:00
|
|
|
void MxDSAction::Deserialize(MxU8** p_source, MxS16 p_unk0x24)
|
2023-11-21 03:44:45 -05:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
MxDSObject::Deserialize(p_source, p_unk0x24);
|
2023-11-21 03:44:45 -05:00
|
|
|
|
|
|
|
GetScalar(p_source, this->m_flags);
|
|
|
|
GetScalar(p_source, this->m_startTime);
|
|
|
|
GetScalar(p_source, this->m_duration);
|
|
|
|
GetScalar(p_source, this->m_loopCount);
|
|
|
|
GetDouble(p_source, this->m_location[0]);
|
|
|
|
GetDouble(p_source, this->m_location[1]);
|
|
|
|
GetDouble(p_source, this->m_location[2]);
|
|
|
|
GetDouble(p_source, this->m_direction[0]);
|
|
|
|
GetDouble(p_source, this->m_direction[1]);
|
|
|
|
GetDouble(p_source, this->m_direction[2]);
|
|
|
|
GetDouble(p_source, this->m_up[0]);
|
|
|
|
GetDouble(p_source, this->m_up[1]);
|
|
|
|
GetDouble(p_source, this->m_up[2]);
|
|
|
|
|
|
|
|
MxU16 extraLength = GetScalar((MxU16**) p_source);
|
|
|
|
if (extraLength) {
|
2023-12-17 12:24:39 -05:00
|
|
|
AppendData(extraLength, (char*) *p_source);
|
2023-11-21 03:44:45 -05:00
|
|
|
*p_source += extraLength;
|
|
|
|
}
|
|
|
|
}
|