mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
a1a5bc28c2
Mixed line endings cause problems when exporting patches with git-format-patch and then trying to "git am" a patch with mixed and non-matching line endings. In such a situation git will fail to apply the patch. This commit runs the dos2unix tools on the remaining files with CRLF (\r\n) line endings to convert them to line-feeds (\n) only. Files that are Windows specific like *.vcxproj and *.props files were not converted. Closes: #3073
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, ui8 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, ui8 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
|