mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
173 lines
4.5 KiB
C++
173 lines
4.5 KiB
C++
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
|
#ifndef ENGINE_SHARED_DEMO_H
|
|
#define ENGINE_SHARED_DEMO_H
|
|
|
|
#include <base/hash.h>
|
|
|
|
#include <engine/demo.h>
|
|
#include <engine/shared/protocol.h>
|
|
|
|
#include "snapshot.h"
|
|
|
|
class CDemoRecorder : public IDemoRecorder
|
|
{
|
|
class IConsole *m_pConsole;
|
|
IOHANDLE m_File;
|
|
char m_aCurrentFilename[256];
|
|
int m_LastTickMarker;
|
|
int m_LastKeyFrame;
|
|
int m_FirstTick;
|
|
unsigned char m_aLastSnapshotData[CSnapshot::MAX_SIZE];
|
|
class CSnapshotDelta *m_pSnapshotDelta;
|
|
int m_NumTimelineMarkers;
|
|
int m_aTimelineMarkers[MAX_TIMELINE_MARKERS];
|
|
bool m_NoMapData;
|
|
unsigned char *m_pMapData;
|
|
|
|
DEMOFUNC_FILTER m_pfnFilter;
|
|
void *m_pUser;
|
|
|
|
void WriteTickMarker(int Tick, int Keyframe);
|
|
void Write(int Type, const void *pData, int Size);
|
|
public:
|
|
CDemoRecorder(class CSnapshotDelta *pSnapshotDelta, bool NoMapData = false);
|
|
CDemoRecorder() {}
|
|
|
|
int Start(class IStorage *pStorage, class IConsole *pConsole, const char *pFilename, const char *pNetversion, const char *pMap, SHA256_DIGEST *pSha256, unsigned MapCrc, const char *pType, unsigned int MapSize, unsigned char *pMapData, IOHANDLE MapFile = 0, DEMOFUNC_FILTER pfnFilter = 0, void *pUser = 0);
|
|
int Stop();
|
|
void AddDemoMarker();
|
|
|
|
void RecordSnapshot(int Tick, const void *pData, int Size);
|
|
void RecordMessage(const void *pData, int Size);
|
|
|
|
bool IsRecording() const { return m_File != 0; }
|
|
char *GetCurrentFilename() { return m_aCurrentFilename; }
|
|
|
|
int Length() const { return (m_LastTickMarker - m_FirstTick)/SERVER_TICK_SPEED; }
|
|
};
|
|
|
|
class CDemoPlayer : public IDemoPlayer
|
|
{
|
|
public:
|
|
class IListener
|
|
{
|
|
public:
|
|
virtual ~IListener() {}
|
|
virtual void OnDemoPlayerSnapshot(void *pData, int Size) = 0;
|
|
virtual void OnDemoPlayerMessage(void *pData, int Size) = 0;
|
|
};
|
|
|
|
struct CPlaybackInfo
|
|
{
|
|
CDemoHeader m_Header;
|
|
CTimelineMarkers m_TimelineMarkers;
|
|
|
|
IDemoPlayer::CInfo m_Info;
|
|
|
|
int64 m_LastUpdate;
|
|
int64 m_CurrentTime;
|
|
|
|
int m_SeekablePoints;
|
|
|
|
int m_NextTick;
|
|
int m_PreviousTick;
|
|
|
|
float m_IntraTick;
|
|
float m_TickTime;
|
|
};
|
|
|
|
private:
|
|
IListener *m_pListener;
|
|
|
|
|
|
// Playback
|
|
struct CKeyFrame
|
|
{
|
|
long m_Filepos;
|
|
int m_Tick;
|
|
};
|
|
|
|
struct CKeyFrameSearch
|
|
{
|
|
CKeyFrame m_Frame;
|
|
CKeyFrameSearch *m_pNext;
|
|
};
|
|
|
|
class IConsole *m_pConsole;
|
|
IOHANDLE m_File;
|
|
long m_MapOffset;
|
|
char m_aFilename[256];
|
|
CKeyFrame *m_pKeyFrames;
|
|
CMapInfo m_MapInfo;
|
|
int m_SpeedIndex;
|
|
|
|
CPlaybackInfo m_Info;
|
|
int m_DemoType;
|
|
unsigned char m_aLastSnapshotData[CSnapshot::MAX_SIZE];
|
|
int m_LastSnapshotDataSize;
|
|
class CSnapshotDelta *m_pSnapshotDelta;
|
|
|
|
int ReadChunkHeader(int *pType, int *pSize, int *pTick);
|
|
void DoTick();
|
|
void ScanFile();
|
|
int NextFrame();
|
|
|
|
int64 time();
|
|
|
|
int64 m_TickTime;
|
|
int64 m_Time;
|
|
|
|
public:
|
|
|
|
CDemoPlayer(class CSnapshotDelta *m_pSnapshotDelta);
|
|
|
|
void SetListener(IListener *pListener);
|
|
|
|
int Load(class IStorage *pStorage, class IConsole *pConsole, const char *pFilename, int StorageType);
|
|
bool ExtractMap(class IStorage *pStorage);
|
|
int Play();
|
|
void Pause();
|
|
void Unpause();
|
|
int Stop();
|
|
void SetSpeed(float Speed);
|
|
void SetSpeedIndex(int Offset);
|
|
int SeekPercent(float Percent);
|
|
int SeekTime(float Seconds);
|
|
int SetPos(int WantedTick);
|
|
const CInfo *BaseInfo() const { return &m_Info.m_Info; }
|
|
void GetDemoName(char *pBuffer, int BufferSize) const;
|
|
bool GetDemoInfo(class IStorage *pStorage, const char *pFilename, int StorageType, CDemoHeader *pDemoHeader, CTimelineMarkers *pTimelineMarkers, CMapInfo *pMapInfo) const;
|
|
const char *GetDemoFileName() { return m_aFilename; };
|
|
int GetDemoType() const;
|
|
|
|
int Update(bool RealTime=true);
|
|
|
|
const CPlaybackInfo *Info() const { return &m_Info; }
|
|
virtual bool IsPlaying() const { return m_File != 0; }
|
|
const CMapInfo *GetMapInfo() { return &m_MapInfo; };
|
|
};
|
|
|
|
class CDemoEditor : public IDemoEditor, public CDemoPlayer::IListener
|
|
{
|
|
CDemoPlayer *m_pDemoPlayer;
|
|
CDemoRecorder *m_pDemoRecorder;
|
|
IConsole *m_pConsole;
|
|
IStorage *m_pStorage;
|
|
class CSnapshotDelta *m_pSnapshotDelta;
|
|
const char *m_pNetVersion;
|
|
|
|
bool m_Stop;
|
|
int m_SliceFrom;
|
|
int m_SliceTo;
|
|
|
|
public:
|
|
virtual void Init(const char *pNetVersion, class CSnapshotDelta *pSnapshotDelta, class IConsole *pConsole, class IStorage *pStorage);
|
|
virtual void Slice(const char *pDemo, const char *pDst, int StartTick, int EndTick, DEMOFUNC_FILTER pfnFilter, void *pUser);
|
|
|
|
virtual void OnDemoPlayerSnapshot(void *pData, int Size);
|
|
virtual void OnDemoPlayerMessage(void *pData, int Size);
|
|
};
|
|
|
|
#endif
|