2022-06-20 16:39:50 +02:00
|
|
|
/*
|
|
|
|
* Terrain.h, 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
#include <vcmi/EntityService.h>
|
|
|
|
#include <vcmi/Entity.h>
|
2022-06-20 16:39:50 +02:00
|
|
|
#include "ConstTransitivePtr.h"
|
2022-06-28 10:05:30 +02:00
|
|
|
#include "GameConstants.h"
|
2022-06-20 16:39:50 +02:00
|
|
|
#include "JsonNode.h"
|
2022-12-20 16:14:06 +02:00
|
|
|
#include "IHandlerBase.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
|
|
|
{
|
|
|
|
public:
|
2022-12-20 18:35:40 +02:00
|
|
|
int32_t getIndex() const override { return id.getNum(); }
|
|
|
|
int32_t getIconIndex() const override { return 0; }
|
|
|
|
const std::string & getName() const override { return name;}
|
|
|
|
const std::string & getJsonKey() const override { return name;}
|
|
|
|
void registerIcons(const IconRegistar & cb) const override {}
|
|
|
|
TerrainId getId() const override { return id;}
|
2022-12-20 16:14:06 +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-09-19 16:13:58 +02:00
|
|
|
std::vector<std::string> battleFields;
|
2022-09-29 11:44:46 +02:00
|
|
|
std::vector<TerrainId> prohibitTransitions;
|
2022-09-19 16:13:58 +02:00
|
|
|
std::array<int, 3> minimapBlocked;
|
|
|
|
std::array<int, 3> minimapUnblocked;
|
|
|
|
std::string name;
|
|
|
|
std::string musicFilename;
|
|
|
|
std::string tilesFilename;
|
|
|
|
std::string terrainText;
|
|
|
|
std::string typeCode;
|
|
|
|
std::string terrainViewPatterns;
|
2022-09-29 11:44:46 +02:00
|
|
|
RiverId river;
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-09-29 11:44:46 +02:00
|
|
|
TerrainId id;
|
|
|
|
TerrainId rockTerrain;
|
2022-09-19 16:13:58 +02:00
|
|
|
int moveCost;
|
|
|
|
int horseSoundId;
|
2022-09-22 18:23:31 +02:00
|
|
|
ui8 passabilityType;
|
2022-09-19 16:13:58 +02:00
|
|
|
bool transitionRequired;
|
2022-06-20 16:39:50 +02:00
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
TerrainType();
|
2022-06-20 16:39:50 +02:00
|
|
|
|
2022-09-19 16:13:58 +02:00
|
|
|
bool operator==(const TerrainType & other);
|
|
|
|
bool operator!=(const TerrainType & other);
|
|
|
|
bool operator<(const TerrainType & other);
|
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-06-20 16:39:50 +02:00
|
|
|
|
|
|
|
operator std::string() const;
|
|
|
|
|
|
|
|
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;
|
2022-06-20 16:39:50 +02:00
|
|
|
h & name;
|
2022-09-19 16:13:58 +02:00
|
|
|
h & musicFilename;
|
|
|
|
h & tilesFilename;
|
|
|
|
h & terrainText;
|
|
|
|
h & typeCode;
|
|
|
|
h & terrainViewPatterns;
|
|
|
|
h & rockTerrain;
|
|
|
|
h & river;
|
|
|
|
|
|
|
|
h & id;
|
|
|
|
h & moveCost;
|
|
|
|
h & horseSoundId;
|
|
|
|
h & passabilityType;
|
|
|
|
h & transitionRequired;
|
2022-06-20 16:39:50 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
class DLL_LINKAGE RiverType : public EntityT<RiverId>
|
2022-09-23 16:24:01 +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; }
|
|
|
|
const std::string & getName() const override { return code;}
|
|
|
|
const std::string & getJsonKey() const override { return code;}
|
|
|
|
void registerIcons(const IconRegistar & cb) const override {}
|
|
|
|
RiverId getId() const override { return id;}
|
2022-12-20 16:14:06 +02:00
|
|
|
|
2022-09-23 16:24:01 +02:00
|
|
|
std::string fileName;
|
|
|
|
std::string code;
|
|
|
|
std::string deltaName;
|
2022-09-29 11:44:46 +02:00
|
|
|
RiverId id;
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
RiverType();
|
2022-09-23 16:24:01 +02:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler& h, const int version)
|
|
|
|
{
|
|
|
|
h & fileName;
|
|
|
|
h & code;
|
|
|
|
h & deltaName;
|
|
|
|
h & id;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
class DLL_LINKAGE RoadType : public EntityT<RoadId>
|
2022-09-23 16:24:01 +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; }
|
|
|
|
const std::string & getName() const override { return code;}
|
|
|
|
const std::string & getJsonKey() const override { return code;}
|
|
|
|
void registerIcons(const IconRegistar & cb) const override {}
|
|
|
|
RoadId getId() const override { return id;}
|
2022-12-20 16:14:06 +02:00
|
|
|
|
2022-09-23 16:24:01 +02:00
|
|
|
std::string fileName;
|
|
|
|
std::string code;
|
2022-09-29 11:44:46 +02:00
|
|
|
RoadId id;
|
2022-09-23 16:24:01 +02:00
|
|
|
ui8 movementCost;
|
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
RoadType();
|
2022-09-23 16:24:01 +02:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler& h, const int version)
|
|
|
|
{
|
|
|
|
h & fileName;
|
|
|
|
h & code;
|
|
|
|
h & id;
|
|
|
|
h & movementCost;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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 18:35:40 +02:00
|
|
|
class DLL_LINKAGE RiverTypeService : public EntityServiceT<RiverId, RiverType>
|
2022-09-19 16:13:58 +02:00
|
|
|
{
|
|
|
|
public:
|
2022-12-20 16:14:06 +02:00
|
|
|
};
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
class DLL_LINKAGE RoadTypeService : public EntityServiceT<RoadId, RoadType>
|
2022-12-20 16:14:06 +02:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
virtual std::vector<JsonNode> loadLegacyData(size_t dataSize) override;
|
|
|
|
virtual std::vector<bool> getDefaultAllowed() const override;
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
// TerrainType * getInfoByCode(const std::string & identifier);
|
2022-09-19 16:13:58 +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-12-20 18:35:40 +02:00
|
|
|
class DLL_LINKAGE RiverTypeHandler : public CHandlerBase<RiverId, RiverType, RiverType, RiverTypeService>
|
2022-12-20 16:14:06 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual RiverType * 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;
|
|
|
|
virtual std::vector<JsonNode> loadLegacyData(size_t dataSize) override;
|
|
|
|
virtual std::vector<bool> getDefaultAllowed() const override;
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
// RiverType * getInfoByCode(const std::string & identifier);
|
2022-12-20 16:14:06 +02:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler & h, const int version)
|
|
|
|
{
|
|
|
|
h & objects;
|
|
|
|
}
|
|
|
|
};
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
class DLL_LINKAGE RoadTypeHandler : public CHandlerBase<RoadId, RoadType, RoadType, RoadTypeService>
|
2022-12-20 16:14:06 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual RoadType * loadFromJson(
|
|
|
|
const std::string & scope,
|
|
|
|
const JsonNode & json,
|
|
|
|
const std::string & identifier,
|
|
|
|
size_t index) override;
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
virtual const std::vector<std::string> & getTypeNames() const override;
|
|
|
|
virtual std::vector<JsonNode> loadLegacyData(size_t dataSize) override;
|
|
|
|
virtual std::vector<bool> getDefaultAllowed() const override;
|
2022-09-23 16:24:01 +02:00
|
|
|
|
2022-12-20 18:35:40 +02:00
|
|
|
// RoadType * getInfoByCode(const std::string & identifier);
|
2022-09-19 16:13:58 +02:00
|
|
|
|
2022-12-20 16:14:06 +02:00
|
|
|
template <typename Handler> void serialize(Handler & h, const int version)
|
|
|
|
{
|
|
|
|
h & objects;
|
|
|
|
}
|
2022-09-19 16:13:58 +02:00
|
|
|
};
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|