mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-21 07:11:16 +00:00
Add MxDSEvent, MxDSObjectAction, MxDSStill
This commit is contained in:
parent
e95d5b913e
commit
3501cc96b4
@ -1,5 +1,7 @@
|
||||
#include "mxdsevent.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(MxDSEvent, 0xb8)
|
||||
|
||||
// OFFSET: LEGO1 0x100c95f0
|
||||
MxDSEvent::MxDSEvent()
|
||||
{
|
||||
@ -10,3 +12,30 @@ MxDSEvent::MxDSEvent()
|
||||
MxDSEvent::~MxDSEvent()
|
||||
{
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c97f0
|
||||
void MxDSEvent::CopyFrom(MxDSEvent &p_dsEvent)
|
||||
{
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c9800
|
||||
MxDSEvent &MxDSEvent::operator=(MxDSEvent &p_dsEvent)
|
||||
{
|
||||
if (this == &p_dsEvent)
|
||||
return *this;
|
||||
|
||||
MxDSMediaAction::operator=(p_dsEvent);
|
||||
this->CopyFrom(p_dsEvent);
|
||||
return *this;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c9830
|
||||
MxDSAction *MxDSEvent::Clone()
|
||||
{
|
||||
MxDSEvent *clone = new MxDSEvent();
|
||||
|
||||
if (clone)
|
||||
*clone = *this;
|
||||
|
||||
return clone;
|
||||
}
|
||||
@ -9,6 +9,9 @@ class MxDSEvent : public MxDSMediaAction
|
||||
MxDSEvent();
|
||||
virtual ~MxDSEvent() override;
|
||||
|
||||
void CopyFrom(MxDSEvent &p_dsEvent);
|
||||
MxDSEvent &operator=(MxDSEvent &p_dsEvent);
|
||||
|
||||
// OFFSET: LEGO1 0x100c9660
|
||||
inline virtual const char *ClassName() const override // vtable+0x0c
|
||||
{
|
||||
@ -21,6 +24,8 @@ class MxDSEvent : public MxDSMediaAction
|
||||
{
|
||||
return !strcmp(name, MxDSEvent::ClassName()) || MxDSMediaAction::IsA(name);
|
||||
}
|
||||
|
||||
virtual MxDSAction *Clone(); // vtable+2c;
|
||||
};
|
||||
|
||||
#endif // MXDSEVENT_H
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
#include "mxdsobjectaction.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(MxDSObjectAction, 0xb8)
|
||||
|
||||
// OFFSET: LEGO1 0x100c8870
|
||||
MxDSObjectAction::MxDSObjectAction()
|
||||
{
|
||||
@ -10,3 +12,30 @@ MxDSObjectAction::MxDSObjectAction()
|
||||
MxDSObjectAction::~MxDSObjectAction()
|
||||
{
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c8a70
|
||||
void MxDSObjectAction::CopyFrom(MxDSObjectAction &p_dsObjectAction)
|
||||
{
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c8a80
|
||||
MxDSObjectAction &MxDSObjectAction::operator=(MxDSObjectAction &p_dsObjectAction)
|
||||
{
|
||||
if (this == &p_dsObjectAction)
|
||||
return *this;
|
||||
|
||||
MxDSMediaAction::operator=(p_dsObjectAction);
|
||||
this->CopyFrom(p_dsObjectAction);
|
||||
return *this;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c8ab0
|
||||
MxDSAction *MxDSObjectAction::Clone()
|
||||
{
|
||||
MxDSObjectAction *clone = new MxDSObjectAction();
|
||||
|
||||
if (clone)
|
||||
*clone = *this;
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
@ -11,6 +11,8 @@ class MxDSObjectAction : public MxDSMediaAction
|
||||
MxDSObjectAction();
|
||||
virtual ~MxDSObjectAction() override;
|
||||
|
||||
MxDSObjectAction &operator=(MxDSObjectAction &p_dsObjectAction);
|
||||
|
||||
// OFFSET: LEGO1 0x100c88e0
|
||||
inline virtual const char *ClassName() const override // vtable+0x0c
|
||||
{
|
||||
@ -23,6 +25,9 @@ class MxDSObjectAction : public MxDSMediaAction
|
||||
{
|
||||
return !strcmp(name, MxDSObjectAction::ClassName()) || MxDSMediaAction::IsA(name);
|
||||
}
|
||||
|
||||
virtual MxDSAction *Clone(); // vtable+2c;
|
||||
virtual void CopyFrom(MxDSObjectAction &p_dsObjectAction); // vtable+44;
|
||||
};
|
||||
|
||||
#endif // MXDSOBJECTACTION_H
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
#include "mxdsstill.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(MxDSStill, 0xb8)
|
||||
|
||||
// OFFSET: LEGO1 0x100c98c0
|
||||
MxDSStill::MxDSStill()
|
||||
{
|
||||
@ -10,3 +12,30 @@ MxDSStill::MxDSStill()
|
||||
MxDSStill::~MxDSStill()
|
||||
{
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c9ac0
|
||||
void MxDSStill::CopyFrom(MxDSStill &p_dsStill)
|
||||
{
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c9ad0
|
||||
MxDSStill &MxDSStill::operator=(MxDSStill &p_dsStill)
|
||||
{
|
||||
if (this == &p_dsStill)
|
||||
return *this;
|
||||
|
||||
MxDSMediaAction::operator=(p_dsStill);
|
||||
this->CopyFrom(p_dsStill);
|
||||
return *this;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c9b00
|
||||
MxDSAction *MxDSStill::Clone()
|
||||
{
|
||||
MxDSStill *clone = new MxDSStill();
|
||||
|
||||
if (clone)
|
||||
*clone = *this;
|
||||
|
||||
return clone;
|
||||
}
|
||||
@ -11,6 +11,9 @@ class MxDSStill : public MxDSMediaAction
|
||||
MxDSStill();
|
||||
virtual ~MxDSStill() override;
|
||||
|
||||
void CopyFrom(MxDSStill &p_dsStill);
|
||||
MxDSStill &operator=(MxDSStill &p_dsStill);
|
||||
|
||||
// OFFSET: LEGO1 0x100c9930
|
||||
inline virtual const char *ClassName() const override // vtable+0x0c
|
||||
{
|
||||
@ -23,6 +26,8 @@ class MxDSStill : public MxDSMediaAction
|
||||
{
|
||||
return !strcmp(name, MxDSStill::ClassName()) || MxDSMediaAction::IsA(name);
|
||||
}
|
||||
|
||||
virtual MxDSAction *Clone(); // vtable+2c;
|
||||
};
|
||||
|
||||
#endif // MXDSSTILL_H
|
||||
|
||||
Loading…
Reference in New Issue
Block a user