2019-05-30 19:24:47 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-22 18:16:29 +00:00
|
|
|
#include "Pools.h"
|
|
|
|
#include "World.h"
|
|
|
|
|
2020-03-15 15:47:21 +00:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
#ifndef DONT_FIX_REPLAY_BUGS
|
|
|
|
#define FIX_REPLAY_BUGS
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2020-03-28 14:47:52 +00:00
|
|
|
class CVehicle;
|
|
|
|
struct CReference;
|
|
|
|
|
2019-06-22 18:16:29 +00:00
|
|
|
struct CAddressInReplayBuffer
|
|
|
|
{
|
2019-06-22 18:42:26 +00:00
|
|
|
uint32 m_nOffset;
|
2019-06-22 18:16:29 +00:00
|
|
|
uint8 *m_pBase;
|
|
|
|
uint8 m_bSlot;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CStoredAnimationState
|
|
|
|
{
|
2019-06-23 10:58:14 +00:00
|
|
|
uint8 animId;
|
|
|
|
uint8 time;
|
|
|
|
uint8 speed;
|
|
|
|
uint8 secAnimId;
|
|
|
|
uint8 secTime;
|
|
|
|
uint8 secSpeed;
|
|
|
|
uint8 blendAmount;
|
|
|
|
uint8 partAnimId;
|
|
|
|
uint8 partAnimTime;
|
|
|
|
uint8 partAnimSpeed;
|
|
|
|
uint8 partBlendAmount;
|
2019-06-22 18:16:29 +00:00
|
|
|
};
|
|
|
|
|
2020-03-15 15:47:21 +00:00
|
|
|
enum {
|
|
|
|
NUM_MAIN_ANIMS_IN_REPLAY = 3,
|
|
|
|
NUM_PARTIAL_ANIMS_IN_REPLAY = 6
|
|
|
|
};
|
|
|
|
|
2019-06-22 18:16:29 +00:00
|
|
|
struct CStoredDetailedAnimationState
|
|
|
|
{
|
2020-03-15 15:47:21 +00:00
|
|
|
uint8 aAnimId[NUM_MAIN_ANIMS_IN_REPLAY];
|
|
|
|
uint8 aCurTime[NUM_MAIN_ANIMS_IN_REPLAY];
|
|
|
|
uint8 aSpeed[NUM_MAIN_ANIMS_IN_REPLAY];
|
|
|
|
uint8 aBlendAmount[NUM_MAIN_ANIMS_IN_REPLAY];
|
|
|
|
#ifdef FIX_REPLAY_BUGS
|
|
|
|
int8 aBlendDelta[NUM_MAIN_ANIMS_IN_REPLAY];
|
|
|
|
#endif
|
|
|
|
uint8 aFunctionCallbackID[NUM_MAIN_ANIMS_IN_REPLAY];
|
|
|
|
uint16 aFlags[NUM_MAIN_ANIMS_IN_REPLAY];
|
|
|
|
uint8 aAnimId2[NUM_PARTIAL_ANIMS_IN_REPLAY];
|
|
|
|
uint8 aCurTime2[NUM_PARTIAL_ANIMS_IN_REPLAY];
|
|
|
|
uint8 aSpeed2[NUM_PARTIAL_ANIMS_IN_REPLAY];
|
|
|
|
uint8 aBlendAmount2[NUM_PARTIAL_ANIMS_IN_REPLAY];
|
|
|
|
#ifdef FIX_REPLAY_BUGS
|
|
|
|
int8 aBlendDelta2[NUM_PARTIAL_ANIMS_IN_REPLAY];
|
|
|
|
#endif
|
|
|
|
uint8 aFunctionCallbackID2[NUM_PARTIAL_ANIMS_IN_REPLAY];
|
|
|
|
uint16 aFlags2[NUM_PARTIAL_ANIMS_IN_REPLAY];
|
2019-06-22 18:16:29 +00:00
|
|
|
};
|
|
|
|
|
2019-06-30 20:29:53 +00:00
|
|
|
void PlayReplayFromHD(void);
|
|
|
|
|
2019-05-30 19:24:47 +00:00
|
|
|
class CReplay
|
|
|
|
{
|
2019-06-12 11:46:02 +00:00
|
|
|
enum {
|
2019-06-22 18:16:29 +00:00
|
|
|
MODE_RECORD = 0,
|
|
|
|
MODE_PLAYBACK = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
REPLAYCAMMODE_ASSTORED = 0,
|
|
|
|
REPLAYCAMMODE_TOPDOWN = 1,
|
|
|
|
REPLAYCAMMODE_FIXED = 2
|
2019-06-12 11:46:02 +00:00
|
|
|
};
|
2019-06-07 20:31:03 +00:00
|
|
|
|
2019-06-22 18:16:29 +00:00
|
|
|
enum {
|
|
|
|
REPLAYPACKET_END = 0,
|
|
|
|
REPLAYPACKET_VEHICLE = 1,
|
|
|
|
REPLAYPACKET_PED_HEADER = 2,
|
2019-06-22 22:34:11 +00:00
|
|
|
REPLAYPACKET_PED_UPDATE = 3,
|
2019-06-22 18:16:29 +00:00
|
|
|
REPLAYPACKET_GENERAL = 4,
|
|
|
|
REPLAYPACKET_CLOCK = 5,
|
|
|
|
REPLAYPACKET_WEATHER = 6,
|
|
|
|
REPLAYPACKET_ENDOFFRAME = 7,
|
|
|
|
REPLAYPACKET_TIMER = 8,
|
2019-06-22 22:34:11 +00:00
|
|
|
REPLAYPACKET_BULLET_TRACES = 9
|
2019-06-22 18:16:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
REPLAYBUFFER_UNUSED = 0,
|
|
|
|
REPLAYBUFFER_PLAYBACK = 1,
|
|
|
|
REPLAYBUFFER_RECORD = 2
|
|
|
|
};
|
|
|
|
|
2020-03-15 15:47:21 +00:00
|
|
|
enum {
|
|
|
|
NUM_REPLAYBUFFERS = 8,
|
|
|
|
REPLAYBUFFERSIZE = 100000
|
|
|
|
};
|
|
|
|
|
2019-06-22 18:16:29 +00:00
|
|
|
|
2019-06-22 18:35:23 +00:00
|
|
|
struct tGeneralPacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
bool in_rcvehicle;
|
|
|
|
CMatrix camera_pos;
|
|
|
|
CVector player_pos;
|
|
|
|
};
|
2020-05-10 13:54:37 +00:00
|
|
|
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tGeneralPacket, 88);
|
2019-06-22 18:35:23 +00:00
|
|
|
|
|
|
|
struct tClockPacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
uint8 hours;
|
|
|
|
uint8 minutes;
|
|
|
|
private:
|
|
|
|
uint8 __align;
|
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tClockPacket, 4);
|
2019-06-22 18:35:23 +00:00
|
|
|
|
|
|
|
struct tWeatherPacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
uint8 old_weather;
|
|
|
|
uint8 new_weather;
|
|
|
|
float interpolation;
|
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tWeatherPacket, 8);
|
2019-06-22 18:35:23 +00:00
|
|
|
|
|
|
|
struct tTimerPacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
uint32 timer;
|
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tTimerPacket, 8);
|
2019-06-22 18:35:23 +00:00
|
|
|
|
|
|
|
struct tPedHeaderPacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
uint8 index;
|
|
|
|
uint16 mi;
|
|
|
|
uint8 pedtype;
|
|
|
|
private:
|
|
|
|
uint8 __align[3];
|
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tPedHeaderPacket, 8);
|
2019-06-22 18:35:23 +00:00
|
|
|
|
|
|
|
struct tBulletTracePacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
uint8 frames;
|
|
|
|
uint8 lifetime;
|
|
|
|
uint8 index;
|
|
|
|
CVector inf;
|
|
|
|
CVector sup;
|
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tBulletTracePacket, 28);
|
2019-06-22 18:35:23 +00:00
|
|
|
|
|
|
|
struct tEndOfFramePacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
private:
|
|
|
|
uint8 __align[3];
|
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tEndOfFramePacket, 4);
|
2019-06-22 18:16:29 +00:00
|
|
|
|
2019-06-22 22:34:11 +00:00
|
|
|
struct tPedUpdatePacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
uint8 index;
|
|
|
|
int8 heading;
|
|
|
|
int8 vehicle_index;
|
|
|
|
CStoredAnimationState anim_state;
|
|
|
|
CCompressedMatrixNotAligned matrix;
|
2019-06-29 11:38:37 +00:00
|
|
|
int8 assoc_group_id;
|
2020-05-16 14:00:40 +00:00
|
|
|
uint16 weapon_model;
|
2019-06-22 22:34:11 +00:00
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tPedUpdatePacket, 40);
|
2019-06-22 22:34:11 +00:00
|
|
|
|
2019-06-24 22:42:23 +00:00
|
|
|
struct tVehicleUpdatePacket
|
|
|
|
{
|
|
|
|
uint8 type;
|
|
|
|
uint8 index;
|
|
|
|
uint8 health;
|
|
|
|
uint8 acceleration;
|
|
|
|
CCompressedMatrixNotAligned matrix;
|
|
|
|
int8 door_angles[2];
|
|
|
|
uint16 mi;
|
|
|
|
uint32 panels;
|
|
|
|
int8 velocityX;
|
|
|
|
int8 velocityY;
|
|
|
|
int8 velocityZ;
|
2020-04-18 20:50:37 +00:00
|
|
|
union {
|
2019-06-24 22:42:23 +00:00
|
|
|
int8 car_gun;
|
2019-07-20 13:18:56 +00:00
|
|
|
int8 wheel_state;
|
2019-06-24 22:42:23 +00:00
|
|
|
};
|
|
|
|
uint8 wheel_susp_dist[4];
|
|
|
|
uint8 wheel_rotation[4];
|
|
|
|
uint8 door_status;
|
|
|
|
uint8 primary_color;
|
|
|
|
uint8 secondary_color;
|
|
|
|
};
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(tVehicleUpdatePacket, 48);
|
2019-06-24 22:42:23 +00:00
|
|
|
|
2019-06-22 18:16:29 +00:00
|
|
|
private:
|
2020-04-17 05:54:14 +00:00
|
|
|
static uint8 Mode;
|
|
|
|
static CAddressInReplayBuffer Record;
|
|
|
|
static CAddressInReplayBuffer Playback;
|
2020-04-18 20:50:37 +00:00
|
|
|
static uint8* pBuf0;
|
|
|
|
static CAutomobile* pBuf1;
|
|
|
|
static uint8* pBuf2;
|
|
|
|
static CPlayerPed* pBuf3;
|
|
|
|
static uint8* pBuf4;
|
2020-05-09 11:00:39 +00:00
|
|
|
static CCutsceneObject* pBuf5;
|
2020-04-18 20:50:37 +00:00
|
|
|
static uint8* pBuf6;
|
|
|
|
static CPtrNode* pBuf7;
|
|
|
|
static uint8* pBuf8;
|
|
|
|
static CEntryInfoNode* pBuf9;
|
|
|
|
static uint8* pBuf10;
|
|
|
|
static CDummyPed* pBuf11;
|
|
|
|
static uint8* pRadarBlips;
|
|
|
|
static uint8* pStoredCam;
|
|
|
|
static uint8* pWorld1;
|
|
|
|
static CReference* pEmptyReferences;
|
|
|
|
static CStoredDetailedAnimationState* pPedAnims;
|
|
|
|
static uint8* pPickups;
|
|
|
|
static uint8* pReferences;
|
2020-04-17 05:54:14 +00:00
|
|
|
static uint8 BufferStatus[NUM_REPLAYBUFFERS];
|
|
|
|
static uint8 Buffers[NUM_REPLAYBUFFERS][REPLAYBUFFERSIZE];
|
|
|
|
static bool bPlayingBackFromFile;
|
|
|
|
static bool bReplayEnabled;
|
|
|
|
static uint32 SlowMotion;
|
|
|
|
static uint32 FramesActiveLookAroundCam;
|
|
|
|
static bool bDoLoadSceneWhenDone;
|
2020-04-18 20:50:37 +00:00
|
|
|
static CPtrNode* WorldPtrList;
|
|
|
|
static CPtrNode* BigBuildingPtrList;
|
2020-04-17 05:54:14 +00:00
|
|
|
static CWanted PlayerWanted;
|
|
|
|
static CPlayerInfo PlayerInfo;
|
|
|
|
static uint32 Time1;
|
|
|
|
static uint32 Time2;
|
|
|
|
static uint32 Time3;
|
|
|
|
static uint32 Time4;
|
|
|
|
static uint32 Frame;
|
|
|
|
static uint8 ClockHours;
|
|
|
|
static uint8 ClockMinutes;
|
|
|
|
static uint16 OldWeatherType;
|
|
|
|
static uint16 NewWeatherType;
|
|
|
|
static float WeatherInterpolationValue;
|
|
|
|
static float TimeStepNonClipped;
|
|
|
|
static float TimeStep;
|
|
|
|
static float TimeScale;
|
|
|
|
static float CameraFixedX;
|
|
|
|
static float CameraFixedY;
|
|
|
|
static float CameraFixedZ;
|
|
|
|
static int32 OldRadioStation;
|
|
|
|
static int8 CameraMode;
|
|
|
|
static bool bAllowLookAroundCam;
|
|
|
|
static float LoadSceneX;
|
|
|
|
static float LoadSceneY;
|
|
|
|
static float LoadSceneZ;
|
|
|
|
static float CameraFocusX;
|
|
|
|
static float CameraFocusY;
|
|
|
|
static float CameraFocusZ;
|
|
|
|
static bool bPlayerInRCBuggy;
|
|
|
|
static float fDistanceLookAroundCam;
|
|
|
|
static float fAlphaAngleLookAroundCam;
|
|
|
|
static float fBetaAngleLookAroundCam;
|
2020-04-18 20:50:37 +00:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
static int nHandleOfPlayerPed[NUMPLAYERS];
|
|
|
|
#endif
|
2019-06-14 23:34:19 +00:00
|
|
|
|
2019-06-22 18:16:29 +00:00
|
|
|
public:
|
|
|
|
static void Init(void);
|
2019-06-22 18:35:23 +00:00
|
|
|
static void DisableReplays(void);
|
|
|
|
static void EnableReplays(void);
|
2019-06-22 18:16:29 +00:00
|
|
|
static void Update(void);
|
|
|
|
static void FinishPlayback(void);
|
2019-06-29 11:38:37 +00:00
|
|
|
static void EmptyReplayBuffer(void);
|
2019-06-14 23:34:19 +00:00
|
|
|
static void Display(void);
|
2019-06-22 18:16:29 +00:00
|
|
|
static void TriggerPlayback(uint8 cam_mode, float cam_x, float cam_y, float cam_z, bool load_scene);
|
|
|
|
static void StreamAllNecessaryCarsAndPeds(void);
|
|
|
|
static bool ShouldStandardCameraBeProcessed(void);
|
|
|
|
|
2019-07-07 08:16:16 +00:00
|
|
|
static bool IsPlayingBack() { return Mode == MODE_PLAYBACK; }
|
|
|
|
static bool IsPlayingBackFromFile() { return bPlayingBackFromFile; }
|
2019-06-22 18:16:29 +00:00
|
|
|
|
2019-06-30 16:22:44 +00:00
|
|
|
private:
|
2019-06-22 18:16:29 +00:00
|
|
|
static void RecordThisFrame(void);
|
|
|
|
static void StorePedUpdate(CPed *ped, int id);
|
|
|
|
static void StorePedAnimation(CPed *ped, CStoredAnimationState *state);
|
2019-06-29 18:38:47 +00:00
|
|
|
static void StoreDetailedPedAnimation(CPed *ped, CStoredDetailedAnimationState *state);
|
2019-06-22 18:16:29 +00:00
|
|
|
static void ProcessPedUpdate(CPed *ped, float interpolation, CAddressInReplayBuffer *buffer);
|
|
|
|
static void RetrievePedAnimation(CPed *ped, CStoredAnimationState *state);
|
|
|
|
static void RetrieveDetailedPedAnimation(CPed *ped, CStoredDetailedAnimationState *state);
|
|
|
|
static void PlaybackThisFrame(void);
|
2020-03-15 15:47:21 +00:00
|
|
|
static void TriggerPlaybackLastCoupleOfSeconds(uint32, uint8, float, float, float, uint32);
|
|
|
|
static bool FastForwardToTime(uint32);
|
2019-06-22 18:16:29 +00:00
|
|
|
static void StoreCarUpdate(CVehicle *vehicle, int id);
|
|
|
|
static void ProcessCarUpdate(CVehicle *vehicle, float interpolation, CAddressInReplayBuffer *buffer);
|
|
|
|
static bool PlayBackThisFrameInterpolation(CAddressInReplayBuffer *buffer, float interpolation, uint32 *pTimer);
|
|
|
|
static void ProcessReplayCamera(void);
|
|
|
|
static void StoreStuffInMem(void);
|
|
|
|
static void RestoreStuffFromMem(void);
|
|
|
|
static void EmptyPedsAndVehiclePools(void);
|
|
|
|
static void EmptyAllPools(void);
|
|
|
|
static void MarkEverythingAsNew(void);
|
|
|
|
static void SaveReplayToHD(void);
|
|
|
|
static void FindFirstFocusCoordinate(CVector *coord);
|
|
|
|
static void ProcessLookAroundCam(void);
|
|
|
|
static size_t FindSizeOfPacket(uint8);
|
2019-06-30 20:29:53 +00:00
|
|
|
|
|
|
|
/* Absolute nonsense, but how could this function end up being outside of class? */
|
|
|
|
friend void PlayReplayFromHD(void);
|
2019-05-30 19:24:47 +00:00
|
|
|
};
|