2014-01-20 09:10:39 -05:00
|
|
|
|
|
|
|
// ScoreboardSerializer.cpp
|
|
|
|
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "ScoreboardSerializer.h"
|
|
|
|
#include "../StringCompression.h"
|
|
|
|
#include "zlib/zlib.h"
|
|
|
|
#include "FastNBT.h"
|
|
|
|
|
|
|
|
#include "../Scoreboard.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-09 05:16:56 -04:00
|
|
|
cScoreboardSerializer::cScoreboardSerializer(const AString & a_WorldName, cScoreboard * a_ScoreBoard):
|
|
|
|
m_ScoreBoard(a_ScoreBoard)
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
2014-01-22 08:49:21 -05:00
|
|
|
AString DataPath;
|
2015-05-09 03:25:09 -04:00
|
|
|
Printf(DataPath, "%s%cdata", a_WorldName.c_str(), cFile::PathSeparator);
|
2014-01-22 08:49:21 -05:00
|
|
|
|
2015-05-09 05:16:56 -04:00
|
|
|
m_Path = DataPath + cFile::PathSeparator + "scoreboard.dat";
|
2014-01-22 08:49:21 -05:00
|
|
|
|
|
|
|
cFile::CreateFolder(FILE_IO_PREFIX + DataPath);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cScoreboardSerializer::Load(void)
|
|
|
|
{
|
2014-01-24 03:58:40 -05:00
|
|
|
AString Data = cFile::ReadWholeFile(FILE_IO_PREFIX + m_Path);
|
|
|
|
if (Data.empty())
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-23 09:27:23 -05:00
|
|
|
AString Uncompressed;
|
|
|
|
int res = UncompressStringGZIP(Data.data(), Data.size(), Uncompressed);
|
|
|
|
|
|
|
|
if (res != Z_OK)
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-22 08:49:21 -05:00
|
|
|
|
2014-01-20 09:10:39 -05:00
|
|
|
// Parse the NBT data:
|
2014-01-23 09:27:23 -05:00
|
|
|
cParsedNBT NBT(Uncompressed.data(), Uncompressed.size());
|
2014-01-20 09:10:39 -05:00
|
|
|
if (!NBT.IsValid())
|
|
|
|
{
|
|
|
|
// NBT Parsing failed
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return LoadScoreboardFromNBT(NBT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cScoreboardSerializer::Save(void)
|
|
|
|
{
|
|
|
|
cFastNBTWriter Writer;
|
|
|
|
|
|
|
|
SaveScoreboardToNBT(Writer);
|
|
|
|
|
|
|
|
Writer.Finish();
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-01-20 09:10:39 -05:00
|
|
|
#ifdef _DEBUG
|
|
|
|
cParsedNBT TestParse(Writer.GetResult().data(), Writer.GetResult().size());
|
|
|
|
ASSERT(TestParse.IsValid());
|
|
|
|
#endif // _DEBUG
|
2014-01-22 08:49:21 -05:00
|
|
|
|
2014-01-23 09:27:23 -05:00
|
|
|
cFile File;
|
|
|
|
if (!File.Open(FILE_IO_PREFIX + m_Path, cFile::fmWrite))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
AString Compressed;
|
|
|
|
int res = CompressStringGZIP(Writer.GetResult().data(), Writer.GetResult().size(), Compressed);
|
|
|
|
|
|
|
|
if (res != Z_OK)
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
2014-01-23 09:27:23 -05:00
|
|
|
return false;
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
2014-01-23 09:27:23 -05:00
|
|
|
|
|
|
|
File.Write(Compressed.data(), Compressed.size());
|
|
|
|
File.Close();
|
2014-01-20 09:10:39 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cScoreboardSerializer::SaveScoreboardToNBT(cFastNBTWriter & a_Writer)
|
|
|
|
{
|
2014-01-23 09:42:01 -05:00
|
|
|
a_Writer.BeginCompound("data");
|
|
|
|
|
2014-01-20 09:45:40 -05:00
|
|
|
a_Writer.BeginList("Objectives", TAG_Compound);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-01-20 09:45:40 -05:00
|
|
|
for (cScoreboard::cObjectiveMap::const_iterator it = m_ScoreBoard->m_Objectives.begin(); it != m_ScoreBoard->m_Objectives.end(); ++it)
|
|
|
|
{
|
|
|
|
const cObjective & Objective = it->second;
|
2014-01-20 09:10:39 -05:00
|
|
|
|
2014-01-20 09:45:40 -05:00
|
|
|
a_Writer.BeginCompound("");
|
2014-01-20 09:10:39 -05:00
|
|
|
|
2014-01-20 09:45:40 -05:00
|
|
|
a_Writer.AddString("CriteriaName", cObjective::TypeToString(Objective.GetType()));
|
2014-01-20 09:10:39 -05:00
|
|
|
|
2014-01-20 09:45:40 -05:00
|
|
|
a_Writer.AddString("DisplayName", Objective.GetDisplayName());
|
|
|
|
a_Writer.AddString("Name", it->first);
|
2014-01-20 09:10:39 -05:00
|
|
|
|
2014-01-20 09:45:40 -05:00
|
|
|
a_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
a_Writer.EndList(); // Objectives
|
2014-01-20 09:45:40 -05:00
|
|
|
|
|
|
|
a_Writer.BeginList("PlayerScores", TAG_Compound);
|
|
|
|
|
|
|
|
for (cScoreboard::cObjectiveMap::const_iterator it = m_ScoreBoard->m_Objectives.begin(); it != m_ScoreBoard->m_Objectives.end(); ++it)
|
|
|
|
{
|
|
|
|
const cObjective & Objective = it->second;
|
|
|
|
|
|
|
|
for (cObjective::cScoreMap::const_iterator it2 = Objective.m_Scores.begin(); it2 != Objective.m_Scores.end(); ++it2)
|
|
|
|
{
|
|
|
|
a_Writer.BeginCompound("");
|
|
|
|
|
|
|
|
a_Writer.AddInt("Score", it2->second);
|
|
|
|
|
|
|
|
a_Writer.AddString("Name", it2->first);
|
|
|
|
a_Writer.AddString("Objective", it->first);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-01-20 09:45:40 -05:00
|
|
|
a_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
a_Writer.EndList(); // PlayerScores
|
2014-01-20 09:45:40 -05:00
|
|
|
|
|
|
|
a_Writer.BeginList("Teams", TAG_Compound);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-01-20 09:45:40 -05:00
|
|
|
for (cScoreboard::cTeamMap::const_iterator it = m_ScoreBoard->m_Teams.begin(); it != m_ScoreBoard->m_Teams.end(); ++it)
|
|
|
|
{
|
|
|
|
const cTeam & Team = it->second;
|
|
|
|
|
|
|
|
a_Writer.BeginCompound("");
|
|
|
|
|
|
|
|
a_Writer.AddByte("AllowFriendlyFire", Team.AllowsFriendlyFire() ? 1 : 0);
|
|
|
|
a_Writer.AddByte("SeeFriendlyInvisibles", Team.CanSeeFriendlyInvisible() ? 1 : 0);
|
|
|
|
|
|
|
|
a_Writer.AddString("DisplayName", Team.GetDisplayName());
|
|
|
|
a_Writer.AddString("Name", it->first);
|
|
|
|
|
|
|
|
a_Writer.AddString("Prefix", Team.GetPrefix());
|
|
|
|
a_Writer.AddString("Suffix", Team.GetSuffix());
|
|
|
|
|
|
|
|
a_Writer.BeginList("Players", TAG_String);
|
|
|
|
|
|
|
|
for (cTeam::cPlayerNameSet::const_iterator it2 = Team.m_Players.begin(); it2 != Team.m_Players.end(); ++it2)
|
|
|
|
{
|
|
|
|
a_Writer.AddString("", *it2);
|
|
|
|
}
|
2014-01-20 09:10:39 -05:00
|
|
|
|
|
|
|
a_Writer.EndList();
|
2014-01-20 09:45:40 -05:00
|
|
|
|
|
|
|
a_Writer.EndCompound();
|
|
|
|
}
|
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
a_Writer.EndList(); // Teams
|
2014-01-23 09:27:23 -05:00
|
|
|
|
2014-01-20 09:10:39 -05:00
|
|
|
a_Writer.BeginCompound("DisplaySlots");
|
|
|
|
|
2014-03-01 07:20:29 -05:00
|
|
|
cObjective * Objective = m_ScoreBoard->GetObjectiveIn(cScoreboard::dsList);
|
2014-10-20 16:55:07 -04:00
|
|
|
a_Writer.AddString("slot_0", (Objective == nullptr) ? "" : Objective->GetName());
|
2014-01-20 09:45:40 -05:00
|
|
|
|
2014-03-01 07:20:29 -05:00
|
|
|
Objective = m_ScoreBoard->GetObjectiveIn(cScoreboard::dsSidebar);
|
2014-10-20 16:55:07 -04:00
|
|
|
a_Writer.AddString("slot_1", (Objective == nullptr) ? "" : Objective->GetName());
|
2014-01-20 09:45:40 -05:00
|
|
|
|
2014-03-01 07:20:29 -05:00
|
|
|
Objective = m_ScoreBoard->GetObjectiveIn(cScoreboard::dsName);
|
2014-10-20 16:55:07 -04:00
|
|
|
a_Writer.AddString("slot_2", (Objective == nullptr) ? "" : Objective->GetName());
|
2014-01-20 09:45:40 -05:00
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
a_Writer.EndCompound(); // DisplaySlots
|
2014-01-23 09:42:01 -05:00
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
a_Writer.EndCompound(); // Data
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cScoreboardSerializer::LoadScoreboardFromNBT(const cParsedNBT & a_NBT)
|
|
|
|
{
|
2014-01-23 09:42:01 -05:00
|
|
|
int Data = a_NBT.FindChildByName(0, "data");
|
2014-01-20 09:10:39 -05:00
|
|
|
if (Data < 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Objectives = a_NBT.FindChildByName(Data, "Objectives");
|
|
|
|
if (Objectives < 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int Child = a_NBT.GetFirstChild(Objectives); Child >= 0; Child = a_NBT.GetNextSibling(Child))
|
|
|
|
{
|
|
|
|
AString CriteriaName, DisplayName, Name;
|
|
|
|
|
|
|
|
int CurrLine = a_NBT.FindChildByName(Child, "CriteriaName");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
CriteriaName = a_NBT.GetString(CurrLine);
|
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "DisplayName");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
DisplayName = a_NBT.GetString(CurrLine);
|
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "Name");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
Name = a_NBT.GetString(CurrLine);
|
|
|
|
}
|
|
|
|
|
|
|
|
cObjective::eType Type = cObjective::StringToType(CriteriaName);
|
|
|
|
|
|
|
|
m_ScoreBoard->RegisterObjective(Name, DisplayName, Type);
|
|
|
|
}
|
|
|
|
|
|
|
|
int PlayerScores = a_NBT.FindChildByName(Data, "PlayerScores");
|
|
|
|
if (PlayerScores < 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int Child = a_NBT.GetFirstChild(PlayerScores); Child >= 0; Child = a_NBT.GetNextSibling(Child))
|
|
|
|
{
|
|
|
|
AString Name, ObjectiveName;
|
|
|
|
|
2014-02-08 19:57:22 -05:00
|
|
|
cObjective::Score Score = 0;
|
2014-01-20 09:10:39 -05:00
|
|
|
|
|
|
|
int CurrLine = a_NBT.FindChildByName(Child, "Score");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
Score = a_NBT.GetInt(CurrLine);
|
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "Name");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
Name = a_NBT.GetString(CurrLine);
|
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "Objective");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
ObjectiveName = a_NBT.GetString(CurrLine);
|
|
|
|
}
|
|
|
|
|
|
|
|
cObjective * Objective = m_ScoreBoard->GetObjective(ObjectiveName);
|
|
|
|
|
|
|
|
if (Objective)
|
|
|
|
{
|
|
|
|
Objective->SetScore(Name, Score);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int Teams = a_NBT.FindChildByName(Data, "Teams");
|
|
|
|
if (Teams < 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int Child = a_NBT.GetFirstChild(Teams); Child >= 0; Child = a_NBT.GetNextSibling(Child))
|
|
|
|
{
|
|
|
|
AString Name, DisplayName, Prefix, Suffix;
|
|
|
|
|
2014-03-01 07:20:29 -05:00
|
|
|
bool AllowsFriendlyFire = true, CanSeeFriendlyInvisible = false;
|
2014-01-20 09:10:39 -05:00
|
|
|
|
|
|
|
int CurrLine = a_NBT.FindChildByName(Child, "Name");
|
2014-09-06 07:11:08 -04:00
|
|
|
if ((CurrLine >= 0) && (a_NBT.GetType(CurrLine) == TAG_String))
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
2014-09-06 07:11:08 -04:00
|
|
|
Name = a_NBT.GetString(CurrLine);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "DisplayName");
|
2014-09-06 07:11:08 -04:00
|
|
|
if ((CurrLine >= 0) && (a_NBT.GetType(CurrLine) == TAG_String))
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
2014-09-06 07:11:08 -04:00
|
|
|
DisplayName = a_NBT.GetString(CurrLine);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "Prefix");
|
2014-09-06 07:11:08 -04:00
|
|
|
if ((CurrLine >= 0) && (a_NBT.GetType(CurrLine) == TAG_String))
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
2014-09-06 07:11:08 -04:00
|
|
|
Prefix = a_NBT.GetString(CurrLine);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "Suffix");
|
2014-09-06 07:11:08 -04:00
|
|
|
if ((CurrLine >= 0) && (a_NBT.GetType(CurrLine) == TAG_String))
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
2014-09-06 07:11:08 -04:00
|
|
|
Suffix = a_NBT.GetString(CurrLine);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "AllowFriendlyFire");
|
2014-09-06 07:11:08 -04:00
|
|
|
if ((CurrLine >= 0) && (a_NBT.GetType(CurrLine) == TAG_Int))
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
2014-01-24 03:58:40 -05:00
|
|
|
AllowsFriendlyFire = (a_NBT.GetInt(CurrLine) != 0);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(Child, "SeeFriendlyInvisibles");
|
2014-09-06 07:11:08 -04:00
|
|
|
if ((CurrLine >= 0) && (a_NBT.GetType(CurrLine) == TAG_Int))
|
2014-01-20 09:10:39 -05:00
|
|
|
{
|
2014-01-24 03:58:40 -05:00
|
|
|
CanSeeFriendlyInvisible = (a_NBT.GetInt(CurrLine) != 0);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
cTeam * Team = m_ScoreBoard->RegisterTeam(Name, DisplayName, Prefix, Suffix);
|
|
|
|
|
|
|
|
Team->SetFriendlyFire(AllowsFriendlyFire);
|
|
|
|
Team->SetCanSeeFriendlyInvisible(CanSeeFriendlyInvisible);
|
|
|
|
|
|
|
|
int Players = a_NBT.FindChildByName(Child, "Players");
|
|
|
|
if (Players < 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int ChildB = a_NBT.GetFirstChild(Players); ChildB >= 0; ChildB = a_NBT.GetNextSibling(ChildB))
|
|
|
|
{
|
|
|
|
Team->AddPlayer(a_NBT.GetString(ChildB));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-23 09:42:01 -05:00
|
|
|
int DisplaySlots = a_NBT.FindChildByName(Data, "DisplaySlots");
|
2014-01-20 09:10:39 -05:00
|
|
|
if (DisplaySlots < 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CurrLine = a_NBT.FindChildByName(DisplaySlots, "slot_0");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
AString Name = a_NBT.GetString(CurrLine);
|
|
|
|
|
2014-03-01 07:20:29 -05:00
|
|
|
m_ScoreBoard->SetDisplay(Name, cScoreboard::dsList);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(DisplaySlots, "slot_1");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
AString Name = a_NBT.GetString(CurrLine);
|
|
|
|
|
2014-03-01 07:20:29 -05:00
|
|
|
m_ScoreBoard->SetDisplay(Name, cScoreboard::dsSidebar);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CurrLine = a_NBT.FindChildByName(DisplaySlots, "slot_2");
|
|
|
|
if (CurrLine >= 0)
|
|
|
|
{
|
|
|
|
AString Name = a_NBT.GetString(CurrLine);
|
|
|
|
|
2014-03-01 07:20:29 -05:00
|
|
|
m_ScoreBoard->SetDisplay(Name, cScoreboard::dsName);
|
2014-01-20 09:10:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|