2022-06-20 16:39:50 +02:00
|
|
|
/*
|
2023-01-09 01:17:37 +02:00
|
|
|
* TerrainHandler.h, part of VCMI engine
|
2022-06-20 16:39:50 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
#include <vcmi/EntityService.h>
|
|
|
|
#include <vcmi/Entity.h>
|
2022-06-28 10:05:30 +02:00
|
|
|
#include "GameConstants.h"
|
2022-12-20 16:14:06 +02:00
|
|
|
#include "IHandlerBase.h"
|
2023-01-30 00:12:43 +02:00
|
|
|
#include "Color.h"
|
2022-06-20 16:39:50 +02:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
2022-06-22 10:41:02 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
class DLL_LINKAGE TerrainType : public EntityT<TerrainId>
|
2022-06-20 16:39:50 +02:00
|
|
|
{
|
2023-01-01 17:10:47 +02:00
|
|
|
friend class TerrainTypeHandler;
|
|
|
|
std::string identifier;
|
2023-02-13 00:07:28 +02:00
|
|
|
std::string modScope;
|
2023-01-01 17:10:47 +02:00
|
|
|
TerrainId id;
|
|
|
|
ui8 passabilityType;
|
|
|
|
|
2022-06-20 16:39:50 +02:00
|
|
|
public:
|
2022-12-20 18:35:40 +02:00
|
|
|
int32_t getIndex() const override { return id.getNum(); }
|
|
|
|
int32_t getIconIndex() const override { return 0; }
|
2023-02-13 00:07:28 +02:00
|
|
|
std::string getJsonKey() const override;
|
2022-12-20 18:35:40 +02:00
|
|
|
void registerIcons(const IconRegistar & cb) const override {}
|
|
|
|
TerrainId getId() const override { return id;}
|
2023-01-11 13:59:43 +02:00
|
|
|
void updateFrom(const JsonNode & data) {};
|
2022-12-20 16:14:06 +02:00
|
|
|
|
2023-01-18 23:56:01 +02:00
|
|
|
std::string getNameTextID() const override;
|
|
|
|
std::string getNameTranslated() const override;
|
2023-01-01 17:10:47 +02:00
|
|
|
|
2022-09-22 18:23:31 +02:00
|
|
|
enum PassabilityType : ui8
|
2022-06-20 16:39:50 +02:00
|
|
|
{
|
2022-09-22 18:23:31 +02:00
|
|
|
LAND = 1,
|
|
|
|
WATER = 2,
|
|
|
|
SURFACE = 4,
|
|
|
|
SUBTERRANEAN = 8,
|
|
|
|
ROCK = 16
|
2022-06-20 16:39:50 +02:00
|
|
|
};
|
|
|
|
|
2022-12-21 00:45:35 +02:00
|
|
|
std::vector<BattleField> battleFields;
|
2022-09-29 11:44:46 +02:00
|
|
|
std::vector<TerrainId> prohibitTransitions;
|
2023-01-30 00:12:43 +02:00
|
|
|
ColorRGBA minimapBlocked;
|
|
|
|
ColorRGBA minimapUnblocked;
|
2022-12-21 00:45:35 +02:00
|
|
|
std::string shortIdentifier;
|
2022-09-19 16:13:58 +02:00
|
|
|
std::string musicFilename;
|
|
|
|
std::string tilesFilename;
|
|
|
|
std::string terrainViewPatterns;
|
2022-12-21 00:45:35 +02:00
|
|
|
std::string horseSound;
|
2022-12-24 16:48:24 +02:00
|
|
|
std::string horseSoundPenalty;
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-09-29 11:44:46 +02:00
|
|
|
TerrainId rockTerrain;
|
2022-12-21 00:45:35 +02:00
|
|
|
RiverId river;
|
2022-09-19 16:13:58 +02:00
|
|
|
int moveCost;
|
|
|
|
bool transitionRequired;
|
2023-03-13 23:26:44 +02:00
|
|
|
|
|
|
|
TerrainType() = default;
|
|
|
|
|
2022-06-20 16:39:50 +02:00
|
|
|
bool isLand() const;
|
|
|
|
bool isWater() const;
|
2022-09-22 18:23:31 +02:00
|
|
|
bool isPassable() const;
|
|
|
|
bool isSurface() const;
|
2022-06-20 16:39:50 +02:00
|
|
|
bool isUnderground() const;
|
2022-06-22 10:41:02 +02:00
|
|
|
bool isTransitionRequired() const;
|
2022-12-30 17:14:04 +02:00
|
|
|
bool isSurfaceCartographerCompatible() const;
|
|
|
|
bool isUndergroundCartographerCompatible() const;
|
2022-12-21 00:04:39 +02:00
|
|
|
|
2022-06-20 16:39:50 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2022-09-19 16:13:58 +02:00
|
|
|
h & battleFields;
|
|
|
|
h & prohibitTransitions;
|
|
|
|
h & minimapBlocked;
|
|
|
|
h & minimapUnblocked;
|
2023-02-13 00:07:28 +02:00
|
|
|
h & modScope;
|
2022-12-21 00:45:35 +02:00
|
|
|
h & identifier;
|
2022-09-19 16:13:58 +02:00
|
|
|
h & musicFilename;
|
|
|
|
h & tilesFilename;
|
2022-12-21 00:45:35 +02:00
|
|
|
h & shortIdentifier;
|
2022-09-19 16:13:58 +02:00
|
|
|
h & terrainViewPatterns;
|
|
|
|
h & rockTerrain;
|
|
|
|
h & river;
|
|
|
|
|
|
|
|
h & id;
|
|
|
|
h & moveCost;
|
2022-12-21 00:45:35 +02:00
|
|
|
h & horseSound;
|
2022-12-24 16:48:24 +02:00
|
|
|
h & horseSoundPenalty;
|
2022-09-19 16:13:58 +02:00
|
|
|
h & passabilityType;
|
|
|
|
h & transitionRequired;
|
2022-06-20 16:39:50 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
class DLL_LINKAGE TerrainTypeService : public EntityServiceT<TerrainId, TerrainType>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
};
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
class DLL_LINKAGE TerrainTypeHandler : public CHandlerBase<TerrainId, TerrainType, TerrainType, TerrainTypeService>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual TerrainType * loadFromJson(
|
|
|
|
const std::string & scope,
|
|
|
|
const JsonNode & json,
|
|
|
|
const std::string & identifier,
|
|
|
|
size_t index) override;
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
virtual const std::vector<std::string> & getTypeNames() const override;
|
2023-03-15 21:34:29 +02:00
|
|
|
virtual std::vector<JsonNode> loadLegacyData() override;
|
2022-12-20 16:14:06 +02:00
|
|
|
virtual std::vector<bool> getDefaultAllowed() const override;
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
template <typename Handler> void serialize(Handler & h, const int version)
|
2022-09-21 11:34:23 +02:00
|
|
|
{
|
|
|
|
h & objects;
|
|
|
|
}
|
2022-12-20 16:14:06 +02:00
|
|
|
};
|
2022-09-21 11:34:23 +02:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_END
|