}
void BattleState::CalculateDamage() {
+ AttackChoice &ac(CurrentAttack().isMonster ? monsterAttacks[CurrentAttack().index] : AttackChoiceAt(CurrentAttack().index));
+ if (ac.GetType() == AttackChoice::DEFEND) return;
+
if (CurrentAttack().isMonster) {
const Stats &attackerStats(MonsterAt(CurrentAttack().index).GetStats());
// TODO: run monster's attack script
- monsterAttacks[CurrentAttack().index].SetType(AttackChoice::SWORD);
- monsterAttacks[CurrentAttack().index].Selection().SelectSingle();
- monsterAttacks[CurrentAttack().index].Selection().SelectHeroes();
+ ac.SetType(AttackChoice::SWORD);
+ ac.Selection().SelectSingle();
+ ac.Selection().SelectHeroes();
for (int i(0); i < NumHeroes(); ++i) {
if (HeroAt(i).Health() > 0) {
const Stats &defenderStats(HeroAt(i).GetStats());
Uint16 damage(CalculateDamage(attackerStats, defenderStats));
- monsterAttacks[CurrentAttack().index].Selection().SetBad(0, damage);
+ ac.Selection().SetBad(0, damage);
break;
}
}
} else {
const Stats &attackerStats(HeroAt(CurrentAttack().index).GetStats());
- TargetSelection &ts(AttackChoiceAt(CurrentAttack().index).Selection());
+ TargetSelection &ts(ac.Selection());
bool hitSome(false);
if (ts.TargetsEnemies()) {
for (int i(0); i < MaxMonsters(); ++i) {