2023-04-27 22:19:39 -04:00
|
|
|
#ifndef MXTRANSITIONMANAGER_H
|
|
|
|
#define MXTRANSITIONMANAGER_H
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
2023-09-29 12:09:46 -04:00
|
|
|
#include "mxvideopresenter.h"
|
|
|
|
#include "legoomni.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-09-29 12:09:46 -04:00
|
|
|
// VTABLE 0x100d7ea0
|
2023-06-29 04:10:08 -04:00
|
|
|
class MxTransitionManager : public MxCore
|
2023-04-27 22:19:39 -04:00
|
|
|
{
|
|
|
|
public:
|
2023-07-02 02:53:54 -04:00
|
|
|
MxTransitionManager();
|
|
|
|
virtual ~MxTransitionManager() override; // vtable+0x0
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-05 06:31:20 -04:00
|
|
|
__declspec(dllexport) void SetWaitIndicator(MxVideoPresenter *p_waitIndicator);
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-09-21 14:51:24 -04:00
|
|
|
virtual MxResult Tickle(); // vtable+0x8
|
2023-09-29 12:09:46 -04:00
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1004b950
|
|
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
|
|
{
|
|
|
|
return "MxTransitionManager";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1004b960
|
|
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, MxTransitionManager::ClassName()) || MxCore::IsA(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual MxResult GetDDrawSurfaceFromVideoManager(); // vtable+0x14
|
|
|
|
|
|
|
|
enum TransitionType {
|
|
|
|
NOT_TRANSITIONING,
|
|
|
|
NO_ANIMATION,
|
|
|
|
DISSOLVE,
|
|
|
|
PIXELATION,
|
|
|
|
SCREEN_WIPE,
|
|
|
|
WINDOWS,
|
|
|
|
BROKEN // Unknown what this is supposed to be, it locks the game up
|
|
|
|
};
|
|
|
|
|
2023-10-04 09:43:34 -04:00
|
|
|
MxResult StartTransition(TransitionType p_animationType, MxS32 p_speed, MxBool p_doCopy, MxBool p_playMusicInAnim);
|
2023-09-29 12:09:46 -04:00
|
|
|
|
|
|
|
private:
|
2023-10-04 02:56:16 -04:00
|
|
|
void EndTransition(MxBool p_notifyWorld);
|
2023-10-03 18:03:10 -04:00
|
|
|
void Transition_Dissolve();
|
2023-10-04 11:48:25 -04:00
|
|
|
void Transition_Wipe();
|
2023-10-05 06:31:20 -04:00
|
|
|
void SubmitCopyRect(LPDDSURFACEDESC ddsc);
|
|
|
|
void SetupCopyRect(LPDDSURFACEDESC ddsc);
|
2023-10-04 09:43:34 -04:00
|
|
|
|
|
|
|
MxVideoPresenter *m_waitIndicator;
|
|
|
|
RECT m_copyRect;
|
|
|
|
void *m_copyBuffer;
|
2023-10-03 18:03:10 -04:00
|
|
|
|
2023-10-04 09:43:34 -04:00
|
|
|
flag_bitfield m_copyFlags;
|
2023-10-01 20:18:16 -04:00
|
|
|
undefined4 m_unk24;
|
|
|
|
flag_bitfield m_unk28;
|
|
|
|
|
2023-09-29 12:09:46 -04:00
|
|
|
TransitionType m_transitionType;
|
|
|
|
LPDIRECTDRAWSURFACE m_ddSurface;
|
|
|
|
MxU16 m_animationTimer;
|
2023-10-03 18:03:10 -04:00
|
|
|
MxU16 m_columnOrder[640]; // 0x36
|
|
|
|
MxU16 m_randomShift[480]; // 0x536
|
2023-10-04 02:56:16 -04:00
|
|
|
MxULong m_systemTime; // 0x8f8
|
|
|
|
MxS32 m_animationSpeed; // 0x8fc
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXTRANSITIONMANAGER_H
|