iw4x-client/src/Components/Modules/Theatre.hpp

70 lines
1.8 KiB
C++
Raw Normal View History

2017-01-20 08:36:52 -05:00
#pragma once
2017-01-19 16:23:59 -05:00
namespace Components
{
class Theatre : public Component
{
public:
Theatre();
static void StopRecording();
2017-01-19 16:23:59 -05:00
private:
class DemoInfo
{
public:
std::string name;
std::string mapname;
std::string gametype;
std::string author;
int length;
std::time_t timeStamp;
nlohmann::json to_json() const
2017-01-19 16:23:59 -05:00
{
return nlohmann::json
2017-01-19 16:23:59 -05:00
{
{ "mapname", mapname },
{ "gametype", gametype },
{ "author", author },
{ "length", length },
{ "timestamp", Utils::String::VA("%lld", timeStamp) } //Ugly, but prevents information loss
};
}
};
static DemoInfo CurrentInfo;
static unsigned int CurrentSelection;
static std::vector<DemoInfo> Demos;
static char BaselineSnapshot[131072];
static int BaselineSnapshotMsgLen;
static int BaselineSnapshotMsgOff;
static void WriteBaseline();
static void StoreBaseline(PBYTE snapshotMsg);
2022-08-24 10:38:14 -04:00
static void LoadDemos([[maybe_unused]] const UIScript::Token& token, [[maybe_unused]] const Game::uiInfo_s* info);
static void DeleteDemo([[maybe_unused]] const UIScript::Token& token, [[maybe_unused]] const Game::uiInfo_s* info);
static void PlayDemo([[maybe_unused]] const UIScript::Token& token, [[maybe_unused]] const Game::uiInfo_s* info);
2017-01-19 16:23:59 -05:00
static unsigned int GetDemoCount();
static const char* GetDemoText(unsigned int item, int column);
static void SelectDemo(unsigned int index);
static void GamestateWriteStub(Game::msg_t* msg, char byte);
static void RecordGamestateStub();
static void BaselineStoreStub();
static void BaselineToFileStub();
static void AdjustTimeDeltaStub();
static void ServerTimedOutStub();
static void UISetActiveMenuStub();
static uint32_t InitCGameStub();
static void MapChangeStub();
static void RecordStub(int channel, char* message, char* file);
static void StopRecordStub(int channel, char* message);
};
}