mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
ff635edc0b
preparation for having client and server in a single process
85 lines
2.0 KiB
C++
85 lines
2.0 KiB
C++
/*
|
|
* CRmgTemplateStorage.cpp, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
|
|
#include "StdInc.h"
|
|
|
|
#include "CRmgTemplateStorage.h"
|
|
#include "CRmgTemplate.h"
|
|
|
|
#include "../serializer/JsonDeserializer.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
using namespace rmg;
|
|
|
|
void CRmgTemplateStorage::loadObject(std::string scope, std::string name, const JsonNode & data, size_t index)
|
|
{
|
|
//unused
|
|
loadObject(scope, name, data);
|
|
}
|
|
|
|
void CRmgTemplateStorage::loadObject(std::string scope, std::string name, const JsonNode & data)
|
|
{
|
|
try
|
|
{
|
|
JsonDeserializer handler(nullptr, data);
|
|
auto fullKey = normalizeIdentifier(scope, "core", name); //actually it's not used
|
|
templates[fullKey].setId(name);
|
|
templates[fullKey].serializeJson(handler);
|
|
templates[fullKey].validate();
|
|
|
|
templatesByName[name] = templates[fullKey];
|
|
}
|
|
catch(const std::exception & e)
|
|
{
|
|
logGlobal->error("Template %s has errors. Message: %s.", name, std::string(e.what()));
|
|
}
|
|
}
|
|
|
|
std::vector<bool> CRmgTemplateStorage::getDefaultAllowed() const
|
|
{
|
|
//all templates are allowed
|
|
return std::vector<bool>();
|
|
}
|
|
|
|
std::vector<JsonNode> CRmgTemplateStorage::loadLegacyData(size_t dataSize)
|
|
{
|
|
return std::vector<JsonNode>();
|
|
//it would be cool to load old rmg.txt files
|
|
}
|
|
|
|
const CRmgTemplate * CRmgTemplateStorage::getTemplate(const std::string & templateFullId) const
|
|
{
|
|
auto iter = templates.find(templateFullId);
|
|
if(iter==templates.end())
|
|
return nullptr;
|
|
return &iter->second;
|
|
}
|
|
|
|
const CRmgTemplate * CRmgTemplateStorage::getTemplateByName(const std::string & templateName) const
|
|
{
|
|
auto iter = templatesByName.find(templateName);
|
|
if(iter == templatesByName.end())
|
|
return nullptr;
|
|
return &iter->second;
|
|
}
|
|
|
|
std::vector<const CRmgTemplate *> CRmgTemplateStorage::getTemplates() const
|
|
{
|
|
std::vector<const CRmgTemplate *> result;
|
|
for(auto i=templates.cbegin(); i!=templates.cend(); ++i)
|
|
{
|
|
result.push_back(&i->second);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
VCMI_LIB_NAMESPACE_END
|