mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
2a05fbdd50
- Replaced BattleSide namespace-enum with enum class - Merged two different BattleSide enum's into one - Merged BattlePerspective enum into BattleSide enum - Changed all places that use integers to represent battle side to use BattleSide enum - Added BattleSideArray convenience wrapper for std::array that is always 2-elements in size and allows access to its elements using BattleSide enum
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
/*
|
|
* AccessibilityInfo.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 "AccessibilityInfo.h"
|
|
#include "BattleHex.h"
|
|
#include "Unit.h"
|
|
#include "../GameConstants.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
bool AccessibilityInfo::tileAccessibleWithGate(BattleHex tile, BattleSide side) const
|
|
{
|
|
//at(otherHex) != EAccessibility::ACCESSIBLE && (at(otherHex) != EAccessibility::GATE || side != BattleSide::DEFENDER)
|
|
if(at(tile) != EAccessibility::ACCESSIBLE)
|
|
if(at(tile) != EAccessibility::GATE || side != BattleSide::DEFENDER)
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
bool AccessibilityInfo::accessible(BattleHex tile, const battle::Unit * stack) const
|
|
{
|
|
return accessible(tile, stack->doubleWide(), stack->unitSide());
|
|
}
|
|
|
|
bool AccessibilityInfo::accessible(BattleHex tile, bool doubleWide, BattleSide side) const
|
|
{
|
|
// All hexes that stack would cover if standing on tile have to be accessible.
|
|
//do not use getHexes for speed reasons
|
|
if(!tile.isValid())
|
|
return false;
|
|
if(!tileAccessibleWithGate(tile, side))
|
|
return false;
|
|
|
|
if(doubleWide)
|
|
{
|
|
auto otherHex = battle::Unit::occupiedHex(tile, doubleWide, side);
|
|
if(!otherHex.isValid())
|
|
return false;
|
|
if(!tileAccessibleWithGate(otherHex, side))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
VCMI_LIB_NAMESPACE_END
|