2011-12-14 00:35:28 +03:00
|
|
|
/*
|
2011-12-22 16:05:19 +03:00
|
|
|
* BattleHex.h, part of VCMI engine
|
2011-12-14 00:35:28 +03: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
|
|
|
|
*
|
|
|
|
*/
|
2017-01-29 17:38:13 +02:00
|
|
|
#pragma once
|
2017-07-01 10:34:00 +02:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2017-07-01 10:34:00 +02:00
|
|
|
//TODO: change to enum class
|
|
|
|
|
|
|
|
namespace BattleSide
|
|
|
|
{
|
2022-12-18 11:42:02 +02:00
|
|
|
enum Type
|
2017-07-01 10:34:00 +02:00
|
|
|
{
|
|
|
|
ATTACKER = 0,
|
|
|
|
DEFENDER = 1
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
namespace GameConstants
|
|
|
|
{
|
|
|
|
const int BFIELD_WIDTH = 17;
|
|
|
|
const int BFIELD_HEIGHT = 11;
|
|
|
|
const int BFIELD_SIZE = BFIELD_WIDTH * BFIELD_HEIGHT;
|
|
|
|
}
|
|
|
|
|
2017-07-01 10:34:00 +02:00
|
|
|
typedef boost::optional<ui8> BattleSideOpt;
|
2011-12-14 00:35:28 +03:00
|
|
|
|
|
|
|
// for battle stacks' positions
|
2017-03-15 23:58:25 +02:00
|
|
|
struct DLL_LINKAGE BattleHex //TODO: decide if this should be changed to class for better code design
|
2011-12-14 00:35:28 +03:00
|
|
|
{
|
2022-11-25 00:26:14 +02:00
|
|
|
// helpers for siege
|
2022-11-17 18:50:12 +02:00
|
|
|
static const si16 CASTLE_CENTRAL_TOWER = -2;
|
|
|
|
static const si16 CASTLE_BOTTOM_TOWER = -3;
|
|
|
|
static const si16 CASTLE_UPPER_TOWER = -4;
|
|
|
|
|
2022-11-25 00:26:14 +02:00
|
|
|
// helpers for rendering
|
|
|
|
static const si16 HEX_BEFORE_ALL = std::numeric_limits<si16>::min();
|
|
|
|
static const si16 HEX_AFTER_ALL = std::numeric_limits<si16>::max();
|
|
|
|
|
2017-01-29 17:38:13 +02:00
|
|
|
si16 hex;
|
2011-12-14 00:35:28 +03:00
|
|
|
static const si16 INVALID = -1;
|
2017-07-01 10:34:00 +02:00
|
|
|
enum EDir
|
|
|
|
{
|
2022-12-18 11:42:02 +02:00
|
|
|
NONE = -1,
|
|
|
|
|
2017-07-01 10:34:00 +02:00
|
|
|
TOP_LEFT,
|
|
|
|
TOP_RIGHT,
|
|
|
|
RIGHT,
|
|
|
|
BOTTOM_RIGHT,
|
|
|
|
BOTTOM_LEFT,
|
|
|
|
LEFT,
|
2022-12-19 01:12:26 +02:00
|
|
|
|
|
|
|
//Note: unused by BattleHex class, used by other code
|
|
|
|
TOP,
|
|
|
|
BOTTOM
|
2017-07-01 10:34:00 +02:00
|
|
|
};
|
2011-12-14 00:35:28 +03:00
|
|
|
|
2017-01-29 17:38:13 +02:00
|
|
|
BattleHex();
|
|
|
|
BattleHex(si16 _hex);
|
|
|
|
BattleHex(si16 x, si16 y);
|
|
|
|
BattleHex(std::pair<si16, si16> xy);
|
|
|
|
operator si16() const;
|
|
|
|
bool isValid() const;
|
|
|
|
bool isAvailable() const; //valid position not in first or last column
|
|
|
|
void setX(si16 x);
|
|
|
|
void setY(si16 y);
|
|
|
|
void setXY(si16 x, si16 y, bool hasToBeValid = true);
|
|
|
|
void setXY(std::pair<si16, si16> xy);
|
|
|
|
si16 getX() const;
|
|
|
|
si16 getY() const;
|
|
|
|
std::pair<si16, si16> getXY() const;
|
2017-05-29 09:33:34 +02:00
|
|
|
BattleHex& moveInDirection(EDir dir, bool hasToBeValid = true);
|
|
|
|
BattleHex& operator+=(EDir dir);
|
|
|
|
BattleHex cloneInDirection(EDir dir, bool hasToBeValid = true) const;
|
2017-01-29 17:38:13 +02:00
|
|
|
BattleHex operator+(EDir dir) const;
|
2022-12-16 11:22:58 +02:00
|
|
|
|
|
|
|
/// returns all valid neighbouring tiles
|
2011-12-22 16:05:19 +03:00
|
|
|
std::vector<BattleHex> neighbouringTiles() const;
|
2022-12-16 11:22:58 +02:00
|
|
|
|
|
|
|
/// returns all tiles, unavailable tiles will be set as invalid
|
|
|
|
/// order of returned tiles matches EDir enim
|
|
|
|
std::vector<BattleHex> allNeighbouringTiles() const;
|
|
|
|
|
2022-12-18 11:42:02 +02:00
|
|
|
static EDir mutualPosition(BattleHex hex1, BattleHex hex2);
|
2011-12-22 16:05:19 +03:00
|
|
|
static char getDistance(BattleHex hex1, BattleHex hex2);
|
2017-01-29 17:38:13 +02:00
|
|
|
static void checkAndPush(BattleHex tile, std::vector<BattleHex> & ret);
|
2017-07-01 10:34:00 +02:00
|
|
|
static BattleHex getClosestTile(ui8 side, BattleHex initialPos, std::set<BattleHex> & possibilities); //TODO: vector or set? copying one to another is bad
|
2011-12-14 00:35:28 +03:00
|
|
|
|
2017-01-29 17:38:13 +02:00
|
|
|
template <typename Handler>
|
|
|
|
void serialize(Handler &h, const int version)
|
2011-12-14 00:35:28 +03:00
|
|
|
{
|
|
|
|
h & hex;
|
|
|
|
}
|
2017-07-20 06:08:49 +02:00
|
|
|
|
|
|
|
using NeighbouringTiles = std::array<BattleHex, 6>;
|
|
|
|
using NeighbouringTilesCache = std::vector<NeighbouringTiles>;
|
|
|
|
|
|
|
|
static const NeighbouringTilesCache neighbouringTilesCache;
|
2013-11-09 19:25:20 +03:00
|
|
|
};
|
|
|
|
|
2013-11-10 00:29:46 +03:00
|
|
|
DLL_EXPORT std::ostream & operator<<(std::ostream & os, const BattleHex & hex);
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|