mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
commit
d1553c448a
@ -609,7 +609,7 @@ bool BattleEvaluator::attemptCastingSpell(const CStack * activeStack)
|
|||||||
|
|
||||||
if(ourUnit * goodEffect == 1)
|
if(ourUnit * goodEffect == 1)
|
||||||
{
|
{
|
||||||
if(ourUnit && goodEffect && (unit->isClone() || unit->isGhost() || !unit->unitSlot().validSlot()))
|
if(ourUnit && goodEffect && (unit->isClone() || unit->isGhost()))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
ps.value += dpsReduce * scoreEvaluator.getPositiveEffectMultiplier();
|
ps.value += dpsReduce * scoreEvaluator.getPositiveEffectMultiplier();
|
||||||
|
@ -258,7 +258,9 @@ EvaluationResult BattleExchangeEvaluator::findBestTarget(
|
|||||||
|
|
||||||
updateReachabilityMap(hb);
|
updateReachabilityMap(hb);
|
||||||
|
|
||||||
if(result.bestAttack.attack.shooting && hb->battleHasShootingPenalty(activeStack, result.bestAttack.dest))
|
if(result.bestAttack.attack.shooting
|
||||||
|
&& !activeStack->waited()
|
||||||
|
&& hb->battleHasShootingPenalty(activeStack, result.bestAttack.dest))
|
||||||
{
|
{
|
||||||
if(!canBeHitThisTurn(result.bestAttack))
|
if(!canBeHitThisTurn(result.bestAttack))
|
||||||
return result; // lets wait
|
return result; // lets wait
|
||||||
@ -481,11 +483,6 @@ float BattleExchangeEvaluator::evaluateExchange(
|
|||||||
DamageCache & damageCache,
|
DamageCache & damageCache,
|
||||||
std::shared_ptr<HypotheticBattle> hb)
|
std::shared_ptr<HypotheticBattle> hb)
|
||||||
{
|
{
|
||||||
if(ap.from.hex == 127)
|
|
||||||
{
|
|
||||||
logAi->trace("x");
|
|
||||||
}
|
|
||||||
|
|
||||||
BattleScore score = calculateExchange(ap, turn, targets, damageCache, hb);
|
BattleScore score = calculateExchange(ap, turn, targets, damageCache, hb);
|
||||||
|
|
||||||
#if BATTLE_TRACE_LEVEL >= 1
|
#if BATTLE_TRACE_LEVEL >= 1
|
||||||
@ -887,7 +884,7 @@ bool BattleExchangeEvaluator::checkPositionBlocksOurStacks(HypotheticBattle & hb
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
auto blockedUnitDamage = unit->getMinDamage(hb.battleCanShoot(unit)) * unit->getCount();
|
auto blockedUnitDamage = unit->getMinDamage(hb.battleCanShoot(unit)) * unit->getCount();
|
||||||
auto ratio = blockedUnitDamage / (blockedUnitDamage + activeUnitDamage);
|
float ratio = blockedUnitDamage / (float)(blockedUnitDamage + activeUnitDamage + 0.01);
|
||||||
|
|
||||||
auto unitReachability = turnBattle.getReachability(unit);
|
auto unitReachability = turnBattle.getReachability(unit);
|
||||||
auto unitSpeed = unit->speed(turn); // Cached value, to avoid performance hit
|
auto unitSpeed = unit->speed(turn); // Cached value, to avoid performance hit
|
||||||
|
Loading…
Reference in New Issue
Block a user