2022-06-20 16:39:50 +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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-08-09 07:54:32 +02:00
|
|
|
#include "StdInc.h"
|
2023-01-09 01:17:37 +02:00
|
|
|
#include "TerrainHandler.h"
|
2022-06-20 16:39:50 +02:00
|
|
|
#include "CModHandler.h"
|
2022-12-20 20:26:54 +02:00
|
|
|
#include "CGeneralTextHandler.h"
|
2023-03-15 21:34:29 +02:00
|
|
|
#include "GameSettings.h"
|
2022-06-20 16:39:50 +02:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
TerrainType * TerrainTypeHandler::loadFromJson( const std::string & scope, const JsonNode & json, const std::string & identifier, size_t index)
|
2022-09-23 19:26:38 +02:00
|
|
|
{
|
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 TerrainType;
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
info->id = TerrainId(index);
|
2023-02-13 00:07:28 +02:00
|
|
|
info->identifier = identifier;
|
|
|
|
info->modScope = scope;
|
2022-12-20 16:14:06 +02:00
|
|
|
info->moveCost = static_cast<int>(json["moveCost"].Integer());
|
|
|
|
info->musicFilename = json["music"].String();
|
|
|
|
info->tilesFilename = json["tiles"].String();
|
2022-12-21 00:45:35 +02:00
|
|
|
info->horseSound = json["horseSound"].String();
|
2022-12-24 16:48:24 +02:00
|
|
|
info->horseSoundPenalty = json["horseSoundPenalty"].String();
|
2022-12-20 16:14:06 +02:00
|
|
|
info->transitionRequired = json["transitionRequired"].Bool();
|
|
|
|
info->terrainViewPatterns = json["terrainViewPatterns"].String();
|
2023-01-01 18:05:09 +02:00
|
|
|
|
2023-02-09 15:03:49 +02:00
|
|
|
VLC->generaltexth->registerString(scope, info->getNameTextID(), json["text"].String());
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
const JsonVector & unblockedVec = json["minimapUnblocked"].Vector();
|
|
|
|
info->minimapUnblocked =
|
2022-09-19 16:13:58 +02:00
|
|
|
{
|
2023-03-13 23:26:44 +02:00
|
|
|
static_cast<ui8>(unblockedVec[0].Float()),
|
|
|
|
static_cast<ui8>(unblockedVec[1].Float()),
|
|
|
|
static_cast<ui8>(unblockedVec[2].Float())
|
2022-12-20 16:14:06 +02:00
|
|
|
};
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
const JsonVector &blockedVec = json["minimapBlocked"].Vector();
|
|
|
|
info->minimapBlocked =
|
|
|
|
{
|
2023-03-13 23:26:44 +02:00
|
|
|
static_cast<ui8>(blockedVec[0].Float()),
|
|
|
|
static_cast<ui8>(blockedVec[1].Float()),
|
|
|
|
static_cast<ui8>(blockedVec[2].Float())
|
2022-12-20 16:14:06 +02:00
|
|
|
};
|
2022-09-21 13:43:57 +02:00
|
|
|
|
2022-12-20 20:52:52 +02:00
|
|
|
info->passabilityType = 0;
|
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
for(const auto& node : json["type"].Vector())
|
2022-09-19 16:13:58 +02:00
|
|
|
{
|
2022-12-20 16:14:06 +02:00
|
|
|
//Set bits
|
2023-03-13 23:26:44 +02:00
|
|
|
const auto & s = node.String();
|
2022-12-20 16:14:06 +02:00
|
|
|
if (s == "LAND") info->passabilityType |= TerrainType::PassabilityType::LAND;
|
|
|
|
if (s == "WATER") info->passabilityType |= TerrainType::PassabilityType::WATER;
|
|
|
|
if (s == "ROCK") info->passabilityType |= TerrainType::PassabilityType::ROCK;
|
|
|
|
if (s == "SURFACE") info->passabilityType |= TerrainType::PassabilityType::SURFACE;
|
|
|
|
if (s == "SUB") info->passabilityType |= TerrainType::PassabilityType::SUBTERRANEAN;
|
2022-09-19 16:13:58 +02:00
|
|
|
}
|
2022-06-20 16:39:50 +02:00
|
|
|
|
2022-12-20 20:52:52 +02:00
|
|
|
info->river = River::NO_RIVER;
|
|
|
|
if(!json["river"].isNull())
|
|
|
|
{
|
|
|
|
VLC->modh->identifiers.requestIdentifier("river", json["river"], [info](int32_t identifier)
|
|
|
|
{
|
|
|
|
info->river = RiverId(identifier);
|
|
|
|
});
|
|
|
|
}
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2022-12-21 00:45:35 +02:00
|
|
|
info->shortIdentifier = json["shortIdentifier"].String();
|
|
|
|
assert(info->shortIdentifier.length() == 2);
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2023-03-13 23:26:44 +02:00
|
|
|
for(const auto & t : json["battleFields"].Vector())
|
2022-12-21 00:45:35 +02:00
|
|
|
{
|
|
|
|
VLC->modh->identifiers.requestIdentifier("battlefield", t, [info](int32_t identifier)
|
|
|
|
{
|
|
|
|
info->battleFields.emplace_back(identifier);
|
|
|
|
});
|
|
|
|
}
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2023-03-13 23:26:44 +02:00
|
|
|
for(const auto & t : json["prohibitTransitions"].Vector())
|
2022-09-23 16:24:01 +02:00
|
|
|
{
|
2022-12-20 16:14:06 +02:00
|
|
|
VLC->modh->identifiers.requestIdentifier("terrain", t, [info](int32_t identifier)
|
2022-09-23 18:57:16 +02:00
|
|
|
{
|
2022-12-21 00:45:35 +02:00
|
|
|
info->prohibitTransitions.emplace_back(identifier);
|
2022-12-20 16:14:06 +02:00
|
|
|
});
|
2022-09-23 16:24:01 +02:00
|
|
|
}
|
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
info->rockTerrain = ETerrainId::ROCK;
|
2022-09-26 09:17:55 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
if(!json["rockTerrain"].isNull())
|
2022-09-21 11:34:23 +02:00
|
|
|
{
|
2022-12-20 20:26:54 +02:00
|
|
|
VLC->modh->identifiers.requestIdentifier("terrain", json["rockTerrain"], [info](int32_t identifier)
|
2022-12-20 16:14:06 +02:00
|
|
|
{
|
|
|
|
info->rockTerrain = TerrainId(identifier);
|
|
|
|
});
|
2022-09-21 11:34:23 +02:00
|
|
|
}
|
2022-09-23 18:57:16 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
return info;
|
2022-09-23 16:24:01 +02:00
|
|
|
}
|
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
const std::vector<std::string> & TerrainTypeHandler::getTypeNames() const
|
2022-09-23 16:24:01 +02:00
|
|
|
{
|
2022-12-20 16:14:06 +02:00
|
|
|
static const std::vector<std::string> typeNames = { "terrain" };
|
|
|
|
return typeNames;
|
2022-09-23 16:24:01 +02:00
|
|
|
}
|
|
|
|
|
2023-03-15 21:34:29 +02:00
|
|
|
std::vector<JsonNode> TerrainTypeHandler::loadLegacyData()
|
2022-06-20 16:39:50 +02:00
|
|
|
{
|
2023-03-15 21:34:29 +02:00
|
|
|
size_t dataSize = VLC->settings()->getInteger(EGameSettings::TEXTS_TERRAIN);
|
|
|
|
|
2022-12-20 20:26:54 +02:00
|
|
|
objects.resize(dataSize);
|
|
|
|
|
|
|
|
CLegacyConfigParser terrainParser("DATA/TERRNAME.TXT");
|
|
|
|
|
|
|
|
std::vector<JsonNode> result;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
JsonNode terrain;
|
|
|
|
terrain["text"].String() = terrainParser.readString();
|
|
|
|
result.push_back(terrain);
|
|
|
|
}
|
|
|
|
while (terrainParser.endLine());
|
|
|
|
|
|
|
|
return result;
|
2022-06-20 16:39:50 +02:00
|
|
|
}
|
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
std::vector<bool> TerrainTypeHandler::getDefaultAllowed() const
|
2022-09-23 16:24:01 +02:00
|
|
|
{
|
2022-12-20 16:14:06 +02:00
|
|
|
return {};
|
2022-09-23 16:24:01 +02:00
|
|
|
}
|
|
|
|
|
2022-09-19 16:13:58 +02:00
|
|
|
bool TerrainType::isLand() const
|
2022-06-20 16:39:50 +02:00
|
|
|
{
|
|
|
|
return !isWater();
|
|
|
|
}
|
2022-09-19 16:13:58 +02:00
|
|
|
|
|
|
|
bool TerrainType::isWater() const
|
2022-06-20 16:39:50 +02:00
|
|
|
{
|
2022-09-22 18:23:31 +02:00
|
|
|
return passabilityType & PassabilityType::WATER;
|
2022-06-20 16:39:50 +02:00
|
|
|
}
|
2022-09-19 16:13:58 +02:00
|
|
|
|
|
|
|
bool TerrainType::isPassable() const
|
2022-06-20 16:39:50 +02:00
|
|
|
{
|
2022-09-22 18:23:31 +02:00
|
|
|
return !(passabilityType & PassabilityType::ROCK);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TerrainType::isSurface() const
|
|
|
|
{
|
|
|
|
return passabilityType & PassabilityType::SURFACE;
|
2022-06-20 16:39:50 +02:00
|
|
|
}
|
2022-09-19 16:13:58 +02:00
|
|
|
|
|
|
|
bool TerrainType::isUnderground() const
|
2022-06-20 16:39:50 +02:00
|
|
|
{
|
2022-09-22 18:23:31 +02:00
|
|
|
return passabilityType & PassabilityType::SUBTERRANEAN;
|
2022-06-20 16:39:50 +02:00
|
|
|
}
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-30 16:09:09 +02:00
|
|
|
bool TerrainType::isSurfaceCartographerCompatible() const
|
|
|
|
{
|
2022-12-30 17:04:19 +02:00
|
|
|
return isSurface();
|
2022-12-30 16:09:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TerrainType::isUndergroundCartographerCompatible() const
|
|
|
|
{
|
2022-12-30 17:04:19 +02:00
|
|
|
return isLand() && isPassable() && !isSurface();
|
2022-12-30 16:09:09 +02:00
|
|
|
}
|
|
|
|
|
2022-09-19 16:13:58 +02:00
|
|
|
bool TerrainType::isTransitionRequired() const
|
2022-06-22 10:41:02 +02:00
|
|
|
{
|
2022-09-19 16:13:58 +02:00
|
|
|
return transitionRequired;
|
2022-06-22 10:41:02 +02:00
|
|
|
}
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2023-02-13 00:07:28 +02:00
|
|
|
std::string TerrainType::getJsonKey() const
|
|
|
|
{
|
|
|
|
return modScope + ":" + identifier;
|
|
|
|
}
|
|
|
|
|
2023-01-01 18:05:09 +02:00
|
|
|
std::string TerrainType::getNameTextID() const
|
|
|
|
{
|
2023-02-13 00:07:28 +02:00
|
|
|
return TextIdentifier( "terrain", modScope, identifier, "name" ).get();
|
2023-01-01 18:05:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string TerrainType::getNameTranslated() const
|
|
|
|
{
|
|
|
|
return VLC->generaltexth->translate(getNameTextID());
|
|
|
|
}
|
|
|
|
|
2022-09-30 10:26:36 +02:00
|
|
|
VCMI_LIB_NAMESPACE_END
|