mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-16 04:51:16 +00:00
Some checks failed
Analyze / ${{ matrix.who }} annotations (CONFIG) (push) Has been cancelled
Analyze / ${{ matrix.who }} annotations (ISLE) (push) Has been cancelled
Analyze / ${{ matrix.who }} annotations (LEGO1) (push) Has been cancelled
Build / Download original binaries (push) Has been cancelled
Build / Current ${{ matrix.toolchain.name }} (map[clang-tidy:true msys-env:mingw-w64-i686 msystem:mingw32 name:msys2 mingw32 shell:msys2 {0} werror:true]) (push) Has been cancelled
Build / Current ${{ matrix.toolchain.name }} (map[name:MSVC setup-cmake:true setup-msvc:true setup-ninja:true shell:sh]) (push) Has been cancelled
Build / MSVC 4.20 (push) Has been cancelled
Build / MSVC 4.20 (BETA10) (push) Has been cancelled
Format / C++ (push) Has been cancelled
Naming / C++ (push) Has been cancelled
Build / Verify decomp (push) Has been cancelled
Build / Upload artifacts (push) Has been cancelled
101 lines
2.2 KiB
C++
101 lines
2.2 KiB
C++
#include "legoactioncontrolpresenter.h"
|
|
|
|
#include "define.h"
|
|
#include "extra.h"
|
|
#include "legomain.h"
|
|
#include "legoutils.h"
|
|
#include "mxcompositepresenter.h"
|
|
#include "mxdssubscriber.h"
|
|
#include "mxmediapresenter.h"
|
|
#include "mxmisc.h"
|
|
#include "mxstreamchunk.h"
|
|
#include "mxticklemanager.h"
|
|
#include "mxutilities.h"
|
|
|
|
DECOMP_SIZE_ASSERT(LegoActionControlPresenter, 0x68)
|
|
|
|
// FUNCTION: LEGO1 0x10043ce0
|
|
void LegoActionControlPresenter::ReadyTickle()
|
|
{
|
|
MxStreamChunk* chunk = NextChunk();
|
|
|
|
if (chunk) {
|
|
ParseExtra();
|
|
ProgressTickleState(e_starting);
|
|
|
|
m_subscriber->FreeDataChunk(chunk);
|
|
if (m_compositePresenter) {
|
|
if (m_action->GetDuration() == -1 || m_action->GetFlags() & 1) {
|
|
m_compositePresenter->AdvanceSerialAction(this);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10043d40
|
|
void LegoActionControlPresenter::RepeatingTickle()
|
|
{
|
|
if (IsEnabled()) {
|
|
if (m_actionType == 0) {
|
|
ParseExtra();
|
|
}
|
|
|
|
InvokeAction(m_actionType, MxAtomId(m_sourceName.GetData(), e_lowerCase2), m_streamId, NULL);
|
|
ProgressTickleState(e_done);
|
|
}
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10043df0
|
|
MxResult LegoActionControlPresenter::AddToManager()
|
|
{
|
|
MxResult result = FAILURE;
|
|
|
|
if (TickleManager()) {
|
|
result = SUCCESS;
|
|
TickleManager()->RegisterClient(this, 100);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10043e20
|
|
void LegoActionControlPresenter::Destroy(MxBool p_fromDestructor)
|
|
{
|
|
if (TickleManager()) {
|
|
TickleManager()->UnregisterClient(this);
|
|
}
|
|
|
|
if (!p_fromDestructor) {
|
|
MxMediaPresenter::Destroy(FALSE);
|
|
}
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10043e50
|
|
void LegoActionControlPresenter::ParseExtra()
|
|
{
|
|
MxU16 extraLength;
|
|
char* extraData;
|
|
m_action->GetExtra(extraLength, extraData);
|
|
|
|
if (extraLength) {
|
|
char extraCopy[1024];
|
|
memcpy(extraCopy, extraData, extraLength);
|
|
extraCopy[extraLength] = '\0';
|
|
|
|
char output[1024];
|
|
if (KeyValueStringParse(output, g_strACTION, extraCopy)) {
|
|
m_actionType = MatchActionString(strtok(output, g_parseExtraTokens));
|
|
|
|
if (m_actionType != Extra::ActionType::e_exit) {
|
|
MakeSourceName(extraCopy, strtok(NULL, g_parseExtraTokens));
|
|
|
|
m_sourceName = extraCopy;
|
|
m_sourceName.ToLowerCase();
|
|
if (m_actionType != Extra::ActionType::e_run) {
|
|
m_streamId = atoi(strtok(NULL, g_parseExtraTokens));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|