2023-08-14 18:46:42 +02:00
/*
* BattleActionProcessor . cpp , part of VCMI engine
*
* Authors : listed in file AUTHORS in main folder
*
* License : GNU General Public License v2 .0 or later
* Full text of license available in license . txt file , in main folder
*
*/
# include "StdInc.h"
# include "BattleActionProcessor.h"
# include "BattleProcessor.h"
# include "../CGameHandler.h"
# include "../../lib/CGeneralTextHandler.h"
# include "../../lib/CStack.h"
# include "../../lib/GameSettings.h"
2023-08-28 16:43:57 +02:00
# include "../../lib/battle/CBattleInfoCallback.h"
# include "../../lib/battle/IBattleState.h"
2023-08-17 21:15:44 +02:00
# include "../../lib/battle/BattleAction.h"
2023-08-14 18:46:42 +02:00
# include "../../lib/gameState/CGameState.h"
2023-08-17 21:15:44 +02:00
# include "../../lib/NetPacks.h"
2023-08-14 18:46:42 +02:00
# include "../../lib/spells/AbilityCaster.h"
# include "../../lib/spells/CSpellHandler.h"
# include "../../lib/spells/ISpellMechanics.h"
# include "../../lib/spells/Problem.h"
BattleActionProcessor : : BattleActionProcessor ( BattleProcessor * owner )
: owner ( owner )
, gameHandler ( nullptr )
{
}
void BattleActionProcessor : : setGameHandler ( CGameHandler * newGameHandler )
{
gameHandler = newGameHandler ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doEmptyAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-14 18:46:42 +02:00
{
2023-08-16 23:51:50 +02:00
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doEndTacticsAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doWaitAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
2023-08-17 18:18:14 +02:00
2023-08-25 17:23:15 +02:00
if ( ! canStackAct ( battle , stack ) )
2023-08-17 18:18:14 +02:00
return false ;
2023-08-16 23:51:50 +02:00
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doRetreatAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
if ( ! battle . battleCanFlee ( battle . sideToPlayer ( ba . side ) ) )
2023-08-16 23:51:50 +02:00
{
gameHandler - > complain ( " Cannot retreat! " ) ;
return false ;
}
2023-08-25 17:23:15 +02:00
owner - > setBattleResult ( battle , EBattleResult : : ESCAPE , ! ba . side ) ;
2023-08-16 23:51:50 +02:00
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doSurrenderAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
PlayerColor player = battle . sideToPlayer ( ba . side ) ;
2023-08-25 17:23:15 +02:00
int cost = battle . battleGetSurrenderCost ( player ) ;
2023-08-16 23:51:50 +02:00
if ( cost < 0 )
{
gameHandler - > complain ( " Cannot surrender! " ) ;
return false ;
}
if ( gameHandler - > getResource ( player , EGameResID : : GOLD ) < cost )
{
gameHandler - > complain ( " Not enough gold to surrender! " ) ;
return false ;
}
gameHandler - > giveResource ( player , EGameResID : : GOLD , - cost ) ;
2023-08-25 17:23:15 +02:00
owner - > setBattleResult ( battle , EBattleResult : : SURRENDER , ! ba . side ) ;
2023-08-16 23:51:50 +02:00
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doHeroSpellAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-25 17:23:15 +02:00
const CGHeroInstance * h = battle . battleGetFightingHero ( ba . side ) ;
2023-08-16 23:51:50 +02:00
if ( ! h )
{
logGlobal - > error ( " Wrong caster! " ) ;
return false ;
}
2023-08-17 18:18:14 +02:00
const CSpell * s = ba . spell . toSpell ( ) ;
2023-08-16 23:51:50 +02:00
if ( ! s )
{
2023-08-17 18:18:14 +02:00
logGlobal - > error ( " Wrong spell id (%d)! " , ba . spell . getNum ( ) ) ;
2023-08-16 23:51:50 +02:00
return false ;
}
2023-08-25 17:23:15 +02:00
spells : : BattleCast parameters ( & battle , h , spells : : Mode : : HERO , s ) ;
2023-08-16 23:51:50 +02:00
spells : : detail : : ProblemImpl problem ;
2023-08-14 18:46:42 +02:00
2023-08-16 23:51:50 +02:00
auto m = s - > battleMechanics ( & parameters ) ;
if ( ! m - > canBeCast ( problem ) ) //todo: should we check aimed cast?
{
logGlobal - > warn ( " Spell cannot be cast! " ) ;
std : : vector < std : : string > texts ;
problem . getAll ( texts ) ;
for ( auto s : texts )
logGlobal - > warn ( s ) ;
return false ;
}
2023-08-25 17:23:15 +02:00
parameters . cast ( gameHandler - > spellEnv , ba . getTarget ( & battle ) ) ;
2023-08-16 23:51:50 +02:00
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doWalkAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
2023-08-25 17:23:15 +02:00
battle : : Target target = ba . getTarget ( & battle ) ;
2023-08-14 18:46:42 +02:00
2023-08-25 17:23:15 +02:00
if ( ! canStackAct ( battle , stack ) )
2023-08-16 23:51:50 +02:00
return false ;
2023-08-14 18:46:42 +02:00
2023-08-16 23:51:50 +02:00
if ( target . size ( ) < 1 )
{
gameHandler - > complain ( " Destination required for move action. " ) ;
return false ;
}
2023-08-14 18:46:42 +02:00
2023-08-25 17:23:15 +02:00
int walkedTiles = moveStack ( battle , ba . stackNumber , target . at ( 0 ) . hexValue ) ; //move
2023-08-16 23:51:50 +02:00
if ( ! walkedTiles )
{
gameHandler - > complain ( " Stack failed movement! " ) ;
return false ;
}
return true ;
}
2023-08-14 18:46:42 +02:00
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doDefendAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
2023-08-16 23:51:50 +02:00
2023-08-25 17:23:15 +02:00
if ( ! canStackAct ( battle , stack ) )
2023-08-16 23:51:50 +02:00
return false ;
//defensive stance, TODO: filter out spell boosts from bonus (stone skin etc.)
SetStackEffect sse ;
2023-08-31 17:45:52 +02:00
sse . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-19 20:43:50 +02:00
Bonus defenseBonusToAdd ( BonusDuration : : STACK_GETS_TURN , BonusType : : PRIMARY_SKILL , BonusSource : : OTHER , 20 , - 1 , static_cast < int32_t > ( PrimarySkill : : DEFENSE ) , BonusValueType : : PERCENT_TO_ALL ) ;
Bonus bonus2 ( BonusDuration : : STACK_GETS_TURN , BonusType : : PRIMARY_SKILL , BonusSource : : OTHER , stack - > valOfBonuses ( BonusType : : DEFENSIVE_STANCE ) , - 1 , static_cast < int32_t > ( PrimarySkill : : DEFENSE ) , BonusValueType : : ADDITIVE_VALUE ) ;
Bonus alternativeWeakCreatureBonus ( BonusDuration : : STACK_GETS_TURN , BonusType : : PRIMARY_SKILL , BonusSource : : OTHER , 1 , - 1 , static_cast < int32_t > ( PrimarySkill : : DEFENSE ) , BonusValueType : : ADDITIVE_VALUE ) ;
2023-08-16 23:51:50 +02:00
2023-08-19 20:43:50 +02:00
BonusList defence = * stack - > getBonuses ( Selector : : typeSubtype ( BonusType : : PRIMARY_SKILL , static_cast < int32_t > ( PrimarySkill : : DEFENSE ) ) ) ;
2023-08-16 23:51:50 +02:00
int oldDefenceValue = defence . totalValue ( ) ;
defence . push_back ( std : : make_shared < Bonus > ( defenseBonusToAdd ) ) ;
defence . push_back ( std : : make_shared < Bonus > ( bonus2 ) ) ;
int difference = defence . totalValue ( ) - oldDefenceValue ;
std : : vector < Bonus > buffer ;
if ( difference = = 0 ) //give replacement bonus for creatures not reaching 5 defense points (20% of def becomes 0)
{
difference = 1 ;
buffer . push_back ( alternativeWeakCreatureBonus ) ;
}
else
2023-08-14 18:46:42 +02:00
{
2023-08-16 23:51:50 +02:00
buffer . push_back ( defenseBonusToAdd ) ;
}
2023-08-14 18:46:42 +02:00
2023-08-16 23:51:50 +02:00
buffer . push_back ( bonus2 ) ;
2023-08-14 18:46:42 +02:00
2023-08-16 23:51:50 +02:00
sse . toUpdate . push_back ( std : : make_pair ( ba . stackNumber , buffer ) ) ;
gameHandler - > sendAndApply ( & sse ) ;
BattleLogMessage message ;
2023-08-31 17:45:52 +02:00
message . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-16 23:51:50 +02:00
MetaString text ;
stack - > addText ( text , EMetaText : : GENERAL_TXT , 120 ) ;
stack - > addNameReplacement ( text ) ;
text . replaceNumber ( difference ) ;
message . lines . push_back ( text ) ;
gameHandler - > sendAndApply ( & message ) ;
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doAttackAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
2023-08-25 17:23:15 +02:00
battle : : Target target = ba . getTarget ( & battle ) ;
2023-08-16 23:51:50 +02:00
2023-08-25 17:23:15 +02:00
if ( ! canStackAct ( battle , stack ) )
2023-08-16 23:51:50 +02:00
return false ;
if ( target . size ( ) < 2 )
{
gameHandler - > complain ( " Two destinations required for attack action. " ) ;
return false ;
2023-08-14 18:46:42 +02:00
}
2023-08-16 23:51:50 +02:00
BattleHex attackPos = target . at ( 0 ) . hexValue ;
BattleHex destinationTile = target . at ( 1 ) . hexValue ;
2023-08-25 17:23:15 +02:00
const CStack * destinationStack = battle . battleGetStackByPos ( destinationTile , true ) ;
2023-08-16 23:51:50 +02:00
if ( ! destinationStack )
2023-08-14 18:46:42 +02:00
{
2023-08-16 23:51:50 +02:00
gameHandler - > complain ( " Invalid target to attack " ) ;
return false ;
}
2023-08-14 18:46:42 +02:00
2023-08-16 23:51:50 +02:00
BattleHex startingPos = stack - > getPosition ( ) ;
2023-08-25 17:23:15 +02:00
int distance = moveStack ( battle , ba . stackNumber , attackPos ) ;
2023-08-14 18:46:42 +02:00
2023-08-16 23:51:50 +02:00
logGlobal - > trace ( " %s will attack %s " , stack - > nodeName ( ) , destinationStack - > nodeName ( ) ) ;
if ( stack - > getPosition ( ) ! = attackPos & & ! ( stack - > doubleWide ( ) & & ( stack - > getPosition ( ) = = attackPos . cloneInDirection ( stack - > destShiftDir ( ) , false ) ) ) )
2023-08-14 18:46:42 +02:00
{
2023-08-16 23:51:50 +02:00
// we were not able to reach destination tile, nor occupy specified hex
// abort attack attempt, but treat this case as legal - we may have stepped onto a quicksands/mine
return true ;
}
if ( destinationStack & & stack - > unitId ( ) = = destinationStack - > unitId ( ) ) //we should just move, it will be handled by following check
{
destinationStack = nullptr ;
}
if ( ! destinationStack )
{
gameHandler - > complain ( " Unit can not attack itself " ) ;
return false ;
}
if ( ! CStack : : isMeleeAttackPossible ( stack , destinationStack ) )
{
gameHandler - > complain ( " Attack cannot be performed! " ) ;
return false ;
}
//attack
int totalAttacks = stack - > totalAttacks . getMeleeValue ( ) ;
//TODO: move to CUnitState
2023-08-25 17:23:15 +02:00
const auto * attackingHero = battle . battleGetFightingHero ( ba . side ) ;
2023-08-16 23:51:50 +02:00
if ( attackingHero )
{
totalAttacks + = attackingHero - > valOfBonuses ( BonusType : : HERO_GRANTS_ATTACKS , stack - > creatureIndex ( ) ) ;
}
const bool firstStrike = destinationStack - > hasBonusOfType ( BonusType : : FIRST_STRIKE ) ;
const bool retaliation = destinationStack - > ableToRetaliate ( ) ;
for ( int i = 0 ; i < totalAttacks ; + + i )
{
//first strike
if ( i = = 0 & & firstStrike & & retaliation )
2023-08-14 18:46:42 +02:00
{
2023-08-25 17:23:15 +02:00
makeAttack ( battle , destinationStack , stack , 0 , stack - > getPosition ( ) , true , false , true ) ;
2023-08-14 18:46:42 +02:00
}
2023-08-16 23:51:50 +02:00
//move can cause death, eg. by walking into the moat, first strike can cause death or paralysis/petrification
if ( stack - > alive ( ) & & ! stack - > hasBonusOfType ( BonusType : : NOT_ACTIVE ) & & destinationStack - > alive ( ) )
2023-08-14 18:46:42 +02:00
{
2023-08-25 17:23:15 +02:00
makeAttack ( battle , stack , destinationStack , ( i ? 0 : distance ) , destinationTile , i = = 0 , false , false ) ; //no distance travelled on second attack
2023-08-14 18:46:42 +02:00
}
2023-08-16 23:51:50 +02:00
//counterattack
//we check retaliation twice, so if it unblocked during attack it will work only on next attack
if ( stack - > alive ( )
& & ! stack - > hasBonusOfType ( BonusType : : BLOCKS_RETALIATION )
& & ( i = = 0 & & ! firstStrike )
& & retaliation & & destinationStack - > ableToRetaliate ( ) )
2023-08-14 18:46:42 +02:00
{
2023-08-25 17:23:15 +02:00
makeAttack ( battle , destinationStack , stack , 0 , stack - > getPosition ( ) , true , false , true ) ;
2023-08-14 18:46:42 +02:00
}
2023-08-16 23:51:50 +02:00
}
//return
if ( stack - > hasBonusOfType ( BonusType : : RETURN_AFTER_STRIKE )
& & target . size ( ) = = 3
& & startingPos ! = stack - > getPosition ( )
& & startingPos = = target . at ( 2 ) . hexValue
& & stack - > alive ( ) )
{
2023-08-25 17:23:15 +02:00
moveStack ( battle , ba . stackNumber , startingPos ) ;
2023-08-16 23:51:50 +02:00
//NOTE: curStack->unitId() == ba.stackNumber (rev 1431)
}
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doShootAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
2023-08-25 17:23:15 +02:00
battle : : Target target = ba . getTarget ( & battle ) ;
2023-08-16 23:51:50 +02:00
2023-08-25 17:23:15 +02:00
if ( ! canStackAct ( battle , stack ) )
2023-08-16 23:51:50 +02:00
return false ;
if ( target . size ( ) < 1 )
{
gameHandler - > complain ( " Destination required for shot action. " ) ;
return false ;
}
auto destination = target . at ( 0 ) . hexValue ;
2023-08-25 17:23:15 +02:00
const CStack * destinationStack = battle . battleGetStackByPos ( destination ) ;
2023-08-16 23:51:50 +02:00
2023-08-25 17:23:15 +02:00
if ( ! battle . battleCanShoot ( stack , destination ) )
2023-08-16 23:51:50 +02:00
{
gameHandler - > complain ( " Cannot shoot! " ) ;
return false ;
}
if ( ! destinationStack )
{
gameHandler - > complain ( " No target to shoot! " ) ;
return false ;
}
2023-08-25 17:23:15 +02:00
makeAttack ( battle , stack , destinationStack , 0 , destination , true , true , false ) ;
2023-08-16 23:51:50 +02:00
//ranged counterattack
if ( destinationStack - > hasBonusOfType ( BonusType : : RANGED_RETALIATION )
& & ! stack - > hasBonusOfType ( BonusType : : BLOCKS_RANGED_RETALIATION )
& & destinationStack - > ableToRetaliate ( )
2023-08-25 17:23:15 +02:00
& & battle . battleCanShoot ( destinationStack , stack - > getPosition ( ) )
2023-08-16 23:51:50 +02:00
& & stack - > alive ( ) ) //attacker may have died (fire shield)
{
2023-08-25 17:23:15 +02:00
makeAttack ( battle , destinationStack , stack , 0 , stack - > getPosition ( ) , true , true , true ) ;
2023-08-16 23:51:50 +02:00
}
//allow more than one additional attack
int totalRangedAttacks = stack - > totalAttacks . getRangedValue ( ) ;
//TODO: move to CUnitState
2023-08-25 17:23:15 +02:00
const auto * attackingHero = battle . battleGetFightingHero ( ba . side ) ;
2023-08-16 23:51:50 +02:00
if ( attackingHero )
{
totalRangedAttacks + = attackingHero - > valOfBonuses ( BonusType : : HERO_GRANTS_ATTACKS , stack - > creatureIndex ( ) ) ;
}
for ( int i = 1 ; i < totalRangedAttacks ; + + i )
{
if (
stack - > alive ( )
& & destinationStack - > alive ( )
& & stack - > shots . canUse ( )
)
2023-08-14 18:46:42 +02:00
{
2023-08-25 17:23:15 +02:00
makeAttack ( battle , stack , destinationStack , 0 , destination , false , true , false ) ;
2023-08-14 18:46:42 +02:00
}
}
2023-08-16 23:51:50 +02:00
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doCatapultAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-25 17:23:15 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
battle : : Target target = ba . getTarget ( & battle ) ;
2023-08-16 23:51:50 +02:00
2023-08-25 17:23:15 +02:00
if ( ! canStackAct ( battle , stack ) )
2023-08-16 23:51:50 +02:00
return false ;
std : : shared_ptr < const Bonus > catapultAbility = stack - > getBonusLocalFirst ( Selector : : type ( ) ( BonusType : : CATAPULT ) ) ;
if ( ! catapultAbility | | catapultAbility - > subtype < 0 )
{
gameHandler - > complain ( " We do not know how to shoot :P " ) ;
}
else
{
const CSpell * spell = SpellID ( catapultAbility - > subtype ) . toSpell ( ) ;
2023-08-25 17:23:15 +02:00
spells : : BattleCast parameters ( & battle , stack , spells : : Mode : : SPELL_LIKE_ATTACK , spell ) ; //We can shot infinitely by catapult
2023-08-16 23:51:50 +02:00
auto shotLevel = stack - > valOfBonuses ( Selector : : typeSubtype ( BonusType : : CATAPULT_EXTRA_SHOTS , catapultAbility - > subtype ) ) ;
parameters . setSpellLevel ( shotLevel ) ;
parameters . cast ( gameHandler - > spellEnv , target ) ;
}
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doUnitSpellAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
2023-08-25 17:23:15 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
battle : : Target target = ba . getTarget ( & battle ) ;
2023-08-17 18:18:14 +02:00
SpellID spellID = ba . spell ;
2023-08-16 23:51:50 +02:00
2023-08-25 17:23:15 +02:00
if ( ! canStackAct ( battle , stack ) )
2023-08-16 23:51:50 +02:00
return false ;
std : : shared_ptr < const Bonus > randSpellcaster = stack - > getBonus ( Selector : : type ( ) ( BonusType : : RANDOM_SPELLCASTER ) ) ;
std : : shared_ptr < const Bonus > spellcaster = stack - > getBonus ( Selector : : typeSubtype ( BonusType : : SPELLCASTER , spellID ) ) ;
2023-08-14 18:46:42 +02:00
2023-08-16 23:51:50 +02:00
//TODO special bonus for genies ability
2023-08-28 16:43:57 +02:00
if ( randSpellcaster & & battle . battleGetRandomStackSpell ( gameHandler - > getRandomGenerator ( ) , stack , CBattleInfoCallback : : RANDOM_AIMED ) = = SpellID : : NONE )
spellID = battle . battleGetRandomStackSpell ( gameHandler - > getRandomGenerator ( ) , stack , CBattleInfoCallback : : RANDOM_GENIE ) ;
2023-08-16 23:51:50 +02:00
2023-08-19 19:48:28 +02:00
if ( spellID = = SpellID : : NONE )
2023-08-16 23:51:50 +02:00
gameHandler - > complain ( " That stack can't cast spells! " ) ;
else
{
const CSpell * spell = SpellID ( spellID ) . toSpell ( ) ;
2023-08-25 17:23:15 +02:00
spells : : BattleCast parameters ( & battle , stack , spells : : Mode : : CREATURE_ACTIVE , spell ) ;
2023-08-16 23:51:50 +02:00
int32_t spellLvl = 0 ;
if ( spellcaster )
vstd : : amax ( spellLvl , spellcaster - > val ) ;
if ( randSpellcaster )
vstd : : amax ( spellLvl , randSpellcaster - > val ) ;
parameters . setSpellLevel ( spellLvl ) ;
parameters . cast ( gameHandler - > spellEnv , target ) ;
}
return true ;
2023-08-14 18:46:42 +02:00
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : doHealAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-14 18:46:42 +02:00
{
2023-08-25 17:23:15 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
battle : : Target target = ba . getTarget ( & battle ) ;
2023-08-16 23:51:50 +02:00
2023-08-25 17:23:15 +02:00
if ( ! canStackAct ( battle , stack ) )
2023-08-16 23:51:50 +02:00
return false ;
if ( target . size ( ) < 1 )
{
gameHandler - > complain ( " Destination required for heal action. " ) ;
return false ;
}
const battle : : Unit * destStack = nullptr ;
std : : shared_ptr < const Bonus > healerAbility = stack - > getBonusLocalFirst ( Selector : : type ( ) ( BonusType : : HEALER ) ) ;
if ( target . at ( 0 ) . unitValue )
destStack = target . at ( 0 ) . unitValue ;
else
2023-08-25 17:23:15 +02:00
destStack = battle . battleGetUnitByPos ( target . at ( 0 ) . hexValue ) ;
2023-08-16 23:51:50 +02:00
if ( stack = = nullptr | | destStack = = nullptr | | ! healerAbility | | healerAbility - > subtype < 0 )
{
gameHandler - > complain ( " There is either no healer, no destination, or healer cannot heal :P " ) ;
}
else
{
const CSpell * spell = SpellID ( healerAbility - > subtype ) . toSpell ( ) ;
2023-08-25 17:23:15 +02:00
spells : : BattleCast parameters ( & battle , stack , spells : : Mode : : SPELL_LIKE_ATTACK , spell ) ; //We can heal infinitely by first aid tent
2023-08-16 23:51:50 +02:00
auto dest = battle : : Destination ( destStack , target . at ( 0 ) . hexValue ) ;
parameters . setSpellLevel ( 0 ) ;
parameters . cast ( gameHandler - > spellEnv , { dest } ) ;
}
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : canStackAct ( const CBattleInfoCallback & battle , const CStack * stack )
2023-08-16 23:51:50 +02:00
{
if ( ! stack )
2023-08-14 18:46:42 +02:00
{
2023-08-16 23:51:50 +02:00
gameHandler - > complain ( " No such stack! " ) ;
return false ;
}
if ( ! stack - > alive ( ) )
{
gameHandler - > complain ( " This stack is dead: " + stack - > nodeName ( ) ) ;
return false ;
}
2023-08-28 16:43:57 +02:00
if ( battle . battleTacticDist ( ) )
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
if ( stack & & stack - > unitSide ( ) ! = battle . battleGetTacticsSide ( ) )
2023-08-14 18:46:42 +02:00
{
2023-08-16 23:51:50 +02:00
gameHandler - > complain ( " This is not a stack of side that has tactics! " ) ;
return false ;
2023-08-14 18:46:42 +02:00
}
}
2023-08-17 18:18:14 +02:00
else
2023-08-16 23:51:50 +02:00
{
2023-08-28 16:43:57 +02:00
if ( stack ! = battle . battleActiveUnit ( ) )
2023-08-17 18:18:14 +02:00
{
gameHandler - > complain ( " Action has to be about active stack! " ) ;
return false ;
}
2023-08-16 23:51:50 +02:00
}
return true ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : dispatchBattleAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
switch ( ba . actionType )
{
2023-08-24 18:10:53 +02:00
case EActionType : : BAD_MORALE :
2023-08-16 23:51:50 +02:00
case EActionType : : NO_ACTION :
2023-08-25 17:23:15 +02:00
return doEmptyAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : END_TACTIC_PHASE :
2023-08-25 17:23:15 +02:00
return doEndTacticsAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : RETREAT :
2023-08-25 17:23:15 +02:00
return doRetreatAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : SURRENDER :
2023-08-25 17:23:15 +02:00
return doSurrenderAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : HERO_SPELL :
2023-08-25 17:23:15 +02:00
return doHeroSpellAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : WALK :
2023-08-25 17:23:15 +02:00
return doWalkAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : WAIT :
2023-08-25 17:23:15 +02:00
return doWaitAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : DEFEND :
2023-08-25 17:23:15 +02:00
return doDefendAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : WALK_AND_ATTACK :
2023-08-25 17:23:15 +02:00
return doAttackAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : SHOOT :
2023-08-25 17:23:15 +02:00
return doShootAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : CATAPULT :
2023-08-25 17:23:15 +02:00
return doCatapultAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : MONSTER_SPELL :
2023-08-25 17:23:15 +02:00
return doUnitSpellAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
case EActionType : : STACK_HEAL :
2023-08-25 17:23:15 +02:00
return doHealAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
}
gameHandler - > complain ( " Unrecognized action type received!! " ) ;
2023-08-14 18:46:42 +02:00
return false ;
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : makeBattleActionImpl ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-16 23:51:50 +02:00
{
logGlobal - > trace ( " Making action: %s " , ba . toString ( ) ) ;
2023-08-25 17:23:15 +02:00
const CStack * stack = battle . battleGetStackByID ( ba . stackNumber ) ;
2023-08-16 23:51:50 +02:00
2023-08-22 19:57:58 +02:00
// for these events client does not expects StartAction/EndAction wrapper
if ( ! ba . isBattleEndAction ( ) )
{
StartAction startAction ( ba ) ;
2023-08-31 17:45:52 +02:00
startAction . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-22 19:57:58 +02:00
gameHandler - > sendAndApply ( & startAction ) ;
}
2023-08-16 23:51:50 +02:00
2023-08-25 17:23:15 +02:00
bool result = dispatchBattleAction ( battle , ba ) ;
2023-08-16 23:51:50 +02:00
2023-08-22 19:57:58 +02:00
if ( ! ba . isBattleEndAction ( ) )
{
EndAction endAction ;
2023-08-31 17:45:52 +02:00
endAction . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-22 19:57:58 +02:00
gameHandler - > sendAndApply ( & endAction ) ;
}
2023-08-16 23:51:50 +02:00
if ( ba . actionType = = EActionType : : WAIT | | ba . actionType = = EActionType : : DEFEND | | ba . actionType = = EActionType : : SHOOT | | ba . actionType = = EActionType : : MONSTER_SPELL )
2023-08-28 16:43:57 +02:00
battle . handleObstacleTriggersForUnit ( * gameHandler - > spellEnv , * stack ) ;
2023-08-16 23:51:50 +02:00
return result ;
}
2023-08-28 16:43:57 +02:00
int BattleActionProcessor : : moveStack ( const CBattleInfoCallback & battle , int stack , BattleHex dest )
2023-08-14 18:46:42 +02:00
{
int ret = 0 ;
2023-08-28 16:43:57 +02:00
const CStack * curStack = battle . battleGetStackByID ( stack ) ;
2023-08-25 17:23:15 +02:00
const CStack * stackAtEnd = battle . battleGetStackByPos ( dest ) ;
2023-08-14 18:46:42 +02:00
assert ( curStack ) ;
assert ( dest < GameConstants : : BFIELD_SIZE ) ;
2023-08-28 16:43:57 +02:00
if ( battle . battleGetTacticDist ( ) )
2023-08-14 18:46:42 +02:00
{
2023-08-25 17:23:15 +02:00
assert ( battle . isInTacticRange ( dest ) ) ;
2023-08-14 18:46:42 +02:00
}
auto start = curStack - > getPosition ( ) ;
if ( start = = dest )
return 0 ;
//initing necessary tables
2023-08-28 16:43:57 +02:00
auto accessibility = battle . getAccesibility ( curStack ) ;
2023-08-14 18:46:42 +02:00
std : : set < BattleHex > passed ;
//Ignore obstacles on starting position
passed . insert ( curStack - > getPosition ( ) ) ;
if ( curStack - > doubleWide ( ) )
passed . insert ( curStack - > occupiedHex ( ) ) ;
//shifting destination (if we have double wide stack and we can occupy dest but not be exactly there)
if ( ! stackAtEnd & & curStack - > doubleWide ( ) & & ! accessibility . accessible ( dest , curStack ) )
{
BattleHex shifted = dest . cloneInDirection ( curStack - > destShiftDir ( ) , false ) ;
if ( accessibility . accessible ( shifted , curStack ) )
dest = shifted ;
}
if ( ( stackAtEnd & & stackAtEnd ! = curStack & & stackAtEnd - > alive ( ) ) | | ! accessibility . accessible ( dest , curStack ) )
{
gameHandler - > complain ( " Given destination is not accessible! " ) ;
return 0 ;
}
bool canUseGate = false ;
2023-08-28 16:43:57 +02:00
auto dbState = battle . battleGetGateState ( ) ;
if ( battle . battleGetSiegeLevel ( ) > 0 & & curStack - > unitSide ( ) = = BattleSide : : DEFENDER & &
2023-08-14 18:46:42 +02:00
dbState ! = EGateState : : DESTROYED & &
dbState ! = EGateState : : BLOCKED )
{
canUseGate = true ;
}
2023-08-25 17:23:15 +02:00
std : : pair < std : : vector < BattleHex > , int > path = battle . getPath ( start , dest , curStack ) ;
2023-08-14 18:46:42 +02:00
ret = path . second ;
int creSpeed = curStack - > speed ( 0 , true ) ;
2023-08-28 16:43:57 +02:00
if ( battle . battleGetTacticDist ( ) > 0 & & creSpeed > 0 )
2023-08-14 18:46:42 +02:00
creSpeed = GameConstants : : BFIELD_SIZE ;
2023-08-28 16:43:57 +02:00
bool hasWideMoat = vstd : : contains_if ( battle . battleGetAllObstaclesOnPos ( BattleHex ( BattleHex : : GATE_BRIDGE ) , false ) , [ ] ( const std : : shared_ptr < const CObstacleInstance > & obst )
2023-08-14 18:46:42 +02:00
{
return obst - > obstacleType = = CObstacleInstance : : MOAT ;
} ) ;
auto isGateDrawbridgeHex = [ & ] ( BattleHex hex ) - > bool
{
2023-08-19 21:35:44 +02:00
if ( hasWideMoat & & hex = = BattleHex : : GATE_BRIDGE )
2023-08-14 18:46:42 +02:00
return true ;
2023-08-19 21:35:44 +02:00
if ( hex = = BattleHex : : GATE_OUTER )
2023-08-14 18:46:42 +02:00
return true ;
2023-08-19 21:35:44 +02:00
if ( hex = = BattleHex : : GATE_INNER )
2023-08-14 18:46:42 +02:00
return true ;
return false ;
} ;
auto occupyGateDrawbridgeHex = [ & ] ( BattleHex hex ) - > bool
{
if ( isGateDrawbridgeHex ( hex ) )
return true ;
if ( curStack - > doubleWide ( ) )
{
BattleHex otherHex = curStack - > occupiedHex ( hex ) ;
if ( otherHex . isValid ( ) & & isGateDrawbridgeHex ( otherHex ) )
return true ;
}
return false ;
} ;
if ( curStack - > hasBonusOfType ( BonusType : : FLYING ) )
{
if ( path . second < = creSpeed & & path . first . size ( ) > 0 )
{
if ( canUseGate & & dbState ! = EGateState : : OPENED & &
occupyGateDrawbridgeHex ( dest ) )
{
BattleUpdateGateState db ;
2023-08-31 17:45:52 +02:00
db . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
db . state = EGateState : : OPENED ;
gameHandler - > sendAndApply ( & db ) ;
}
//inform clients about move
BattleStackMoved sm ;
2023-08-31 17:45:52 +02:00
sm . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
sm . stack = curStack - > unitId ( ) ;
std : : vector < BattleHex > tiles ;
tiles . push_back ( path . first [ 0 ] ) ;
sm . tilesToMove = tiles ;
sm . distance = path . second ;
sm . teleporting = false ;
gameHandler - > sendAndApply ( & sm ) ;
}
}
else //for non-flying creatures
{
std : : vector < BattleHex > tiles ;
const int tilesToMove = std : : max ( ( int ) ( path . first . size ( ) - creSpeed ) , 0 ) ;
int v = ( int ) path . first . size ( ) - 1 ;
path . first . push_back ( start ) ;
// check if gate need to be open or closed at some point
BattleHex openGateAtHex , gateMayCloseAtHex ;
if ( canUseGate )
{
for ( int i = ( int ) path . first . size ( ) - 1 ; i > = 0 ; i - - )
{
auto needOpenGates = [ & ] ( BattleHex hex ) - > bool
{
2023-08-19 21:35:44 +02:00
if ( hasWideMoat & & hex = = BattleHex : : GATE_BRIDGE )
2023-08-14 18:46:42 +02:00
return true ;
2023-08-19 21:35:44 +02:00
if ( hex = = BattleHex : : GATE_BRIDGE & & i - 1 > = 0 & & path . first [ i - 1 ] = = BattleHex : : GATE_OUTER )
2023-08-14 18:46:42 +02:00
return true ;
2023-08-19 21:35:44 +02:00
else if ( hex = = BattleHex : : GATE_OUTER | | hex = = BattleHex : : GATE_INNER )
2023-08-14 18:46:42 +02:00
return true ;
return false ;
} ;
auto hex = path . first [ i ] ;
if ( ! openGateAtHex . isValid ( ) & & dbState ! = EGateState : : OPENED )
{
if ( needOpenGates ( hex ) )
openGateAtHex = path . first [ i + 1 ] ;
//TODO we need find batter way to handle double-wide stacks
//currently if only second occupied stack part is standing on gate / bridge hex then stack will start to wait for bridge to lower before it's needed. Though this is just a visual bug.
if ( curStack - > doubleWide ( ) )
{
BattleHex otherHex = curStack - > occupiedHex ( hex ) ;
if ( otherHex . isValid ( ) & & needOpenGates ( otherHex ) )
openGateAtHex = path . first [ i + 2 ] ;
}
//gate may be opened and then closed during stack movement, but not other way around
if ( openGateAtHex . isValid ( ) )
dbState = EGateState : : OPENED ;
}
if ( ! gateMayCloseAtHex . isValid ( ) & & dbState ! = EGateState : : CLOSED )
{
2023-08-19 21:35:44 +02:00
if ( hex = = BattleHex : : GATE_INNER & & i - 1 > = 0 & & path . first [ i - 1 ] ! = BattleHex : : GATE_OUTER )
2023-08-14 18:46:42 +02:00
{
gateMayCloseAtHex = path . first [ i - 1 ] ;
}
if ( hasWideMoat )
{
2023-08-19 21:35:44 +02:00
if ( hex = = BattleHex : : GATE_BRIDGE & & i - 1 > = 0 & & path . first [ i - 1 ] ! = BattleHex : : GATE_OUTER )
2023-08-14 18:46:42 +02:00
{
gateMayCloseAtHex = path . first [ i - 1 ] ;
}
2023-08-19 21:35:44 +02:00
else if ( hex = = BattleHex : : GATE_OUTER & & i - 1 > = 0 & &
path . first [ i - 1 ] ! = BattleHex : : GATE_INNER & &
path . first [ i - 1 ] ! = BattleHex : : GATE_BRIDGE )
2023-08-14 18:46:42 +02:00
{
gateMayCloseAtHex = path . first [ i - 1 ] ;
}
}
2023-08-19 21:35:44 +02:00
else if ( hex = = BattleHex : : GATE_OUTER & & i - 1 > = 0 & & path . first [ i - 1 ] ! = BattleHex : : GATE_INNER )
2023-08-14 18:46:42 +02:00
{
gateMayCloseAtHex = path . first [ i - 1 ] ;
}
}
}
}
bool stackIsMoving = true ;
while ( stackIsMoving )
{
if ( v < tilesToMove )
{
logGlobal - > error ( " Movement terminated abnormally " ) ;
break ;
}
bool gateStateChanging = false ;
//special handling for opening gate on from starting hex
if ( openGateAtHex . isValid ( ) & & openGateAtHex = = start )
gateStateChanging = true ;
else
{
for ( bool obstacleHit = false ; ( ! obstacleHit ) & & ( ! gateStateChanging ) & & ( v > = tilesToMove ) ; - - v )
{
BattleHex hex = path . first [ v ] ;
tiles . push_back ( hex ) ;
if ( ( openGateAtHex . isValid ( ) & & openGateAtHex = = hex ) | |
( gateMayCloseAtHex . isValid ( ) & & gateMayCloseAtHex = = hex ) )
{
gateStateChanging = true ;
}
//if we walked onto something, finalize this portion of stack movement check into obstacle
2023-08-28 16:43:57 +02:00
if ( ! battle . battleGetAllObstaclesOnPos ( hex , false ) . empty ( ) )
2023-08-14 18:46:42 +02:00
obstacleHit = true ;
if ( curStack - > doubleWide ( ) )
{
BattleHex otherHex = curStack - > occupiedHex ( hex ) ;
//two hex creature hit obstacle by backside
2023-08-28 16:43:57 +02:00
auto obstacle2 = battle . battleGetAllObstaclesOnPos ( otherHex , false ) ;
2023-08-14 18:46:42 +02:00
if ( otherHex . isValid ( ) & & ! obstacle2 . empty ( ) )
obstacleHit = true ;
}
if ( ! obstacleHit )
passed . insert ( hex ) ;
}
}
if ( ! tiles . empty ( ) )
{
//commit movement
BattleStackMoved sm ;
2023-08-31 17:45:52 +02:00
sm . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
sm . stack = curStack - > unitId ( ) ;
sm . distance = path . second ;
sm . teleporting = false ;
sm . tilesToMove = tiles ;
gameHandler - > sendAndApply ( & sm ) ;
tiles . clear ( ) ;
}
//we don't handle obstacle at the destination tile -> it's handled separately in the if at the end
if ( curStack - > getPosition ( ) ! = dest )
{
if ( stackIsMoving & & start ! = curStack - > getPosition ( ) )
{
2023-08-28 16:43:57 +02:00
stackIsMoving = battle . handleObstacleTriggersForUnit ( * gameHandler - > spellEnv , * curStack , passed ) ;
2023-08-14 18:46:42 +02:00
passed . insert ( curStack - > getPosition ( ) ) ;
if ( curStack - > doubleWide ( ) )
passed . insert ( curStack - > occupiedHex ( ) ) ;
}
if ( gateStateChanging )
{
if ( curStack - > getPosition ( ) = = openGateAtHex )
{
openGateAtHex = BattleHex ( ) ;
//only open gate if stack is still alive
if ( curStack - > alive ( ) )
{
BattleUpdateGateState db ;
2023-08-31 17:45:52 +02:00
db . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
db . state = EGateState : : OPENED ;
gameHandler - > sendAndApply ( & db ) ;
}
}
else if ( curStack - > getPosition ( ) = = gateMayCloseAtHex )
{
gateMayCloseAtHex = BattleHex ( ) ;
2023-08-25 17:23:15 +02:00
owner - > updateGateState ( battle ) ;
2023-08-14 18:46:42 +02:00
}
}
}
else
//movement finished normally: we reached destination
stackIsMoving = false ;
}
}
//handle last hex separately for deviation
if ( VLC - > settings ( ) - > getBoolean ( EGameSettings : : COMBAT_ONE_HEX_TRIGGERS_OBSTACLES ) )
{
if ( dest = = battle : : Unit : : occupiedHex ( start , curStack - > doubleWide ( ) , curStack - > unitSide ( ) )
| | start = = battle : : Unit : : occupiedHex ( dest , curStack - > doubleWide ( ) , curStack - > unitSide ( ) ) )
passed . clear ( ) ; //Just empty passed, obstacles will handled automatically
}
//handling obstacle on the final field (separate, because it affects both flying and walking stacks)
2023-08-28 16:43:57 +02:00
battle . handleObstacleTriggersForUnit ( * gameHandler - > spellEnv , * curStack , passed ) ;
2023-08-14 18:46:42 +02:00
return ret ;
}
2023-08-28 16:43:57 +02:00
void BattleActionProcessor : : makeAttack ( const CBattleInfoCallback & battle , const CStack * attacker , const CStack * defender , int distance , BattleHex targetHex , bool first , bool ranged , bool counter )
2023-08-14 18:46:42 +02:00
{
if ( first & & ! counter )
2023-08-25 17:23:15 +02:00
handleAttackBeforeCasting ( battle , ranged , attacker , defender ) ;
2023-08-14 18:46:42 +02:00
FireShieldInfo fireShield ;
BattleAttack bat ;
BattleLogMessage blm ;
2023-08-31 17:45:52 +02:00
blm . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
bat . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
bat . attackerChanges . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
bat . stackAttacking = attacker - > unitId ( ) ;
bat . tile = targetHex ;
std : : shared_ptr < battle : : CUnitState > attackerState = attacker - > acquireState ( ) ;
if ( ranged )
bat . flags | = BattleAttack : : SHOT ;
if ( counter )
bat . flags | = BattleAttack : : COUNTER ;
const int attackerLuck = attacker - > luckVal ( ) ;
if ( attackerLuck > 0 )
{
auto diceSize = VLC - > settings ( ) - > getVector ( EGameSettings : : COMBAT_GOOD_LUCK_DICE ) ;
size_t diceIndex = std : : min < size_t > ( diceSize . size ( ) - 1 , attackerLuck ) ;
if ( diceSize . size ( ) > 0 & & gameHandler - > getRandomGenerator ( ) . nextInt ( 1 , diceSize [ diceIndex ] ) = = 1 )
bat . flags | = BattleAttack : : LUCKY ;
}
if ( attackerLuck < 0 )
{
auto diceSize = VLC - > settings ( ) - > getVector ( EGameSettings : : COMBAT_BAD_LUCK_DICE ) ;
size_t diceIndex = std : : min < size_t > ( diceSize . size ( ) - 1 , - attackerLuck ) ;
if ( diceSize . size ( ) > 0 & & gameHandler - > getRandomGenerator ( ) . nextInt ( 1 , diceSize [ diceIndex ] ) = = 1 )
bat . flags | = BattleAttack : : UNLUCKY ;
}
if ( gameHandler - > getRandomGenerator ( ) . nextInt ( 99 ) < attacker - > valOfBonuses ( BonusType : : DOUBLE_DAMAGE_CHANCE ) )
{
bat . flags | = BattleAttack : : DEATH_BLOW ;
}
2023-09-05 16:22:11 +02:00
const auto * owner = battle . battleGetFightingHero ( attacker - > unitSide ( ) ) ;
2023-08-14 18:46:42 +02:00
if ( owner )
{
int chance = owner - > valOfBonuses ( BonusType : : BONUS_DAMAGE_CHANCE , attacker - > creatureIndex ( ) ) ;
if ( chance > gameHandler - > getRandomGenerator ( ) . nextInt ( 99 ) )
bat . flags | = BattleAttack : : BALLISTA_DOUBLE_DMG ;
}
int64_t drainedLife = 0 ;
// only primary target
if ( defender - > alive ( ) )
2023-08-25 17:23:15 +02:00
drainedLife + = applyBattleEffects ( battle , bat , attackerState , fireShield , defender , distance , false ) ;
2023-08-14 18:46:42 +02:00
//multiple-hex normal attack
2023-08-25 17:23:15 +02:00
std : : set < const CStack * > attackedCreatures = battle . getAttackedCreatures ( attacker , targetHex , bat . shot ( ) ) ; //creatures other than primary target
2023-08-14 18:46:42 +02:00
for ( const CStack * stack : attackedCreatures )
{
if ( stack ! = defender & & stack - > alive ( ) ) //do not hit same stack twice
2023-08-25 17:23:15 +02:00
drainedLife + = applyBattleEffects ( battle , bat , attackerState , fireShield , stack , distance , true ) ;
2023-08-14 18:46:42 +02:00
}
std : : shared_ptr < const Bonus > bonus = attacker - > getBonusLocalFirst ( Selector : : type ( ) ( BonusType : : SPELL_LIKE_ATTACK ) ) ;
if ( bonus & & ranged ) //TODO: make it work in melee?
{
//this is need for displaying hit animation
bat . flags | = BattleAttack : : SPELL_LIKE ;
bat . spellID = SpellID ( bonus - > subtype ) ;
//TODO: should spell override creature`s projectile?
auto spell = bat . spellID . toSpell ( ) ;
battle : : Target target ;
target . emplace_back ( defender , targetHex ) ;
2023-08-25 17:23:15 +02:00
spells : : BattleCast event ( & battle , attacker , spells : : Mode : : SPELL_LIKE_ATTACK , spell ) ;
2023-08-14 18:46:42 +02:00
event . setSpellLevel ( bonus - > val ) ;
auto attackedCreatures = spell - > battleMechanics ( & event ) - > getAffectedStacks ( target ) ;
//TODO: get exact attacked hex for defender
for ( const CStack * stack : attackedCreatures )
{
if ( stack ! = defender & & stack - > alive ( ) ) //do not hit same stack twice
{
2023-08-25 17:23:15 +02:00
drainedLife + = applyBattleEffects ( battle , bat , attackerState , fireShield , stack , distance , true ) ;
2023-08-14 18:46:42 +02:00
}
}
//now add effect info for all attacked stacks
for ( BattleStackAttacked & bsa : bat . bsa )
{
if ( bsa . attackerID = = attacker - > unitId ( ) ) //this is our attack and not f.e. fire shield
{
//this is need for displaying affect animation
bsa . flags | = BattleStackAttacked : : SPELL_EFFECT ;
bsa . spellID = SpellID ( bonus - > subtype ) ;
}
}
}
attackerState - > afterAttack ( ranged , counter ) ;
{
UnitChanges info ( attackerState - > unitId ( ) , UnitChanges : : EOperation : : RESET_STATE ) ;
attackerState - > save ( info . data ) ;
bat . attackerChanges . changedStacks . push_back ( info ) ;
}
if ( drainedLife > 0 )
bat . flags | = BattleAttack : : LIFE_DRAIN ;
2023-08-31 17:45:52 +02:00
for ( BattleStackAttacked & bsa : bat . bsa )
bsa . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
gameHandler - > sendAndApply ( & bat ) ;
{
const bool multipleTargets = bat . bsa . size ( ) > 1 ;
int64_t totalDamage = 0 ;
int32_t totalKills = 0 ;
for ( const BattleStackAttacked & bsa : bat . bsa )
{
totalDamage + = bsa . damageAmount ;
totalKills + = bsa . killedAmount ;
}
{
MetaString text ;
attacker - > addText ( text , EMetaText : : GENERAL_TXT , 376 ) ;
attacker - > addNameReplacement ( text ) ;
text . replaceNumber ( totalDamage ) ;
blm . lines . push_back ( text ) ;
}
addGenericKilledLog ( blm , defender , totalKills , multipleTargets ) ;
}
// drain life effect (as well as log entry) must be applied after the attack
if ( drainedLife > 0 )
{
MetaString text ;
attackerState - > addText ( text , EMetaText : : GENERAL_TXT , 361 ) ;
attackerState - > addNameReplacement ( text , false ) ;
text . replaceNumber ( drainedLife ) ;
defender - > addNameReplacement ( text , true ) ;
blm . lines . push_back ( std : : move ( text ) ) ;
}
if ( ! fireShield . empty ( ) )
{
//todo: this should be "virtual" spell instead, we only need fire spell school bonus here
const CSpell * fireShieldSpell = SpellID ( SpellID : : FIRE_SHIELD ) . toSpell ( ) ;
int64_t totalDamage = 0 ;
for ( const auto & item : fireShield )
{
const CStack * actor = item . first ;
int64_t rawDamage = item . second ;
2023-08-28 16:43:57 +02:00
const CGHeroInstance * actorOwner = battle . battleGetFightingHero ( actor - > unitOwner ( ) ) ;
2023-08-14 18:46:42 +02:00
if ( actorOwner )
{
rawDamage = fireShieldSpell - > adjustRawDamage ( actorOwner , attacker , rawDamage ) ;
}
else
{
rawDamage = fireShieldSpell - > adjustRawDamage ( actor , attacker , rawDamage ) ;
}
totalDamage + = rawDamage ;
//FIXME: add custom effect on actor
}
if ( totalDamage > 0 )
{
BattleStackAttacked bsa ;
2023-08-31 17:45:52 +02:00
bsa . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
bsa . flags | = BattleStackAttacked : : FIRE_SHIELD ;
bsa . stackAttacked = attacker - > unitId ( ) ; //invert
bsa . attackerID = defender - > unitId ( ) ;
bsa . damageAmount = totalDamage ;
attacker - > prepareAttacked ( bsa , gameHandler - > getRandomGenerator ( ) ) ;
StacksInjured pack ;
2023-08-31 17:45:52 +02:00
pack . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
pack . stacks . push_back ( bsa ) ;
gameHandler - > sendAndApply ( & pack ) ;
// TODO: this is already implemented in Damage::describeEffect()
{
MetaString text ;
text . appendLocalString ( EMetaText : : GENERAL_TXT , 376 ) ;
text . replaceLocalString ( EMetaText : : SPELL_NAME , SpellID : : FIRE_SHIELD ) ;
text . replaceNumber ( totalDamage ) ;
blm . lines . push_back ( std : : move ( text ) ) ;
}
addGenericKilledLog ( blm , attacker , bsa . killedAmount , false ) ;
}
}
gameHandler - > sendAndApply ( & blm ) ;
2023-08-25 17:23:15 +02:00
handleAfterAttackCasting ( battle , ranged , attacker , defender ) ;
2023-08-14 18:46:42 +02:00
}
2023-08-28 16:43:57 +02:00
void BattleActionProcessor : : attackCasting ( const CBattleInfoCallback & battle , bool ranged , BonusType attackMode , const battle : : Unit * attacker , const battle : : Unit * defender )
2023-08-14 18:46:42 +02:00
{
if ( attacker - > hasBonusOfType ( attackMode ) )
{
std : : set < SpellID > spellsToCast ;
TConstBonusListPtr spells = attacker - > getBonuses ( Selector : : type ( ) ( attackMode ) ) ;
for ( const auto & sf : * spells )
{
spellsToCast . insert ( SpellID ( sf - > subtype ) ) ;
}
for ( SpellID spellID : spellsToCast )
{
bool castMe = false ;
if ( ! defender - > alive ( ) )
{
logGlobal - > debug ( " attackCasting: all attacked creatures have been killed " ) ;
return ;
}
int32_t spellLevel = 0 ;
TConstBonusListPtr spellsByType = attacker - > getBonuses ( Selector : : typeSubtype ( attackMode , spellID ) ) ;
for ( const auto & sf : * spellsByType )
{
int meleeRanged ;
if ( sf - > additionalInfo . size ( ) < 2 )
{
// legacy format
vstd : : amax ( spellLevel , sf - > additionalInfo [ 0 ] % 1000 ) ;
meleeRanged = sf - > additionalInfo [ 0 ] / 1000 ;
}
else
{
vstd : : amax ( spellLevel , sf - > additionalInfo [ 0 ] ) ;
meleeRanged = sf - > additionalInfo [ 1 ] ;
}
if ( meleeRanged = = 0 | | ( meleeRanged = = 1 & & ranged ) | | ( meleeRanged = = 2 & & ! ranged ) )
castMe = true ;
}
int chance = attacker - > valOfBonuses ( ( Selector : : typeSubtype ( attackMode , spellID ) ) ) ;
vstd : : amin ( chance , 100 ) ;
const CSpell * spell = SpellID ( spellID ) . toSpell ( ) ;
spells : : AbilityCaster caster ( attacker , spellLevel ) ;
spells : : Target target ;
target . emplace_back ( defender ) ;
2023-08-25 17:23:15 +02:00
spells : : BattleCast parameters ( & battle , & caster , spells : : Mode : : PASSIVE , spell ) ;
2023-08-14 18:46:42 +02:00
auto m = spell - > battleMechanics ( & parameters ) ;
spells : : detail : : ProblemImpl ignored ;
if ( ! m - > canBeCastAt ( target , ignored ) )
continue ;
//check if spell should be cast (probability handling)
if ( gameHandler - > getRandomGenerator ( ) . nextInt ( 99 ) > = chance )
continue ;
//casting
if ( castMe )
{
parameters . cast ( gameHandler - > spellEnv , target ) ;
}
}
}
}
2023-08-28 16:43:57 +02:00
void BattleActionProcessor : : handleAttackBeforeCasting ( const CBattleInfoCallback & battle , bool ranged , const CStack * attacker , const CStack * defender )
2023-08-14 18:46:42 +02:00
{
2023-08-25 17:23:15 +02:00
attackCasting ( battle , ranged , BonusType : : SPELL_BEFORE_ATTACK , attacker , defender ) ; //no death stare / acid breath needed?
2023-08-14 18:46:42 +02:00
}
2023-08-28 16:43:57 +02:00
void BattleActionProcessor : : handleAfterAttackCasting ( const CBattleInfoCallback & battle , bool ranged , const CStack * attacker , const CStack * defender )
2023-08-14 18:46:42 +02:00
{
if ( ! attacker - > alive ( ) | | ! defender - > alive ( ) ) // can be already dead
return ;
2023-08-25 17:23:15 +02:00
attackCasting ( battle , ranged , BonusType : : SPELL_AFTER_ATTACK , attacker , defender ) ;
2023-08-14 18:46:42 +02:00
if ( ! defender - > alive ( ) )
{
//don't try death stare or acid breath on dead stack (crash!)
return ;
}
if ( attacker - > hasBonusOfType ( BonusType : : DEATH_STARE ) )
{
// mechanics of Death Stare as in H3:
// each gorgon have 10% chance to kill (counted separately in H3) -> binomial distribution
//original formula x = min(x, (gorgons_count + 9)/10);
double chanceToKill = attacker - > valOfBonuses ( BonusType : : DEATH_STARE , 0 ) / 100.0f ;
vstd : : amin ( chanceToKill , 1 ) ; //cap at 100%
std : : binomial_distribution < > distribution ( attacker - > getCount ( ) , chanceToKill ) ;
int staredCreatures = distribution ( gameHandler - > getRandomGenerator ( ) . getStdGenerator ( ) ) ;
double cap = 1 / std : : max ( chanceToKill , ( double ) ( 0.01 ) ) ; //don't divide by 0
int maxToKill = static_cast < int > ( ( attacker - > getCount ( ) + cap - 1 ) / cap ) ; //not much more than chance * count
vstd : : amin ( staredCreatures , maxToKill ) ;
staredCreatures + = ( attacker - > level ( ) * attacker - > valOfBonuses ( BonusType : : DEATH_STARE , 1 ) ) / defender - > level ( ) ;
if ( staredCreatures )
{
//TODO: death stare was not originally available for multiple-hex attacks, but...
const CSpell * spell = SpellID ( SpellID : : DEATH_STARE ) . toSpell ( ) ;
spells : : AbilityCaster caster ( attacker , 0 ) ;
2023-08-25 17:23:15 +02:00
spells : : BattleCast parameters ( & battle , & caster , spells : : Mode : : PASSIVE , spell ) ;
2023-08-14 18:46:42 +02:00
spells : : Target target ;
target . emplace_back ( defender ) ;
parameters . setEffectValue ( staredCreatures ) ;
parameters . cast ( gameHandler - > spellEnv , target ) ;
}
}
if ( ! defender - > alive ( ) )
return ;
int64_t acidDamage = 0 ;
TConstBonusListPtr acidBreath = attacker - > getBonuses ( Selector : : type ( ) ( BonusType : : ACID_BREATH ) ) ;
for ( const auto & b : * acidBreath )
{
if ( b - > additionalInfo [ 0 ] > gameHandler - > getRandomGenerator ( ) . nextInt ( 99 ) )
acidDamage + = b - > val ;
}
if ( acidDamage > 0 )
{
const CSpell * spell = SpellID ( SpellID : : ACID_BREATH_DAMAGE ) . toSpell ( ) ;
spells : : AbilityCaster caster ( attacker , 0 ) ;
2023-08-25 17:23:15 +02:00
spells : : BattleCast parameters ( & battle , & caster , spells : : Mode : : PASSIVE , spell ) ;
2023-08-14 18:46:42 +02:00
spells : : Target target ;
target . emplace_back ( defender ) ;
parameters . setEffectValue ( acidDamage * attacker - > getCount ( ) ) ;
parameters . cast ( gameHandler - > spellEnv , target ) ;
}
if ( ! defender - > alive ( ) )
return ;
if ( attacker - > hasBonusOfType ( BonusType : : TRANSMUTATION ) & & defender - > isLiving ( ) ) //transmutation mechanics, similar to WoG werewolf ability
{
double chanceToTrigger = attacker - > valOfBonuses ( BonusType : : TRANSMUTATION ) / 100.0f ;
vstd : : amin ( chanceToTrigger , 1 ) ; //cap at 100%
if ( gameHandler - > getRandomGenerator ( ) . getDoubleRange ( 0 , 1 ) ( ) > chanceToTrigger )
return ;
int bonusAdditionalInfo = attacker - > getBonus ( Selector : : type ( ) ( BonusType : : TRANSMUTATION ) ) - > additionalInfo [ 0 ] ;
2023-08-19 19:48:28 +02:00
if ( defender - > unitType ( ) - > getIndex ( ) = = bonusAdditionalInfo | |
2023-08-14 18:46:42 +02:00
( bonusAdditionalInfo = = CAddInfo : : NONE & & defender - > unitType ( ) - > getId ( ) = = attacker - > unitType ( ) - > getId ( ) ) )
return ;
battle : : UnitInfo resurrectInfo ;
2023-08-25 17:23:15 +02:00
resurrectInfo . id = battle . battleNextUnitId ( ) ;
2023-08-14 18:46:42 +02:00
resurrectInfo . summoned = false ;
resurrectInfo . position = defender - > getPosition ( ) ;
resurrectInfo . side = defender - > unitSide ( ) ;
if ( bonusAdditionalInfo ! = CAddInfo : : NONE )
resurrectInfo . type = CreatureID ( bonusAdditionalInfo ) ;
else
resurrectInfo . type = attacker - > creatureId ( ) ;
if ( attacker - > hasBonusOfType ( ( BonusType : : TRANSMUTATION ) , 0 ) )
resurrectInfo . count = std : : max ( ( defender - > getCount ( ) * defender - > getMaxHealth ( ) ) / resurrectInfo . type . toCreature ( ) - > getMaxHealth ( ) , 1u ) ;
else if ( attacker - > hasBonusOfType ( ( BonusType : : TRANSMUTATION ) , 1 ) )
resurrectInfo . count = defender - > getCount ( ) ;
else
return ; //wrong subtype
BattleUnitsChanged addUnits ;
2023-08-31 17:45:52 +02:00
addUnits . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
addUnits . changedStacks . emplace_back ( resurrectInfo . id , UnitChanges : : EOperation : : ADD ) ;
resurrectInfo . save ( addUnits . changedStacks . back ( ) . data ) ;
BattleUnitsChanged removeUnits ;
2023-08-31 17:45:52 +02:00
removeUnits . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
removeUnits . changedStacks . emplace_back ( defender - > unitId ( ) , UnitChanges : : EOperation : : REMOVE ) ;
gameHandler - > sendAndApply ( & removeUnits ) ;
gameHandler - > sendAndApply ( & addUnits ) ;
2023-09-15 12:59:02 +02:00
// send empty event to client
// temporary(?) workaround to force animations to trigger
StacksInjured fakeEvent ;
gameHandler - > sendAndApply ( & fakeEvent ) ;
2023-08-14 18:46:42 +02:00
}
if ( attacker - > hasBonusOfType ( BonusType : : DESTRUCTION , 0 ) | | attacker - > hasBonusOfType ( BonusType : : DESTRUCTION , 1 ) )
{
double chanceToTrigger = 0 ;
int amountToDie = 0 ;
if ( attacker - > hasBonusOfType ( BonusType : : DESTRUCTION , 0 ) ) //killing by percentage
{
chanceToTrigger = attacker - > valOfBonuses ( BonusType : : DESTRUCTION , 0 ) / 100.0f ;
int percentageToDie = attacker - > getBonus ( Selector : : type ( ) ( BonusType : : DESTRUCTION ) . And ( Selector : : subtype ( ) ( 0 ) ) ) - > additionalInfo [ 0 ] ;
amountToDie = static_cast < int > ( defender - > getCount ( ) * percentageToDie * 0.01f ) ;
}
else if ( attacker - > hasBonusOfType ( BonusType : : DESTRUCTION , 1 ) ) //killing by count
{
chanceToTrigger = attacker - > valOfBonuses ( BonusType : : DESTRUCTION , 1 ) / 100.0f ;
amountToDie = attacker - > getBonus ( Selector : : type ( ) ( BonusType : : DESTRUCTION ) . And ( Selector : : subtype ( ) ( 1 ) ) ) - > additionalInfo [ 0 ] ;
}
vstd : : amin ( chanceToTrigger , 1 ) ; //cap trigger chance at 100%
if ( gameHandler - > getRandomGenerator ( ) . getDoubleRange ( 0 , 1 ) ( ) > chanceToTrigger )
return ;
BattleStackAttacked bsa ;
bsa . attackerID = - 1 ;
bsa . stackAttacked = defender - > unitId ( ) ;
bsa . damageAmount = amountToDie * defender - > getMaxHealth ( ) ;
bsa . flags = BattleStackAttacked : : SPELL_EFFECT ;
bsa . spellID = SpellID : : SLAYER ;
defender - > prepareAttacked ( bsa , gameHandler - > getRandomGenerator ( ) ) ;
StacksInjured si ;
2023-08-31 17:45:52 +02:00
si . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
si . stacks . push_back ( bsa ) ;
gameHandler - > sendAndApply ( & si ) ;
2023-08-31 17:45:52 +02:00
sendGenericKilledLog ( battle , defender , bsa . killedAmount , false ) ;
2023-08-14 18:46:42 +02:00
}
}
2023-08-28 16:43:57 +02:00
int64_t BattleActionProcessor : : applyBattleEffects ( const CBattleInfoCallback & battle , BattleAttack & bat , std : : shared_ptr < battle : : CUnitState > attackerState , FireShieldInfo & fireShield , const CStack * def , int distance , bool secondary )
2023-08-14 18:46:42 +02:00
{
BattleStackAttacked bsa ;
if ( secondary )
bsa . flags | = BattleStackAttacked : : SECONDARY ; //all other targets do not suffer from spells & spell-like abilities
bsa . attackerID = attackerState - > unitId ( ) ;
bsa . stackAttacked = def - > unitId ( ) ;
{
BattleAttackInfo bai ( attackerState . get ( ) , def , distance , bat . shot ( ) ) ;
bai . deathBlow = bat . deathBlow ( ) ;
bai . doubleDamage = bat . ballistaDoubleDmg ( ) ;
bai . luckyStrike = bat . lucky ( ) ;
bai . unluckyStrike = bat . unlucky ( ) ;
2023-08-25 17:23:15 +02:00
auto range = battle . calculateDmgRange ( bai ) ;
2023-08-28 16:43:57 +02:00
bsa . damageAmount = battle . getBattle ( ) - > getActualDamage ( range . damage , attackerState - > getCount ( ) , gameHandler - > getRandomGenerator ( ) ) ;
2023-08-14 18:46:42 +02:00
CStack : : prepareAttacked ( bsa , gameHandler - > getRandomGenerator ( ) , bai . defender - > acquireState ( ) ) ; //calculate casualties
}
int64_t drainedLife = 0 ;
//life drain handling
if ( attackerState - > hasBonusOfType ( BonusType : : LIFE_DRAIN ) & & def - > isLiving ( ) )
{
int64_t toHeal = bsa . damageAmount * attackerState - > valOfBonuses ( BonusType : : LIFE_DRAIN ) / 100 ;
attackerState - > heal ( toHeal , EHealLevel : : RESURRECT , EHealPower : : PERMANENT ) ;
drainedLife + = toHeal ;
}
//soul steal handling
if ( attackerState - > hasBonusOfType ( BonusType : : SOUL_STEAL ) & & def - > isLiving ( ) )
{
//we can have two bonuses - one with subtype 0 and another with subtype 1
//try to use permanent first, use only one of two
for ( si32 subtype = 1 ; subtype > = 0 ; subtype - - )
{
if ( attackerState - > hasBonusOfType ( BonusType : : SOUL_STEAL , subtype ) )
{
int64_t toHeal = bsa . killedAmount * attackerState - > valOfBonuses ( BonusType : : SOUL_STEAL , subtype ) * attackerState - > getMaxHealth ( ) ;
attackerState - > heal ( toHeal , EHealLevel : : OVERHEAL , ( ( subtype = = 0 ) ? EHealPower : : ONE_BATTLE : EHealPower : : PERMANENT ) ) ;
drainedLife + = toHeal ;
break ;
}
}
}
bat . bsa . push_back ( bsa ) ; //add this stack to the list of victims after drain life has been calculated
//fire shield handling
if ( ! bat . shot ( ) & &
! def - > isClone ( ) & &
def - > hasBonusOfType ( BonusType : : FIRE_SHIELD ) & &
2023-08-19 19:19:59 +02:00
! attackerState - > hasBonusOfType ( BonusType : : SPELL_SCHOOL_IMMUNITY , SpellSchool ( ESpellSchool : : FIRE ) ) & &
! attackerState - > hasBonusOfType ( BonusType : : NEGATIVE_EFFECTS_IMMUNITY , SpellSchool ( ESpellSchool : : FIRE ) ) & &
attackerState - > valOfBonuses ( BonusType : : SPELL_DAMAGE_REDUCTION , SpellSchool ( ESpellSchool : : FIRE ) ) < 100 & &
2023-08-14 18:46:42 +02:00
CStack : : isMeleeAttackPossible ( attackerState . get ( ) , def ) // attacked needs to be adjacent to defender for fire shield to trigger (e.g. Dragon Breath attack)
)
{
//TODO: use damage with bonus but without penalties
auto fireShieldDamage = ( std : : min < int64_t > ( def - > getAvailableHealth ( ) , bsa . damageAmount ) * def - > valOfBonuses ( BonusType : : FIRE_SHIELD ) ) / 100 ;
fireShield . push_back ( std : : make_pair ( def , fireShieldDamage ) ) ;
}
return drainedLife ;
}
2023-08-31 17:45:52 +02:00
void BattleActionProcessor : : sendGenericKilledLog ( const CBattleInfoCallback & battle , const CStack * defender , int32_t killed , bool multiple )
2023-08-14 18:46:42 +02:00
{
if ( killed > 0 )
{
BattleLogMessage blm ;
2023-08-31 17:45:52 +02:00
blm . battleID = battle . getBattle ( ) - > getBattleID ( ) ;
2023-08-14 18:46:42 +02:00
addGenericKilledLog ( blm , defender , killed , multiple ) ;
gameHandler - > sendAndApply ( & blm ) ;
}
}
void BattleActionProcessor : : addGenericKilledLog ( BattleLogMessage & blm , const CStack * defender , int32_t killed , bool multiple )
{
if ( killed > 0 )
{
const int32_t txtIndex = ( killed > 1 ) ? 379 : 378 ;
std : : string formatString = VLC - > generaltexth - > allTexts [ txtIndex ] ;
// these default h3 texts have unnecessary new lines, so get rid of them before displaying (and trim just in case, trimming newlines does not works for some reason)
formatString . erase ( std : : remove ( formatString . begin ( ) , formatString . end ( ) , ' \n ' ) , formatString . end ( ) ) ;
formatString . erase ( std : : remove ( formatString . begin ( ) , formatString . end ( ) , ' \r ' ) , formatString . end ( ) ) ;
boost : : algorithm : : trim ( formatString ) ;
boost : : format txt ( formatString ) ;
if ( killed > 1 )
{
txt % killed % ( multiple ? VLC - > generaltexth - > allTexts [ 43 ] : defender - > unitType ( ) - > getNamePluralTranslated ( ) ) ; // creatures perish
}
else //killed == 1
{
txt % ( multiple ? VLC - > generaltexth - > allTexts [ 42 ] : defender - > unitType ( ) - > getNameSingularTranslated ( ) ) ; // creature perishes
}
MetaString line ;
line . appendRawString ( txt . str ( ) ) ;
blm . lines . push_back ( std : : move ( line ) ) ;
}
}
2023-08-17 18:18:14 +02:00
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : makeAutomaticBattleAction ( const CBattleInfoCallback & battle , const BattleAction & ba )
2023-08-17 18:18:14 +02:00
{
2023-08-25 17:23:15 +02:00
return makeBattleActionImpl ( battle , ba ) ;
2023-08-17 18:18:14 +02:00
}
2023-08-28 16:43:57 +02:00
bool BattleActionProcessor : : makePlayerBattleAction ( const CBattleInfoCallback & battle , PlayerColor player , const BattleAction & ba )
2023-08-17 18:18:14 +02:00
{
if ( ba . side ! = 0 & & ba . side ! = 1 & & gameHandler - > complain ( " Can not make action - invalid battle side! " ) )
return false ;
2023-08-28 16:43:57 +02:00
if ( battle . battleGetTacticDist ( ) ! = 0 )
2023-08-17 18:18:14 +02:00
{
if ( ! ba . isTacticsAction ( ) )
{
gameHandler - > complain ( " Can not make actions while in tactics mode! " ) ;
return false ;
}
2023-08-28 16:43:57 +02:00
if ( player ! = battle . sideToPlayer ( ba . side ) )
2023-08-17 18:18:14 +02:00
{
gameHandler - > complain ( " Can not make actions in battles you are not part of! " ) ;
return false ;
}
}
else
{
2023-08-28 16:43:57 +02:00
auto active = battle . battleActiveUnit ( ) ;
if ( ! active & & gameHandler - > complain ( " No active unit in battle! " ) )
return false ;
if ( ba . isUnitAction ( ) & & ba . stackNumber ! = active - > unitId ( ) )
2023-08-17 18:18:14 +02:00
{
gameHandler - > complain ( " Can not make actions - stack is not active! " ) ;
return false ;
}
2023-08-25 17:23:15 +02:00
auto unitOwner = battle . battleGetOwner ( active ) ;
2023-08-17 18:18:14 +02:00
if ( player ! = unitOwner & & gameHandler - > complain ( " Can not make actions in battles you are not part of! " ) )
return false ;
}
2023-08-25 17:23:15 +02:00
return makeBattleActionImpl ( battle , ba ) ;
2023-08-17 18:18:14 +02:00
}