mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
494a556f8e
* Adjustments to "decomp" language * Fix a comment * Fix accidental clang-formatting * Fix order * Fix order * Remove junk * Fix OFFSET * Adjustments based on new suggestions * Annotate globals * Globals in ISLE * More globals * Merge from parser2 branch * Allow prepending space for exact marker match * To eliminate noise, require the 0x prefix on offset for marker match * fix test from previous * Count tab stops for indented functions to reduce MISSED_END_OF_FUNCTION noise * FUNCTION to SYNTHETIC where needed * Missed marker conversion on SetAtomId * pylint cleanup, remove unused code * Fix unexpected function end, add more unit tests * Be more strict about synthetic name syntax * Revert "Missed marker conversion on SetAtomId" This reverts commitd87d665127
. * Revert "FUNCTION to SYNTHETIC where needed" This reverts commit8c815418d2
. * Implicit lookup by name for functions * Fix VTABLE SYNTHETIC and other decomp markers * Get vtable class name * Vtable marker should identify struct * No colon for SIZE comment * Update README.md * Update README.md * Update CONTRIBUTING.md * Update README.md * Update README.md * Update CONTRIBUTING.md * Update README.md * Update CONTRIBUTING.md * Fix destructor/annotation * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md --------- Co-authored-by: disinvite <disinvite@users.noreply.github.com>
74 lines
2 KiB
C++
74 lines
2 KiB
C++
#ifndef LEGOVIDEOMANAGER_H
|
|
#define LEGOVIDEOMANAGER_H
|
|
|
|
#include "decomp.h"
|
|
#include "lego3dmanager.h"
|
|
#include "mxdirect3d.h"
|
|
#include "mxvideomanager.h"
|
|
|
|
#include <ddraw.h>
|
|
|
|
// VTABLE: LEGO1 0x100d9c88
|
|
// SIZE 0x590
|
|
class LegoVideoManager : public MxVideoManager {
|
|
public:
|
|
LegoVideoManager();
|
|
virtual ~LegoVideoManager() override;
|
|
|
|
__declspec(dllexport) int EnableRMDevice();
|
|
__declspec(dllexport) int DisableRMDevice();
|
|
void EnableFullScreenMovie(MxBool p_enable);
|
|
__declspec(dllexport) void EnableFullScreenMovie(MxBool p_enable, MxBool p_scale);
|
|
__declspec(dllexport) void MoveCursor(int x, int y);
|
|
|
|
inline Lego3DManager* Get3DManager() { return this->m_3dManager; }
|
|
inline MxDirect3D* GetDirect3D() { return this->m_direct3d; }
|
|
|
|
void SetSkyColor(float r, float g, float b);
|
|
inline void SetUnkE4(MxBool p_unk0xe4) { this->m_unk0xe4 = p_unk0xe4; }
|
|
|
|
// FUNCTION: LEGO1 0x1007c4c0
|
|
void OverrideSkyColor(MxBool p_shouldOverride)
|
|
{
|
|
this->m_videoParam.GetPalette()->SetOverrideSkyColor(p_shouldOverride);
|
|
}
|
|
|
|
virtual void Destroy() override; // vtable+0x18
|
|
|
|
private:
|
|
undefined4 m_unk64;
|
|
Lego3DManager* m_3dManager; // 0x68
|
|
undefined4 m_unk6c;
|
|
undefined4 m_unk70;
|
|
MxDirect3D* m_direct3d; // 0x74
|
|
undefined4 m_unk0x78[27];
|
|
MxBool m_unk0xe4;
|
|
MxBool m_unk0xe5;
|
|
MxBool m_unk0xe6;
|
|
PALETTEENTRY m_paletteEntries[256]; // 0xe7
|
|
undefined m_padding0x4e7;
|
|
undefined4 m_unk4e8;
|
|
MxBool m_isFullscreenMovie; // 0x4ec
|
|
MxPalette* m_palette; // 0x4f0
|
|
LARGE_INTEGER* m_prefCounter; // 0x4f4
|
|
undefined m_padding0x4f4[8];
|
|
MxBool m_unk0x500;
|
|
MxBool m_cursorMoved; // 0x501
|
|
MxS32 m_cursorXCopy; // 0x504
|
|
MxS32 m_cursorYCopy; // 0x508
|
|
MxS32 m_cursorX; // 0x50c
|
|
MxS32 m_cursorY; // 0x510
|
|
undefined4 m_unk0x514;
|
|
undefined m_pad0x518[0x10];
|
|
undefined4 m_unk0x528;
|
|
MxBool m_drawFPS; // 0x52c
|
|
RECT m_fpsRect; // 0x530
|
|
HFONT m_arialFont; // 0x540
|
|
SIZE m_fpsSize; // 0x544
|
|
undefined m_pad0x54c[8];
|
|
undefined m_unk0x554;
|
|
MxBool m_initialized; // 0x555
|
|
undefined m_pad0x556[0x39];
|
|
};
|
|
|
|
#endif // LEGOVIDEOMANAGER_H
|