mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
#ifndef LEGOGAMESTATE_H
|
|
#define LEGOGAMESTATE_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxtypes.h"
|
|
#include "legobackgroundcolor.h"
|
|
#include "legofullscreenmovie.h"
|
|
|
|
class LegoState;
|
|
class LegoStream;
|
|
class MxVariable;
|
|
class MxString;
|
|
|
|
struct ColorStringStruct
|
|
{
|
|
const char *m_targetName;
|
|
const char *m_colorName;
|
|
};
|
|
|
|
// SIZE 0x430 (at least)
|
|
class LegoGameState
|
|
{
|
|
public:
|
|
__declspec(dllexport) LegoGameState();
|
|
__declspec(dllexport) ~LegoGameState();
|
|
__declspec(dllexport) MxResult Load(MxULong);
|
|
__declspec(dllexport) MxResult Save(MxULong p);
|
|
__declspec(dllexport) void SerializePlayersInfo(MxS16 p);
|
|
__declspec(dllexport) void SerializeScoreHistory(MxS16 p);
|
|
__declspec(dllexport) void SetSavePath(char *p);
|
|
|
|
LegoState *GetState(char *p_stateName);
|
|
LegoState *CreateState(char *p_stateName);
|
|
|
|
void GetFileSavePath(MxString *p_outPath, MxULong p_slotn);
|
|
|
|
private:
|
|
void RegisterState(LegoState *p_state);
|
|
MxResult WriteEndOfVariables(LegoStream *p_stream);
|
|
|
|
private:
|
|
char *m_savePath; // 0x0
|
|
MxS16 m_stateCount;
|
|
LegoState **m_stateArray;
|
|
MxU8 m_unkC;
|
|
MxU32 m_unk10;
|
|
undefined4 m_unk0x14;
|
|
LegoBackgroundColor *m_backgroundColor; // 0x18
|
|
LegoBackgroundColor *m_tempBackgroundColor; // 0x1c
|
|
LegoFullScreenMovie *m_fullScreenMovie; // 0x20
|
|
MxU16 m_unk24; // 0x24
|
|
undefined m_unk28[1032];
|
|
};
|
|
|
|
#endif // LEGOGAMESTATE_H
|