2017-07-13 10:26:03 +02:00
/*
* CPathfinder . 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
*
*/
2015-10-27 02:34:47 +02:00
# include "StdInc.h"
# include "CPathfinder.h"
# include "CHeroHandler.h"
# include "mapping/CMap.h"
2015-10-27 16:42:31 +02:00
# include "CGameState.h"
# include "mapObjects/CGHeroInstance.h"
2015-10-27 02:34:47 +02:00
# include "GameConstants.h"
# include "CStopWatch.h"
2015-11-20 23:32:23 +02:00
# include "CConfigHandler.h"
2015-12-02 21:39:53 +02:00
# include "../lib/CPlayerState.h"
2015-10-27 02:34:47 +02:00
CPathfinder : : PathfinderOptions : : PathfinderOptions ( )
{
2015-11-20 23:32:23 +02:00
useFlying = settings [ " pathfinder " ] [ " layers " ] [ " flying " ] . Bool ( ) ;
useWaterWalking = settings [ " pathfinder " ] [ " layers " ] [ " waterWalking " ] . Bool ( ) ;
useEmbarkAndDisembark = settings [ " pathfinder " ] [ " layers " ] [ " sailing " ] . Bool ( ) ;
useTeleportTwoWay = settings [ " pathfinder " ] [ " teleports " ] [ " twoWay " ] . Bool ( ) ;
useTeleportOneWay = settings [ " pathfinder " ] [ " teleports " ] [ " oneWay " ] . Bool ( ) ;
useTeleportOneWayRandom = settings [ " pathfinder " ] [ " teleports " ] [ " oneWayRandom " ] . Bool ( ) ;
useTeleportWhirlpool = settings [ " pathfinder " ] [ " teleports " ] [ " whirlpool " ] . Bool ( ) ;
2015-11-04 14:05:22 +02:00
2015-11-20 23:32:23 +02:00
useCastleGate = settings [ " pathfinder " ] [ " teleports " ] [ " castleGate " ] . Bool ( ) ;
2015-11-08 09:06:24 +02:00
2015-11-20 23:32:23 +02:00
lightweightFlyingMode = settings [ " pathfinder " ] [ " lightweightFlyingMode " ] . Bool ( ) ;
oneTurnSpecialLayersLimit = settings [ " pathfinder " ] [ " oneTurnSpecialLayersLimit " ] . Bool ( ) ;
originalMovementRules = settings [ " pathfinder " ] [ " originalMovementRules " ] . Bool ( ) ;
2015-10-27 02:34:47 +02:00
}
2015-11-11 21:08:15 +02:00
CPathfinder : : CPathfinder ( CPathsInfo & _out , CGameState * _gs , const CGHeroInstance * _hero )
2015-11-28 19:34:50 +02:00
: CGameInfoCallback ( _gs , boost : : optional < PlayerColor > ( ) ) , out ( _out ) , hero ( _hero ) , FoW ( getPlayerTeam ( hero - > tempOwner ) - > fogOfWarMap ) , patrolTiles ( { } )
2015-10-27 02:34:47 +02:00
{
assert ( hero ) ;
assert ( hero = = getHero ( hero - > id ) ) ;
2016-11-27 21:07:01 +02:00
cp = dp = nullptr ;
ct = dt = nullptr ;
ctObj = dtObj = nullptr ;
destAction = CGPathNode : : UNKNOWN ;
2015-10-27 02:34:47 +02:00
out . hero = hero ;
out . hpos = hero - > getPosition ( false ) ;
2015-11-16 20:22:11 +02:00
if ( ! isInTheMap ( out . hpos ) /* || !gs->map->isInTheMap(dest)*/ ) //check input
2015-10-27 02:34:47 +02:00
{
2017-08-10 18:39:27 +02:00
logGlobal - > error ( " CGameState::calculatePaths: Hero outside the gs->map? How dare you... " ) ;
2015-10-27 02:34:47 +02:00
throw std : : runtime_error ( " Wrong checksum " ) ;
}
2015-11-16 17:43:02 +02:00
hlp = make_unique < CPathfinderHelper > ( hero , options ) ;
2015-10-27 02:34:47 +02:00
2015-11-28 19:34:50 +02:00
initializePatrol ( ) ;
2015-11-03 00:29:43 +02:00
initializeGraph ( ) ;
2015-11-22 06:32:33 +02:00
neighbourTiles . reserve ( 8 ) ;
2015-10-27 02:34:47 +02:00
neighbours . reserve ( 16 ) ;
}
void CPathfinder : : calculatePaths ( )
{
2015-11-23 13:11:08 +02:00
auto passOneTurnLimitCheck = [ & ] ( ) - > bool
2015-11-08 06:44:00 +02:00
{
2015-11-23 13:11:08 +02:00
if ( ! options . oneTurnSpecialLayersLimit )
return true ;
if ( cp - > layer = = ELayer : : WATER )
return false ;
if ( cp - > layer = = ELayer : : AIR )
2015-11-08 06:44:00 +02:00
{
2015-11-23 13:11:08 +02:00
if ( options . originalMovementRules & & cp - > accessible = = CGPathNode : : ACCESSIBLE )
return true ;
else
2015-11-08 06:44:00 +02:00
return false ;
}
2015-11-23 13:11:08 +02:00
2015-11-08 06:44:00 +02:00
return true ;
} ;
2015-10-27 02:34:47 +02:00
auto isBetterWay = [ & ] ( int remains , int turn ) - > bool
{
if ( dp - > turns = = 0xff ) //we haven't been here before
return true ;
else if ( dp - > turns > turn )
return true ;
2015-11-11 21:08:15 +02:00
else if ( dp - > turns > = turn & & dp - > moveRemains < remains ) //this route is faster
2015-10-27 02:34:47 +02:00
return true ;
return false ;
} ;
2017-08-10 20:59:55 +02:00
//logGlobal->info("Calculating paths for hero %s (adress %d) of player %d", hero->name, hero , hero->tempOwner);
2015-10-27 02:34:47 +02:00
//initial tile - set cost on 0 and add to the queue
2015-11-11 21:08:15 +02:00
CGPathNode * initialNode = out . getNode ( out . hpos , hero - > boat ? ELayer : : SAIL : ELayer : : LAND ) ;
2015-11-03 00:29:43 +02:00
initialNode - > turns = 0 ;
initialNode - > moveRemains = hero - > movement ;
2015-11-28 19:34:50 +02:00
if ( isHeroPatrolLocked ( ) )
return ;
2015-10-27 02:34:47 +02:00
2015-11-28 19:34:50 +02:00
pq . push ( initialNode ) ;
2015-11-07 20:11:07 +02:00
while ( ! pq . empty ( ) )
2015-10-27 02:34:47 +02:00
{
2015-11-07 20:11:07 +02:00
cp = pq . top ( ) ;
pq . pop ( ) ;
cp - > locked = true ;
2015-10-27 02:34:47 +02:00
int movement = cp - > moveRemains , turn = cp - > turns ;
2015-11-10 13:26:45 +02:00
hlp - > updateTurnInfo ( turn ) ;
2015-10-27 02:34:47 +02:00
if ( ! movement )
{
2015-11-10 13:26:45 +02:00
hlp - > updateTurnInfo ( + + turn ) ;
2015-11-12 13:04:33 +02:00
movement = hlp - > getMaxMovePoints ( cp - > layer ) ;
2015-11-23 13:11:08 +02:00
if ( ! passOneTurnLimitCheck ( ) )
2015-11-22 05:23:54 +02:00
continue ;
2015-10-27 02:34:47 +02:00
}
2015-11-22 05:23:54 +02:00
ct = & gs - > map - > getTile ( cp - > coord ) ;
ctObj = ct - > topVisitableObj ( isSourceInitialPosition ( ) ) ;
2015-10-27 02:34:47 +02:00
//add accessible neighbouring nodes to the queue
2015-11-16 18:36:15 +02:00
addNeighbours ( ) ;
2015-10-27 02:34:47 +02:00
for ( auto & neighbour : neighbours )
{
2015-11-28 19:34:50 +02:00
if ( ! isPatrolMovementAllowed ( neighbour ) )
continue ;
2015-11-21 13:31:30 +02:00
dt = & gs - > map - > getTile ( neighbour ) ;
2015-11-16 16:41:23 +02:00
dtObj = dt - > topVisitableObj ( ) ;
2015-11-08 07:27:51 +02:00
for ( ELayer i = ELayer : : LAND ; i < = ELayer : : AIR ; i . advance ( 1 ) )
2015-10-27 02:34:47 +02:00
{
2015-11-22 05:16:16 +02:00
if ( ! hlp - > isLayerAvailable ( i ) )
continue ;
2016-02-26 20:43:43 +02:00
/// Check transition without tile accessability rules
2015-11-22 05:16:16 +02:00
if ( cp - > layer ! = i & & ! isLayerTransitionPossible ( i ) )
continue ;
2015-11-02 15:03:03 +02:00
dp = out . getNode ( neighbour , i ) ;
2015-11-07 20:11:07 +02:00
if ( dp - > locked )
continue ;
2015-11-22 05:23:54 +02:00
if ( dp - > accessible = = CGPathNode : : NOT_SET )
2015-11-08 06:44:00 +02:00
continue ;
2016-02-26 20:43:43 +02:00
/// Check transition using tile accessability rules
2015-11-03 02:25:12 +02:00
if ( cp - > layer ! = i & & ! isLayerTransitionPossible ( ) )
2015-11-02 15:03:03 +02:00
continue ;
2015-11-04 10:47:43 +02:00
if ( ! isMovementToDestPossible ( ) )
2015-11-02 15:03:03 +02:00
continue ;
2015-11-03 02:25:12 +02:00
2015-11-11 18:51:08 +02:00
destAction = getDestAction ( ) ;
2015-12-15 18:13:55 +02:00
int turnAtNextTile = turn , moveAtNextTile = movement ;
int cost = CPathfinderHelper : : getMovementCost ( hero , cp - > coord , dp - > coord , ct , dt , moveAtNextTile , hlp - > getTurnInfo ( ) ) ;
int remains = moveAtNextTile - cost ;
2015-11-02 15:03:03 +02:00
if ( remains < 0 )
{
//occurs rarely, when hero with low movepoints tries to leave the road
2015-11-10 13:26:45 +02:00
hlp - > updateTurnInfo ( + + turnAtNextTile ) ;
2015-12-15 18:13:55 +02:00
moveAtNextTile = hlp - > getMaxMovePoints ( i ) ;
2015-11-21 13:31:30 +02:00
cost = CPathfinderHelper : : getMovementCost ( hero , cp - > coord , dp - > coord , ct , dt , moveAtNextTile , hlp - > getTurnInfo ( ) ) ; //cost must be updated, movement points changed :(
2015-11-02 15:03:03 +02:00
remains = moveAtNextTile - cost ;
}
2015-12-15 18:13:55 +02:00
if ( destAction = = CGPathNode : : EMBARK | | destAction = = CGPathNode : : DISEMBARK )
{
/// FREE_SHIP_BOARDING bonus only remove additional penalty
/// land <-> sail transition still cost movement points as normal movement
remains = hero - > movementPointsAfterEmbark ( moveAtNextTile , cost , destAction - 1 , hlp - > getTurnInfo ( ) ) ;
cost = moveAtNextTile - remains ;
}
2015-10-27 02:34:47 +02:00
2015-11-23 13:11:08 +02:00
if ( isBetterWay ( remains , turnAtNextTile ) & &
( ( cp - > turns = = turnAtNextTile & & remains ) | | passOneTurnLimitCheck ( ) ) )
2015-11-02 15:03:03 +02:00
{
assert ( dp ! = cp - > theNodeBefore ) ; //two tiles can't point to each other
dp - > moveRemains = remains ;
dp - > turns = turnAtNextTile ;
dp - > theNodeBefore = cp ;
2015-11-07 23:26:41 +02:00
dp - > action = destAction ;
2015-10-27 02:34:47 +02:00
2015-11-04 10:47:43 +02:00
if ( isMovementAfterDestPossible ( ) )
2015-11-07 20:11:07 +02:00
pq . push ( dp ) ;
2015-11-02 15:03:03 +02:00
}
2015-10-27 02:34:47 +02:00
}
} //neighbours loop
//just add all passable teleport exits
2015-11-16 16:36:58 +02:00
addTeleportExits ( ) ;
for ( auto & neighbour : neighbours )
2015-10-27 02:34:47 +02:00
{
2015-11-16 16:36:58 +02:00
dp = out . getNode ( neighbour , cp - > layer ) ;
if ( dp - > locked )
continue ;
2015-12-11 03:00:10 +02:00
/// TODO: We may consider use invisible exits on FoW border in future
/// Useful for AI when at least one tile around exit is visible and passable
/// Objects are usually visible on FoW border anyway so it's not cheating.
///
/// For now it's disabled as it's will cause crashes in movement code.
if ( dp - > accessible = = CGPathNode : : BLOCKED )
continue ;
2015-11-07 20:11:07 +02:00
2015-11-16 16:36:58 +02:00
if ( isBetterWay ( movement , turn ) )
{
2015-12-11 08:42:30 +02:00
dtObj = gs - > map - > getTile ( neighbour ) . topVisitableObj ( ) ;
2015-11-16 16:36:58 +02:00
dp - > moveRemains = movement ;
dp - > turns = turn ;
dp - > theNodeBefore = cp ;
2015-12-11 08:42:30 +02:00
dp - > action = getTeleportDestAction ( ) ;
if ( dp - > action = = CGPathNode : : TELEPORT_NORMAL )
2015-12-10 15:51:19 +02:00
pq . push ( dp ) ;
2015-10-27 02:34:47 +02:00
}
}
} //queue loop
}
2015-11-16 18:36:15 +02:00
void CPathfinder : : addNeighbours ( )
2015-10-27 02:34:47 +02:00
{
neighbours . clear ( ) ;
2015-11-22 06:32:33 +02:00
neighbourTiles . clear ( ) ;
CPathfinderHelper : : getNeighbours ( gs - > map , * ct , cp - > coord , neighbourTiles , boost : : logic : : indeterminate , cp - > layer = = ELayer : : SAIL ) ;
2015-11-16 16:36:58 +02:00
if ( isSourceVisitableObj ( ) )
2015-10-27 02:34:47 +02:00
{
2015-11-22 06:32:33 +02:00
for ( int3 tile : neighbourTiles )
2015-10-27 02:34:47 +02:00
{
2015-11-16 16:41:23 +02:00
if ( canMoveBetween ( tile , ctObj - > visitablePos ( ) ) )
2015-11-16 16:36:58 +02:00
neighbours . push_back ( tile ) ;
2015-10-27 02:34:47 +02:00
}
}
else
2015-11-22 06:32:33 +02:00
vstd : : concatenate ( neighbours , neighbourTiles ) ;
2015-10-27 02:34:47 +02:00
}
2015-11-16 18:14:18 +02:00
void CPathfinder : : addTeleportExits ( )
2015-10-27 02:34:47 +02:00
{
neighbours . clear ( ) ;
2015-11-28 19:34:50 +02:00
/// For now we disable teleports usage for patrol movement
/// VCAI not aware about patrol and may stuck while attempt to use teleport
if ( ! isSourceVisitableObj ( ) | | patrolState = = PATROL_RADIUS )
2015-11-16 16:36:58 +02:00
return ;
2015-11-16 18:14:18 +02:00
const CGTeleport * objTeleport = dynamic_cast < const CGTeleport * > ( ctObj ) ;
if ( isAllowedTeleportEntrance ( objTeleport ) )
2015-10-27 02:34:47 +02:00
{
2015-11-16 20:22:11 +02:00
for ( auto objId : getTeleportChannelExits ( objTeleport - > channel , hero - > tempOwner ) )
2015-10-27 02:34:47 +02:00
{
auto obj = getObj ( objId ) ;
2015-11-12 00:16:06 +02:00
if ( dynamic_cast < const CGWhirlpool * > ( obj ) )
{
auto pos = obj - > getBlockedPos ( ) ;
for ( auto p : pos )
{
2015-11-21 13:31:30 +02:00
if ( gs - > map - > getTile ( p ) . topVisitableId ( ) = = obj - > ID )
2015-11-12 00:16:06 +02:00
neighbours . push_back ( p ) ;
}
}
else if ( CGTeleport : : isExitPassable ( gs , hero , obj ) )
2015-10-27 02:34:47 +02:00
neighbours . push_back ( obj - > visitablePos ( ) ) ;
}
}
2015-11-08 09:06:24 +02:00
if ( options . useCastleGate
2015-11-16 16:41:23 +02:00
& & ( ctObj - > ID = = Obj : : TOWN & & ctObj - > subID = = ETownType : : INFERNO
& & getPlayerRelations ( hero - > tempOwner , ctObj - > tempOwner ) ! = PlayerRelations : : ENEMIES ) )
2015-11-08 09:06:24 +02:00
{
/// TODO: Find way to reuse CPlayerSpecificInfoCallback::getTownsInfo
/// This may be handy if we allow to use teleportation to friendly towns
2015-11-16 20:22:11 +02:00
auto towns = getPlayer ( hero - > tempOwner ) - > towns ;
2015-11-08 09:06:24 +02:00
for ( const auto & town : towns )
{
2015-11-16 16:41:23 +02:00
if ( town - > id ! = ctObj - > id & & town - > visitingHero = = nullptr
2015-11-08 09:06:24 +02:00
& & town - > hasBuilt ( BuildingID : : CASTLE_GATE , ETownType : : INFERNO ) )
{
neighbours . push_back ( town - > visitablePos ( ) ) ;
}
}
}
2015-10-27 02:34:47 +02:00
}
2015-11-28 19:34:50 +02:00
bool CPathfinder : : isHeroPatrolLocked ( ) const
{
return patrolState = = PATROL_LOCKED ;
}
bool CPathfinder : : isPatrolMovementAllowed ( const int3 & dst ) const
{
if ( patrolState = = PATROL_RADIUS )
{
if ( ! vstd : : contains ( patrolTiles , dst ) )
return false ;
}
return true ;
}
2015-11-22 05:16:16 +02:00
bool CPathfinder : : isLayerTransitionPossible ( const ELayer destLayer ) const
2015-11-04 11:29:51 +02:00
{
2015-11-10 18:15:59 +02:00
/// No layer transition allowed when previous node action is BATTLE
if ( cp - > action = = CGPathNode : : BATTLE )
return false ;
2015-11-11 21:08:15 +02:00
switch ( cp - > layer )
2015-11-10 18:15:59 +02:00
{
2015-11-11 21:08:15 +02:00
case ELayer : : LAND :
2016-02-26 20:43:43 +02:00
if ( destLayer = = ELayer : : AIR )
{
if ( ! options . lightweightFlyingMode | | isSourceInitialPosition ( ) )
return true ;
}
else if ( destLayer = = ELayer : : SAIL )
{
if ( dt - > isWater ( ) )
return true ;
}
else
2015-11-22 05:16:16 +02:00
return true ;
break ;
case ELayer : : SAIL :
2016-02-26 20:43:43 +02:00
if ( destLayer = = ELayer : : LAND & & ! dt - > isWater ( ) )
2015-11-22 05:16:16 +02:00
return true ;
break ;
case ELayer : : AIR :
if ( destLayer = = ELayer : : LAND )
return true ;
break ;
case ELayer : : WATER :
if ( destLayer = = ELayer : : LAND )
return true ;
break ;
}
return false ;
}
bool CPathfinder : : isLayerTransitionPossible ( ) const
{
switch ( cp - > layer )
{
case ELayer : : LAND :
if ( dp - > layer = = ELayer : : SAIL )
2015-11-11 21:08:15 +02:00
{
/// Cannot enter empty water tile from land -> it has to be visitable
if ( dp - > accessible = = CGPathNode : : ACCESSIBLE )
return false ;
}
break ;
case ELayer : : SAIL :
//tile must be accessible -> exception: unblocked blockvis tiles -> clear but guarded by nearby monster coast
if ( ( dp - > accessible ! = CGPathNode : : ACCESSIBLE & & ( dp - > accessible ! = CGPathNode : : BLOCKVIS | | dt - > blocked ) )
| | dt - > visitable ) //TODO: passableness problem -> town says it's passable (thus accessible) but we obviously can't disembark onto town gate
{
return false ;
}
2015-11-11 21:29:20 +02:00
2015-11-11 21:08:15 +02:00
break ;
case ELayer : : AIR :
2015-11-10 20:07:27 +02:00
if ( options . originalMovementRules )
2015-11-10 18:15:59 +02:00
{
2015-11-11 21:08:15 +02:00
if ( ( cp - > accessible ! = CGPathNode : : ACCESSIBLE & &
2015-11-10 20:07:27 +02:00
cp - > accessible ! = CGPathNode : : VISITABLE ) & &
( dp - > accessible ! = CGPathNode : : VISITABLE & &
dp - > accessible ! = CGPathNode : : ACCESSIBLE ) )
{
return false ;
}
}
else if ( cp - > accessible ! = CGPathNode : : ACCESSIBLE & & dp - > accessible ! = CGPathNode : : ACCESSIBLE )
{
/// Hero that fly can only land on accessible tiles
2015-11-10 18:15:59 +02:00
return false ;
}
2015-11-04 11:29:51 +02:00
2015-12-16 19:14:36 +02:00
break ;
case ELayer : : WATER :
if ( dp - > accessible ! = CGPathNode : : ACCESSIBLE & & dp - > accessible ! = CGPathNode : : VISITABLE )
{
/// Hero that walking on water can transit to accessible and visitable tiles
/// Though hero can't interact with blocking visit objects while standing on water
return false ;
}
2015-11-11 21:08:15 +02:00
break ;
2015-11-04 11:29:51 +02:00
}
2015-11-11 21:08:15 +02:00
2015-11-04 11:29:51 +02:00
return true ;
}
2015-11-11 18:51:08 +02:00
bool CPathfinder : : isMovementToDestPossible ( ) const
2015-10-27 02:34:47 +02:00
{
2015-11-17 02:59:02 +02:00
if ( dp - > accessible = = CGPathNode : : BLOCKED )
return false ;
2015-11-05 14:04:56 +02:00
switch ( dp - > layer )
2015-10-27 02:34:47 +02:00
{
2015-11-11 21:08:15 +02:00
case ELayer : : LAND :
2015-11-17 02:59:02 +02:00
if ( ! canMoveBetween ( cp - > coord , dp - > coord ) )
2015-11-11 21:08:15 +02:00
return false ;
if ( isSourceGuarded ( ) )
{
if ( ! ( options . originalMovementRules & & cp - > layer = = ELayer : : AIR ) & &
! isDestinationGuardian ( ) ) // Can step into tile of guard
2015-11-10 20:07:27 +02:00
{
2015-10-27 02:34:47 +02:00
return false ;
2015-11-11 21:08:15 +02:00
}
}
2015-10-27 02:34:47 +02:00
2015-11-11 21:08:15 +02:00
break ;
2015-11-07 23:26:41 +02:00
2015-11-11 21:08:15 +02:00
case ELayer : : SAIL :
2015-11-17 02:59:02 +02:00
if ( ! canMoveBetween ( cp - > coord , dp - > coord ) )
2015-11-11 21:08:15 +02:00
return false ;
2015-11-11 21:29:20 +02:00
if ( isSourceGuarded ( ) )
{
// Hero embarked a boat standing on a guarded tile -> we must allow to move away from that tile
if ( cp - > action ! = CGPathNode : : EMBARK & & ! isDestinationGuardian ( ) )
return false ;
}
2015-10-27 02:34:47 +02:00
2015-11-11 21:08:15 +02:00
if ( cp - > layer = = ELayer : : LAND )
{
2015-11-17 06:09:01 +02:00
if ( ! isDestVisitableObj ( ) )
2015-11-02 15:03:03 +02:00
return false ;
2015-11-11 21:08:15 +02:00
2015-11-16 16:41:23 +02:00
if ( dtObj - > ID ! = Obj : : BOAT & & dtObj - > ID ! = Obj : : HERO )
2015-11-02 15:03:03 +02:00
return false ;
2015-11-11 21:08:15 +02:00
}
2015-11-17 06:09:01 +02:00
else if ( isDestVisitableObj ( ) & & dtObj - > ID = = Obj : : BOAT )
2015-11-13 09:28:44 +02:00
{
/// Hero in boat can't visit empty boats
return false ;
}
2015-11-11 21:29:20 +02:00
2015-11-11 21:08:15 +02:00
break ;
2015-11-02 15:03:03 +02:00
2015-11-11 21:08:15 +02:00
case ELayer : : WATER :
if ( ! canMoveBetween ( cp - > coord , dp - > coord ) | | dp - > accessible ! = CGPathNode : : ACCESSIBLE )
return false ;
if ( isDestinationGuarded ( ) )
return false ;
break ;
2015-10-27 02:34:47 +02:00
}
return true ;
}
2015-11-08 07:39:00 +02:00
bool CPathfinder : : isMovementAfterDestPossible ( ) const
2015-10-27 02:34:47 +02:00
{
2015-11-08 03:41:06 +02:00
switch ( destAction )
2015-11-04 10:53:52 +02:00
{
2015-11-08 03:41:06 +02:00
/// TODO: Investigate what kind of limitation is possible to apply on movement from visitable tiles
/// Likely in many cases we don't need to add visitable tile to queue when hero don't fly
case CGPathNode : : VISIT :
2015-11-16 18:14:18 +02:00
{
2015-11-10 18:15:59 +02:00
/// For now we only add visitable tile into queue when it's teleporter that allow transit
/// Movement from visitable tile when hero is standing on it is possible into any layer
2015-11-16 18:14:18 +02:00
const CGTeleport * objTeleport = dynamic_cast < const CGTeleport * > ( dtObj ) ;
if ( isAllowedTeleportEntrance ( objTeleport ) )
2015-11-08 03:41:06 +02:00
{
/// For now we'll always allow transit over teleporters
/// Transit over whirlpools only allowed when hero protected
2015-11-16 18:14:18 +02:00
return true ;
2015-11-08 03:41:06 +02:00
}
2015-12-14 13:33:50 +02:00
else if ( dtObj - > ID = = Obj : : GARRISON | | dtObj - > ID = = Obj : : GARRISON2 | | dtObj - > ID = = Obj : : BORDER_GATE )
2015-11-17 23:07:25 +02:00
{
/// Transit via unguarded garrisons is always possible
return true ;
}
2015-11-11 21:08:15 +02:00
break ;
2015-11-16 18:14:18 +02:00
}
2015-11-11 21:08:15 +02:00
2015-11-08 03:41:06 +02:00
case CGPathNode : : NORMAL :
return true ;
2015-11-04 10:53:52 +02:00
2015-11-08 03:41:06 +02:00
case CGPathNode : : EMBARK :
if ( options . useEmbarkAndDisembark )
return true ;
2015-11-04 10:53:52 +02:00
2015-11-11 21:08:15 +02:00
break ;
2015-11-08 03:41:06 +02:00
case CGPathNode : : DISEMBARK :
if ( options . useEmbarkAndDisembark & & ! isDestinationGuarded ( ) )
return true ;
2015-11-10 18:15:59 +02:00
2015-11-11 21:08:15 +02:00
break ;
2015-11-10 18:15:59 +02:00
case CGPathNode : : BATTLE :
2015-11-13 22:07:56 +02:00
/// Movement after BATTLE action only possible from guarded tile to guardian tile
if ( isDestinationGuarded ( ) )
2015-11-10 18:15:59 +02:00
return true ;
2015-11-11 21:08:15 +02:00
break ;
2015-11-04 10:53:52 +02:00
}
2015-10-27 02:34:47 +02:00
return false ;
}
2015-11-11 18:51:08 +02:00
CGPathNode : : ENodeAction CPathfinder : : getDestAction ( ) const
{
CGPathNode : : ENodeAction action = CGPathNode : : NORMAL ;
switch ( dp - > layer )
{
case ELayer : : LAND :
if ( cp - > layer = = ELayer : : SAIL )
{
// TODO: Handle dismebark into guarded areaa
action = CGPathNode : : DISEMBARK ;
break ;
}
2015-11-16 22:07:36 +02:00
/// don't break - next case shared for both land and sail layers
2018-02-09 12:02:44 +02:00
FALLTHROUGH
2015-11-16 22:07:36 +02:00
2015-11-11 18:51:08 +02:00
case ELayer : : SAIL :
2015-11-17 06:09:01 +02:00
if ( isDestVisitableObj ( ) )
2015-11-11 18:51:08 +02:00
{
2015-11-16 16:41:23 +02:00
auto objRel = getPlayerRelations ( dtObj - > tempOwner , hero - > tempOwner ) ;
2015-11-11 18:51:08 +02:00
2015-11-16 16:41:23 +02:00
if ( dtObj - > ID = = Obj : : BOAT )
2015-11-11 18:51:08 +02:00
action = CGPathNode : : EMBARK ;
2015-11-16 16:41:23 +02:00
else if ( dtObj - > ID = = Obj : : HERO )
2015-11-11 18:51:08 +02:00
{
if ( objRel = = PlayerRelations : : ENEMIES )
action = CGPathNode : : BATTLE ;
else
action = CGPathNode : : BLOCKING_VISIT ;
}
2015-12-14 13:33:50 +02:00
else if ( dtObj - > ID = = Obj : : TOWN )
2015-11-11 18:51:08 +02:00
{
2015-12-14 13:33:50 +02:00
if ( dtObj - > passableFor ( hero - > tempOwner ) )
action = CGPathNode : : VISIT ;
else if ( objRel = = PlayerRelations : : ENEMIES )
2015-11-11 18:51:08 +02:00
action = CGPathNode : : BATTLE ;
}
2015-11-16 16:41:23 +02:00
else if ( dtObj - > ID = = Obj : : GARRISON | | dtObj - > ID = = Obj : : GARRISON2 )
2015-11-11 18:51:08 +02:00
{
2015-12-14 13:33:50 +02:00
if ( dtObj - > passableFor ( hero - > tempOwner ) )
{
if ( isDestinationGuarded ( true ) )
action = CGPathNode : : BATTLE ;
}
else if ( objRel = = PlayerRelations : : ENEMIES )
2015-11-11 18:51:08 +02:00
action = CGPathNode : : BATTLE ;
}
2015-12-14 13:33:50 +02:00
else if ( dtObj - > ID = = Obj : : BORDER_GATE )
{
if ( dtObj - > passableFor ( hero - > tempOwner ) )
{
if ( isDestinationGuarded ( true ) )
action = CGPathNode : : BATTLE ;
}
else
action = CGPathNode : : BLOCKING_VISIT ;
}
2015-11-11 18:51:08 +02:00
else if ( isDestinationGuardian ( ) )
action = CGPathNode : : BATTLE ;
2015-11-17 01:41:31 +02:00
else if ( dtObj - > blockVisit & & ! ( options . useCastleGate & & dtObj - > ID = = Obj : : TOWN ) )
2015-11-11 18:51:08 +02:00
action = CGPathNode : : BLOCKING_VISIT ;
if ( action = = CGPathNode : : NORMAL )
{
if ( options . originalMovementRules & & isDestinationGuarded ( ) )
action = CGPathNode : : BATTLE ;
else
action = CGPathNode : : VISIT ;
}
}
else if ( isDestinationGuarded ( ) )
action = CGPathNode : : BATTLE ;
break ;
}
return action ;
}
2015-12-11 08:42:30 +02:00
CGPathNode : : ENodeAction CPathfinder : : getTeleportDestAction ( ) const
{
CGPathNode : : ENodeAction action = CGPathNode : : TELEPORT_NORMAL ;
if ( isDestVisitableObj ( ) & & dtObj - > ID = = Obj : : HERO )
{
auto objRel = getPlayerRelations ( dtObj - > tempOwner , hero - > tempOwner ) ;
if ( objRel = = PlayerRelations : : ENEMIES )
action = CGPathNode : : TELEPORT_BATTLE ;
else
action = CGPathNode : : TELEPORT_BLOCKING_VISIT ;
}
return action ;
}
2015-11-08 07:39:00 +02:00
bool CPathfinder : : isSourceInitialPosition ( ) const
2015-11-04 14:38:15 +02:00
{
return cp - > coord = = out . hpos ;
}
2015-11-16 16:36:58 +02:00
bool CPathfinder : : isSourceVisitableObj ( ) const
{
2015-11-17 06:09:01 +02:00
return isVisitableObj ( ctObj , cp - > layer ) ;
2015-11-16 16:36:58 +02:00
}
2015-11-08 07:39:00 +02:00
bool CPathfinder : : isSourceGuarded ( ) const
2015-10-27 02:34:47 +02:00
{
2015-11-11 21:29:20 +02:00
/// Hero can move from guarded tile if movement started on that tile
/// It's possible at least in these cases:
/// - Map start with hero on guarded tile
/// - Dimention door used
2015-11-17 06:09:01 +02:00
/// TODO: check what happen when there is several guards
2015-11-21 13:31:30 +02:00
if ( gs - > guardingCreaturePosition ( cp - > coord ) . valid ( ) & & ! isSourceInitialPosition ( ) )
2015-10-27 02:34:47 +02:00
{
2015-11-11 21:29:20 +02:00
return true ;
2015-10-27 02:34:47 +02:00
}
return false ;
}
2015-11-17 06:09:01 +02:00
bool CPathfinder : : isDestVisitableObj ( ) const
{
return isVisitableObj ( dtObj , dp - > layer ) ;
}
2015-11-08 07:39:00 +02:00
bool CPathfinder : : isDestinationGuarded ( const bool ignoreAccessibility ) const
2015-10-27 02:34:47 +02:00
{
2015-11-16 22:07:36 +02:00
/// isDestinationGuarded is exception needed for garrisons.
/// When monster standing behind garrison it's visitable and guarded at the same time.
2015-11-21 13:31:30 +02:00
if ( gs - > guardingCreaturePosition ( dp - > coord ) . valid ( )
2015-11-08 02:10:48 +02:00
& & ( ignoreAccessibility | | dp - > accessible = = CGPathNode : : BLOCKVIS ) )
2015-10-27 02:34:47 +02:00
{
return true ;
}
return false ;
}
2015-11-08 07:39:00 +02:00
bool CPathfinder : : isDestinationGuardian ( ) const
2015-10-27 02:34:47 +02:00
{
2015-11-21 13:31:30 +02:00
return gs - > guardingCreaturePosition ( cp - > coord ) = = dp - > coord ;
2015-10-27 02:34:47 +02:00
}
2015-11-28 19:34:50 +02:00
void CPathfinder : : initializePatrol ( )
{
auto state = PATROL_NONE ;
if ( hero - > patrol . patrolling & & ! getPlayer ( hero - > tempOwner ) - > human )
{
2016-01-31 17:01:58 +02:00
if ( hero - > patrol . patrolRadius )
2015-11-28 19:34:50 +02:00
{
state = PATROL_RADIUS ;
2016-02-10 17:36:56 +02:00
gs - > getTilesInRange ( patrolTiles , hero - > patrol . initialPos , hero - > patrol . patrolRadius , boost : : optional < PlayerColor > ( ) , 0 , int3 : : DIST_MANHATTAN ) ;
2015-11-28 19:34:50 +02:00
}
else
state = PATROL_LOCKED ;
}
patrolState = state ;
}
2015-10-27 02:34:47 +02:00
void CPathfinder : : initializeGraph ( )
{
2015-11-17 02:59:02 +02:00
auto updateNode = [ & ] ( int3 pos , ELayer layer , const TerrainTile * tinfo )
2015-11-02 10:06:06 +02:00
{
2015-11-03 00:29:43 +02:00
auto node = out . getNode ( pos , layer ) ;
2015-11-17 02:59:02 +02:00
auto accessibility = evaluateAccessibility ( pos , tinfo , layer ) ;
2015-11-11 23:05:20 +02:00
node - > update ( pos , layer , accessibility ) ;
2015-11-02 10:06:06 +02:00
} ;
2015-11-02 15:03:03 +02:00
int3 pos ;
2015-10-27 02:34:47 +02:00
for ( pos . x = 0 ; pos . x < out . sizes . x ; + + pos . x )
{
for ( pos . y = 0 ; pos . y < out . sizes . y ; + + pos . y )
{
for ( pos . z = 0 ; pos . z < out . sizes . z ; + + pos . z )
{
2015-11-21 13:31:30 +02:00
const TerrainTile * tinfo = & gs - > map - > getTile ( pos ) ;
2015-11-05 14:04:56 +02:00
switch ( tinfo - > terType )
2015-11-02 10:06:06 +02:00
{
2015-11-17 02:59:02 +02:00
case ETerrainType : : ROCK :
break ;
case ETerrainType : : WATER :
updateNode ( pos , ELayer : : SAIL , tinfo ) ;
if ( options . useFlying )
updateNode ( pos , ELayer : : AIR , tinfo ) ;
if ( options . useWaterWalking )
updateNode ( pos , ELayer : : WATER , tinfo ) ;
break ;
default :
updateNode ( pos , ELayer : : LAND , tinfo ) ;
if ( options . useFlying )
updateNode ( pos , ELayer : : AIR , tinfo ) ;
break ;
2015-11-02 10:06:06 +02:00
}
2015-10-27 02:34:47 +02:00
}
}
}
}
2015-11-17 02:59:02 +02:00
CGPathNode : : EAccessibility CPathfinder : : evaluateAccessibility ( const int3 & pos , const TerrainTile * tinfo , const ELayer layer ) const
2015-10-27 02:34:47 +02:00
{
2015-11-22 20:06:37 +02:00
if ( tinfo - > terType = = ETerrainType : : ROCK | | ! FoW [ pos . x ] [ pos . y ] [ pos . z ] )
2015-10-27 02:34:47 +02:00
return CGPathNode : : BLOCKED ;
2015-11-17 02:59:02 +02:00
switch ( layer )
2015-10-27 02:34:47 +02:00
{
2015-11-17 02:59:02 +02:00
case ELayer : : LAND :
case ELayer : : SAIL :
if ( tinfo - > visitable )
2015-10-27 02:34:47 +02:00
{
2015-11-17 02:59:02 +02:00
if ( tinfo - > visitableObjects . front ( ) - > ID = = Obj : : SANCTUARY & & tinfo - > visitableObjects . back ( ) - > ID = = Obj : : HERO & & tinfo - > visitableObjects . back ( ) - > tempOwner ! = hero - > tempOwner ) //non-owned hero stands on Sanctuary
2015-10-27 02:34:47 +02:00
{
2015-11-17 02:59:02 +02:00
return CGPathNode : : BLOCKED ;
}
else
{
for ( const CGObjectInstance * obj : tinfo - > visitableObjects )
2015-10-27 02:34:47 +02:00
{
2015-11-22 20:31:47 +02:00
if ( obj - > blockVisit )
2015-11-17 02:59:02 +02:00
{
2015-11-22 20:31:47 +02:00
return CGPathNode : : BLOCKVIS ;
2015-11-17 02:59:02 +02:00
}
2015-11-22 20:31:47 +02:00
else if ( obj - > passableFor ( hero - > tempOwner ) )
2015-11-17 02:59:02 +02:00
{
2015-11-22 20:31:47 +02:00
return CGPathNode : : ACCESSIBLE ;
2015-11-17 02:59:02 +02:00
}
2015-11-17 06:09:01 +02:00
else if ( canSeeObj ( obj ) )
2015-11-17 02:59:02 +02:00
{
return CGPathNode : : VISITABLE ;
}
2015-10-27 02:34:47 +02:00
}
}
}
2015-11-22 20:31:47 +02:00
else if ( tinfo - > blocked )
{
return CGPathNode : : BLOCKED ;
}
else if ( gs - > guardingCreaturePosition ( pos ) . valid ( ) )
2015-11-17 02:59:02 +02:00
{
// Monster close by; blocked visit for battle
return CGPathNode : : BLOCKVIS ;
}
break ;
case ELayer : : WATER :
if ( tinfo - > blocked | | tinfo - > terType ! = ETerrainType : : WATER )
return CGPathNode : : BLOCKED ;
break ;
case ELayer : : AIR :
if ( tinfo - > blocked | | tinfo - > terType = = ETerrainType : : WATER )
return CGPathNode : : FLYABLE ;
break ;
2015-10-27 02:34:47 +02:00
}
2015-11-17 02:59:02 +02:00
return CGPathNode : : ACCESSIBLE ;
2015-10-27 02:34:47 +02:00
}
2015-11-17 06:09:01 +02:00
bool CPathfinder : : isVisitableObj ( const CGObjectInstance * obj , const ELayer layer ) const
{
/// Hero can't visit objects while walking on water or flying
return canSeeObj ( obj ) & & ( layer = = ELayer : : LAND | | layer = = ELayer : : SAIL ) ;
}
bool CPathfinder : : canSeeObj ( const CGObjectInstance * obj ) const
{
/// Pathfinder should ignore placed events
return obj ! = nullptr & & obj - > ID ! = Obj : : EVENT ;
}
2015-11-11 21:08:15 +02:00
bool CPathfinder : : canMoveBetween ( const int3 & a , const int3 & b ) const
2015-10-27 02:34:47 +02:00
{
return gs - > checkForVisitableDir ( a , b ) ;
}
2015-11-16 18:14:18 +02:00
bool CPathfinder : : isAllowedTeleportEntrance ( const CGTeleport * obj ) const
{
2015-11-16 20:22:11 +02:00
if ( ! obj | | ! isTeleportEntrancePassable ( obj , hero - > tempOwner ) )
2015-11-16 18:14:18 +02:00
return false ;
auto whirlpool = dynamic_cast < const CGWhirlpool * > ( obj ) ;
if ( whirlpool )
{
if ( addTeleportWhirlpool ( whirlpool ) )
return true ;
}
else if ( addTeleportTwoWay ( obj ) | | addTeleportOneWay ( obj ) | | addTeleportOneWayRandom ( obj ) )
return true ;
return false ;
}
2015-10-27 02:34:47 +02:00
bool CPathfinder : : addTeleportTwoWay ( const CGTeleport * obj ) const
{
2015-11-16 20:22:11 +02:00
return options . useTeleportTwoWay & & isTeleportChannelBidirectional ( obj - > channel , hero - > tempOwner ) ;
2015-10-27 02:34:47 +02:00
}
bool CPathfinder : : addTeleportOneWay ( const CGTeleport * obj ) const
{
if ( options . useTeleportOneWay & & isTeleportChannelUnidirectional ( obj - > channel , hero - > tempOwner ) )
{
2015-11-16 20:22:11 +02:00
auto passableExits = CGTeleport : : getPassableExits ( gs , hero , getTeleportChannelExits ( obj - > channel , hero - > tempOwner ) ) ;
2015-10-27 02:34:47 +02:00
if ( passableExits . size ( ) = = 1 )
return true ;
}
return false ;
}
bool CPathfinder : : addTeleportOneWayRandom ( const CGTeleport * obj ) const
{
if ( options . useTeleportOneWayRandom & & isTeleportChannelUnidirectional ( obj - > channel , hero - > tempOwner ) )
{
2015-11-16 20:22:11 +02:00
auto passableExits = CGTeleport : : getPassableExits ( gs , hero , getTeleportChannelExits ( obj - > channel , hero - > tempOwner ) ) ;
2015-10-27 02:34:47 +02:00
if ( passableExits . size ( ) > 1 )
return true ;
}
return false ;
}
bool CPathfinder : : addTeleportWhirlpool ( const CGWhirlpool * obj ) const
{
2015-11-16 18:14:18 +02:00
return options . useTeleportWhirlpool & & hlp - > hasBonusOfType ( Bonus : : WHIRLPOOL_PROTECTION ) & & obj ;
2015-10-27 02:34:47 +02:00
}
2015-11-21 09:00:09 +02:00
TurnInfo : : BonusCache : : BonusCache ( TBonusListPtr bl )
{
noTerrainPenalty . reserve ( ETerrainType : : ROCK ) ;
for ( int i = 0 ; i < ETerrainType : : ROCK ; i + + )
{
2016-09-19 23:36:35 +02:00
noTerrainPenalty . push_back ( static_cast < bool > (
bl - > getFirst ( Selector : : type ( Bonus : : NO_TERRAIN_PENALTY ) . And ( Selector : : subtype ( i ) ) ) ) ) ;
2015-11-21 09:00:09 +02:00
}
2016-09-19 23:36:35 +02:00
freeShipBoarding = static_cast < bool > ( bl - > getFirst ( Selector : : type ( Bonus : : FREE_SHIP_BOARDING ) ) ) ;
flyingMovement = static_cast < bool > ( bl - > getFirst ( Selector : : type ( Bonus : : FLYING_MOVEMENT ) ) ) ;
2015-11-21 09:00:09 +02:00
flyingMovementVal = bl - > valOfBonuses ( Selector : : type ( Bonus : : FLYING_MOVEMENT ) ) ;
2016-09-19 23:36:35 +02:00
waterWalking = static_cast < bool > ( bl - > getFirst ( Selector : : type ( Bonus : : WATER_WALKING ) ) ) ;
2015-11-21 09:00:09 +02:00
waterWalkingVal = bl - > valOfBonuses ( Selector : : type ( Bonus : : WATER_WALKING ) ) ;
}
2015-11-12 13:04:33 +02:00
TurnInfo : : TurnInfo ( const CGHeroInstance * Hero , const int turn )
: hero ( Hero ) , maxMovePointsLand ( - 1 ) , maxMovePointsWater ( - 1 )
2015-11-12 04:20:32 +02:00
{
2015-11-20 11:28:35 +02:00
std : : stringstream cachingStr ;
cachingStr < < " days_ " < < turn ;
bonuses = hero - > getAllBonuses ( Selector : : days ( turn ) , nullptr , nullptr , cachingStr . str ( ) ) ;
2015-11-21 09:00:09 +02:00
bonusCache = make_unique < BonusCache > ( bonuses ) ;
2015-11-21 12:30:39 +02:00
nativeTerrain = hero - > getNativeTerrain ( ) ;
2015-11-12 13:04:33 +02:00
}
2015-11-12 13:39:22 +02:00
bool TurnInfo : : isLayerAvailable ( const EPathfindingLayer layer ) const
{
switch ( layer )
{
case EPathfindingLayer : : AIR :
if ( ! hasBonusOfType ( Bonus : : FLYING_MOVEMENT ) )
return false ;
break ;
case EPathfindingLayer : : WATER :
if ( ! hasBonusOfType ( Bonus : : WATER_WALKING ) )
return false ;
break ;
}
return true ;
}
2015-11-12 13:04:33 +02:00
bool TurnInfo : : hasBonusOfType ( Bonus : : BonusType type , int subtype ) const
{
2015-11-21 09:00:09 +02:00
switch ( type )
{
case Bonus : : FREE_SHIP_BOARDING :
return bonusCache - > freeShipBoarding ;
case Bonus : : FLYING_MOVEMENT :
return bonusCache - > flyingMovement ;
case Bonus : : WATER_WALKING :
return bonusCache - > waterWalking ;
case Bonus : : NO_TERRAIN_PENALTY :
return bonusCache - > noTerrainPenalty [ subtype ] ;
}
2016-09-19 23:36:35 +02:00
return static_cast < bool > (
bonuses - > getFirst ( Selector : : type ( type ) . And ( Selector : : subtype ( subtype ) ) ) ) ;
2015-11-12 13:04:33 +02:00
}
int TurnInfo : : valOfBonuses ( Bonus : : BonusType type , int subtype ) const
{
2015-11-21 09:00:09 +02:00
switch ( type )
{
case Bonus : : FLYING_MOVEMENT :
return bonusCache - > flyingMovementVal ;
case Bonus : : WATER_WALKING :
return bonusCache - > waterWalkingVal ;
}
2015-11-12 13:04:33 +02:00
return bonuses - > valOfBonuses ( Selector : : type ( type ) . And ( Selector : : subtype ( subtype ) ) ) ;
2015-11-12 04:20:32 +02:00
}
int TurnInfo : : getMaxMovePoints ( const EPathfindingLayer layer ) const
{
2015-11-12 13:04:33 +02:00
if ( maxMovePointsLand = = - 1 )
maxMovePointsLand = hero - > maxMovePoints ( true , this ) ;
if ( maxMovePointsWater = = - 1 )
maxMovePointsWater = hero - > maxMovePoints ( false , this ) ;
2015-11-12 04:20:32 +02:00
return layer = = EPathfindingLayer : : SAIL ? maxMovePointsWater : maxMovePointsLand ;
}
2015-11-16 17:43:02 +02:00
CPathfinderHelper : : CPathfinderHelper ( const CGHeroInstance * Hero , const CPathfinder : : PathfinderOptions & Options )
: turn ( - 1 ) , hero ( Hero ) , options ( Options )
2015-11-10 13:26:45 +02:00
{
turnsInfo . reserve ( 16 ) ;
updateTurnInfo ( ) ;
}
2016-08-16 13:59:16 +02:00
CPathfinderHelper : : ~ CPathfinderHelper ( )
{
for ( auto ti : turnsInfo )
delete ti ;
}
2015-11-12 13:04:33 +02:00
void CPathfinderHelper : : updateTurnInfo ( const int Turn )
2015-11-10 13:26:45 +02:00
{
2015-11-12 13:04:33 +02:00
if ( turn ! = Turn )
2015-11-10 13:26:45 +02:00
{
2015-11-12 13:04:33 +02:00
turn = Turn ;
if ( turn > = turnsInfo . size ( ) )
2015-11-10 13:26:45 +02:00
{
2015-11-12 13:04:33 +02:00
auto ti = new TurnInfo ( hero , turn ) ;
2015-11-10 13:26:45 +02:00
turnsInfo . push_back ( ti ) ;
}
}
}
2015-11-12 13:39:22 +02:00
bool CPathfinderHelper : : isLayerAvailable ( const EPathfindingLayer layer ) const
{
2015-11-16 17:43:02 +02:00
switch ( layer )
{
case EPathfindingLayer : : AIR :
if ( ! options . useFlying )
return false ;
break ;
case EPathfindingLayer : : WATER :
if ( ! options . useWaterWalking )
return false ;
break ;
}
2015-11-12 13:39:22 +02:00
return turnsInfo [ turn ] - > isLayerAvailable ( layer ) ;
}
2015-11-12 13:04:33 +02:00
const TurnInfo * CPathfinderHelper : : getTurnInfo ( ) const
2015-11-10 13:26:45 +02:00
{
2015-11-12 04:20:32 +02:00
return turnsInfo [ turn ] ;
2015-11-10 13:26:45 +02:00
}
2015-11-12 13:04:33 +02:00
bool CPathfinderHelper : : hasBonusOfType ( const Bonus : : BonusType type , const int subtype ) const
{
return turnsInfo [ turn ] - > hasBonusOfType ( type , subtype ) ;
}
int CPathfinderHelper : : getMaxMovePoints ( const EPathfindingLayer layer ) const
2015-11-10 13:26:45 +02:00
{
2015-11-12 04:20:32 +02:00
return turnsInfo [ turn ] - > getMaxMovePoints ( layer ) ;
2015-11-10 13:26:45 +02:00
}
2015-11-16 20:22:11 +02:00
void CPathfinderHelper : : getNeighbours ( const CMap * map , const TerrainTile & srct , const int3 & tile , std : : vector < int3 > & vec , const boost : : logic : : tribool & onLand , const bool limitCoastSailing )
2015-11-10 01:15:27 +02:00
{
2015-11-17 01:41:31 +02:00
static const int3 dirs [ ] = {
int3 ( - 1 , + 1 , + 0 ) , int3 ( 0 , + 1 , + 0 ) , int3 ( + 1 , + 1 , + 0 ) ,
int3 ( - 1 , + 0 , + 0 ) , /* source pos */ int3 ( + 1 , + 0 , + 0 ) ,
int3 ( - 1 , - 1 , + 0 ) , int3 ( 0 , - 1 , + 0 ) , int3 ( + 1 , - 1 , + 0 )
} ;
2015-11-10 01:15:27 +02:00
2015-11-11 21:08:15 +02:00
for ( auto & dir : dirs )
2015-11-10 01:15:27 +02:00
{
const int3 hlp = tile + dir ;
2015-11-16 20:22:11 +02:00
if ( ! map - > isInTheMap ( hlp ) )
2015-11-10 01:15:27 +02:00
continue ;
2015-11-16 20:22:11 +02:00
const TerrainTile & hlpt = map - > getTile ( hlp ) ;
2015-11-17 01:41:31 +02:00
if ( hlpt . terType = = ETerrainType : : ROCK )
continue ;
2015-11-10 01:15:27 +02:00
// //we cannot visit things from blocked tiles
// if(srct.blocked && !srct.visitable && hlpt.visitable && srct.blockingObjects.front()->ID != HEROI_TYPE)
// {
// continue;
// }
2015-11-17 01:41:31 +02:00
/// Following condition let us avoid diagonal movement over coast when sailing
2015-11-10 01:15:27 +02:00
if ( srct . terType = = ETerrainType : : WATER & & limitCoastSailing & & hlpt . terType = = ETerrainType : : WATER & & dir . x & & dir . y ) //diagonal move through water
{
int3 hlp1 = tile ,
hlp2 = tile ;
hlp1 . x + = dir . x ;
hlp2 . y + = dir . y ;
2015-11-16 20:22:11 +02:00
if ( map - > getTile ( hlp1 ) . terType ! = ETerrainType : : WATER | | map - > getTile ( hlp2 ) . terType ! = ETerrainType : : WATER )
2015-11-10 01:15:27 +02:00
continue ;
}
2015-11-17 01:41:31 +02:00
if ( indeterminate ( onLand ) | | onLand = = ( hlpt . terType ! = ETerrainType : : WATER ) )
2015-11-10 01:15:27 +02:00
{
vec . push_back ( hlp ) ;
}
}
}
2015-11-21 13:31:30 +02:00
int CPathfinderHelper : : getMovementCost ( const CGHeroInstance * h , const int3 & src , const int3 & dst , const TerrainTile * ct , const TerrainTile * dt , const int remainingMovePoints , const TurnInfo * ti , const bool checkLast )
2015-11-10 01:15:27 +02:00
{
if ( src = = dst ) //same tile
return 0 ;
2016-08-16 14:47:21 +02:00
bool localTi = false ;
2015-11-10 13:26:45 +02:00
if ( ! ti )
2016-08-16 14:47:21 +02:00
{
localTi = true ;
2015-11-12 04:20:32 +02:00
ti = new TurnInfo ( h ) ;
2016-08-16 14:47:21 +02:00
}
2015-11-10 13:26:45 +02:00
2015-11-21 13:31:30 +02:00
if ( ct = = nullptr | | dt = = nullptr )
{
ct = h - > cb - > getTile ( src ) ;
dt = h - > cb - > getTile ( dst ) ;
}
2015-11-16 22:07:36 +02:00
/// TODO: by the original game rules hero shouldn't be affected by terrain penalty while flying.
/// Also flying movement only has penalty when player moving over blocked tiles.
/// So if you only have base flying with 40% penalty you can still ignore terrain penalty while having zero flying penalty.
2015-11-21 13:31:30 +02:00
int ret = h - > getTileCost ( * dt , * ct , ti ) ;
2015-11-16 22:07:36 +02:00
/// Unfortunately this can't be implemented yet as server don't know when player flying and when he's not.
/// Difference in cost calculation on client and server is much worse than incorrect cost.
/// So this one is waiting till server going to use pathfinder rules for path validation.
2015-11-10 01:15:27 +02:00
2015-11-21 13:31:30 +02:00
if ( dt - > blocked & & ti - > hasBonusOfType ( Bonus : : FLYING_MOVEMENT ) )
2015-11-10 01:15:27 +02:00
{
2015-11-12 13:04:33 +02:00
ret * = ( 100.0 + ti - > valOfBonuses ( Bonus : : FLYING_MOVEMENT ) ) / 100.0 ;
2015-11-10 01:15:27 +02:00
}
2015-11-21 13:31:30 +02:00
else if ( dt - > terType = = ETerrainType : : WATER )
2015-11-10 01:15:27 +02:00
{
2015-12-06 01:23:41 +02:00
if ( h - > boat & & ct - > hasFavorableWinds ( ) & & dt - > hasFavorableWinds ( ) )
2015-11-10 01:15:27 +02:00
ret * = 0.666 ;
2015-11-12 13:04:33 +02:00
else if ( ! h - > boat & & ti - > hasBonusOfType ( Bonus : : WATER_WALKING ) )
2015-11-10 01:15:27 +02:00
{
2015-11-12 13:04:33 +02:00
ret * = ( 100.0 + ti - > valOfBonuses ( Bonus : : WATER_WALKING ) ) / 100.0 ;
2015-11-10 01:15:27 +02:00
}
}
if ( src . x ! = dst . x & & src . y ! = dst . y ) //it's diagonal move
{
int old = ret ;
ret * = 1.414213 ;
//diagonal move costs too much but normal move is possible - allow diagonal move for remaining move points
if ( ret > remainingMovePoints & & remainingMovePoints > = old )
2016-08-16 14:47:21 +02:00
{
if ( localTi )
delete ti ;
2015-11-10 01:15:27 +02:00
return remainingMovePoints ;
2016-08-16 14:47:21 +02:00
}
2015-11-10 01:15:27 +02:00
}
2015-11-16 22:07:36 +02:00
/// TODO: This part need rework in order to work properly with flying and water walking
/// Currently it's only work properly for normal movement or sailing
2015-11-10 01:15:27 +02:00
int left = remainingMovePoints - ret ;
if ( checkLast & & left > 0 & & remainingMovePoints - ret < 250 ) //it might be the last tile - if no further move possible we take all move points
{
std : : vector < int3 > vec ;
vec . reserve ( 8 ) ; //optimization
2015-11-21 13:31:30 +02:00
getNeighbours ( h - > cb - > gameState ( ) - > map , * dt , dst , vec , ct - > terType ! = ETerrainType : : WATER , true ) ;
2015-11-10 01:15:27 +02:00
for ( auto & elem : vec )
{
2015-11-21 13:31:30 +02:00
int fcost = getMovementCost ( h , dst , elem , nullptr , nullptr , left , ti , false ) ;
2015-11-10 01:15:27 +02:00
if ( fcost < = left )
2016-08-16 14:47:21 +02:00
{
if ( localTi )
delete ti ;
2015-11-10 01:15:27 +02:00
return ret ;
2016-08-16 14:47:21 +02:00
}
2015-11-10 01:15:27 +02:00
}
ret = remainingMovePoints ;
}
2016-08-16 14:47:21 +02:00
if ( localTi )
delete ti ;
2015-11-10 01:15:27 +02:00
return ret ;
}
2015-11-11 21:08:15 +02:00
int CPathfinderHelper : : getMovementCost ( const CGHeroInstance * h , const int3 & dst )
2015-11-10 01:15:27 +02:00
{
2015-11-21 13:31:30 +02:00
return getMovementCost ( h , h - > visitablePos ( ) , dst , nullptr , nullptr , h - > movement ) ;
2015-11-10 01:15:27 +02:00
}
2015-11-11 23:05:20 +02:00
CGPathNode : : CGPathNode ( )
: coord ( int3 ( - 1 , - 1 , - 1 ) ) , layer ( ELayer : : WRONG )
2015-11-07 21:16:45 +02:00
{
reset ( ) ;
}
void CGPathNode : : reset ( )
2015-10-27 02:34:47 +02:00
{
2015-11-07 20:11:07 +02:00
locked = false ;
2015-10-27 02:34:47 +02:00
accessible = NOT_SET ;
moveRemains = 0 ;
turns = 255 ;
theNodeBefore = nullptr ;
2015-11-07 23:26:41 +02:00
action = UNKNOWN ;
2015-10-27 02:34:47 +02:00
}
2015-11-11 23:05:20 +02:00
void CGPathNode : : update ( const int3 & Coord , const ELayer Layer , const EAccessibility Accessible )
{
if ( layer = = ELayer : : WRONG )
{
coord = Coord ;
layer = Layer ;
}
else
reset ( ) ;
accessible = Accessible ;
}
2015-10-27 02:34:47 +02:00
bool CGPathNode : : reachable ( ) const
{
return turns < 255 ;
}
int3 CGPath : : startPos ( ) const
{
return nodes [ nodes . size ( ) - 1 ] . coord ;
}
int3 CGPath : : endPos ( ) const
{
return nodes [ 0 ] . coord ;
}
2015-11-05 14:04:56 +02:00
void CGPath : : convert ( ui8 mode )
2015-10-27 02:34:47 +02:00
{
if ( mode = = 0 )
{
for ( auto & elem : nodes )
{
elem . coord = CGHeroInstance : : convertPosition ( elem . coord , true ) ;
}
}
}
2015-11-11 21:08:15 +02:00
CPathsInfo : : CPathsInfo ( const int3 & Sizes )
2015-11-05 14:04:56 +02:00
: sizes ( Sizes )
2015-10-27 02:34:47 +02:00
{
hero = nullptr ;
2015-11-08 07:27:51 +02:00
nodes . resize ( boost : : extents [ sizes . x ] [ sizes . y ] [ sizes . z ] [ ELayer : : NUM_LAYERS ] ) ;
2015-10-27 02:34:47 +02:00
}
CPathsInfo : : ~ CPathsInfo ( )
{
}
2015-11-11 23:05:20 +02:00
const CGPathNode * CPathsInfo : : getPathInfo ( const int3 & tile ) const
2015-10-27 02:34:47 +02:00
{
2015-11-11 23:05:20 +02:00
assert ( vstd : : iswithin ( tile . x , 0 , sizes . x ) ) ;
assert ( vstd : : iswithin ( tile . y , 0 , sizes . y ) ) ;
assert ( vstd : : iswithin ( tile . z , 0 , sizes . z ) ) ;
2015-10-27 02:34:47 +02:00
2015-11-11 23:05:20 +02:00
boost : : unique_lock < boost : : mutex > pathLock ( pathMx ) ;
return getNode ( tile ) ;
2015-10-27 02:34:47 +02:00
}
2015-11-11 23:05:20 +02:00
bool CPathsInfo : : getPath ( CGPath & out , const int3 & dst ) const
2015-10-27 02:34:47 +02:00
{
boost : : unique_lock < boost : : mutex > pathLock ( pathMx ) ;
out . nodes . clear ( ) ;
2015-11-11 23:05:20 +02:00
const CGPathNode * curnode = getNode ( dst ) ;
2015-10-27 02:34:47 +02:00
if ( ! curnode - > theNodeBefore )
return false ;
while ( curnode )
{
2015-11-11 23:05:20 +02:00
const CGPathNode cpn = * curnode ;
2015-10-27 02:34:47 +02:00
curnode = curnode - > theNodeBefore ;
out . nodes . push_back ( cpn ) ;
}
return true ;
}
2015-11-11 23:05:20 +02:00
int CPathsInfo : : getDistance ( const int3 & tile ) const
2015-10-27 02:34:47 +02:00
{
boost : : unique_lock < boost : : mutex > pathLock ( pathMx ) ;
CGPath ret ;
2015-11-11 23:05:20 +02:00
if ( getPath ( ret , tile ) )
2015-10-27 02:34:47 +02:00
return ret . nodes . size ( ) ;
else
return 255 ;
}
2015-11-02 13:04:26 +02:00
2015-11-11 23:05:20 +02:00
const CGPathNode * CPathsInfo : : getNode ( const int3 & coord ) const
2015-11-02 13:04:26 +02:00
{
2015-11-11 23:05:20 +02:00
auto landNode = & nodes [ coord . x ] [ coord . y ] [ coord . z ] [ ELayer : : LAND ] ;
if ( landNode - > reachable ( ) )
2015-11-02 13:04:26 +02:00
return landNode ;
else
2015-11-11 23:05:20 +02:00
return & nodes [ coord . x ] [ coord . y ] [ coord . z ] [ ELayer : : SAIL ] ;
}
CGPathNode * CPathsInfo : : getNode ( const int3 & coord , const ELayer layer )
{
return & nodes [ coord . x ] [ coord . y ] [ coord . z ] [ layer ] ;
2015-11-02 13:04:26 +02:00
}