2019-05-29 20:02:58 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-04-10 10:03:38 +02:00
|
|
|
class CAutomobile;
|
2020-02-16 21:08:54 +01:00
|
|
|
class CVehicle;
|
2020-04-10 10:03:38 +02:00
|
|
|
class CControllerState;
|
2020-02-16 21:08:54 +01:00
|
|
|
|
2019-06-28 12:34:02 +02:00
|
|
|
enum {
|
|
|
|
RECORDSTATE_0,
|
|
|
|
RECORDSTATE_1,
|
|
|
|
RECORDSTATE_2,
|
|
|
|
};
|
|
|
|
|
2019-09-12 02:43:18 +02:00
|
|
|
class CRecordDataForChase
|
2019-05-29 20:02:58 +02:00
|
|
|
{
|
2020-04-10 10:03:38 +02:00
|
|
|
enum {
|
|
|
|
NUM_CHASE_CARS = 20
|
|
|
|
};
|
2019-05-29 20:02:58 +02:00
|
|
|
public:
|
2019-09-12 02:43:18 +02:00
|
|
|
static uint8 &Status;
|
2020-04-10 10:03:38 +02:00
|
|
|
static int &PositionChanges;
|
|
|
|
static uint8 &CurrentCar;
|
|
|
|
static CAutomobile*(&pChaseCars)[NUM_CHASE_CARS];
|
|
|
|
static uint32 &AnimStartTime;
|
2019-09-12 02:43:18 +02:00
|
|
|
|
2019-10-19 00:23:40 +02:00
|
|
|
static void SaveOrRetrieveDataForThisFrame(void);
|
2019-09-12 02:43:18 +02:00
|
|
|
static void ProcessControlCars(void);
|
|
|
|
static void SaveOrRetrieveCarPositions(void);
|
2020-01-03 17:48:13 +01:00
|
|
|
static void StartChaseScene(float);
|
|
|
|
static void CleanUpChaseScene();
|
2020-02-16 21:08:54 +01:00
|
|
|
static void RemoveCarFromChase(int32);
|
|
|
|
static CVehicle* TurnChaseCarIntoScriptCar(int32);
|
2020-03-22 15:23:40 +01:00
|
|
|
static void Init(void);
|
2019-05-30 00:47:33 +02:00
|
|
|
};
|
|
|
|
|
2020-04-10 10:03:38 +02:00
|
|
|
struct tGameBuffer
|
|
|
|
{
|
|
|
|
float m_fTimeStep;
|
|
|
|
uint32 m_nTimeInMilliseconds;
|
|
|
|
uint8 m_nSizeOfPads[2];
|
|
|
|
uint16 m_nChecksum;
|
|
|
|
uint8 m_ControllerBuffer[116];
|
|
|
|
};
|
2019-09-12 02:43:18 +02:00
|
|
|
|
|
|
|
class CRecordDataForGame
|
2019-05-30 00:47:33 +02:00
|
|
|
{
|
2020-04-10 10:03:38 +02:00
|
|
|
enum {
|
|
|
|
STATE_NONE = 0,
|
|
|
|
STATE_RECORD = 1,
|
|
|
|
STATE_PLAYBACK = 2,
|
|
|
|
};
|
|
|
|
static uint16& RecordingState;
|
|
|
|
static uint8* &pDataBuffer;
|
|
|
|
static uint8* &pDataBufferPointer;
|
|
|
|
static int &FId;
|
|
|
|
static tGameBuffer &pDataBufferForFrame;
|
|
|
|
|
2019-05-30 00:47:33 +02:00
|
|
|
public:
|
2020-04-10 10:03:38 +02:00
|
|
|
static bool IsRecording() { return RecordingState == STATE_RECORD; }
|
|
|
|
static bool IsPlayingBack() { return RecordingState == STATE_PLAYBACK; }
|
2019-10-19 00:23:40 +02:00
|
|
|
|
|
|
|
static void SaveOrRetrieveDataForThisFrame(void);
|
2020-03-22 15:23:40 +01:00
|
|
|
static void Init(void);
|
2020-04-10 10:03:38 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
static uint16 CalcGameChecksum(void);
|
|
|
|
static uint8* PackCurrentPadValues(uint8*, CControllerState*, CControllerState*);
|
|
|
|
static uint8* UnPackCurrentPadValues(uint8*, uint8, CControllerState*);
|
2019-05-30 00:47:33 +02:00
|
|
|
};
|