2023-04-27 19:19:39 -07:00
|
|
|
#ifndef LEGOVIDEOMANAGER_H
|
|
|
|
#define LEGOVIDEOMANAGER_H
|
|
|
|
|
2023-06-24 19:09:46 +02:00
|
|
|
#include "mxvideomanager.h"
|
2023-08-06 16:26:14 -04:00
|
|
|
#include "mxdirect3d.h"
|
2023-06-18 13:45:39 +02:00
|
|
|
#include "lego3dmanager.h"
|
2023-08-06 16:26:14 -04:00
|
|
|
#include "decomp.h"
|
2023-06-18 13:45:39 +02:00
|
|
|
|
2023-06-29 10:10:08 +02:00
|
|
|
// VTABLE 0x100d9c88
|
|
|
|
// SIZE 0x590
|
2023-06-24 19:09:46 +02:00
|
|
|
class LegoVideoManager : public MxVideoManager
|
2023-04-27 19:19:39 -07:00
|
|
|
{
|
|
|
|
public:
|
2023-06-29 10:10:08 +02:00
|
|
|
LegoVideoManager();
|
|
|
|
virtual ~LegoVideoManager() override;
|
|
|
|
|
2023-04-27 19:19:39 -07:00
|
|
|
__declspec(dllexport) int EnableRMDevice();
|
2023-04-29 20:37:12 -07:00
|
|
|
__declspec(dllexport) int DisableRMDevice();
|
2023-04-27 19:19:39 -07:00
|
|
|
__declspec(dllexport) void EnableFullScreenMovie(unsigned char a, unsigned char b);
|
|
|
|
__declspec(dllexport) void MoveCursor(int x, int y);
|
|
|
|
|
2023-06-18 13:45:39 +02:00
|
|
|
inline Lego3DManager *Get3DManager() { return this->m_3dManager; }
|
2023-08-06 16:26:14 -04:00
|
|
|
inline MxDirect3D *GetDirect3D() { return this->m_direct3d; }
|
|
|
|
|
2023-06-30 16:33:59 -07:00
|
|
|
void SetSkyColor(float r, float g, float b);
|
2023-06-18 13:45:39 +02:00
|
|
|
|
2023-08-06 16:26:14 -04:00
|
|
|
private:
|
|
|
|
undefined4 m_unk64;
|
2023-06-18 13:45:39 +02:00
|
|
|
Lego3DManager *m_3dManager;
|
2023-08-06 16:26:14 -04:00
|
|
|
undefined4 m_unk6c;
|
|
|
|
undefined4 m_unk70;
|
|
|
|
MxDirect3D *m_direct3d;
|
2023-04-27 19:19:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOVIDEOMANAGER_H
|