2023-01-11 15:17:24 +02:00
|
|
|
/*
|
|
|
|
* 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 "CModHandler.h"
|
|
|
|
#include "CGeneralTextHandler.h"
|
2023-03-15 21:34:29 +02:00
|
|
|
#include "GameSettings.h"
|
2023-01-11 15:17:24 +02:00
|
|
|
|
|
|
|
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(), "");
|
2023-01-11 15:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
RoadType * RoadTypeHandler::loadFromJson(
|
|
|
|
const std::string & scope,
|
|
|
|
const JsonNode & json,
|
|
|
|
const std::string & identifier,
|
|
|
|
size_t index)
|
|
|
|
{
|
2023-01-18 23:56:01 +02:00
|
|
|
assert(identifier.find(':') == std::string::npos);
|
|
|
|
|
2023-03-13 23:26:44 +02:00
|
|
|
auto * info = new RoadType;
|
2023-01-11 15:17:24 +02:00
|
|
|
|
|
|
|
info->id = RoadId(index);
|
2023-02-13 00:07:28 +02:00
|
|
|
info->identifier = identifier;
|
|
|
|
info->modScope = scope;
|
2023-01-11 15:17:24 +02:00
|
|
|
info->tilesFilename = json["tilesFilename"].String();
|
|
|
|
info->shortIdentifier = json["shortIdentifier"].String();
|
|
|
|
info->movementCost = json["moveCost"].Integer();
|
|
|
|
|
2023-02-09 15:03:49 +02:00
|
|
|
VLC->generaltexth->registerString(scope,info->getNameTextID(), json["text"].String());
|
2023-01-11 15:17:24 +02:00
|
|
|
|
|
|
|
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-01-11 15:17:24 +02:00
|
|
|
{
|
2023-03-15 21:34:29 +02:00
|
|
|
size_t dataSize = VLC->settings()->getInteger(EGameSettings::TEXTS_ROAD);
|
|
|
|
|
2023-01-11 15:17:24 +02:00
|
|
|
objects.resize(dataSize);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<bool> RoadTypeHandler::getDefaultAllowed() const
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-02-13 00:07:28 +02:00
|
|
|
std::string RoadType::getJsonKey() const
|
|
|
|
{
|
|
|
|
return modScope + ":" + identifier;
|
|
|
|
}
|
|
|
|
|
2023-01-11 15:17:24 +02:00
|
|
|
std::string RoadType::getNameTextID() const
|
|
|
|
{
|
2023-02-13 00:07:28 +02:00
|
|
|
return TextIdentifier( "road", modScope, identifier, "name" ).get();
|
2023-01-11 15:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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"),
|
2023-01-11 15:17:24 +02:00
|
|
|
movementCost(GameConstants::BASE_MOVEMENT_COST)
|
|
|
|
{}
|
|
|
|
VCMI_LIB_NAMESPACE_END
|