mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-27 10:11:15 +00:00
Implement/match rest of MxCompositePresenter
This commit is contained in:
parent
ab1704b883
commit
737d19e61e
@ -1,7 +1,6 @@
|
|||||||
#include "mxcompositepresenter.h"
|
#include "mxcompositepresenter.h"
|
||||||
|
|
||||||
#include "decomp.h"
|
#include "decomp.h"
|
||||||
#include "mxactionnotificationparam.h"
|
|
||||||
#include "mxautolocker.h"
|
#include "mxautolocker.h"
|
||||||
#include "mxdsmultiaction.h"
|
#include "mxdsmultiaction.h"
|
||||||
#include "mxnotificationmanager.h"
|
#include "mxnotificationmanager.h"
|
||||||
@ -133,25 +132,96 @@ MxLong MxCompositePresenter::Notify(MxParam& p)
|
|||||||
|
|
||||||
switch (((MxNotificationParam&) p).GetNotification()) {
|
switch (((MxNotificationParam&) p).GetNotification()) {
|
||||||
case c_notificationEndAction:
|
case c_notificationEndAction:
|
||||||
VTable0x58(p);
|
VTable0x58((MxEndActionNotificationParam&) p);
|
||||||
break;
|
break;
|
||||||
case MXPRESENTER_NOTIFICATION:
|
case MXPRESENTER_NOTIFICATION:
|
||||||
VTable0x5c(p);
|
VTable0x5c((MxNotificationParam&) p);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// STUB: LEGO1 0x100b67f0
|
// FUNCTION: LEGO1 0x100b67f0
|
||||||
void MxCompositePresenter::VTable0x58(MxParam& p)
|
void MxCompositePresenter::VTable0x58(MxEndActionNotificationParam& p)
|
||||||
{
|
{
|
||||||
// TODO
|
MxPresenter* presenter = (MxPresenter*) p.GetSender();
|
||||||
|
MxDSAction* action = p.GetAction();
|
||||||
|
MxCompositePresenterList::iterator it;
|
||||||
|
|
||||||
|
if (!m_list.empty()) {
|
||||||
|
for (it = m_list.begin(); it != m_list.end(); it++) {
|
||||||
|
if (*it == presenter) {
|
||||||
|
m_list.erase(it++);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (m_action) {
|
||||||
|
MxDSActionList* actions = ((MxDSMultiAction*) m_action)->GetActionList();
|
||||||
|
MxDSActionListCursor cursor(actions);
|
||||||
|
|
||||||
|
if (cursor.Find(action))
|
||||||
|
cursor.Detach();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (presenter)
|
||||||
|
delete presenter;
|
||||||
|
|
||||||
|
if (action)
|
||||||
|
delete action;
|
||||||
|
|
||||||
|
if (m_list.empty()) {
|
||||||
|
EndAction();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (m_action->IsA("MxDSSerialAction") && it != m_list.end()) {
|
||||||
|
MxPresenter* presenter = *it;
|
||||||
|
if (presenter->GetCurrentTickleState() == TickleState_Idle)
|
||||||
|
presenter->SetTickleState(TickleState_Ready);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// STUB: LEGO1 0x100b69b0
|
// TEMPLATE: LEGO1 0x100b6cd0
|
||||||
void MxCompositePresenter::VTable0x5c(MxParam& p)
|
// MxList<MxDSAction *>::_DeleteEntry
|
||||||
|
|
||||||
|
// FUNCTION: LEGO1 0x100b69b0
|
||||||
|
void MxCompositePresenter::VTable0x5c(MxNotificationParam& p)
|
||||||
{
|
{
|
||||||
// TODO
|
if (!m_list.empty()) {
|
||||||
|
MxPresenter* presenter = (MxPresenter*) p.GetSender();
|
||||||
|
|
||||||
|
for (MxCompositePresenterList::iterator it = m_list.begin(); it != m_list.end(); it++) {
|
||||||
|
if (*it == presenter) {
|
||||||
|
m_list.erase(it++);
|
||||||
|
|
||||||
|
if (presenter->GetCurrentTickleState() == TickleState_Idle)
|
||||||
|
presenter->SetTickleState(TickleState_Ready);
|
||||||
|
|
||||||
|
MxDSActionList* actions = ((MxDSMultiAction*) m_action)->GetActionList();
|
||||||
|
MxDSActionListCursor cursor(actions);
|
||||||
|
|
||||||
|
if (cursor.Find(presenter->GetAction()))
|
||||||
|
cursor.Detach();
|
||||||
|
|
||||||
|
if (m_list.empty()) {
|
||||||
|
EndAction();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (m_action->IsA("MxDSSerialAction")) {
|
||||||
|
MxPresenter* presenter = *it;
|
||||||
|
if (presenter->GetCurrentTickleState() == TickleState_Idle)
|
||||||
|
presenter->SetTickleState(TickleState_Ready);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NotificationManager()->Send(this, &p);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// FUNCTION: LEGO1 0x100b6b40
|
// FUNCTION: LEGO1 0x100b6b40
|
||||||
@ -173,21 +243,40 @@ void MxCompositePresenter::VTable0x60(MxPresenter* p_presenter)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// STUB: LEGO1 0x100b6bc0
|
// FUNCTION: LEGO1 0x100b6bc0
|
||||||
void MxCompositePresenter::SetTickleState(TickleState p_tickleState)
|
void MxCompositePresenter::SetTickleState(TickleState p_tickleState)
|
||||||
{
|
{
|
||||||
// TODO
|
m_previousTickleStates |= 1 << (unsigned char) m_currentTickleState;
|
||||||
|
m_currentTickleState = p_tickleState;
|
||||||
|
|
||||||
|
for (MxCompositePresenterList::iterator it = m_list.begin(); it != m_list.end(); it++) {
|
||||||
|
MxPresenter* presenter = *it;
|
||||||
|
presenter->SetTickleState(p_tickleState);
|
||||||
|
|
||||||
|
if (m_action->IsA("MxDSSerialAction") && p_tickleState == TickleState_Ready)
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// STUB: LEGO1 0x100b6c30
|
// FUNCTION: LEGO1 0x100b6c30
|
||||||
void MxCompositePresenter::Enable(MxBool p_enable)
|
void MxCompositePresenter::Enable(MxBool p_enable)
|
||||||
{
|
{
|
||||||
// TODO
|
MxPresenter::Enable(p_enable);
|
||||||
|
|
||||||
|
for (MxCompositePresenterList::iterator it = m_list.begin(); it != m_list.end(); it++) {
|
||||||
|
MxPresenter* presenter = *it;
|
||||||
|
presenter->Enable(p_enable);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// STUB: LEGO1 0x100b6c80
|
// FUNCTION: LEGO1 0x100b6c80
|
||||||
MxBool MxCompositePresenter::HasTickleStatePassed(TickleState p_tickleState)
|
MxBool MxCompositePresenter::HasTickleStatePassed(TickleState p_tickleState)
|
||||||
{
|
{
|
||||||
// TODO
|
for (MxCompositePresenterList::iterator it = m_list.begin(); it != m_list.end(); it++) {
|
||||||
|
MxPresenter* presenter = *it;
|
||||||
|
if (!presenter->HasTickleStatePassed(p_tickleState))
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
#define MXCOMPOSITEPRESENTER_H
|
#define MXCOMPOSITEPRESENTER_H
|
||||||
|
|
||||||
#include "compat.h" // STL
|
#include "compat.h" // STL
|
||||||
|
#include "mxactionnotificationparam.h"
|
||||||
#include "mxpresenter.h"
|
#include "mxpresenter.h"
|
||||||
|
|
||||||
class MxCompositePresenterList : public list<MxPresenter*> {};
|
class MxCompositePresenterList : public list<MxPresenter*> {};
|
||||||
@ -31,8 +32,8 @@ class MxCompositePresenter : public MxPresenter {
|
|||||||
virtual void SetTickleState(TickleState p_tickleState) override; // vtable+0x44
|
virtual void SetTickleState(TickleState p_tickleState) override; // vtable+0x44
|
||||||
virtual MxBool HasTickleStatePassed(TickleState p_tickleState) override; // vtable+0x48
|
virtual MxBool HasTickleStatePassed(TickleState p_tickleState) override; // vtable+0x48
|
||||||
virtual void Enable(MxBool p_enable) override; // vtable+0x54
|
virtual void Enable(MxBool p_enable) override; // vtable+0x54
|
||||||
virtual void VTable0x58(MxParam& p); // vtable+0x58
|
virtual void VTable0x58(MxEndActionNotificationParam& p); // vtable+0x58
|
||||||
virtual void VTable0x5c(MxParam& p); // vtable+0x5c
|
virtual void VTable0x5c(MxNotificationParam& p); // vtable+0x5c
|
||||||
virtual void VTable0x60(MxPresenter* p_presenter); // vtable+0x60
|
virtual void VTable0x60(MxPresenter* p_presenter); // vtable+0x60
|
||||||
virtual MxBool VTable0x64(undefined4 p_unknown); // vtable+0x64
|
virtual MxBool VTable0x64(undefined4 p_unknown); // vtable+0x64
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user