mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
44c3ae478b
* implement some of MxTransitionManager start working on MxTransitionManager::StartTransition add TransitionType enum implement/match MxTransitionManager::GetDDrawSurfaceFromVideoManager implement/match global function SetAppCursor * remove offset comment from mxomni.h * remove misc offset comments from mxtransitionmanager.h * address feedback * merge m_unk20-24 into pad
39 lines
989 B
C++
39 lines
989 B
C++
#ifndef MXVIDEOMANAGER_H
|
|
#define MXVIDEOMANAGER_H
|
|
|
|
#include "mxdisplaysurface.h"
|
|
#include "mxregion.h"
|
|
#include "mxmediamanager.h"
|
|
#include "mxvideoparam.h"
|
|
|
|
// VTABLE 0x100dc810
|
|
// SIZE 0x64
|
|
class MxVideoManager : public MxMediaManager
|
|
{
|
|
public:
|
|
virtual ~MxVideoManager();
|
|
|
|
virtual MxResult Tickle(); // vtable+0x8
|
|
|
|
__declspec(dllexport) void InvalidateRect(MxRect32 &);
|
|
__declspec(dllexport) virtual MxLong RealizePalette(MxPalette *); // vtable+0x30
|
|
|
|
MxVideoManager();
|
|
|
|
MxResult Init();
|
|
void SortPresenterList();
|
|
void UpdateRegion();
|
|
|
|
inline MxVideoParam& GetVideoParam() { return this->m_videoParam; }
|
|
inline LPDIRECTDRAW GetDirectDraw() { return this->m_pDirectDraw; }
|
|
inline MxDisplaySurface *GetDisplaySurface() { return this->m_displaySurface; }
|
|
private:
|
|
MxVideoParam m_videoParam;
|
|
LPDIRECTDRAW m_pDirectDraw;
|
|
LPDIRECTDRAWSURFACE m_pDDSurface;
|
|
MxDisplaySurface *m_displaySurface;
|
|
MxRegion *m_region;
|
|
MxBool m_unk60;
|
|
};
|
|
|
|
#endif // MXVIDEOMANAGER_H
|