2010-11-20 10:37:14 +00:00
|
|
|
/* (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. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#ifndef ENGINE_DEMO_H
|
|
|
|
#define ENGINE_DEMO_H
|
|
|
|
|
2019-10-14 00:27:08 +00:00
|
|
|
#include <base/hash.h>
|
2020-06-18 16:29:27 +00:00
|
|
|
#include <engine/map.h>
|
2019-12-17 14:44:54 +00:00
|
|
|
#include <engine/shared/uuid_manager.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "kernel.h"
|
|
|
|
|
2012-01-10 22:13:19 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
MAX_TIMELINE_MARKERS=64
|
|
|
|
};
|
|
|
|
|
2019-04-02 21:20:44 +00:00
|
|
|
const double g_aSpeeds[] = {0.1, 0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 2.0, 3.0, 4.0, 6.0, 8.0, 12.0, 16.0, 20.0, 24.0, 28.0, 32.0, 40.0, 48.0, 56.0, 64.0};
|
2016-10-28 07:31:22 +00:00
|
|
|
|
2017-02-28 09:08:14 +00:00
|
|
|
typedef bool (*DEMOFUNC_FILTER)(const void *pData, int DataSize, void *pUser);
|
|
|
|
|
2019-12-17 14:44:54 +00:00
|
|
|
// TODO: Properly extend demo format using uuids
|
|
|
|
static const CUuid SHA256_EXTENSION = {{
|
|
|
|
// "6be6da4a-cebd-380c-9b5b-1289c842d780"
|
|
|
|
// "demoitem-sha256@ddnet.tw"
|
|
|
|
0x6b, 0xe6, 0xda, 0x4a, 0xce, 0xbd, 0x38, 0x0c,
|
|
|
|
0x9b, 0x5b, 0x12, 0x89, 0xc8, 0x42, 0xd7, 0x80
|
|
|
|
}};
|
|
|
|
|
2011-03-13 09:41:10 +00:00
|
|
|
struct CDemoHeader
|
|
|
|
{
|
|
|
|
unsigned char m_aMarker[7];
|
|
|
|
unsigned char m_Version;
|
|
|
|
char m_aNetversion[64];
|
2020-06-18 16:29:27 +00:00
|
|
|
char m_aMapName[MAX_MAP_LENGTH];
|
2011-04-02 09:55:37 +00:00
|
|
|
unsigned char m_aMapSize[4];
|
2011-03-13 09:41:10 +00:00
|
|
|
unsigned char m_aMapCrc[4];
|
|
|
|
char m_aType[8];
|
|
|
|
char m_aLength[4];
|
|
|
|
char m_aTimestamp[20];
|
2013-02-25 23:00:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CTimelineMarkers
|
|
|
|
{
|
2012-01-10 22:13:19 +00:00
|
|
|
char m_aNumTimelineMarkers[4];
|
|
|
|
char m_aTimelineMarkers[MAX_TIMELINE_MARKERS][4];
|
2011-03-13 09:41:10 +00:00
|
|
|
};
|
|
|
|
|
2019-10-14 00:27:08 +00:00
|
|
|
struct CMapInfo
|
|
|
|
{
|
2020-06-18 16:29:27 +00:00
|
|
|
char m_aName[MAX_MAP_LENGTH];
|
2019-10-14 00:27:08 +00:00
|
|
|
SHA256_DIGEST m_Sha256;
|
|
|
|
int m_Crc;
|
|
|
|
int m_Size;
|
|
|
|
};
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
class IDemoPlayer : public IInterface
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("demoplayer", 0)
|
|
|
|
public:
|
|
|
|
class CInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool m_Paused;
|
|
|
|
float m_Speed;
|
|
|
|
|
|
|
|
int m_FirstTick;
|
|
|
|
int m_CurrentTick;
|
|
|
|
int m_LastTick;
|
2012-01-10 22:13:19 +00:00
|
|
|
|
|
|
|
int m_NumTimelineMarkers;
|
|
|
|
int m_aTimelineMarkers[MAX_TIMELINE_MARKERS];
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
2011-03-12 17:07:57 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
DEMOTYPE_INVALID=0,
|
|
|
|
DEMOTYPE_CLIENT,
|
|
|
|
DEMOTYPE_SERVER,
|
|
|
|
};
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
~IDemoPlayer() {}
|
|
|
|
virtual void SetSpeed(float Speed) = 0;
|
2016-10-28 07:31:22 +00:00
|
|
|
virtual void SetSpeedIndex(int Offset) = 0;
|
2019-04-15 18:39:39 +00:00
|
|
|
virtual int SeekPercent(float Percent) = 0;
|
|
|
|
virtual int SeekTime(float Seconds) = 0;
|
|
|
|
virtual int SetPos(int WantedTick) = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void Pause() = 0;
|
|
|
|
virtual void Unpause() = 0;
|
2014-04-26 19:00:14 +00:00
|
|
|
virtual bool IsPlaying() const = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual const CInfo *BaseInfo() const = 0;
|
2011-06-09 20:44:22 +00:00
|
|
|
virtual void GetDemoName(char *pBuffer, int BufferSize) const = 0;
|
2019-10-14 00:27:08 +00:00
|
|
|
virtual bool GetDemoInfo(class IStorage *pStorage, const char *pFilename, int StorageType, CDemoHeader *pDemoHeader, CTimelineMarkers *pTimelineMarkers, CMapInfo *pMapInfo) const = 0;
|
2011-03-12 17:07:57 +00:00
|
|
|
virtual int GetDemoType() const = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
2010-08-09 12:14:15 +00:00
|
|
|
class IDemoRecorder : public IInterface
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("demorecorder", 0)
|
|
|
|
public:
|
|
|
|
~IDemoRecorder() {}
|
|
|
|
virtual bool IsRecording() const = 0;
|
2017-07-08 11:38:27 +00:00
|
|
|
virtual int Stop() = 0;
|
2011-03-12 17:34:16 +00:00
|
|
|
virtual int Length() const = 0;
|
2019-05-24 22:24:13 +00:00
|
|
|
virtual char *GetCurrentFilename() = 0;
|
2010-08-09 12:14:15 +00:00
|
|
|
};
|
|
|
|
|
2014-08-12 14:21:06 +00:00
|
|
|
class IDemoEditor : public IInterface
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("demoeditor", 0)
|
|
|
|
public:
|
|
|
|
|
2017-02-28 09:08:14 +00:00
|
|
|
virtual void Slice(const char *pDemo, const char *pDst, int StartTick, int EndTick, DEMOFUNC_FILTER pfnFilter, void *pUser) = 0;
|
2014-08-12 14:21:06 +00:00
|
|
|
};
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
#endif
|