1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * ReachabilityInfo.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 "ReachabilityInfo.h"
- #include "../CStack.h"
- ReachabilityInfo::Parameters::Parameters()
- {
- stack = nullptr;
- perspective = BattlePerspective::ALL_KNOWING;
- side = 0;
- doubleWide = flying = false;
- }
- ReachabilityInfo::Parameters::Parameters(const CStack * Stack)
- {
- stack = Stack;
- perspective = (BattlePerspective::BattlePerspective)(Stack->side);
- startPosition = Stack->position;
- doubleWide = stack->doubleWide();
- side = stack->side;
- flying = stack->hasBonusOfType(Bonus::FLYING);
- knownAccessible = stack->getHexes();
- }
- ReachabilityInfo::ReachabilityInfo()
- {
- distances.fill(INFINITE_DIST);
- predecessors.fill(BattleHex::INVALID);
- }
- bool ReachabilityInfo::isReachable(BattleHex hex) const
- {
- return distances[hex] < INFINITE_DIST;
- }
|