Completed CReplay

This commit is contained in:
Nikolay Korolev
2019-07-01 00:15:34 +03:00
parent 3a763cc6e7
commit 02c7cbc75f
4 changed files with 63 additions and 1 deletions

View File

@@ -15,12 +15,35 @@ public:
CAR_DOOR_RR
};
enum {
PANEL_FL = 0,
PANEL_FR,
PANEL_RL,
PANEL_RR,
PANEL_WINDSHIELD,
PANEL_FRONT,
PANEL_BACK
};
struct PanelStatus {
uint32 m_nPanelFrontLeftStatus : 4;
uint32 m_nPanelFrontRightStatus : 4;
uint32 m_nPanelBackLeftStatus : 4;
uint32 m_nPanelBackRightStatus : 4;
uint32 m_nWindshieldStatus : 4;
uint32 m_nPanelFrontStatus : 4;
uint32 m_nPanelBackStatus : 4;
};
float field_0;
char m_bEngineStatus;
char m_bWheelStatus[4];
char m_bDoorStatus[7];
uint32 m_abLightStatus;
uint32 m_abPanelsStatus;
union{
PanelStatus m_sPanelsStatus;
uint32 m_abPanelsStatus;
};
char field_24;
char field_25;
char field_26;