4 * Created on: Aug 5, 2012
8 #include "BattleState.h"
10 #include "PartyLayout.h"
11 #include "states/SelectMoveAction.h"
12 #include "states/PerformAttacks.h"
13 #include "../app/Application.h"
14 #include "../app/Input.h"
15 #include "../common/GameState.h"
16 #include "../common/Ikari.h"
17 #include "../common/Inventory.h"
18 #include "../common/Item.h"
19 #include "../common/Spell.h"
20 #include "../graphics/Frame.h"
21 #include "../graphics/Sprite.h"
28 using app::Application;
30 using common::Inventory;
34 using geometry::Vector;
42 void BattleState::AddMonster(const Monster &m) {
43 if (monsters.size() >= monstersLayout->NumPositions()) {
44 throw std::overflow_error("too many monsters for layout");
46 monsters.push_back(m);
49 void BattleState::AddHero(const Hero &h) {
50 if (numHeroes >= 4 || numHeroes >= (int)heroesLayout->NumPositions()) {
51 throw std::overflow_error("too many heroes for layout");
53 heroes[numHeroes] = h;
57 void BattleState::NextHero() {
59 while (activeHero < numHeroes && heroes[activeHero].Health() == 0) {
64 void BattleState::PreviousHero() {
66 while (activeHero >= 0 && heroes[activeHero].Health() == 0) {
71 void BattleState::SwapHeroes(int lhs, int rhs) {
72 if (lhs < 0 || lhs >= numHeroes || rhs < 0 || rhs >= numHeroes || lhs == rhs) return;
73 std::swap(heroes[lhs], heroes[rhs]);
77 void BattleState::OnResize(int w, int h) {
82 void BattleState::OnEnterState(SDL_Surface *screen) {
83 for (int i(0); i < 4; ++i) {
84 heroes[i].Position() = heroesLayout->CalculatePosition(i, background->w, background->h);
85 heroes[i].SpellMenu() = *res->spellMenuProperties;
86 heroes[i].UpdateSpellMenu();
87 heroes[i].IkariMenu() = *res->ikariMenuProperties;
88 heroes[i].UpdateIkariMenu(res);
89 heroTags[i] = HeroTag(this, i);
90 smallHeroTags[i] = SmallHeroTag(this, i);
93 for (int i(0); i < int(monsters.size()); ++i) {
94 monsters[i].Position() = monstersLayout->CalculatePosition(i, background->w, background->h);
97 int tagHeight(attackTypeMenu.Height());
98 int tagWidth(attackTypeMenu.Width() * 2 + attackTypeMenu.Width() / 2);
99 int xOffset((Width() - 2 * tagWidth) / 2);
100 heroTagPositions[0] = Vector<int>(xOffset, Height() - 2 * tagHeight);
101 heroTagPositions[1] = Vector<int>(xOffset + tagWidth, Height() - 2 * tagHeight);
102 heroTagPositions[2] = Vector<int>(xOffset, Height() - tagHeight);
103 heroTagPositions[3] = Vector<int>(xOffset + tagWidth, Height() - tagHeight);
105 tagHeight = res->normalFont->CharHeight() * 4 + res->smallHeroTagFrame->BorderHeight() * 2;
106 tagWidth = res->normalFont->CharWidth() * 6 + res->smallHeroTagFrame->BorderWidth() * 2;
107 xOffset = (Width() - 4 * tagWidth) / 2;
108 int yOffset(Height() - tagHeight);
109 smallHeroTagPositions[0] = Vector<int>(xOffset, yOffset);
110 smallHeroTagPositions[1] = Vector<int>(xOffset + 2 * tagWidth, yOffset);
111 smallHeroTagPositions[2] = Vector<int>(xOffset + tagWidth, yOffset);
112 smallHeroTagPositions[3] = Vector<int>(xOffset + 3 * tagWidth, yOffset);
114 itemMenu = *res->itemMenuProperties;
119 void BattleState::LoadInventory() {
120 const Inventory &inv(game->state->inventory);
122 itemMenu.Reserve(inv.MaxItems());
123 for (int i(0); i < inv.MaxItems(); ++i) {
124 const Item *item(inv.ItemAt(i));
126 itemMenu.Add(item->Name(), item, item->CanUseInBattle(), item->MenuIcon(), inv.ItemCountAt(i));
128 itemMenu.AddEmptyEntry();
133 void BattleState::OnExitState(SDL_Surface *screen) {
137 void BattleState::OnResumeState(SDL_Surface *screen) {
139 Ctrl().PopState(); // quit the battle scene
150 // TODO: this should not push a state while quitting
151 if (AttackSelectionDone()) {
152 Ctrl().PushState(new PerformAttacks(this));
154 Ctrl().PushState(new SelectMoveAction(this));
158 bool BattleState::Victory() const {
159 for (int i(0); i < MaxMonsters(); ++i) {
160 if (MonsterAt(i).Health() > 0) return false;
165 bool BattleState::Defeat() const {
166 for (int i(0); i < NumHeroes(); ++i) {
167 if (HeroAt(i).Health() > 0) return false;
172 void BattleState::OnPauseState(SDL_Surface *screen) {
179 OrderCompare(BattleState *battle) : battle(battle) { }
180 bool operator ()(const BattleState::Order &lhs, const BattleState::Order &rhs) {
181 int lagl(lhs.isMonster ? battle->MonsterAt(lhs.index).GetStats().Agility() : battle->HeroAt(lhs.index).GetStats().Agility());
182 int ragl(rhs.isMonster ? battle->MonsterAt(rhs.index).GetStats().Agility() : battle->HeroAt(rhs.index).GetStats().Agility());
189 void BattleState::CalculateAttackOrder() {
190 attackOrder.reserve(monsters.size() + NumHeroes());
191 for (int i(0); i < NumHeroes(); ++i) {
192 attackOrder.push_back(Order(i, false));
194 for (vector<Monster>::size_type i(0), end(monsters.size()); i < end; ++i) {
195 attackOrder.push_back(Order(i, true));
196 MonsterAt(i).GetAttackChoice() = AttackChoice(this);
198 std::sort(attackOrder.begin(), attackOrder.end(), OrderCompare(this));
201 void BattleState::NextAttack() {
202 if (Victory() || Defeat()) {
203 attackCursor = attackOrder.size();
207 while (attackCursor < int(attackOrder.size())) {
208 if (attackOrder[attackCursor].isMonster) {
209 if (MonsterAt(attackOrder[attackCursor].index).Health() > 0) break;
211 if (HeroAt(attackOrder[attackCursor].index).Health() > 0) break;
217 bool BattleState::AttacksFinished() const {
218 return attackCursor >= int(attackOrder.size())
219 || Victory() || Defeat();
222 void BattleState::CalculateDamage() {
223 if (CurrentAttack().isMonster) {
224 DecideMonsterAttack(MonsterAt(CurrentAttack().index));
226 AttackChoice &ac(CurrentAttack().isMonster ? MonsterAt(CurrentAttack().index).GetAttackChoice() : HeroAt(CurrentAttack().index).GetAttackChoice());
227 if (ac.GetType() == AttackChoice::DEFEND) return;
228 TargetSelection &ts(ac.Selection());
230 if (CurrentAttack().isMonster) {
231 const Stats &attackerStats(MonsterAt(CurrentAttack().index).GetStats());
232 CalculateDamage(attackerStats, ts);
234 const Stats &attackerStats(HeroAt(CurrentAttack().index).GetStats());
235 CalculateDamage(attackerStats, ts);
239 void BattleState::DecideMonsterAttack(Monster &m) const {
240 AttackChoice &ac(m.GetAttackChoice());
241 TargetSelection &ts(ac.Selection());
243 int target(rand() % NumHeroes());
244 while (!HeroPositionOccupied(target)) {
245 target = rand() % NumHeroes();
247 ac.SetType(AttackChoice::SWORD);
253 void BattleState::CalculateDamage(const Stats &attackerStats, TargetSelection &ts) const {
255 if (ts.TargetsMonsters()) {
256 for (int i(0); i < MaxMonsters(); ++i) {
257 if (ts.IsSelected(i)) {
258 if (MonsterAt(i).Health() > 0) {
259 const Stats &defenderStats(MonsterAt(i).GetStats());
260 Uint16 damage(CalculateDamage(attackerStats, defenderStats));
261 ts.SetBad(i, damage);
269 for (int i(0); i < MaxMonsters(); ++i) {
270 if (MonsterAt(i).Health() > 0) {
271 const Stats &defenderStats(MonsterAt(i).GetStats());
272 Uint16 damage(CalculateDamage(attackerStats, defenderStats));
273 ts.SetBad(i, damage);
278 for (int i(0); i < NumHeroes(); ++i) {
279 if (ts.IsSelected(i)) {
280 if (HeroAt(i).Health() > 0) {
281 const Stats &defenderStats(HeroAt(i).GetStats());
282 Uint16 damage(CalculateDamage(attackerStats, defenderStats));
283 ts.SetBad(i, damage);
291 for (int i(0); i < NumHeroes(); ++i) {
292 if (HeroAt(i).Health() > 0) {
293 const Stats &defenderStats(HeroAt(i).GetStats());
294 Uint16 damage(CalculateDamage(attackerStats, defenderStats));
295 ts.SetBad(i, damage);
302 Uint16 BattleState::CalculateDamage(const Stats &attacker, const Stats &defender) const {
303 return attacker.Attack() / 2 - defender.Defense() / 4;
306 void BattleState::ApplyDamage() {
307 if (attackCursor < 0) return;
308 AttackChoice &ac(CurrentAttack().isMonster ? MonsterAt(CurrentAttack().index).GetAttackChoice() : HeroAt(CurrentAttack().index).GetAttackChoice());
309 TargetSelection &ts(ac.Selection());
310 if (ts.TargetsMonsters()) {
311 for (int i(0); i < MaxMonsters(); ++i) {
312 Monster &monster(MonsterAt(i));
314 monster.SubtractHealth(ts.GetAmount(i));
315 if (monster.Health() == 0) {
316 expReward += monster.ExpReward();
317 goldReward += monster.GoldReward();
322 for (int i(0); i < NumHeroes(); ++i) {
323 Hero &hero(HeroAt(i));
325 hero.SubtractHealth(ts.GetAmount(i));
331 AttackChoice &BattleState::CurrentAttackAttackChoice() {
332 if (CurrentAttack().isMonster) {
333 return MonsterAt(CurrentAttack().index).GetAttackChoice();
335 return HeroAt(CurrentAttack().index).GetAttackChoice();
339 void BattleState::ClearAllAttacks() {
342 for (int i(0); i < NumHeroes(); ++i) {
343 HeroAt(i).GetAttackChoice() = AttackChoice(this);
345 for (int i(0); i < MaxMonsters(); ++i) {
346 MonsterAt(i).GetAttackChoice() = AttackChoice(this);
352 void BattleState::HandleEvents(const Input &input) {
356 void BattleState::UpdateWorld(float deltaT) {
360 void BattleState::Render(SDL_Surface *screen) {
362 Vector<int> offset(CalculateScreenOffset(screen));
363 RenderBackground(screen, offset);
364 RenderMonsters(screen, offset);
367 void BattleState::RenderBackground(SDL_Surface *screen, const Vector<int> &offset) {
370 SDL_FillRect(screen, 0, SDL_MapRGB(screen->format, 0, 0, 0));
372 destRect.x = offset.X();
373 destRect.y = offset.Y();
374 destRect.w = background->w;
375 destRect.h = background->h;
376 SDL_BlitSurface(background, 0, screen, &destRect);
379 void BattleState::RenderMonsters(SDL_Surface *screen, const Vector<int> &offset) {
381 for (vector<Monster>::size_type i(0), end(monsters.size()); i < end; ++i) {
382 if (MonsterPositionOccupied(i)) {
383 if (monsters[i].GetAnimation().Running()) {
384 monsters[i].GetAnimation().DrawCenter(screen, monsters[i].Position() + offset);
386 monsters[i].Sprite()->DrawCenter(screen, monsters[i].Position() + offset);
392 void BattleState::RenderHeroes(SDL_Surface *screen, const Vector<int> &offset) {
394 for (int i(0); i < numHeroes; ++i) {
395 if (heroes[i].GetAnimation().Running()) {
396 heroes[i].GetAnimation().DrawCenter(screen, heroes[i].Position() + offset);
398 int row(heroes[i].Health() > 0 ? 0 : 2);
399 heroes[i].Sprite()->DrawCenter(screen, heroes[i].Position() + offset, 1, row);
404 void BattleState::RenderHeroTags(SDL_Surface *screen, const Vector<int> &offset) {
406 int tagHeight(attackTypeMenu.Height());
407 int tagWidth(attackTypeMenu.Width() * 2 + attackTypeMenu.Width() / 2);
409 for (int i(0); i < numHeroes; ++i) {
410 heroTags[i].Render(screen, tagWidth, tagHeight, heroTagPositions[i] + offset, (int)i == activeHero);
414 void BattleState::RenderSmallHeroTags(SDL_Surface *screen, const Vector<int> &offset) {
416 int tagHeight(res->normalFont->CharHeight() * 4 + res->smallHeroTagFrame->BorderHeight() * 2);
417 int tagWidth(res->normalFont->CharWidth() * 6 + res->smallHeroTagFrame->BorderWidth() * 2);
421 rect.y = offset.Y() + Height() - tagHeight;
424 SDL_FillRect(screen, &rect, SDL_MapRGB(screen->format, 0, 0, 0));
425 rect.y += res->normalFont->CharHeight() / 8;
426 rect.h -= res->normalFont->CharHeight() / 4;
427 SDL_FillRect(screen, &rect, res->heroesBgColor.MapRGB(screen->format));
429 for (int i(0); i < numHeroes; ++i) {
430 smallHeroTags[i].Render(screen, tagWidth, tagHeight, smallHeroTagPositions[i] + offset);