2012-12-19 17:54:10 +03:00
/*
2017-07-13 10:26:03 +02:00
* CBattleInfoCallback . cpp , part of VCMI engine
2012-12-19 17:54:10 +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-07-01 20:05:10 +02:00
# include "StdInc.h"
2017-06-24 15:51:07 +02:00
# include "CBattleInfoCallback.h"
2017-06-29 01:02:05 +02:00
# include "../CStack.h"
2017-06-24 15:51:07 +02:00
# include "BattleInfo.h"
2017-06-29 01:02:05 +02:00
# include "../NetPacks.h"
# include "../spells/CSpellHandler.h"
# include "../mapObjects/CGTownInstance.h"
2012-12-19 17:54:10 +03:00
2017-06-26 18:50:35 +02:00
namespace SiegeStuffThatShouldBeMovedToHandlers // <=== TODO
2012-08-26 12:07:48 +03:00
{
2017-06-26 18:50:35 +02:00
static void retreiveTurretDamageRange ( const CGTownInstance * town , const CStack * turret , double & outMinDmg , double & outMaxDmg )
2014-05-17 12:37:12 +03:00
{
2017-06-24 15:51:07 +02:00
assert ( turret - > getCreature ( ) - > idNumber = = CreatureID : : ARROW_TOWERS ) ;
assert ( town ) ;
assert ( turret - > position > = - 4 & & turret - > position < = - 2 ) ;
2016-02-01 19:03:57 +02:00
2017-06-24 15:51:07 +02:00
float multiplier = ( turret - > position = = - 2 ) ? 1 : 0.5 ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
int baseMin = 6 ;
int baseMax = 10 ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
outMinDmg = multiplier * ( baseMin + town - > getTownLevel ( ) * 2 ) ;
outMaxDmg = multiplier * ( baseMax + town - > getTownLevel ( ) * 3 ) ;
2012-08-26 12:07:48 +03:00
}
2017-06-24 15:51:07 +02:00
static BattleHex lineToWallHex ( int line ) //returns hex with wall in given line (y coordinate)
2012-08-26 12:07:48 +03:00
{
2017-06-24 15:51:07 +02:00
static const BattleHex lineToHex [ ] = { 12 , 29 , 45 , 62 , 78 , 95 , 112 , 130 , 147 , 165 , 182 } ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
return lineToHex [ line ] ;
2012-08-26 12:07:48 +03:00
}
2017-06-24 15:51:07 +02:00
static bool sameSideOfWall ( BattleHex pos1 , BattleHex pos2 )
2012-08-26 12:07:48 +03:00
{
2017-06-24 15:51:07 +02:00
const int wallInStackLine = lineToWallHex ( pos1 . getY ( ) ) ;
const int wallInDestLine = lineToWallHex ( pos2 . getY ( ) ) ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
const bool stackLeft = pos1 < wallInStackLine ;
const bool destLeft = pos2 < wallInDestLine ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
return stackLeft = = destLeft ;
2012-08-26 12:07:48 +03:00
}
2017-06-24 15:51:07 +02:00
// parts of wall
static const std : : pair < int , EWallPart : : EWallPart > wallParts [ ] =
2012-08-26 12:07:48 +03:00
{
2017-06-26 18:50:35 +02:00
std : : make_pair ( 50 , EWallPart : : KEEP ) ,
2017-06-24 15:51:07 +02:00
std : : make_pair ( 183 , EWallPart : : BOTTOM_TOWER ) ,
std : : make_pair ( 182 , EWallPart : : BOTTOM_WALL ) ,
std : : make_pair ( 130 , EWallPart : : BELOW_GATE ) ,
2017-06-26 18:50:35 +02:00
std : : make_pair ( 78 , EWallPart : : OVER_GATE ) ,
std : : make_pair ( 29 , EWallPart : : UPPER_WALL ) ,
std : : make_pair ( 12 , EWallPart : : UPPER_TOWER ) ,
std : : make_pair ( 95 , EWallPart : : INDESTRUCTIBLE_PART_OF_GATE ) ,
std : : make_pair ( 96 , EWallPart : : GATE ) ,
std : : make_pair ( 45 , EWallPart : : INDESTRUCTIBLE_PART ) ,
std : : make_pair ( 62 , EWallPart : : INDESTRUCTIBLE_PART ) ,
2017-06-24 15:51:07 +02:00
std : : make_pair ( 112 , EWallPart : : INDESTRUCTIBLE_PART ) ,
std : : make_pair ( 147 , EWallPart : : INDESTRUCTIBLE_PART ) ,
std : : make_pair ( 165 , EWallPart : : INDESTRUCTIBLE_PART )
} ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
static EWallPart : : EWallPart hexToWallPart ( BattleHex hex )
2013-07-22 01:01:29 +03:00
{
2017-06-24 15:51:07 +02:00
for ( auto & elem : wallParts )
2013-07-22 01:01:29 +03:00
{
2017-06-24 15:51:07 +02:00
if ( elem . first = = hex )
return elem . second ;
2013-07-22 01:01:29 +03:00
}
2017-06-24 15:51:07 +02:00
return EWallPart : : INVALID ; //not found!
2012-08-26 12:07:48 +03:00
}
2017-06-24 15:51:07 +02:00
static BattleHex WallPartToHex ( EWallPart : : EWallPart part )
2013-01-20 23:29:35 +03:00
{
2017-06-24 15:51:07 +02:00
for ( auto & elem : wallParts )
2013-06-23 14:25:48 +03:00
{
2017-06-24 15:51:07 +02:00
if ( elem . second = = part )
return elem . first ;
2013-06-23 14:25:48 +03:00
}
2013-01-20 23:29:35 +03:00
2017-06-24 15:51:07 +02:00
return BattleHex : : INVALID ; //not found!
2013-01-20 23:29:35 +03:00
}
2012-08-26 12:07:48 +03:00
}
2017-06-24 15:51:07 +02:00
using namespace SiegeStuffThatShouldBeMovedToHandlers ;
2015-09-16 17:28:14 +02:00
2016-09-18 17:12:07 +02:00
ESpellCastProblem : : ESpellCastProblem CBattleInfoCallback : : battleCanCastSpell ( const ISpellCaster * caster , ECastingMode : : ECastingMode mode ) const
2012-08-26 12:07:48 +03:00
{
RETURN_IF_NOT_BATTLE ( ESpellCastProblem : : INVALID ) ;
2016-09-18 17:12:07 +02:00
if ( caster = = nullptr )
{
2017-06-26 18:50:35 +02:00
logGlobal - > error ( " CBattleInfoCallback::battleCanCastSpell: no spellcaster. " ) ;
2016-09-18 17:12:07 +02:00
return ESpellCastProblem : : INVALID ;
}
const PlayerColor player = caster - > getOwner ( ) ;
2017-07-01 10:34:00 +02:00
const auto side = playerToSide ( player ) ;
if ( ! side )
2016-11-26 20:14:21 +02:00
return ESpellCastProblem : : INVALID ;
2017-07-01 10:34:00 +02:00
if ( ! battleDoWeKnowAbout ( side . get ( ) ) )
2012-08-26 12:07:48 +03:00
{
2017-08-10 18:39:27 +02:00
logGlobal - > warn ( " You can't check if enemy can cast given spell! " ) ;
2012-08-26 12:07:48 +03:00
return ESpellCastProblem : : INVALID ;
}
2016-09-18 17:12:07 +02:00
if ( battleTacticDist ( ) )
return ESpellCastProblem : : ONGOING_TACTIC_PHASE ;
2012-08-26 12:07:48 +03:00
switch ( mode )
{
case ECastingMode : : HERO_CASTING :
2017-06-24 15:51:07 +02:00
{
2017-07-01 10:34:00 +02:00
if ( battleCastSpells ( side . get ( ) ) > 0 )
2017-06-24 15:51:07 +02:00
return ESpellCastProblem : : ALREADY_CASTED_THIS_TURN ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
auto hero = dynamic_cast < const CGHeroInstance * > ( caster ) ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
if ( ! hero )
return ESpellCastProblem : : NO_HERO_TO_CAST_SPELL ;
if ( hero - > hasBonusOfType ( Bonus : : BLOCK_ALL_MAGIC ) )
return ESpellCastProblem : : MAGIC_IS_BLOCKED ;
}
2012-08-26 12:07:48 +03:00
break ;
default :
break ;
}
return ESpellCastProblem : : OK ;
}
2017-06-26 18:50:35 +02:00
si8 CBattleInfoCallback : : battleHasWallPenalty ( const CStack * stack , BattleHex destHex ) const
2012-09-20 19:55:21 +03:00
{
return battleHasWallPenalty ( stack , stack - > position , destHex ) ;
}
2017-06-26 18:50:35 +02:00
si8 CBattleInfoCallback : : battleHasWallPenalty ( const IBonusBearer * bonusBearer , BattleHex shooterPosition , BattleHex destHex ) const
2012-08-26 12:07:48 +03:00
{
RETURN_IF_NOT_BATTLE ( false ) ;
2012-09-20 19:55:21 +03:00
if ( ! battleGetSiegeLevel ( ) | | bonusBearer - > hasBonusOfType ( Bonus : : NO_WALL_PENALTY ) )
2012-08-26 12:07:48 +03:00
return false ;
2012-09-20 19:55:21 +03:00
const int wallInStackLine = lineToWallHex ( shooterPosition . getY ( ) ) ;
2012-08-26 12:07:48 +03:00
const int wallInDestLine = lineToWallHex ( destHex . getY ( ) ) ;
2012-09-20 19:55:21 +03:00
const bool stackLeft = shooterPosition < wallInStackLine ;
2012-08-26 12:07:48 +03:00
const bool destRight = destHex > wallInDestLine ;
if ( stackLeft & & destRight ) //shooting from outside to inside
{
2012-09-20 19:55:21 +03:00
int row = ( shooterPosition + destHex ) / ( 2 * GameConstants : : BFIELD_WIDTH ) ;
if ( shooterPosition > destHex & & ( ( destHex % GameConstants : : BFIELD_WIDTH - shooterPosition % GameConstants : : BFIELD_WIDTH ) < 2 ) ) //shooting up high
2012-08-26 12:07:48 +03:00
row - = 2 ;
const int wallPos = lineToWallHex ( row ) ;
2013-12-08 20:54:13 +03:00
if ( ! isWallPartPotentiallyAttackable ( battleHexToWallPart ( wallPos ) ) ) return true ;
2012-08-26 12:07:48 +03:00
}
return false ;
}
si8 CBattleInfoCallback : : battleCanTeleportTo ( const CStack * stack , BattleHex destHex , int telportLevel ) const
{
RETURN_IF_NOT_BATTLE ( false ) ;
2013-07-25 14:53:36 +03:00
if ( ! getAccesibility ( stack ) . accessible ( destHex , stack ) )
2012-08-26 12:07:48 +03:00
return false ;
2016-09-24 08:27:58 +02:00
const ui8 siegeLevel = battleGetSiegeLevel ( ) ;
//check for wall
//advanced teleport can pass wall of fort|citadel, expert - of castle
if ( ( siegeLevel > CGTownInstance : : NONE & & telportLevel < 2 ) | | ( siegeLevel > = CGTownInstance : : CASTLE & & telportLevel < 3 ) )
2012-08-26 12:07:48 +03:00
return sameSideOfWall ( stack - > position , destHex ) ;
return true ;
}
2017-07-15 13:08:20 +02:00
std : : set < BattleHex > CBattleInfoCallback : : battleGetAttackedHexes ( const CStack * attacker , BattleHex destinationTile , BattleHex attackerPos ) const
2012-08-26 12:07:48 +03:00
{
std : : set < BattleHex > attackedHexes ;
RETURN_IF_NOT_BATTLE ( attackedHexes ) ;
AttackableTiles at = getPotentiallyAttackableHexes ( attacker , destinationTile , attackerPos ) ;
2013-06-29 16:05:48 +03:00
for ( BattleHex tile : at . hostileCreaturePositions )
2012-08-26 12:07:48 +03:00
{
const CStack * st = battleGetStackByPos ( tile , true ) ;
if ( st & & st - > owner ! = attacker - > owner ) //only hostile stacks - does it work well with Berserk?
{
attackedHexes . insert ( tile ) ;
}
}
2013-06-29 16:05:48 +03:00
for ( BattleHex tile : at . friendlyCreaturePositions )
2012-08-26 12:07:48 +03:00
{
2012-08-26 12:59:07 +03:00
if ( battleGetStackByPos ( tile , true ) ) //friendly stacks can also be damaged by Dragon Breath
2012-08-26 12:07:48 +03:00
{
attackedHexes . insert ( tile ) ;
}
}
return attackedHexes ;
}
2016-09-09 19:30:36 +02:00
SpellID CBattleInfoCallback : : battleGetRandomStackSpell ( CRandomGenerator & rand , const CStack * stack , ERandomSpell mode ) const
2012-08-26 12:07:48 +03:00
{
switch ( mode )
{
case RANDOM_GENIE :
2016-09-09 19:30:36 +02:00
return getRandomBeneficialSpell ( rand , stack ) ; //target
2012-08-26 12:07:48 +03:00
break ;
case RANDOM_AIMED :
2016-09-09 19:30:36 +02:00
return getRandomCastedSpell ( rand , stack ) ; //caster
2012-08-26 12:07:48 +03:00
break ;
default :
2017-08-12 14:43:41 +02:00
logGlobal - > error ( " Incorrect mode of battleGetRandomSpell (%d) " , static_cast < int > ( mode ) ) ;
2013-02-14 02:55:42 +03:00
return SpellID : : NONE ;
2012-08-26 12:07:48 +03:00
}
}
const CStack * CBattleInfoCallback : : battleGetStackByPos ( BattleHex pos , bool onlyAlive ) const
{
RETURN_IF_NOT_BATTLE ( nullptr ) ;
2013-09-27 22:42:17 +03:00
for ( auto s : battleGetAllStacks ( true ) )
2013-07-27 22:01:31 +03:00
if ( vstd : : contains ( s - > getHexes ( ) , pos ) & & ( ! onlyAlive | | s - > alive ( ) ) )
2017-06-24 15:51:07 +02:00
return s ;
2012-08-26 12:07:48 +03:00
return nullptr ;
}
2017-07-15 13:08:20 +02:00
void CBattleInfoCallback : : battleGetStackQueue ( std : : vector < const CStack * > & out , const int howMany , const int turn , int lastMoved ) const
2012-08-26 12:07:48 +03:00
{
RETURN_IF_NOT_BATTLE ( ) ;
//let's define a huge lambda
auto takeStack = [ & ] ( std : : vector < const CStack * > & st ) - > const CStack *
{
2017-06-26 18:50:35 +02:00
const CStack * ret = nullptr ;
2012-08-26 12:07:48 +03:00
unsigned i , //fastest stack
2017-06-24 15:51:07 +02:00
j = 0 ; //fastest stack of the other side
2012-08-26 12:07:48 +03:00
for ( i = 0 ; i < st . size ( ) ; i + + )
if ( st [ i ] )
break ;
//no stacks left
if ( i = = st . size ( ) )
return nullptr ;
2017-06-26 18:50:35 +02:00
const CStack * fastest = st [ i ] , * other = nullptr ;
2012-08-26 12:07:48 +03:00
int bestSpeed = fastest - > Speed ( turn ) ;
2013-11-06 16:42:58 +03:00
//FIXME: comparison between bool and integer. Logic does not makes sense either
2017-07-01 10:34:00 +02:00
if ( fastest - > side ! = lastMoved )
2012-08-26 12:07:48 +03:00
{
ret = fastest ;
}
else
{
for ( j = i + 1 ; j < st . size ( ) ; j + + )
{
if ( ! st [ j ] ) continue ;
2017-07-01 10:34:00 +02:00
if ( st [ j ] - > side ! = lastMoved | | st [ j ] - > Speed ( turn ) ! = bestSpeed )
2012-08-26 12:07:48 +03:00
break ;
}
if ( j > = st . size ( ) )
{
ret = fastest ;
}
else
{
other = st [ j ] ;
if ( other - > Speed ( turn ) ! = bestSpeed )
ret = fastest ;
else
ret = other ;
}
}
assert ( ret ) ;
if ( ret = = fastest )
2013-06-26 14:18:27 +03:00
st [ i ] = nullptr ;
2012-08-26 12:07:48 +03:00
else
2013-06-26 14:18:27 +03:00
st [ j ] = nullptr ;
2012-08-26 12:07:48 +03:00
2017-07-01 10:34:00 +02:00
lastMoved = ret - > side ;
2012-08-26 12:07:48 +03:00
return ret ;
} ;
//We'll split creatures with remaining movement to 4 buckets
2012-08-26 12:59:07 +03:00
// [0] - turrets/catapult,
// [1] - normal (unmoved) creatures, other war machines,
// [2] - waited cres that had morale,
2012-08-26 12:07:48 +03:00
// [3] - rest of waited cres
2012-08-26 12:59:07 +03:00
std : : vector < const CStack * > phase [ 4 ] ;
2012-08-26 12:07:48 +03:00
int toMove = 0 ; //how many stacks still has move
2017-06-26 18:50:35 +02:00
const CStack * active = battleActiveStack ( ) ;
2012-08-26 12:07:48 +03:00
//active stack hasn't taken any action yet - must be placed at the beginning of queue, no matter what
2012-09-20 19:55:21 +03:00
if ( ! turn & & active & & active - > willMove ( ) & & ! active - > waited ( ) )
2012-08-26 12:07:48 +03:00
{
out . push_back ( active ) ;
if ( out . size ( ) = = howMany )
return ;
}
2013-09-27 22:42:17 +03:00
auto allStacks = battleGetAllStacks ( true ) ;
2012-08-31 19:33:30 +03:00
if ( ! vstd : : contains_if ( allStacks , [ ] ( const CStack * stack ) { return stack - > willMove ( 100000 ) ; } ) ) //little evil, but 100000 should be enough for all effects to disappear
{
//No stack will be able to move, battle is over.
out . clear ( ) ;
return ;
}
2013-09-27 22:42:17 +03:00
for ( auto s : battleGetAllStacks ( true ) )
2012-08-26 12:07:48 +03:00
{
if ( ( turn < = 0 & & ! s - > willMove ( ) ) //we are considering current round and stack won't move
2017-06-26 18:50:35 +02:00
| | ( turn > 0 & & ! s - > canMove ( turn ) ) //stack won't be able to move in later rounds
| | ( turn < = 0 & & s = = active & & out . size ( ) & & s = = out . front ( ) ) ) //it's active stack already added at the beginning of queue
2012-08-26 12:07:48 +03:00
{
continue ;
}
int p = - 1 ; //in which phase this tack will move?
2012-09-20 19:55:21 +03:00
if ( turn < = 0 & & s - > waited ( ) ) //consider waiting state only for ongoing round
2012-08-26 12:07:48 +03:00
{
if ( vstd : : contains ( s - > state , EBattleStackState : : HAD_MORALE ) )
p = 2 ;
else
p = 3 ;
}
2017-06-26 18:50:35 +02:00
else if ( s - > getCreature ( ) - > idNumber = = CreatureID : : CATAPULT | | s - > getCreature ( ) - > idNumber = = CreatureID : : ARROW_TOWERS ) //catapult and turrets are first
2012-08-26 12:07:48 +03:00
{
p = 0 ;
}
else
{
p = 1 ;
}
phase [ p ] . push_back ( s ) ;
toMove + + ;
}
for ( int i = 0 ; i < 4 ; i + + )
boost : : sort ( phase [ i ] , CMP_stack ( i , turn > 0 ? turn : 0 ) ) ;
for ( size_t i = 0 ; i < phase [ 0 ] . size ( ) & & i < howMany ; i + + )
out . push_back ( phase [ 0 ] [ i ] ) ;
if ( out . size ( ) = = howMany )
return ;
if ( lastMoved = = - 1 )
{
if ( active )
{
2013-11-06 16:42:58 +03:00
//FIXME: both branches contain same code!!!
2012-08-26 12:07:48 +03:00
if ( out . size ( ) & & out . front ( ) = = active )
2017-07-01 10:34:00 +02:00
lastMoved = active - > side ;
2012-08-26 12:07:48 +03:00
else
2017-07-01 10:34:00 +02:00
lastMoved = active - > side ;
2012-08-26 12:07:48 +03:00
}
else
{
lastMoved = 0 ;
}
}
int pi = 1 ;
while ( out . size ( ) < howMany )
{
2017-06-26 18:50:35 +02:00
const CStack * hlp = takeStack ( phase [ pi ] ) ;
2012-08-26 12:07:48 +03:00
if ( ! hlp )
{
pi + + ;
if ( pi > 3 )
{
//if(turn != 2)
battleGetStackQueue ( out , howMany , turn + 1 , lastMoved ) ;
return ;
}
}
else
{
out . push_back ( hlp ) ;
}
}
}
void CBattleInfoCallback : : battleGetStackCountOutsideHexes ( bool * ac ) const
{
RETURN_IF_NOT_BATTLE ( ) ;
auto accessibility = getAccesibility ( ) ;
for ( int i = 0 ; i < accessibility . size ( ) ; i + + )
ac [ i ] = ( accessibility [ i ] = = EAccessibility : : ACCESSIBLE ) ;
}
std : : vector < BattleHex > CBattleInfoCallback : : battleGetAvailableHexes ( const CStack * stack , bool addOccupiable , std : : vector < BattleHex > * attackable ) const
{
std : : vector < BattleHex > ret ;
RETURN_IF_NOT_BATTLE ( ret ) ;
if ( ! stack - > position . isValid ( ) ) //turrets
return ret ;
auto reachability = getReachability ( stack ) ;
for ( int i = 0 ; i < GameConstants : : BFIELD_SIZE ; + + i )
{
// If obstacles or other stacks makes movement impossible, it can't be helped.
if ( ! reachability . isReachable ( i ) )
continue ;
2017-07-01 10:34:00 +02:00
if ( battleTacticDist ( ) & & battleGetTacticsSide ( ) = = stack - > side )
2012-08-26 12:07:48 +03:00
{
//Stack has to perform tactic-phase movement -> can enter any reachable tile within given range
if ( ! isInTacticRange ( i ) )
continue ;
}
else
{
//Not tactics phase -> destination must be reachable and within stack range.
if ( reachability . distances [ i ] > stack - > Speed ( 0 , true ) )
continue ;
}
ret . push_back ( i ) ;
if ( addOccupiable & & stack - > doubleWide ( ) )
{
//If two-hex stack can stand on hex i then obviously it can occupy its second hex from that position
ret . push_back ( stack - > occupiedHex ( i ) ) ;
}
}
if ( attackable )
{
auto meleeAttackable = [ & ] ( BattleHex hex ) - > bool
{
// Return true if given hex has at least one available neighbour.
// Available hexes are already present in ret vector.
auto availableNeighbor = boost : : find_if ( ret , [ = ] ( BattleHex availableHex )
2017-06-26 18:50:35 +02:00
{
return BattleHex : : mutualPosition ( hex , availableHex ) > = 0 ;
} ) ;
2012-08-26 12:07:48 +03:00
return availableNeighbor ! = ret . end ( ) ;
} ;
2017-07-01 10:34:00 +02:00
for ( const CStack * otherSt : battleAliveStacks ( 1 - stack - > side ) )
2012-08-26 12:07:48 +03:00
{
if ( ! otherSt - > isValidTarget ( false ) )
continue ;
std : : vector < BattleHex > occupied = otherSt - > getHexes ( ) ;
if ( battleCanShoot ( stack , otherSt - > position ) )
{
attackable - > insert ( attackable - > end ( ) , occupied . begin ( ) , occupied . end ( ) ) ;
continue ;
}
2013-06-29 16:05:48 +03:00
for ( BattleHex he : occupied )
2012-08-26 12:07:48 +03:00
{
if ( meleeAttackable ( he ) )
attackable - > push_back ( he ) ;
}
}
}
//adding occupiable likely adds duplicates to ret -> clean it up
boost : : sort ( ret ) ;
ret . erase ( boost : : unique ( ret ) . end ( ) , ret . end ( ) ) ;
return ret ;
}
2015-04-09 21:49:11 +02:00
bool CBattleInfoCallback : : battleCanAttack ( const CStack * stack , const CStack * target , BattleHex dest ) const
{
RETURN_IF_NOT_BATTLE ( false ) ;
2016-02-01 19:03:57 +02:00
2015-04-09 21:49:11 +02:00
if ( battleTacticDist ( ) )
return false ;
2016-02-01 19:03:57 +02:00
2015-04-09 21:49:11 +02:00
if ( ! stack | | ! target )
return false ;
2016-02-01 19:03:57 +02:00
2016-09-29 22:14:22 +02:00
if ( ! battleMatchOwner ( stack , target ) )
2015-04-09 21:49:11 +02:00
return false ;
2016-02-01 19:03:57 +02:00
2015-04-09 21:49:11 +02:00
auto & id = stack - > getCreature ( ) - > idNumber ;
if ( id = = CreatureID : : FIRST_AID_TENT | | id = = CreatureID : : CATAPULT )
return false ;
2016-02-01 19:03:57 +02:00
2015-04-09 21:49:11 +02:00
if ( ! target - > alive ( ) )
return false ;
2016-02-01 19:03:57 +02:00
2015-04-09 21:49:11 +02:00
return true ;
}
2012-08-26 12:07:48 +03:00
bool CBattleInfoCallback : : battleCanShoot ( const CStack * stack , BattleHex dest ) const
{
RETURN_IF_NOT_BATTLE ( false ) ;
if ( battleTacticDist ( ) ) //no shooting during tactics
2012-08-26 12:59:07 +03:00
return false ;
2012-08-26 12:07:48 +03:00
2017-06-26 18:50:35 +02:00
const CStack * dst = battleGetStackByPos ( dest ) ;
2012-08-26 12:07:48 +03:00
if ( ! stack | | ! dst )
return false ;
2016-11-18 11:56:13 +02:00
//forgetfulness
TBonusListPtr forgetfulList = stack - > getBonuses ( Selector : : type ( Bonus : : FORGETFULL ) , " " ) ;
if ( ! forgetfulList - > empty ( ) )
{
int forgetful = forgetfulList - > valOfBonuses ( Selector : : type ( Bonus : : FORGETFULL ) ) ;
//advanced+ level
if ( forgetful > 1 )
return false ;
}
2012-08-26 12:07:48 +03:00
2013-02-07 20:34:50 +03:00
if ( stack - > getCreature ( ) - > idNumber = = CreatureID : : CATAPULT & & dst ) //catapult cannot attack creatures
2012-08-26 12:07:48 +03:00
return false ;
2017-07-04 13:24:46 +02:00
if ( stack - > canShoot ( )
& & battleMatchOwner ( stack , dst )
& & dst - > alive ( )
& & ( ! battleIsStackBlocked ( stack ) | | stack - > hasBonusOfType ( Bonus : : FREE_SHOOTING ) ) )
2012-08-26 12:07:48 +03:00
return true ;
return false ;
}
2017-06-26 18:50:35 +02:00
TDmgRange CBattleInfoCallback : : calculateDmgRange ( const BattleAttackInfo & info ) const
2012-08-26 12:07:48 +03:00
{
2013-02-06 11:02:46 +03:00
auto battleBonusValue = [ & ] ( const IBonusBearer * bearer , CSelector selector ) - > int
{
2013-07-02 15:08:30 +03:00
auto noLimit = Selector : : effectRange ( Bonus : : NO_LIMIT ) ;
2014-03-07 16:21:09 +03:00
auto limitMatches = info . shooting
2017-06-24 15:51:07 +02:00
? Selector : : effectRange ( Bonus : : ONLY_DISTANCE_FIGHT )
: Selector : : effectRange ( Bonus : : ONLY_MELEE_FIGHT ) ;
2013-07-02 15:08:30 +03:00
//any regular bonuses or just ones for melee/ranged
return bearer - > getBonuses ( selector , noLimit . Or ( limitMatches ) ) - > totalValue ( ) ;
2013-02-06 11:02:46 +03:00
} ;
2012-08-26 12:07:48 +03:00
double additiveBonus = 1.0 , multBonus = 1.0 ,
2017-07-04 13:24:46 +02:00
minDmg = info . attackerBonuses - > getMinDamage ( ) * info . attackerHealth . getCount ( ) , //TODO: ONLY_MELEE_FIGHT / ONLY_DISTANCE_FIGHT
maxDmg = info . attackerBonuses - > getMaxDamage ( ) * info . attackerHealth . getCount ( ) ;
2012-08-26 12:07:48 +03:00
2013-01-15 17:20:48 +03:00
const CCreature * attackerType = info . attacker - > getCreature ( ) ,
2017-06-24 15:51:07 +02:00
* defenderType = info . defender - > getCreature ( ) ;
2012-09-20 19:55:21 +03:00
2013-02-07 20:34:50 +03:00
if ( attackerType - > idNumber = = CreatureID : : ARROW_TOWERS )
2012-08-26 12:07:48 +03:00
{
2013-07-22 19:23:23 +03:00
SiegeStuffThatShouldBeMovedToHandlers : : retreiveTurretDamageRange ( battleGetDefendedTown ( ) , info . attacker , minDmg , maxDmg ) ;
2012-08-26 12:07:48 +03:00
}
2013-02-07 20:34:50 +03:00
if ( info . attackerBonuses - > hasBonusOfType ( Bonus : : SIEGE_WEAPON ) & & attackerType - > idNumber ! = CreatureID : : ARROW_TOWERS ) //any siege weapon, but only ballista can attack (second condition - not arrow turret)
2012-08-26 12:07:48 +03:00
{ //minDmg and maxDmg are multiplied by hero attack + 1
2012-09-20 19:55:21 +03:00
auto retreiveHeroPrimSkill = [ & ] ( int skill ) - > int
2012-08-26 12:07:48 +03:00
{
2016-09-19 23:36:35 +02:00
const std : : shared_ptr < Bonus > b = info . attackerBonuses - > getBonus ( Selector : : sourceTypeSel ( Bonus : : HERO_BASE_SKILL ) . And ( Selector : : typeSubtype ( Bonus : : PRIMARY_SKILL , skill ) ) ) ;
2012-08-26 12:07:48 +03:00
return b ? b - > val : 0 ; //if there is no hero or no info on his primary skill, return 0
} ;
2012-09-20 19:55:21 +03:00
minDmg * = retreiveHeroPrimSkill ( PrimarySkill : : ATTACK ) + 1 ;
maxDmg * = retreiveHeroPrimSkill ( PrimarySkill : : ATTACK ) + 1 ;
2012-08-26 12:07:48 +03:00
}
int attackDefenceDifference = 0 ;
2013-02-06 11:02:46 +03:00
double multAttackReduction = ( 100 - battleBonusValue ( info . attackerBonuses , Selector : : type ( Bonus : : GENERAL_ATTACK_REDUCTION ) ) ) / 100.0 ;
attackDefenceDifference + = battleBonusValue ( info . attackerBonuses , Selector : : typeSubtype ( Bonus : : PRIMARY_SKILL , PrimarySkill : : ATTACK ) ) * multAttackReduction ;
2012-08-26 12:07:48 +03:00
2013-02-06 11:02:46 +03:00
double multDefenceReduction = ( 100 - battleBonusValue ( info . attackerBonuses , Selector : : type ( Bonus : : ENEMY_DEFENCE_REDUCTION ) ) ) / 100.0 ;
attackDefenceDifference - = info . defenderBonuses - > Defense ( ) * multDefenceReduction ;
2012-08-26 12:07:48 +03:00
2016-10-01 07:28:33 +02:00
if ( const std : : shared_ptr < Bonus > slayerEffect = info . attackerBonuses - > getBonus ( Selector : : type ( Bonus : : SLAYER ) ) ) //slayer handling //TODO: apply only ONLY_MELEE_FIGHT / DISTANCE_FIGHT?
2012-08-26 12:07:48 +03:00
{
std : : vector < int > affectedIds ;
2013-02-13 22:35:43 +03:00
int spLevel = slayerEffect - > val ;
2012-08-26 12:07:48 +03:00
2016-10-01 07:28:33 +02:00
//FIXME: do not check all creatures
2012-08-26 12:07:48 +03:00
for ( int g = 0 ; g < VLC - > creh - > creatures . size ( ) ; + + g )
{
2016-09-19 23:36:35 +02:00
for ( const std : : shared_ptr < Bonus > b : VLC - > creh - > creatures [ g ] - > getBonusList ( ) )
2012-08-26 12:07:48 +03:00
{
2017-06-26 18:50:35 +02:00
if ( ( b - > type = = Bonus : : KING3 & & spLevel > = 3 ) | | //expert
2017-06-24 15:51:07 +02:00
( b - > type = = Bonus : : KING2 & & spLevel > = 2 ) | | //adv +
2017-06-26 18:50:35 +02:00
( b - > type = = Bonus : : KING1 & & spLevel > = 0 ) ) //none or basic +
2012-08-26 12:07:48 +03:00
{
affectedIds . push_back ( g ) ;
break ;
}
}
}
2013-06-29 16:05:48 +03:00
for ( auto & affectedId : affectedIds )
2012-08-26 12:07:48 +03:00
{
2013-06-29 16:05:48 +03:00
if ( defenderType - > idNumber = = affectedId )
2012-08-26 12:07:48 +03:00
{
2014-03-07 16:21:09 +03:00
attackDefenceDifference + = SpellID ( SpellID : : SLAYER ) . toSpell ( ) - > getPower ( spLevel ) ;
2012-08-26 12:07:48 +03:00
break ;
}
}
}
//bonus from attack/defense skills
if ( attackDefenceDifference < 0 ) //decreasing dmg
{
const double dec = std : : min ( 0.025 * ( - attackDefenceDifference ) , 0.7 ) ;
multBonus * = 1.0 - dec ;
}
else //increasing dmg
{
const double inc = std : : min ( 0.05 * attackDefenceDifference , 4.0 ) ;
additiveBonus + = inc ;
}
//applying jousting bonus
2017-06-26 18:50:35 +02:00
if ( info . attackerBonuses - > hasBonusOfType ( Bonus : : JOUSTING ) & & ! info . defenderBonuses - > hasBonusOfType ( Bonus : : CHARGE_IMMUNITY ) )
2012-09-20 19:55:21 +03:00
additiveBonus + = info . chargedFields * 0.05 ;
2012-08-26 12:07:48 +03:00
//handling secondary abilities and artifacts giving premies to them
2012-09-20 19:55:21 +03:00
if ( info . shooting )
2013-02-04 22:43:16 +03:00
additiveBonus + = info . attackerBonuses - > valOfBonuses ( Bonus : : SECONDARY_SKILL_PREMY , SecondarySkill : : ARCHERY ) / 100.0 ;
2012-08-26 12:07:48 +03:00
else
2013-02-04 22:43:16 +03:00
additiveBonus + = info . attackerBonuses - > valOfBonuses ( Bonus : : SECONDARY_SKILL_PREMY , SecondarySkill : : OFFENCE ) / 100.0 ;
2012-08-26 12:07:48 +03:00
2012-09-20 19:55:21 +03:00
if ( info . defenderBonuses )
2013-02-04 22:43:16 +03:00
multBonus * = ( std : : max ( 0 , 100 - info . defenderBonuses - > valOfBonuses ( Bonus : : SECONDARY_SKILL_PREMY , SecondarySkill : : ARMORER ) ) ) / 100.0 ;
2012-08-26 12:07:48 +03:00
//handling hate effect
2013-02-11 02:24:57 +03:00
additiveBonus + = info . attackerBonuses - > valOfBonuses ( Bonus : : HATE , defenderType - > idNumber . toEnum ( ) ) / 100. ;
2012-08-26 12:07:48 +03:00
//luck bonus
2012-09-20 19:55:21 +03:00
if ( info . luckyHit )
2012-08-26 12:07:48 +03:00
{
additiveBonus + = 1.0 ;
}
2013-05-04 16:14:23 +03:00
//unlucky hit, used only if negative luck is enabled
if ( info . unluckyHit )
{
additiveBonus - = 0.5 ; // FIXME: how bad (and luck in general) should work with following bonuses?
}
2012-08-26 12:07:48 +03:00
//ballista double dmg
2012-09-20 19:55:21 +03:00
if ( info . ballistaDoubleDamage )
2012-08-26 12:07:48 +03:00
{
additiveBonus + = 1.0 ;
}
2012-09-20 19:55:21 +03:00
if ( info . deathBlow ) //Dread Knight and many WoGified creatures
2012-08-26 12:07:48 +03:00
{
additiveBonus + = 1.0 ;
}
//handling spell effects
2013-02-06 11:02:46 +03:00
if ( ! info . shooting ) //eg. shield
2012-08-26 12:07:48 +03:00
{
2013-01-29 09:47:20 +03:00
multBonus * = ( 100 - info . defenderBonuses - > valOfBonuses ( Bonus : : GENERAL_DAMAGE_REDUCTION , 0 ) ) / 100.0 ;
2012-08-26 12:07:48 +03:00
}
2013-02-06 11:02:46 +03:00
else if ( info . shooting ) //eg. air shield
2012-08-26 12:07:48 +03:00
{
2013-01-29 09:47:20 +03:00
multBonus * = ( 100 - info . defenderBonuses - > valOfBonuses ( Bonus : : GENERAL_DAMAGE_REDUCTION , 1 ) ) / 100.0 ;
2012-08-26 12:07:48 +03:00
}
2016-11-18 11:56:13 +02:00
if ( info . shooting )
{
//todo: set actual percentage in spell bonus configuration instead of just level; requires non trivial backward compatibility handling
//get list first, total value of 0 also counts
TBonusListPtr forgetfulList = info . attackerBonuses - > getBonuses ( Selector : : type ( Bonus : : FORGETFULL ) , " " ) ;
if ( ! forgetfulList - > empty ( ) )
{
int forgetful = forgetfulList - > valOfBonuses ( Selector : : type ( Bonus : : FORGETFULL ) ) ;
//none of basic level
if ( forgetful = = 0 | | forgetful = = 1 )
multBonus * = 0.5 ;
else
logGlobal - > warn ( " Attempt to calculate shooting damage with adv+ FORGETFULL effect " ) ;
}
}
2013-02-06 11:02:46 +03:00
TBonusListPtr curseEffects = info . attackerBonuses - > getBonuses ( Selector : : type ( Bonus : : ALWAYS_MINIMUM_DAMAGE ) ) ;
TBonusListPtr blessEffects = info . attackerBonuses - > getBonuses ( Selector : : type ( Bonus : : ALWAYS_MAXIMUM_DAMAGE ) ) ;
2012-08-26 12:07:48 +03:00
int curseBlessAdditiveModifier = blessEffects - > totalValue ( ) - curseEffects - > totalValue ( ) ;
2016-09-19 23:36:35 +02:00
double curseMultiplicativePenalty = curseEffects - > size ( ) ? ( * std : : max_element ( curseEffects - > begin ( ) , curseEffects - > end ( ) , & Bonus : : compareByAdditionalInfo < std : : shared_ptr < Bonus > > ) ) - > additionalInfo : 0 ;
2012-08-26 12:07:48 +03:00
if ( curseMultiplicativePenalty ) //curse handling (partial, the rest is below)
{
multBonus * = 1.0 - curseMultiplicativePenalty / 100 ;
}
2016-09-19 23:36:35 +02:00
auto isAdvancedAirShield = [ ] ( const Bonus * bonus )
2012-08-26 12:07:48 +03:00
{
2012-08-26 12:59:07 +03:00
return bonus - > source = = Bonus : : SPELL_EFFECT
2017-06-24 15:51:07 +02:00
& & bonus - > sid = = SpellID : : AIR_SHIELD
& & bonus - > val > = SecSkillLevel : : ADVANCED ;
2012-08-26 12:07:48 +03:00
} ;
//wall / distance penalty + advanced air shield
2012-09-20 19:55:21 +03:00
const bool distPenalty = ! info . attackerBonuses - > hasBonusOfType ( Bonus : : NO_DISTANCE_PENALTY ) & & battleHasDistancePenalty ( info . attackerBonuses , info . attackerPosition , info . defenderPosition ) ;
const bool obstaclePenalty = battleHasWallPenalty ( info . attackerBonuses , info . attackerPosition , info . defenderPosition ) ;
2012-08-26 12:07:48 +03:00
2016-02-01 19:03:57 +02:00
if ( info . shooting )
2012-08-26 12:07:48 +03:00
{
2012-09-20 19:55:21 +03:00
if ( distPenalty | | info . defenderBonuses - > hasBonus ( isAdvancedAirShield ) )
2012-08-26 12:07:48 +03:00
{
multBonus * = 0.5 ;
}
if ( obstaclePenalty )
{
multBonus * = 0.5 ; //cumulative
}
}
2012-09-20 19:55:21 +03:00
if ( ! info . shooting & & info . attackerBonuses - > hasBonusOfType ( Bonus : : SHOOTER ) & & ! info . attackerBonuses - > hasBonusOfType ( Bonus : : NO_MELEE_PENALTY ) )
2012-08-26 12:07:48 +03:00
{
multBonus * = 0.5 ;
}
2016-02-01 19:03:57 +02:00
// psychic elementals versus mind immune units 50%
if ( attackerType - > idNumber = = CreatureID : : PSYCHIC_ELEMENTAL
2017-06-26 18:50:35 +02:00
& & info . defenderBonuses - > hasBonusOfType ( Bonus : : MIND_IMMUNITY ) )
2016-02-01 19:03:57 +02:00
{
multBonus * = 0.5 ;
}
2013-06-17 18:45:55 +03:00
// TODO attack on petrified unit 50%
// blinded unit retaliates
2012-08-26 12:07:48 +03:00
minDmg * = additiveBonus * multBonus ;
maxDmg * = additiveBonus * multBonus ;
TDmgRange returnedVal ;
if ( curseEffects - > size ( ) ) //curse handling (rest)
{
minDmg + = curseBlessAdditiveModifier ;
returnedVal = std : : make_pair ( int ( minDmg ) , int ( minDmg ) ) ;
}
else if ( blessEffects - > size ( ) ) //bless handling
{
maxDmg + = curseBlessAdditiveModifier ;
2017-06-26 18:50:35 +02:00
returnedVal = std : : make_pair ( int ( maxDmg ) , int ( maxDmg ) ) ;
2012-08-26 12:07:48 +03:00
}
else
{
2017-06-26 18:50:35 +02:00
returnedVal = std : : make_pair ( int ( minDmg ) , int ( maxDmg ) ) ;
2012-08-26 12:07:48 +03:00
}
//damage cannot be less than 1
vstd : : amax ( returnedVal . first , 1 ) ;
vstd : : amax ( returnedVal . second , 1 ) ;
return returnedVal ;
}
2016-09-09 19:30:36 +02:00
TDmgRange CBattleInfoCallback : : battleEstimateDamage ( CRandomGenerator & rand , const CStack * attacker , const CStack * defender , TDmgRange * retaliationDmg ) const
2012-08-26 12:07:48 +03:00
{
RETURN_IF_NOT_BATTLE ( std : : make_pair ( 0 , 0 ) ) ;
const bool shooting = battleCanShoot ( attacker , defender - > position ) ;
2012-09-20 19:55:21 +03:00
const BattleAttackInfo bai ( attacker , defender , shooting ) ;
2016-09-09 19:30:36 +02:00
return battleEstimateDamage ( rand , bai , retaliationDmg ) ;
2012-09-20 19:55:21 +03:00
}
2017-07-15 13:08:20 +02:00
std : : pair < ui32 , ui32 > CBattleInfoCallback : : battleEstimateDamage ( CRandomGenerator & rand , const BattleAttackInfo & bai , std : : pair < ui32 , ui32 > * retaliationDmg ) const
2012-09-20 19:55:21 +03:00
{
RETURN_IF_NOT_BATTLE ( std : : make_pair ( 0 , 0 ) ) ;
2012-09-21 00:28:18 +03:00
//const bool shooting = battleCanShoot(bai.attacker, bai.defenderPosition); //TODO handle bonus bearer
2012-08-26 12:59:07 +03:00
2012-09-20 19:55:21 +03:00
TDmgRange ret = calculateDmgRange ( bai ) ;
2012-08-26 12:07:48 +03:00
if ( retaliationDmg )
{
2012-09-20 19:55:21 +03:00
if ( bai . shooting )
2012-08-26 12:07:48 +03:00
{
retaliationDmg - > first = retaliationDmg - > second = 0 ;
}
else
{
ui32 TDmgRange : : * pairElems [ ] = { & TDmgRange : : first , & TDmgRange : : second } ;
for ( int i = 0 ; i < 2 ; + + i )
{
BattleStackAttacked bsa ;
bsa . damageAmount = ret . * pairElems [ i ] ;
2017-07-04 13:24:46 +02:00
bai . defender - > prepareAttacked ( bsa , rand , bai . defenderHealth ) ;
2012-09-20 19:55:21 +03:00
auto retaliationAttack = bai . reverse ( ) ;
2017-07-04 13:24:46 +02:00
retaliationAttack . attackerHealth = retaliationAttack . attacker - > healthAfterAttacked ( bsa . damageAmount ) ;
2012-09-20 19:55:21 +03:00
retaliationDmg - > * pairElems [ ! i ] = calculateDmgRange ( retaliationAttack ) . * pairElems [ ! i ] ;
2012-08-26 12:07:48 +03:00
}
}
}
return ret ;
}
2017-07-01 17:59:53 +02:00
std : : vector < std : : shared_ptr < const CObstacleInstance > > CBattleInfoCallback : : battleGetAllObstaclesOnPos ( BattleHex tile , bool onlyBlocking ) const
2012-08-26 12:07:48 +03:00
{
2017-07-01 17:59:53 +02:00
std : : vector < std : : shared_ptr < const CObstacleInstance > > obstacles = std : : vector < std : : shared_ptr < const CObstacleInstance > > ( ) ;
RETURN_IF_NOT_BATTLE ( obstacles ) ;
for ( auto & obs : battleGetAllObstacles ( ) )
2012-08-26 12:07:48 +03:00
{
if ( vstd : : contains ( obs - > getBlockedTiles ( ) , tile )
2017-07-01 17:59:53 +02:00
| | ( ! onlyBlocking & & vstd : : contains ( obs - > getAffectedTiles ( ) , tile ) ) )
2012-08-26 12:07:48 +03:00
{
2017-07-01 17:59:53 +02:00
obstacles . push_back ( obs ) ;
2012-08-26 12:07:48 +03:00
}
}
2017-07-01 17:59:53 +02:00
return obstacles ;
2012-08-26 12:07:48 +03:00
}
2017-07-09 10:18:46 +02:00
std : : vector < std : : shared_ptr < const CObstacleInstance > > CBattleInfoCallback : : getAllAffectedObstaclesByStack ( const CStack * stack ) const
{
std : : vector < std : : shared_ptr < const CObstacleInstance > > affectedObstacles = std : : vector < std : : shared_ptr < const CObstacleInstance > > ( ) ;
RETURN_IF_NOT_BATTLE ( affectedObstacles ) ;
if ( stack - > alive ( ) )
{
affectedObstacles = battleGetAllObstaclesOnPos ( stack - > position , false ) ;
if ( stack - > doubleWide ( ) )
{
BattleHex otherHex = stack - > occupiedHex ( stack - > position ) ;
if ( otherHex . isValid ( ) )
for ( auto & i : battleGetAllObstaclesOnPos ( otherHex , false ) )
affectedObstacles . push_back ( i ) ;
}
2017-07-20 17:15:47 +02:00
for ( auto hex : stack - > getHexes ( ) )
if ( hex = = ESiegeHex : : GATE_BRIDGE )
if ( battleGetGateState ( ) = = EGateState : : OPENED | | battleGetGateState ( ) = = EGateState : : DESTROYED )
for ( int i = 0 ; i < affectedObstacles . size ( ) ; i + + )
if ( affectedObstacles . at ( i ) - > obstacleType = = CObstacleInstance : : MOAT )
affectedObstacles . erase ( affectedObstacles . begin ( ) + i ) ;
2017-07-09 10:18:46 +02:00
}
return affectedObstacles ;
}
2012-08-26 12:07:48 +03:00
AccessibilityInfo CBattleInfoCallback : : getAccesibility ( ) const
{
AccessibilityInfo ret ;
ret . fill ( EAccessibility : : ACCESSIBLE ) ;
//removing accessibility for side columns of hexes
for ( int y = 0 ; y < GameConstants : : BFIELD_HEIGHT ; y + + )
{
ret [ BattleHex ( GameConstants : : BFIELD_WIDTH - 1 , y ) ] = EAccessibility : : SIDE_COLUMN ;
ret [ BattleHex ( 0 , y ) ] = EAccessibility : : SIDE_COLUMN ;
}
2017-07-13 16:47:28 +02:00
//special battlefields with logically unavailable tiles
std : : vector < BattleHex > impassableHexes ;
2017-07-13 21:44:22 +02:00
if ( battleGetBattlefieldType ( ) . num = = BFieldType : : SHIP_TO_SHIP )
2017-07-15 23:01:33 +02:00
{
impassableHexes =
{
2017-07-13 17:55:49 +02:00
6 , 7 , 8 , 9 ,
2017-07-15 23:01:33 +02:00
24 , 25 , 26 ,
2017-07-13 17:55:49 +02:00
58 , 59 , 60 ,
75 , 76 , 77 ,
92 , 93 , 94 ,
109 , 110 , 111 ,
126 , 127 , 128 ,
159 , 160 , 161 , 162 , 163 ,
176 , 177 , 178 , 179 , 180
} ;
2017-07-15 23:01:33 +02:00
}
2017-07-13 16:47:28 +02:00
for ( auto hex : impassableHexes )
ret [ hex ] = EAccessibility : : UNAVAILABLE ;
2012-09-29 23:25:54 +03:00
//gate -> should be before stacks
2016-01-29 21:43:35 +02:00
if ( battleGetSiegeLevel ( ) > 0 )
2012-09-29 23:25:54 +03:00
{
2017-06-26 18:50:35 +02:00
EAccessibility accessability = EAccessibility : : ACCESSIBLE ;
2016-02-13 16:40:31 +02:00
switch ( battleGetGateState ( ) )
2016-01-29 21:43:35 +02:00
{
2016-02-13 16:40:31 +02:00
case EGateState : : CLOSED :
2016-01-29 21:43:35 +02:00
accessability = EAccessibility : : GATE ;
break ;
2016-02-13 16:40:31 +02:00
case EGateState : : BLOCKED :
2016-01-29 21:43:35 +02:00
accessability = EAccessibility : : UNAVAILABLE ;
break ;
}
2016-02-09 16:38:59 +02:00
ret [ ESiegeHex : : GATE_OUTER ] = ret [ ESiegeHex : : GATE_INNER ] = accessability ;
2012-09-29 23:25:54 +03:00
}
2012-08-26 12:07:48 +03:00
//tiles occupied by standing stacks
2013-06-29 16:05:48 +03:00
for ( auto stack : battleAliveStacks ( ) )
2012-08-26 12:07:48 +03:00
{
2013-06-29 16:05:48 +03:00
for ( auto hex : stack - > getHexes ( ) )
2012-08-26 12:07:48 +03:00
if ( hex . isAvailable ( ) ) //towers can have <0 pos; we don't also want to overwrite side columns
ret [ hex ] = EAccessibility : : ALIVE_STACK ;
}
//obstacles
2013-06-29 16:05:48 +03:00
for ( const auto & obst : battleGetAllObstacles ( ) )
2012-08-26 12:07:48 +03:00
{
2013-06-29 16:05:48 +03:00
for ( auto hex : obst - > getBlockedTiles ( ) )
2012-08-26 12:07:48 +03:00
ret [ hex ] = EAccessibility : : OBSTACLE ;
}
//walls
if ( battleGetSiegeLevel ( ) > 0 )
{
2016-02-09 16:38:59 +02:00
static const int permanentlyLocked [ ] = { 12 , 45 , 62 , 112 , 147 , 165 } ;
2013-06-29 16:05:48 +03:00
for ( auto hex : permanentlyLocked )
2012-08-26 12:07:48 +03:00
ret [ hex ] = EAccessibility : : UNAVAILABLE ;
//TODO likely duplicated logic
2016-02-09 16:38:59 +02:00
static const std : : pair < int , BattleHex > lockedIfNotDestroyed [ ] =
{
//which part of wall, which hex is blocked if this part of wall is not destroyed
std : : make_pair ( 2 , BattleHex ( ESiegeHex : : DESTRUCTIBLE_WALL_4 ) ) ,
std : : make_pair ( 3 , BattleHex ( ESiegeHex : : DESTRUCTIBLE_WALL_3 ) ) ,
std : : make_pair ( 4 , BattleHex ( ESiegeHex : : DESTRUCTIBLE_WALL_2 ) ) ,
std : : make_pair ( 5 , BattleHex ( ESiegeHex : : DESTRUCTIBLE_WALL_1 ) )
} ;
2012-08-26 12:07:48 +03:00
2013-06-29 16:05:48 +03:00
for ( auto & elem : lockedIfNotDestroyed )
2012-08-26 12:07:48 +03:00
{
2013-08-06 14:20:28 +03:00
if ( battleGetWallState ( elem . first ) ! = EWallState : : DESTROYED )
2013-06-29 16:05:48 +03:00
ret [ elem . second ] = EAccessibility : : DESTRUCTIBLE_WALL ;
2012-08-26 12:07:48 +03:00
}
}
return ret ;
}
2017-06-26 18:50:35 +02:00
AccessibilityInfo CBattleInfoCallback : : getAccesibility ( const CStack * stack ) const
2012-08-28 15:28:13 +03:00
{
return getAccesibility ( stack - > getHexes ( ) ) ;
}
2017-06-26 18:50:35 +02:00
AccessibilityInfo CBattleInfoCallback : : getAccesibility ( const std : : vector < BattleHex > & accessibleHexes ) const
2012-08-28 15:28:13 +03:00
{
auto ret = getAccesibility ( ) ;
2013-06-29 16:05:48 +03:00
for ( auto hex : accessibleHexes )
2012-09-30 14:33:19 +03:00
if ( hex . isValid ( ) )
ret [ hex ] = EAccessibility : : ACCESSIBLE ;
2012-08-28 15:28:13 +03:00
return ret ;
}
2017-06-26 18:50:35 +02:00
ReachabilityInfo CBattleInfoCallback : : makeBFS ( const AccessibilityInfo & accessibility , const ReachabilityInfo : : Parameters & params ) const
2012-08-26 12:07:48 +03:00
{
ReachabilityInfo ret ;
ret . accessibility = accessibility ;
ret . params = params ;
ret . predecessors . fill ( BattleHex : : INVALID ) ;
2012-08-26 22:13:57 +03:00
ret . distances . fill ( ReachabilityInfo : : INFINITE_DIST ) ;
2012-08-26 12:07:48 +03:00
2012-08-27 15:34:43 +03:00
if ( ! params . startPosition . isValid ( ) ) //if got call for arrow turrets
return ret ;
2012-08-26 12:07:48 +03:00
const std : : set < BattleHex > quicksands = getStoppers ( params . perspective ) ;
//const bool twoHexCreature = params.doubleWide;
std : : queue < BattleHex > hexq ; //bfs queue
//first element
hexq . push ( params . startPosition ) ;
ret . distances [ params . startPosition ] = 0 ;
while ( ! hexq . empty ( ) ) //bfs loop
{
const BattleHex curHex = hexq . front ( ) ;
hexq . pop ( ) ;
//walking stack can't step past the quicksands
//TODO what if second hex of two-hex creature enters quicksand
2012-08-26 12:59:07 +03:00
if ( curHex ! = params . startPosition & & vstd : : contains ( quicksands , curHex ) )
2012-08-26 12:07:48 +03:00
continue ;
const int costToNeighbour = ret . distances [ curHex ] + 1 ;
2013-06-29 16:05:48 +03:00
for ( BattleHex neighbour : curHex . neighbouringTiles ( ) )
2012-08-26 12:07:48 +03:00
{
2017-07-01 10:34:00 +02:00
const bool accessible = accessibility . accessible ( neighbour , params . doubleWide , params . side ) ;
2012-08-26 12:07:48 +03:00
const int costFoundSoFar = ret . distances [ neighbour ] ;
2017-06-26 18:50:35 +02:00
if ( accessible & & costToNeighbour < costFoundSoFar )
2012-08-26 12:07:48 +03:00
{
hexq . push ( neighbour ) ;
ret . distances [ neighbour ] = costToNeighbour ;
ret . predecessors [ neighbour ] = curHex ;
}
}
}
return ret ;
}
2017-06-26 18:50:35 +02:00
ReachabilityInfo CBattleInfoCallback : : makeBFS ( const CStack * stack ) const
2012-08-26 12:07:48 +03:00
{
2012-08-28 15:28:13 +03:00
return makeBFS ( getAccesibility ( stack ) , ReachabilityInfo : : Parameters ( stack ) ) ;
2012-08-26 12:07:48 +03:00
}
std : : set < BattleHex > CBattleInfoCallback : : getStoppers ( BattlePerspective : : BattlePerspective whichSidePerspective ) const
{
std : : set < BattleHex > ret ;
RETURN_IF_NOT_BATTLE ( ret ) ;
2013-06-29 16:05:48 +03:00
for ( auto & oi : battleGetAllObstacles ( whichSidePerspective ) )
2012-08-26 12:07:48 +03:00
{
if ( battleIsObstacleVisibleForSide ( * oi , whichSidePerspective ) )
{
range : : copy ( oi - > getStoppingTile ( ) , vstd : : set_inserter ( ret ) ) ;
}
}
return ret ;
}
2017-07-01 10:34:00 +02:00
std : : pair < const CStack * , BattleHex > CBattleInfoCallback : : getNearestStack ( const CStack * closest , BattleSideOpt side ) const
2012-08-26 12:07:48 +03:00
{
auto reachability = getReachability ( closest ) ;
2015-04-03 04:08:13 +02:00
auto avHexes = battleGetAvailableHexes ( closest , false ) ;
2012-08-26 12:07:48 +03:00
// I hate std::pairs with their undescriptive member names first / second
struct DistStack
{
2016-02-01 19:03:57 +02:00
int distanceToPred ;
BattleHex destination ;
2017-06-26 18:50:35 +02:00
const CStack * stack ;
2012-08-26 12:07:48 +03:00
} ;
2015-04-03 04:08:13 +02:00
std : : vector < DistStack > stackPairs ;
2012-08-26 12:07:48 +03:00
2015-04-03 04:08:13 +02:00
std : : vector < const CStack * > possibleStacks = battleGetStacksIf ( [ = ] ( const CStack * s )
{
2017-07-01 10:34:00 +02:00
return s - > isValidTarget ( false ) & & s ! = closest & & ( ! side | | side . get ( ) = = s - > side ) ;
2016-02-28 04:10:20 +02:00
} ) ;
2016-02-01 19:03:57 +02:00
2015-04-03 04:08:13 +02:00
for ( const CStack * st : possibleStacks )
for ( BattleHex hex : avHexes )
if ( CStack : : isMeleeAttackPossible ( closest , st , hex ) )
2013-05-25 10:06:00 +03:00
{
2016-10-07 08:45:03 +02:00
DistStack hlp = { reachability . distances [ hex ] , hex , st } ;
2013-05-25 10:06:00 +03:00
stackPairs . push_back ( hlp ) ;
}
2012-08-26 12:07:48 +03:00
2013-05-25 10:06:00 +03:00
if ( stackPairs . size ( ) )
2012-08-26 12:07:48 +03:00
{
auto comparator = [ ] ( DistStack lhs , DistStack rhs ) { return lhs . distanceToPred < rhs . distanceToPred ; } ;
auto minimal = boost : : min_element ( stackPairs , comparator ) ;
2015-04-03 04:08:13 +02:00
return std : : make_pair ( minimal - > stack , minimal - > destination ) ;
2012-08-26 12:07:48 +03:00
}
2013-05-25 10:06:00 +03:00
else
2013-06-26 14:18:27 +03:00
return std : : make_pair < const CStack * , BattleHex > ( nullptr , BattleHex : : INVALID ) ;
2012-08-26 12:07:48 +03:00
}
si8 CBattleInfoCallback : : battleGetTacticDist ( ) const
{
RETURN_IF_NOT_BATTLE ( 0 ) ;
//TODO get rid of this method
if ( battleDoWeKnowAbout ( battleGetTacticsSide ( ) ) )
return battleTacticDist ( ) ;
return 0 ;
}
bool CBattleInfoCallback : : isInTacticRange ( BattleHex dest ) const
{
RETURN_IF_NOT_BATTLE ( false ) ;
auto side = battleGetTacticsSide ( ) ;
auto dist = battleGetTacticDist ( ) ;
return ( ( ! side & & dest . getX ( ) > 0 & & dest . getX ( ) < = dist )
2017-06-24 15:51:07 +02:00
| | ( side & & dest . getX ( ) < GameConstants : : BFIELD_WIDTH - 1 & & dest . getX ( ) > = GameConstants : : BFIELD_WIDTH - dist - 1 ) ) ;
2012-08-26 12:07:48 +03:00
}
ReachabilityInfo CBattleInfoCallback : : getReachability ( const CStack * stack ) const
{
ReachabilityInfo : : Parameters params ( stack ) ;
2017-07-01 10:34:00 +02:00
if ( ! battleDoWeKnowAbout ( stack - > side ) )
2012-08-26 12:07:48 +03:00
{
//Stack is held by enemy, we can't use his perspective to check for reachability.
2012-08-28 15:28:13 +03:00
// Happens ie. when hovering enemy stack for its range. The arg could be set properly, but it's easier to fix it here.
2012-08-26 12:07:48 +03:00
params . perspective = battleGetMySide ( ) ;
}
return getReachability ( params ) ;
}
ReachabilityInfo CBattleInfoCallback : : getReachability ( const ReachabilityInfo : : Parameters & params ) const
{
if ( params . flying )
return getFlyingReachability ( params ) ;
else
2012-08-28 15:28:13 +03:00
return makeBFS ( getAccesibility ( params . knownAccessible ) , params ) ;
2012-08-26 12:07:48 +03:00
}
2013-11-07 15:48:41 +03:00
ReachabilityInfo CBattleInfoCallback : : getFlyingReachability ( const ReachabilityInfo : : Parameters & params ) const
2012-08-26 12:07:48 +03:00
{
ReachabilityInfo ret ;
2012-08-28 15:28:13 +03:00
ret . accessibility = getAccesibility ( params . knownAccessible ) ;
2012-08-26 12:07:48 +03:00
for ( int i = 0 ; i < GameConstants : : BFIELD_SIZE ; i + + )
{
2017-07-01 10:34:00 +02:00
if ( ret . accessibility . accessible ( i , params . doubleWide , params . side ) )
2012-08-26 12:07:48 +03:00
{
ret . predecessors [ i ] = params . startPosition ;
ret . distances [ i ] = BattleHex : : getDistance ( params . startPosition , i ) ;
}
}
return ret ;
}
2012-11-29 18:02:55 +03:00
AttackableTiles CBattleInfoCallback : : getPotentiallyAttackableHexes ( const CStack * attacker , BattleHex destinationTile , BattleHex attackerPos ) const
2012-08-26 12:07:48 +03:00
{
2012-11-30 17:06:22 +03:00
//does not return hex attacked directly
2012-11-29 18:02:55 +03:00
//TODO: apply rotation to two-hex attackers
2017-07-01 10:34:00 +02:00
bool isAttacker = attacker - > side = = BattleSide : : ATTACKER ;
2012-11-29 18:02:55 +03:00
2012-08-26 12:07:48 +03:00
AttackableTiles at ;
RETURN_IF_NOT_BATTLE ( at ) ;
const int WN = GameConstants : : BFIELD_WIDTH ;
2017-02-10 20:30:53 +02:00
BattleHex hex = ( attackerPos ! = BattleHex : : INVALID ) ? attackerPos . hex : attacker - > position . hex ; //real or hypothetical (cursor) position
2012-11-29 18:02:55 +03:00
2012-11-21 12:13:33 +03:00
//FIXME: dragons or cerbers can rotate before attack, making their base hex different (#1124)
2012-11-30 17:06:22 +03:00
bool reverse = isToReverse ( hex , destinationTile , isAttacker , attacker - > doubleWide ( ) , isAttacker ) ;
2017-02-10 20:30:53 +02:00
if ( reverse & & attacker - > doubleWide ( ) )
2012-11-29 18:02:55 +03:00
{
2012-11-30 17:06:22 +03:00
hex = attacker - > occupiedHex ( hex ) ; //the other hex stack stands on
2012-11-29 18:02:55 +03:00
}
2012-08-26 12:07:48 +03:00
if ( attacker - > hasBonusOfType ( Bonus : : ATTACKS_ALL_ADJACENT ) )
{
2012-11-30 17:06:22 +03:00
boost : : copy ( attacker - > getSurroundingHexes ( attackerPos ) , vstd : : set_inserter ( at . hostileCreaturePositions ) ) ;
2012-08-26 12:07:48 +03:00
}
if ( attacker - > hasBonusOfType ( Bonus : : THREE_HEADED_ATTACK ) )
{
std : : vector < BattleHex > hexes = attacker - > getSurroundingHexes ( attackerPos ) ;
2013-06-29 16:05:48 +03:00
for ( BattleHex tile : hexes )
2012-08-26 12:07:48 +03:00
{
2012-11-30 17:06:22 +03:00
if ( ( BattleHex : : mutualPosition ( tile , destinationTile ) > - 1 & & BattleHex : : mutualPosition ( tile , hex ) > - 1 ) ) //adjacent both to attacker's head and attacked tile
2012-08-26 12:07:48 +03:00
{
const CStack * st = battleGetStackByPos ( tile , true ) ;
if ( st & & st - > owner ! = attacker - > owner ) //only hostile stacks - does it work well with Berserk?
{
at . hostileCreaturePositions . insert ( tile ) ;
}
}
}
}
2017-01-28 13:28:30 +02:00
if ( attacker - > hasBonusOfType ( Bonus : : WIDE_BREATH ) )
{
std : : vector < BattleHex > hexes ;
const int WN = GameConstants : : BFIELD_WIDTH ;
// atack stand
2017-08-19 19:16:44 +02:00
if ( hex = = destinationTile . cloneInDirection ( BattleHex : : EDir : : LEFT , false ) ) {
2017-01-28 13:28:30 +02:00
if ( destinationTile . getY ( ) % 2 = = 0 )
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + ( 2 * WN ) - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + ( 2 * WN ) , hexes ) ;
}
else {
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + ( 2 * WN ) - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + ( 2 * WN ) , hexes ) ;
}
}
2017-08-19 19:16:44 +02:00
if ( hex = = destinationTile . cloneInDirection ( BattleHex : : EDir : : RIGHT , false ) ) {
2017-01-28 13:28:30 +02:00
if ( destinationTile . getY ( ) % 2 = = 0 )
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + ( 2 * WN ) , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + ( 2 * WN ) + 1 , hexes ) ;
}
else
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + ( 2 * WN ) , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + ( 2 * WN ) + 1 , hexes ) ;
}
}
// atack down
2017-08-19 19:16:44 +02:00
if ( hex = = destinationTile . cloneInDirection ( BattleHex : : EDir : : TOP_LEFT , false ) ) {
2017-01-28 13:28:30 +02:00
if ( destinationTile . getY ( ) % 2 = = 1 )
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - 2 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 2 , hexes ) ;
}
else {
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - 2 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 1 , hexes ) ;
}
}
2017-08-19 19:16:44 +02:00
if ( hex = = destinationTile . cloneInDirection ( BattleHex : : EDir : : TOP_RIGHT , false ) ) {
2017-01-28 13:28:30 +02:00
if ( destinationTile . getY ( ) % 2 = = 1 )
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + 2 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 1 , hexes ) ;
}
else
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + 2 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 2 , hexes ) ;
}
}
// attack up
2017-08-19 19:16:44 +02:00
if ( hex = = destinationTile . cloneInDirection ( BattleHex : : EDir : : BOTTOM_LEFT , false ) ) {
2017-01-28 13:28:30 +02:00
if ( destinationTile . getY ( ) % 2 = = 1 )
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - WN - 1 , hexes ) ;
}
else {
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN + 2 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - WN + 1 , hexes ) ;
}
}
2017-08-19 19:16:44 +02:00
if ( hex = = destinationTile . cloneInDirection ( BattleHex : : EDir : : BOTTOM_RIGHT , false ) ) {
2017-01-28 13:28:30 +02:00
if ( destinationTile . getY ( ) % 2 = = 1 )
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 2 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - WN - 1 , hexes ) ;
}
else
{
BattleHex : : checkAndPush ( destinationTile , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile + WN - 1 , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - WN , hexes ) ;
BattleHex : : checkAndPush ( destinationTile - WN + 1 , hexes ) ;
}
}
for ( BattleHex tile : hexes )
{
//friendly stacks can also be damaged by Dragon Breath
if ( battleGetStackByPos ( tile , true ) )
at . friendlyCreaturePositions . insert ( tile ) ;
}
}
else if ( attacker - > hasBonusOfType ( Bonus : : TWO_HEX_ATTACK_BREATH ) & & BattleHex : : mutualPosition ( destinationTile . hex , hex ) > - 1 ) //only adjacent hexes are subject of dragon breath calculation
2012-08-26 12:07:48 +03:00
{
std : : vector < BattleHex > hexes ; //only one, in fact
int pseudoVector = destinationTile . hex - hex ;
switch ( pseudoVector )
{
case 1 :
case - 1 :
2017-01-28 13:28:30 +02:00
BattleHex : : checkAndPush ( destinationTile . hex + pseudoVector , hexes ) ;
2012-08-26 12:07:48 +03:00
break ;
2012-11-29 18:02:55 +03:00
case WN : //17 //left-down or right-down
case - WN : //-17 //left-up or right-up
case WN + 1 : //18 //right-down
case - WN + 1 : //-16 //right-up
2017-01-28 13:28:30 +02:00
BattleHex : : checkAndPush ( destinationTile . hex + pseudoVector + ( ( ( hex / WN ) % 2 ) ? 1 : - 1 ) , hexes ) ;
2012-08-26 12:07:48 +03:00
break ;
2017-01-28 13:28:30 +02:00
case WN - 1 : //16 //left-down
case - WN - 1 : //-18 //left-up
BattleHex : : checkAndPush ( destinationTile . hex + pseudoVector + ( ( ( hex / WN ) % 2 ) ? 1 : 0 ) , hexes ) ;
2012-08-26 12:07:48 +03:00
break ;
}
2013-06-29 16:05:48 +03:00
for ( BattleHex tile : hexes )
2012-08-26 12:07:48 +03:00
{
//friendly stacks can also be damaged by Dragon Breath
2017-01-28 13:28:30 +02:00
if ( battleGetStackByPos ( tile , true ) )
at . friendlyCreaturePositions . insert ( tile ) ;
2012-08-26 12:07:48 +03:00
}
}
return at ;
}
2017-07-15 13:08:20 +02:00
std : : set < const CStack * > CBattleInfoCallback : : getAttackedCreatures ( const CStack * attacker , BattleHex destinationTile , BattleHex attackerPos ) const
2012-08-26 12:07:48 +03:00
{
std : : set < const CStack * > attackedCres ;
RETURN_IF_NOT_BATTLE ( attackedCres ) ;
AttackableTiles at = getPotentiallyAttackableHexes ( attacker , destinationTile , attackerPos ) ;
2013-06-29 16:05:48 +03:00
for ( BattleHex tile : at . hostileCreaturePositions ) //all around & three-headed attack
2012-08-26 12:07:48 +03:00
{
const CStack * st = battleGetStackByPos ( tile , true ) ;
if ( st & & st - > owner ! = attacker - > owner ) //only hostile stacks - does it work well with Berserk?
{
attackedCres . insert ( st ) ;
}
}
2013-06-29 16:05:48 +03:00
for ( BattleHex tile : at . friendlyCreaturePositions )
2012-08-26 12:07:48 +03:00
{
const CStack * st = battleGetStackByPos ( tile , true ) ;
if ( st ) //friendly stacks can also be damaged by Dragon Breath
{
attackedCres . insert ( st ) ;
}
}
return attackedCres ;
}
2013-08-06 18:25:51 +03:00
//TODO: this should apply also to mechanics and cursor interface
bool CBattleInfoCallback : : isToReverseHlp ( BattleHex hexFrom , BattleHex hexTo , bool curDir ) const
2012-11-29 18:02:55 +03:00
{
2013-08-06 18:25:51 +03:00
int fromX = hexFrom . getX ( ) ;
int fromY = hexFrom . getY ( ) ;
int toX = hexTo . getX ( ) ;
int toY = hexTo . getY ( ) ;
2012-11-29 18:02:55 +03:00
2013-08-06 18:25:51 +03:00
if ( curDir ) // attacker, facing right
2012-11-29 18:02:55 +03:00
{
2013-08-06 18:25:51 +03:00
if ( fromX < toX )
return false ;
if ( fromX > toX )
return true ;
if ( fromY % 2 = = 0 & & toY % 2 = = 1 )
return true ;
2012-11-29 18:02:55 +03:00
return false ;
2013-08-06 18:25:51 +03:00
}
else // defender, facing left
2012-11-29 18:02:55 +03:00
{
2013-08-06 18:25:51 +03:00
if ( fromX < toX )
return true ;
if ( fromX > toX )
return false ;
if ( fromY % 2 = = 1 & & toY % 2 = = 0 )
return true ;
return false ;
2012-11-29 18:02:55 +03:00
}
}
2013-08-06 18:25:51 +03:00
//TODO: this should apply also to mechanics and cursor interface
bool CBattleInfoCallback : : isToReverse ( BattleHex hexFrom , BattleHex hexTo , bool curDir , bool toDoubleWide , bool toDir ) const
2012-11-29 18:02:55 +03:00
{
2017-06-26 18:50:35 +02:00
if ( hexTo < 0 | | hexFrom < 0 ) //turret
2012-11-29 18:02:55 +03:00
return false ;
if ( toDoubleWide )
{
2014-03-23 19:36:16 +03:00
if ( isToReverseHlp ( hexFrom , hexTo , curDir ) )
{
if ( toDir )
return isToReverseHlp ( hexFrom , hexTo - 1 , curDir ) ;
else
return isToReverseHlp ( hexFrom , hexTo + 1 , curDir ) ;
}
return false ;
2012-11-29 18:02:55 +03:00
}
else
{
return isToReverseHlp ( hexFrom , hexTo , curDir ) ;
}
}
2017-07-15 13:08:20 +02:00
ReachabilityInfo : : TDistances CBattleInfoCallback : : battleGetDistances ( const CStack * stack , BattleHex hex , BattleHex * predecessors ) const
2012-08-26 12:07:48 +03:00
{
ReachabilityInfo : : TDistances ret ;
ret . fill ( - 1 ) ;
RETURN_IF_NOT_BATTLE ( ret ) ;
ReachabilityInfo : : Parameters params ( stack ) ;
2012-09-20 19:55:21 +03:00
params . perspective = battleGetMySide ( ) ;
2012-08-26 12:07:48 +03:00
params . startPosition = hex . isValid ( ) ? hex : stack - > position ;
auto reachability = getReachability ( params ) ;
boost : : copy ( reachability . distances , ret . begin ( ) ) ;
if ( predecessors )
for ( int i = 0 ; i < GameConstants : : BFIELD_SIZE ; i + + )
predecessors [ i ] = reachability . predecessors [ i ] ;
return ret ;
}
si8 CBattleInfoCallback : : battleHasDistancePenalty ( const CStack * stack , BattleHex destHex ) const
2012-09-20 19:55:21 +03:00
{
return battleHasDistancePenalty ( stack , stack - > position , destHex ) ;
}
si8 CBattleInfoCallback : : battleHasDistancePenalty ( const IBonusBearer * bonusBearer , BattleHex shooterPosition , BattleHex destHex ) const
2012-08-26 12:07:48 +03:00
{
RETURN_IF_NOT_BATTLE ( false ) ;
2012-09-20 19:55:21 +03:00
if ( bonusBearer - > hasBonusOfType ( Bonus : : NO_DISTANCE_PENALTY ) )
2012-08-26 12:07:48 +03:00
return false ;
2012-09-20 19:55:21 +03:00
if ( const CStack * dstStack = battleGetStackByPos ( destHex , false ) )
2012-08-26 12:07:48 +03:00
{
2012-11-29 18:02:55 +03:00
//If any hex of target creature is within range, there is no penalty
2013-06-29 16:05:48 +03:00
for ( auto hex : dstStack - > getHexes ( ) )
2012-09-20 19:55:21 +03:00
if ( BattleHex : : getDistance ( shooterPosition , hex ) < = GameConstants : : BATTLE_PENALTY_DISTANCE )
2012-08-26 12:07:48 +03:00
return false ;
2012-09-20 19:55:21 +03:00
//TODO what about two-hex shooters?
2012-08-26 12:07:48 +03:00
}
2012-11-29 18:02:55 +03:00
else
{
if ( BattleHex : : getDistance ( shooterPosition , destHex ) < = GameConstants : : BATTLE_PENALTY_DISTANCE )
return false ;
}
2012-08-26 12:07:48 +03:00
return true ;
}
2013-12-08 20:54:13 +03:00
BattleHex CBattleInfoCallback : : wallPartToBattleHex ( EWallPart : : EWallPart part ) const
2013-08-06 14:20:28 +03:00
{
RETURN_IF_NOT_BATTLE ( BattleHex : : INVALID ) ;
return WallPartToHex ( part ) ;
}
2013-12-08 20:54:13 +03:00
EWallPart : : EWallPart CBattleInfoCallback : : battleHexToWallPart ( BattleHex hex ) const
2012-08-26 12:07:48 +03:00
{
2013-12-08 20:54:13 +03:00
RETURN_IF_NOT_BATTLE ( EWallPart : : INVALID ) ;
2012-08-26 12:07:48 +03:00
return hexToWallPart ( hex ) ;
}
2013-12-08 20:54:13 +03:00
bool CBattleInfoCallback : : isWallPartPotentiallyAttackable ( EWallPart : : EWallPart wallPart ) const
{
RETURN_IF_NOT_BATTLE ( false ) ;
return wallPart ! = EWallPart : : INDESTRUCTIBLE_PART & & wallPart ! = EWallPart : : INDESTRUCTIBLE_PART_OF_GATE & &
2017-06-26 18:50:35 +02:00
wallPart ! = EWallPart : : INVALID ;
2013-12-08 20:54:13 +03:00
}
std : : vector < BattleHex > CBattleInfoCallback : : getAttackableBattleHexes ( ) const
{
std : : vector < BattleHex > attackableBattleHexes ;
RETURN_IF_NOT_BATTLE ( attackableBattleHexes ) ;
for ( auto & wallPartPair : wallParts )
{
if ( isWallPartPotentiallyAttackable ( wallPartPair . second ) )
{
auto wallState = static_cast < EWallState : : EWallState > ( battleGetWallState ( static_cast < int > ( wallPartPair . second ) ) ) ;
if ( wallState = = EWallState : : INTACT | | wallState = = EWallState : : DAMAGED )
{
attackableBattleHexes . push_back ( BattleHex ( wallPartPair . first ) ) ;
}
}
}
return attackableBattleHexes ;
}
2012-08-26 12:07:48 +03:00
ui32 CBattleInfoCallback : : battleGetSpellCost ( const CSpell * sp , const CGHeroInstance * caster ) const
{
RETURN_IF_NOT_BATTLE ( - 1 ) ;
//TODO should be replaced using bonus system facilities (propagation onto battle node)
ui32 ret = caster - > getSpellCost ( sp ) ;
//checking for friendly stacks reducing cost of the spell and
//enemy stacks increasing it
si32 manaReduction = 0 ;
si32 manaIncrease = 0 ;
2013-06-29 16:05:48 +03:00
for ( auto stack : battleAliveStacks ( ) )
2012-08-26 12:07:48 +03:00
{
2017-06-26 18:50:35 +02:00
if ( stack - > owner = = caster - > tempOwner & & stack - > hasBonusOfType ( Bonus : : CHANGES_SPELL_COST_FOR_ALLY ) )
2012-08-26 12:07:48 +03:00
{
vstd : : amax ( manaReduction , stack - > valOfBonuses ( Bonus : : CHANGES_SPELL_COST_FOR_ALLY ) ) ;
}
2017-06-26 18:50:35 +02:00
if ( stack - > owner ! = caster - > tempOwner & & stack - > hasBonusOfType ( Bonus : : CHANGES_SPELL_COST_FOR_ENEMY ) )
2012-08-26 12:07:48 +03:00
{
vstd : : amax ( manaIncrease , stack - > valOfBonuses ( Bonus : : CHANGES_SPELL_COST_FOR_ENEMY ) ) ;
}
}
return ret - manaReduction + manaIncrease ;
}
2013-06-26 14:18:27 +03:00
const CStack * CBattleInfoCallback : : getStackIf ( std : : function < bool ( const CStack * ) > pred ) const
2012-08-26 12:07:48 +03:00
{
RETURN_IF_NOT_BATTLE ( nullptr ) ;
auto stacks = battleGetAllStacks ( ) ;
auto stackItr = range : : find_if ( stacks , pred ) ;
2017-06-26 18:50:35 +02:00
return stackItr = = stacks . end ( ) ? nullptr : * stackItr ;
2017-06-24 15:51:07 +02:00
}
si8 CBattleInfoCallback : : battleHasShootingPenalty ( const CStack * stack , BattleHex destHex )
{
return battleHasDistancePenalty ( stack , destHex ) | | battleHasWallPenalty ( stack , destHex ) ;
2012-08-26 12:07:48 +03:00
}
bool CBattleInfoCallback : : battleIsStackBlocked ( const CStack * stack ) const
{
RETURN_IF_NOT_BATTLE ( false ) ;
if ( stack - > hasBonusOfType ( Bonus : : SIEGE_WEAPON ) ) //siege weapons cannot be blocked
return false ;
2017-06-26 18:50:35 +02:00
for ( const CStack * s : batteAdjacentCreatures ( stack ) )
2012-08-26 12:07:48 +03:00
{
if ( s - > owner ! = stack - > owner ) //blocked by enemy stack
return true ;
}
return false ;
}
std : : set < const CStack * > CBattleInfoCallback : : batteAdjacentCreatures ( const CStack * stack ) const
{
std : : set < const CStack * > stacks ;
RETURN_IF_NOT_BATTLE ( stacks ) ;
2013-06-29 16:05:48 +03:00
for ( BattleHex hex : stack - > getSurroundingHexes ( ) )
2017-06-26 18:50:35 +02:00
if ( const CStack * neighbour = battleGetStackByPos ( hex , true ) )
2012-08-26 12:07:48 +03:00
stacks . insert ( neighbour ) ;
return stacks ;
}
2016-09-09 19:30:36 +02:00
SpellID CBattleInfoCallback : : getRandomBeneficialSpell ( CRandomGenerator & rand , const CStack * subject ) const
2012-08-26 12:07:48 +03:00
{
2013-02-11 02:24:57 +03:00
RETURN_IF_NOT_BATTLE ( SpellID : : NONE ) ;
2014-12-01 23:24:36 +02:00
//This is complete list. No spells from mods.
//todo: this should be Spellbook of caster Stack
2016-02-01 19:03:57 +02:00
static const std : : set < SpellID > allPossibleSpells =
2014-12-01 23:24:36 +02:00
{
SpellID : : AIR_SHIELD ,
SpellID : : ANTI_MAGIC ,
2016-02-01 19:03:57 +02:00
SpellID : : BLESS ,
2014-12-01 23:24:36 +02:00
SpellID : : BLOODLUST ,
SpellID : : COUNTERSTRIKE ,
SpellID : : CURE ,
2016-02-01 19:03:57 +02:00
SpellID : : FIRE_SHIELD ,
2014-12-01 23:24:36 +02:00
SpellID : : FORTUNE ,
SpellID : : HASTE ,
SpellID : : MAGIC_MIRROR ,
2016-02-01 19:03:57 +02:00
SpellID : : MIRTH ,
2014-12-01 23:24:36 +02:00
SpellID : : PRAYER ,
SpellID : : PRECISION ,
SpellID : : PROTECTION_FROM_AIR ,
SpellID : : PROTECTION_FROM_EARTH ,
SpellID : : PROTECTION_FROM_FIRE ,
SpellID : : PROTECTION_FROM_WATER ,
SpellID : : SHIELD ,
SpellID : : SLAYER ,
SpellID : : STONE_SKIN
} ;
std : : vector < SpellID > beneficialSpells ;
2016-02-01 19:03:57 +02:00
2017-06-26 18:50:35 +02:00
auto getAliveEnemy = [ = ] ( const std : : function < bool ( const CStack * ) > & pred )
2012-08-26 12:07:48 +03:00
{
2014-12-01 23:24:36 +02:00
return getStackIf ( [ = ] ( const CStack * stack )
2012-08-26 12:07:48 +03:00
{
2014-12-01 23:24:36 +02:00
return pred ( stack ) & & stack - > owner ! = subject - > owner & & stack - > alive ( ) ;
} ) ;
} ;
2012-08-26 12:07:48 +03:00
2014-12-01 23:24:36 +02:00
for ( const SpellID spellID : allPossibleSpells )
{
2016-10-01 06:28:03 +02:00
std : : stringstream cachingStr ;
cachingStr < < " source_ " < < Bonus : : SPELL_EFFECT < < " id_ " < < spellID . num ;
if ( subject - > hasBonus ( Selector : : source ( Bonus : : SPELL_EFFECT , spellID ) , Selector : : all , cachingStr . str ( ) )
2017-06-26 18:50:35 +02:00
//TODO: this ability has special limitations
2017-07-15 23:01:33 +02:00
| | spellID . toSpell ( ) - > canBeCast ( this , ECastingMode : : CREATURE_ACTIVE_CASTING , subject ) ! = ESpellCastProblem : : OK )
2014-12-01 23:24:36 +02:00
continue ;
2012-08-26 12:07:48 +03:00
2014-12-01 23:24:36 +02:00
switch ( spellID )
{
case SpellID : : SHIELD :
case SpellID : : FIRE_SHIELD : // not if all enemy units are shooters
2017-06-24 15:51:07 +02:00
{
auto walker = getAliveEnemy ( [ & ] ( const CStack * stack ) //look for enemy, non-shooting stack
2016-02-01 19:03:57 +02:00
{
2017-07-04 13:24:46 +02:00
return ! stack - > canShoot ( ) ;
2017-06-24 15:51:07 +02:00
} ) ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
if ( ! walker )
continue ;
}
2014-12-01 23:24:36 +02:00
break ;
case SpellID : : AIR_SHIELD : //only against active shooters
2017-06-24 15:51:07 +02:00
{
auto shooter = getAliveEnemy ( [ & ] ( const CStack * stack ) //look for enemy, non-shooting stack
2014-12-01 23:24:36 +02:00
{
2017-07-04 13:24:46 +02:00
return stack - > canShoot ( ) ;
2017-06-24 15:51:07 +02:00
} ) ;
if ( ! shooter )
continue ;
}
2014-12-01 23:24:36 +02:00
break ;
case SpellID : : ANTI_MAGIC :
case SpellID : : MAGIC_MIRROR :
case SpellID : : PROTECTION_FROM_AIR :
case SpellID : : PROTECTION_FROM_EARTH :
case SpellID : : PROTECTION_FROM_FIRE :
2016-02-01 19:03:57 +02:00
case SpellID : : PROTECTION_FROM_WATER :
2017-06-24 15:51:07 +02:00
{
2017-07-01 10:34:00 +02:00
const ui8 enemySide = 1 - subject - > side ;
2017-06-24 15:51:07 +02:00
//todo: only if enemy has spellbook
if ( ! battleHasHero ( enemySide ) ) //only if there is enemy hero
continue ;
}
2014-12-01 23:24:36 +02:00
break ;
case SpellID : : CURE : //only damaged units
2017-06-24 15:51:07 +02:00
{
//do not cast on affected by debuffs
2017-07-04 13:24:46 +02:00
if ( ! subject - > canBeHealed ( ) )
2017-06-24 15:51:07 +02:00
continue ;
}
2014-12-01 23:24:36 +02:00
break ;
case SpellID : : BLOODLUST :
2017-06-24 15:51:07 +02:00
{
2017-07-04 13:24:46 +02:00
if ( subject - > canShoot ( ) ) //TODO: if can shoot - only if enemy units are adjacent
2017-06-24 15:51:07 +02:00
continue ;
}
2014-12-01 23:24:36 +02:00
break ;
case SpellID : : PRECISION :
2017-06-24 15:51:07 +02:00
{
2017-07-04 13:24:46 +02:00
if ( ! subject - > canShoot ( ) )
2017-06-24 15:51:07 +02:00
continue ;
}
2014-12-01 23:24:36 +02:00
break ;
case SpellID : : SLAYER : //only if monsters are present
2017-06-24 15:51:07 +02:00
{
2017-06-26 18:50:35 +02:00
auto kingMonster = getAliveEnemy ( [ & ] ( const CStack * stack ) - > bool //look for enemy, non-shooting stack
2014-12-01 23:24:36 +02:00
{
2017-06-24 15:51:07 +02:00
const auto isKing = Selector : : type ( Bonus : : KING1 )
. Or ( Selector : : type ( Bonus : : KING2 ) )
. Or ( Selector : : type ( Bonus : : KING3 ) ) ;
2013-07-02 15:08:30 +03:00
2017-06-24 15:51:07 +02:00
return stack - > hasBonus ( isKing ) ;
} ) ;
2012-08-26 12:07:48 +03:00
2017-06-24 15:51:07 +02:00
if ( ! kingMonster )
continue ;
}
2014-12-01 23:24:36 +02:00
break ;
2012-08-26 12:07:48 +03:00
}
2016-02-01 19:03:57 +02:00
beneficialSpells . push_back ( spellID ) ;
2012-08-26 12:07:48 +03:00
}
2014-12-01 23:24:36 +02:00
if ( ! beneficialSpells . empty ( ) )
2014-04-10 20:11:09 +03:00
{
2016-09-09 19:30:36 +02:00
return * RandomGeneratorUtil : : nextItem ( beneficialSpells , rand ) ;
2014-04-10 20:11:09 +03:00
}
2012-08-26 12:07:48 +03:00
else
2014-04-10 20:11:09 +03:00
{
2013-02-11 02:24:57 +03:00
return SpellID : : NONE ;
2014-04-10 20:11:09 +03:00
}
2012-08-26 12:07:48 +03:00
}
2016-09-09 19:30:36 +02:00
SpellID CBattleInfoCallback : : getRandomCastedSpell ( CRandomGenerator & rand , const CStack * caster ) const
2012-08-26 12:07:48 +03:00
{
2013-02-11 02:24:57 +03:00
RETURN_IF_NOT_BATTLE ( SpellID : : NONE ) ;
2012-08-26 12:07:48 +03:00
TBonusListPtr bl = caster - > getBonuses ( Selector : : type ( Bonus : : SPELLCASTER ) ) ;
if ( ! bl - > size ( ) )
2013-02-11 02:24:57 +03:00
return SpellID : : NONE ;
2012-08-26 12:07:48 +03:00
int totalWeight = 0 ;
2016-09-19 23:36:35 +02:00
for ( auto b : * bl )
2012-08-26 12:07:48 +03:00
{
totalWeight + = std : : max ( b - > additionalInfo , 1 ) ; //minimal chance to cast is 1
}
2016-09-09 19:30:36 +02:00
int randomPos = rand . nextInt ( totalWeight - 1 ) ;
2016-09-19 23:36:35 +02:00
for ( auto b : * bl )
2012-08-26 12:07:48 +03:00
{
randomPos - = std : : max ( b - > additionalInfo , 1 ) ;
if ( randomPos < 0 )
{
2013-02-11 02:24:57 +03:00
return SpellID ( b - > subtype ) ;
2012-08-26 12:07:48 +03:00
}
}
2013-02-11 02:24:57 +03:00
return SpellID : : NONE ;
2012-08-26 12:07:48 +03:00
}
2013-03-03 20:06:03 +03:00
int CBattleInfoCallback : : battleGetSurrenderCost ( PlayerColor Player ) const
2012-08-26 12:07:48 +03:00
{
RETURN_IF_NOT_BATTLE ( - 3 ) ;
if ( ! battleCanSurrender ( Player ) )
return - 1 ;
2017-07-01 10:34:00 +02:00
const auto side = playerToSide ( Player ) ;
if ( ! side )
2016-11-28 02:33:39 +02:00
return - 1 ;
2012-08-26 12:07:48 +03:00
int ret = 0 ;
double discount = 0 ;
2017-07-01 10:34:00 +02:00
for ( const CStack * s : battleAliveStacks ( side . get ( ) ) )
2012-08-26 12:07:48 +03:00
if ( s - > base ) //we pay for our stack that comes from our army slots - condition eliminates summoned cres and war machines
2017-07-04 13:24:46 +02:00
ret + = s - > getCreature ( ) - > cost [ Res : : GOLD ] * s - > getCount ( ) ; //todo: extract CStack method
2012-08-26 12:07:48 +03:00
2017-07-01 10:34:00 +02:00
if ( const CGHeroInstance * h = battleGetFightingHero ( side . get ( ) ) )
2012-08-26 12:07:48 +03:00
discount + = h - > valOfBonuses ( Bonus : : SURRENDER_DISCOUNT ) ;
ret * = ( 100.0 - discount ) / 100.0 ;
vstd : : amax ( ret , 0 ) ; //no negative costs for >100% discounts (impossible in original H3 mechanics, but some day...)
return ret ;
}
2015-09-16 17:28:14 +02:00
si8 CBattleInfoCallback : : battleMaxSpellLevel ( ui8 side ) const
2012-08-26 12:07:48 +03:00
{
2015-09-16 17:28:14 +02:00
const IBonusBearer * node = nullptr ;
if ( const CGHeroInstance * h = battleGetFightingHero ( side ) )
2012-08-26 12:07:48 +03:00
node = h ;
2015-09-16 17:28:14 +02:00
else
node = getBattleNode ( ) ;
2012-08-26 12:07:48 +03:00
if ( ! node )
2012-08-26 12:59:07 +03:00
return GameConstants : : SPELL_LEVELS ;
2012-08-26 12:07:48 +03:00
//We can't "just get value" - it'd be 0 if there are bonuses (and all would be blocked)
auto b = node - > getBonuses ( Selector : : type ( Bonus : : BLOCK_MAGIC_ABOVE ) ) ;
if ( b - > size ( ) )
return b - > totalValue ( ) ;
return GameConstants : : SPELL_LEVELS ;
}
2012-09-20 19:55:21 +03:00
2013-09-29 23:54:29 +03:00
boost : : optional < int > CBattleInfoCallback : : battleIsFinished ( ) const
{
2013-09-30 11:45:26 +03:00
auto stacks = battleGetAllStacks ( ) ;
2013-09-29 23:54:29 +03:00
//checking winning condition
bool hasStack [ 2 ] ; //hasStack[0] - true if attacker has a living stack; defender similarly
hasStack [ 0 ] = hasStack [ 1 ] = false ;
for ( auto & stack : stacks )
{
if ( stack - > alive ( ) & & ! stack - > hasBonusOfType ( Bonus : : SIEGE_WEAPON ) )
{
2017-07-01 10:34:00 +02:00
hasStack [ stack - > side ] = true ;
2013-09-29 23:54:29 +03:00
}
}
if ( ! hasStack [ 0 ] & & ! hasStack [ 1 ] )
return 2 ;
if ( ! hasStack [ 1 ] )
return 0 ;
2013-09-30 00:31:14 +03:00
if ( ! hasStack [ 0 ] )
return 1 ;
2013-09-29 23:54:29 +03:00
return boost : : none ;
}