ctrl.PopState(); // quit the battle scene
return;
}
+ if (Victory()) {
+ // TODO: push victory state
+ ctrl.PopState();
+ return;
+ }
+ if (Defeat()) {
+ // TODO: push defeat state
+ ctrl.PopState();
+ return;
+ }
// TODO: this should not push a state while quitting
if (AttackSelectionDone()) {
ctrl.PushState(new PerformAttacks(this));
}
}
+bool BattleState::Victory() const {
+ for (int i(0); i < MaxMonsters(); ++i) {
+ if (MonsterAt(i).Health() > 0) return false;
+ }
+ return true;
+}
+
+bool BattleState::Defeat() const {
+ for (int i(0); i < NumHeroes(); ++i) {
+ if (HeroAt(i).Health() > 0) return false;
+ }
+ return true;
+}
+
void BattleState::PauseState(Application &ctrl, SDL_Surface *screen) {
}
monsterAttacks[CurrentAttack().index].Selection().SetBad(0, 15);
} else {
TargetSelection &ts(AttackChoiceAt(CurrentAttack().index).Selection());
+ bool hitSome(false);
if (ts.TargetsEnemies()) {
for (int i(0); i < MaxMonsters(); ++i) {
- if (ts.IsSelected(i) && MonsterAt(i).Health() > 0) {
+ if (ts.IsSelected(i)) {
+ if (MonsterAt(i).Health() > 0) {
+ ts.SetBad(i, 15);
+ hitSome = true;
+ } else {
+ ts.Unselect(i);
+ }
+ }
+ }
+ if (hitSome) return;
+ for (int i(0); i < MaxMonsters(); ++i) {
+ if (MonsterAt(i).Health() > 0) {
ts.SetBad(i, 15);
+ break;
}
}
} else {
for (int i(0); i < NumHeroes(); ++i) {
- if (ts.IsSelected(i) && HeroAt(i).Health() > 0) {
+ if (ts.IsSelected(i)) {
+ if (HeroAt(i).Health() > 0) {
+ ts.SetBad(i, 15);
+ hitSome = true;
+ } else {
+ ts.Unselect(i);
+ }
+ }
+ }
+ if (hitSome) return;
+ for (int i(0); i < NumHeroes(); ++i) {
+ if (HeroAt(i).Health() > 0) {
ts.SetBad(i, 15);
+ break;
}
}
}
}
} else {
for (int i(0); i < NumHeroes(); ++i) {
- if (ts.IsSelected(i) && MonsterAt(i).Health() > 0) {
+ if (ts.IsBad(i)) {
HeroAt(i).SubtractHealth(ts.GetAmount(i));
}
}
void BattleState::RenderMonsters(SDL_Surface *screen, const Vector<int> &offset) {
for (vector<Monster>::size_type i(0), end(monsters.size()); i < end; ++i) {
- monsters[i].Sprite()->DrawCenter(screen, monsterPositions[i] + offset);
+ if (MonsterPositionOccupied(i)) {
+ monsters[i].Sprite()->DrawCenter(screen, monsterPositions[i] + offset);
+ }
}
}