1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/lib/RoadHandler.cpp

84 lines
1.9 KiB
C++
Raw Normal View History

/*
* Terrain.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 "RoadHandler.h"
#include "CGeneralTextHandler.h"
2023-03-15 21:34:29 +02:00
#include "GameSettings.h"
#include "JsonNode.h"
VCMI_LIB_NAMESPACE_BEGIN
RoadTypeHandler::RoadTypeHandler()
{
objects.push_back(new RoadType);
2023-02-09 21:33:59 +02:00
VLC->generaltexth->registerString("core", objects[0]->getNameTextID(), "");
}
RoadType * RoadTypeHandler::loadFromJson(
const std::string & scope,
const JsonNode & json,
const std::string & identifier,
size_t index)
{
assert(identifier.find(':') == std::string::npos);
2023-03-13 23:26:44 +02:00
auto * info = new RoadType;
info->id = RoadId(index);
2023-02-13 00:07:28 +02:00
info->identifier = identifier;
info->modScope = scope;
info->tilesFilename = AnimationPath::fromJson(json["tilesFilename"]);
info->shortIdentifier = json["shortIdentifier"].String();
info->movementCost = json["moveCost"].Integer();
VLC->generaltexth->registerString(scope,info->getNameTextID(), json["text"].String());
return info;
}
const std::vector<std::string> & RoadTypeHandler::getTypeNames() const
{
static const std::vector<std::string> typeNames = { "road" };
return typeNames;
}
2023-03-15 21:34:29 +02:00
std::vector<JsonNode> RoadTypeHandler::loadLegacyData()
{
2023-03-15 21:34:29 +02:00
size_t dataSize = VLC->settings()->getInteger(EGameSettings::TEXTS_ROAD);
objects.resize(dataSize);
return {};
}
2023-02-13 00:07:28 +02:00
std::string RoadType::getJsonKey() const
{
return modScope + ":" + identifier;
}
std::string RoadType::getNameTextID() const
{
2023-02-13 00:07:28 +02:00
return TextIdentifier( "road", modScope, identifier, "name" ).get();
}
std::string RoadType::getNameTranslated() const
{
return VLC->generaltexth->translate(getNameTextID());
}
RoadType::RoadType():
id(Road::NO_ROAD),
2023-02-09 21:33:59 +02:00
identifier("empty"),
2023-02-13 00:07:28 +02:00
modScope("core"),
movementCost(GameConstants::BASE_MOVEMENT_COST)
{}
VCMI_LIB_NAMESPACE_END