1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include <sstream>
#include <zlib.h>
#include "ExternalAI/EngineOutHandler.h"
#include "CregLoadSaveHandler.h"
#include "Map/ReadMap.h"
#include "Game/Game.h"
#include "Game/GameSetup.h"
#include "Game/GameVersion.h"
#include "Game/GlobalUnsynced.h"
#include "Game/WaitCommandsAI.h"
#include "Net/GameServer.h"
#include "Sim/Features/FeatureHandler.h"
#include "Sim/Units/UnitHandler.h"
#include "Sim/Misc/LosHandler.h"
#include "Sim/Misc/InterceptHandler.h"
#include "Sim/Misc/QuadField.h"
#include "Sim/Misc/CategoryHandler.h"
#include "Sim/MoveTypes/MoveDefHandler.h"
#include "Sim/Misc/TeamHandler.h"
#include "Sim/Misc/Wind.h"
#include "Sim/Projectiles/ProjectileHandler.h"
#include "Sim/Units/CommandAI/BuilderCAI.h"
#include "Sim/Units/CommandAI/CommandDescription.h"
#include "Sim/Units/Scripts/CobEngine.h"
#include "Sim/Units/Scripts/UnitScriptEngine.h"
#include "Sim/Units/Scripts/NullUnitScript.h"
#include "Game/UI/Groups/GroupHandler.h"
#include "System/Platform/errorhandler.h"
#include "System/FileSystem/DataDirsAccess.h"
#include "System/FileSystem/FileQueryFlags.h"
#include "System/FileSystem/GZFileHandler.h"
#include "System/creg/Serializer.h"
#include "System/Exceptions.h"
#include "System/Log/ILog.h"
CCregLoadSaveHandler::CCregLoadSaveHandler()
: iss(nullptr)
{}
CCregLoadSaveHandler::~CCregLoadSaveHandler()
{}
#ifdef USING_CREG
class CGameStateCollector
{
CR_DECLARE_STRUCT(CGameStateCollector)
public:
CGameStateCollector() {}
void Serialize(creg::ISerializer* s);
};
CR_BIND(CGameStateCollector, )
CR_REG_METADATA(CGameStateCollector, (
CR_SERIALIZER(Serialize)
))
void CGameStateCollector::Serialize(creg::ISerializer* s)
{
s->SerializeObjectInstance(gs, gs->GetClass());
s->SerializeObjectInstance(gu, gu->GetClass());
s->SerializeObjectInstance(gameSetup, gameSetup->GetClass());
s->SerializeObjectInstance(game, game->GetClass());
s->SerializeObjectInstance(readMap, readMap->GetClass());
s->SerializeObjectInstance(quadField, quadField->GetClass());
s->SerializeObjectInstance(unitHandler, unitHandler->GetClass());
s->SerializeObjectInstance(cobEngine, cobEngine->GetClass());
s->SerializeObjectInstance(unitScriptEngine, unitScriptEngine->GetClass());
s->SerializeObjectInstance(&CNullUnitScript::value, CNullUnitScript::value.GetClass());
s->SerializeObjectInstance(featureHandler, featureHandler->GetClass());
s->SerializeObjectInstance(losHandler, losHandler->GetClass());
s->SerializeObjectInstance(&interceptHandler, interceptHandler.GetClass());
s->SerializeObjectInstance(CCategoryHandler::Instance(), CCategoryHandler::Instance()->GetClass());
s->SerializeObjectInstance(projectileHandler, projectileHandler->GetClass());
s->SerializeObjectInstance(&waitCommandsAI, waitCommandsAI.GetClass());
s->SerializeObjectInstance(&wind, wind.GetClass());
s->SerializeObjectInstance(moveDefHandler, moveDefHandler->GetClass());
s->SerializeObjectInstance(teamHandler, teamHandler->GetClass());
for (int a=0; a < teamHandler->ActiveTeams(); a++) {
s->SerializeObjectInstance(grouphandlers[a], grouphandlers[a]->GetClass());
}
s->SerializeObjectInstance(commandDescriptionCache, commandDescriptionCache->GetClass());
s->SerializeObjectInstance(eoh, eoh->GetClass());
}
static void WriteString(std::ostream& s, const std::string& str)
{
assert(str.length() < (1 << 16));
s.write(str.c_str(), str.length() + 1);
}
static void PrintSize(const char* txt, int size)
{
if (size > (1024 * 1024 * 1024)) {
LOG("%s %.1f GB", txt, size / (1024.0f * 1024 * 1024));
} else if (size > (1024 * 1024)) {
LOG("%s %.1f MB", txt, size / (1024.0f * 1024));
} else if (size > 1024) {
LOG("%s %.1f KB", txt, size / (1024.0f));
} else {
LOG("%s %u B", txt, size);
}
}
#endif //USING_CREG
static void ReadString(std::istream& s, std::string& str)
{
char cstr[1 << 16]; // 64kB
s.getline(cstr, sizeof(cstr), 0);
str += cstr;
}
void CCregLoadSaveHandler::SaveGame(const std::string& path)
{
#ifdef USING_CREG
LOG("Saving game");
try {
std::stringstream oss;
// write our own header. SavePackage() will add its own
WriteString(oss, SpringVersion::GetSync());
WriteString(oss, gameSetup->setupText);
WriteString(oss, modName);
WriteString(oss, mapName);
CGameStateCollector gsc = CGameStateCollector();
// save creg state
creg::COutputStreamSerializer os;
os.SavePackage(&oss, &gsc, gsc.GetClass());
PrintSize("Game", oss.tellp());
// save ai state
int aistart = oss.tellp();
eoh->Save(&oss);
PrintSize("AIs", ((int)oss.tellp()) - aistart);
gzFile file = gzopen(dataDirsAccess.LocateFile(path, FileQueryFlags::WRITE).c_str(), "wb9");
if (file == nullptr) {
LOG_L(L_ERROR, "Save failed: couldn't open file");
return;
}
const std::string data = oss.str();
gzwrite(file, data.c_str(), data.size());
gzflush(file, Z_FINISH);
gzclose(file);
//FIXME add lua state
} catch (const content_error& ex) {
LOG_L(L_ERROR, "Save failed(content error): %s", ex.what());
} catch (const std::exception& ex) {
LOG_L(L_ERROR, "Save failed: %s", ex.what());
} catch (const char*& exStr) {
LOG_L(L_ERROR, "Save failed: %s", exStr);
} catch (const std::string& str) {
LOG_L(L_ERROR, "Save failed: %s", str.c_str());
} catch (...) {
LOG_L(L_ERROR, "Save failed(unknown error)");
}
#else //USING_CREG
LOG_L(L_ERROR, "Save failed: creg is disabled");
#endif //USING_CREG
}
/// this just loads the mapname and some other early stuff
void CCregLoadSaveHandler::LoadGameStartInfo(const std::string& path)
{
CGZFileHandler saveFile(dataDirsAccess.LocateFile(FindSaveFile(path)), SPRING_VFS_RAW_FIRST);
iss = new std::stringstream;
std::stringbuf *sbuf = iss->rdbuf();
char buf[4096];
int len;
while ((len = saveFile.Read(buf, sizeof(buf))) > 0)
sbuf->sputn(buf, len);
//Check for compatible save versions
std::string saveVersion;
ReadString(*iss, saveVersion);
if (saveVersion != SpringVersion::GetSync()) {
if (SpringVersion::IsRelease()) {
throw content_error("File was saved by an incompatible engine version: " + saveVersion);
} else {
LOG_L(L_WARNING, "File was saved by a different engine version: %s", saveVersion.c_str());
}
}
// in case these contained values alredy
// (this is the case when loading a game through the spring menu eg),
// we set them to empty strings, as ReadString() does append,
// and we would end up with the correct value but two times
// eg: "AbcAbc" instead of "Abc"
//FIXME remove
scriptText = "";
modName = "";
mapName = "";
// read our own header.
ReadString(*iss, scriptText);
ReadString(*iss, modName);
ReadString(*iss, mapName);
CGameSetup::LoadSavedScript(path, scriptText);
}
/// this should be called on frame 0 when the game has started
void CCregLoadSaveHandler::LoadGame()
{
#ifdef USING_CREG
ENTER_SYNCED_CODE();
void* pGSC = NULL;
creg::Class* gsccls = NULL;
// load creg state
creg::CInputStreamSerializer inputStream;
inputStream.LoadPackage(iss, pGSC, gsccls);
assert(pGSC && gsccls == CGameStateCollector::StaticClass());
CGameStateCollector* gsc = static_cast<CGameStateCollector*>(pGSC);
delete gsc; // the only job of gsc is to collect gamestate data
gsc = NULL;
// load ai state
eoh->Load(iss);
//for (int a=0; a < teamHandler->ActiveTeams(); a++) { // For old savegames
// if (teamHandler->Team(a)->isDead && eoh->IsSkirmishAI(a)) {
// eoh->DestroySkirmishAI(skirmishAIId(a), 2 /* = team died */);
// }
//}
// cleanup
delete iss;
iss = NULL;
gs->paused = false;
if (gameServer) {
gameServer->isPaused = false;
gameServer->syncErrorFrame = 0;
}
LEAVE_SYNCED_CODE();
#else //USING_CREG
LOG_L(L_ERROR, "Load failed: creg is disabled");
#endif //USING_CREG
}
|