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/Ikari.h"
16 #include "../common/Inventory.h"
17 #include "../common/Item.h"
18 #include "../common/Spell.h"
19 #include "../geometry/operators.h"
20 #include "../graphics/Frame.h"
21 #include "../graphics/Sprite.h"
26 using app::Application;
28 using common::Inventory;
31 using geometry::Point;
32 using geometry::Vector;
39 void BattleState::AddMonster(const Monster &m) {
40 if (monsters.size() >= monstersLayout->NumPositions()) {
41 throw std::overflow_error("too many monsters for layout");
43 monsters.push_back(m);
46 void BattleState::AddHero(const Hero &h) {
47 if (numHeroes >= 4 || numHeroes >= (int)heroesLayout->NumPositions()) {
48 throw std::overflow_error("too many heroes for layout");
50 heroes[numHeroes] = h;
54 void BattleState::NextHero() {
56 while (activeHero < numHeroes && heroes[activeHero].Health() == 0) {
61 void BattleState::SwapHeroes(int lhs, int rhs) {
62 if (lhs < 0 || lhs >= numHeroes || rhs < 0 || rhs >= numHeroes || lhs == rhs) return;
63 std::swap(heroes[lhs], heroes[rhs]);
67 void BattleState::Resize(int w, int h) {
72 void BattleState::EnterState(Application &ctrl, SDL_Surface *screen) {
73 monstersLayout->CalculatePositions(background->w, background->h, monsterPositions);
74 heroesLayout->CalculatePositions(background->w, background->h, heroesPositions);
75 for (int i(0); i < 4; ++i) {
76 spellMenus[i] = res->spellMenuPrototype;
78 ikariMenus[i] = res->ikariMenuPrototype;
80 heroTags[i] = HeroTag(this, i);
81 smallHeroTags[i] = SmallHeroTag(this, i);
84 int tagHeight(attackTypeMenu.Height());
85 int tagWidth(attackTypeMenu.Width() * 2 + attackTypeMenu.Width() / 2);
86 int xOffset((BackgroundWidth() - 2 * tagWidth) / 2);
87 heroTagPositions[0] = Point<int>(xOffset, BackgroundHeight() - 2 * tagHeight);
88 heroTagPositions[1] = Point<int>(xOffset + tagWidth, BackgroundHeight() - 2 * tagHeight);
89 heroTagPositions[2] = Point<int>(xOffset, BackgroundHeight() - tagHeight);
90 heroTagPositions[3] = Point<int>(xOffset + tagWidth, BackgroundHeight() - tagHeight);
92 tagHeight = res->normalFont->CharHeight() * 4 + res->smallHeroTagFrame->BorderHeight() * 2;
93 tagWidth = res->normalFont->CharWidth() * 6 + res->smallHeroTagFrame->BorderWidth() * 2;
94 xOffset = (BackgroundWidth() - 4 * tagWidth) / 2;
95 int yOffset(BackgroundHeight() - tagHeight);
96 smallHeroTagPositions[0] = Point<int>(xOffset, yOffset);
97 smallHeroTagPositions[1] = Point<int>(xOffset + 2 * tagWidth, yOffset);
98 smallHeroTagPositions[2] = Point<int>(xOffset + tagWidth, yOffset);
99 smallHeroTagPositions[3] = Point<int>(xOffset + 3 * tagWidth, yOffset);
101 itemMenu = res->itemMenuPrototype;
105 void BattleState::LoadSpellMenu(vector<Hero>::size_type index) {
106 spellMenus[index].Clear();
107 spellMenus[index].Reserve(HeroAt(index).Spells().size());
108 for (vector<const Spell *>::const_iterator i(HeroAt(index).Spells().begin()), end(HeroAt(index).Spells().end()); i != end; ++i) {
109 bool enabled((*i)->CanUseInBattle() && (*i)->Cost() <= HeroAt(index).Mana());
110 spellMenus[index].Add((*i)->Name(), *i, enabled, 0, (*i)->Cost());
114 void BattleState::LoadIkariMenu(vector<Hero>::size_type index) {
115 ikariMenus[index].Clear();
116 ikariMenus[index].Reserve(6);
118 if (HeroAt(index).HasWeapon()) {
119 ikariMenus[index].Add(
120 HeroAt(index).Weapon()->Name(),
121 HeroAt(index).Weapon(),
122 HeroAt(index).Weapon()->HasIkari() && HeroAt(index).Weapon()->GetIkari()->Cost() <= HeroAt(index).IP(),
125 HeroAt(index).Weapon()->HasIkari() ? HeroAt(index).Weapon()->GetIkari()->Name() : "");
127 ikariMenus[index].Add(res->noEquipmentText, 0, false, res->weaponMenuIcon);
130 if (HeroAt(index).HasArmor()) {
131 ikariMenus[index].Add(
132 HeroAt(index).Armor()->Name(),
133 HeroAt(index).Armor(),
134 HeroAt(index).Armor()->HasIkari() && HeroAt(index).Armor()->GetIkari()->Cost() <= HeroAt(index).IP(),
137 HeroAt(index).Armor()->HasIkari() ? HeroAt(index).Armor()->GetIkari()->Name() : "");
139 ikariMenus[index].Add(res->noEquipmentText, 0, false, res->armorMenuIcon);
142 if (HeroAt(index).HasShield()) {
143 ikariMenus[index].Add(
144 HeroAt(index).Shield()->Name(),
145 HeroAt(index).Shield(),
146 HeroAt(index).Shield()->HasIkari() && HeroAt(index).Shield()->GetIkari()->Cost() <= HeroAt(index).IP(),
149 HeroAt(index).Shield()->HasIkari() ? HeroAt(index).Shield()->GetIkari()->Name() : "");
151 ikariMenus[index].Add(res->noEquipmentText, 0, false, res->shieldMenuIcon);
154 if (HeroAt(index).HasHelmet()) {
155 ikariMenus[index].Add(
156 HeroAt(index).Helmet()->Name(),
157 HeroAt(index).Helmet(),
158 HeroAt(index).Helmet()->HasIkari() && HeroAt(index).Helmet()->GetIkari()->Cost() <= HeroAt(index).IP(),
161 HeroAt(index).Helmet()->HasIkari() ? HeroAt(index).Helmet()->GetIkari()->Name() : "");
163 ikariMenus[index].Add(res->noEquipmentText, 0, false, res->helmetMenuIcon);
166 if (HeroAt(index).HasRing()) {
167 ikariMenus[index].Add(
168 HeroAt(index).Ring()->Name(),
169 HeroAt(index).Ring(),
170 HeroAt(index).Ring()->HasIkari() && HeroAt(index).Ring()->GetIkari()->Cost() <= HeroAt(index).IP(),
173 HeroAt(index).Ring()->HasIkari() ? HeroAt(index).Ring()->GetIkari()->Name() : "");
175 ikariMenus[index].Add(res->noEquipmentText, 0, false, res->ringMenuIcon);
178 if (HeroAt(index).HasJewel()) {
179 ikariMenus[index].Add(
180 HeroAt(index).Jewel()->Name(),
181 HeroAt(index).Jewel(),
182 HeroAt(index).Jewel()->HasIkari() && HeroAt(index).Jewel()->GetIkari()->Cost() <= HeroAt(index).IP(),
185 HeroAt(index).Jewel()->HasIkari() ? HeroAt(index).Jewel()->GetIkari()->Name() : "");
187 ikariMenus[index].Add(res->noEquipmentText, 0, false, res->jewelMenuIcon);
191 void BattleState::LoadInventory() {
192 const Inventory &inv(*res->inventory);
194 itemMenu.Reserve(inv.MaxItems());
195 for (int i(0); i < inv.MaxItems(); ++i) {
196 const Item *item(inv.ItemAt(i));
198 itemMenu.Add(item->Name(), item, item->CanUseInBattle(), item->MenuIcon(), inv.ItemCountAt(i));
200 itemMenu.AddEmptyEntry();
206 void BattleState::ExitState(Application &ctrl, SDL_Surface *screen) {
210 void BattleState::ResumeState(Application &ctrl, SDL_Surface *screen) {
211 // TODO: check for victory or defeat
213 ctrl.PopState(); // quit the battle scene
216 if (AttackSelectionDone()) {
217 ctrl.PushState(new PerformAttacks(this));
219 ctrl.PushState(new SelectMoveAction(this));
223 void BattleState::PauseState(Application &ctrl, SDL_Surface *screen) {
228 void BattleState::ClearAllAttacks() {
230 for (int i(0); i < numHeroes; ++i) {
231 attackChoices[i] = AttackChoice(this);
236 void BattleState::HandleEvents(const Input &input) {
240 void BattleState::UpdateWorld(float deltaT) {
244 void BattleState::Render(SDL_Surface *screen) {
245 Vector<int> offset(CalculateScreenOffset(screen));
246 RenderBackground(screen, offset);
247 RenderMonsters(screen, offset);
250 void BattleState::RenderBackground(SDL_Surface *screen, const Vector<int> &offset) {
252 SDL_FillRect(screen, 0, SDL_MapRGB(screen->format, 0, 0, 0));
254 destRect.x = offset.X();
255 destRect.y = offset.Y();
256 destRect.w = background->w;
257 destRect.h = background->h;
258 SDL_BlitSurface(background, 0, screen, &destRect);
261 void BattleState::RenderMonsters(SDL_Surface *screen, const Vector<int> &offset) {
262 for (vector<Monster>::size_type i(0), end(monsters.size()); i < end; ++i) {
263 monsters[i].Sprite()->DrawCenterBottom(screen, monsterPositions[i] + offset);
267 void BattleState::RenderHeroes(SDL_Surface *screen, const Vector<int> &offset) {
268 for (int i(0); i < numHeroes; ++i) {
269 if (HeroAnimationAt(i).Running()) {
270 HeroAnimationAt(i).DrawCenterBottom(screen, heroesPositions[i] + offset);
272 int row(heroes[i].Health() > 0 ? 0 : 2);
273 heroes[i].Sprite()->DrawCenterBottom(screen, heroesPositions[i] + offset, 1, row);
278 void BattleState::RenderHeroTags(SDL_Surface *screen, const Vector<int> &offset) {
279 int tagHeight(attackTypeMenu.Height());
280 int tagWidth(attackTypeMenu.Width() * 2 + attackTypeMenu.Width() / 2);
282 for (int i(0); i < numHeroes; ++i) {
283 heroTags[i].Render(screen, tagWidth, tagHeight, heroTagPositions[i] + offset, (int)i == activeHero);
287 void BattleState::RenderSmallHeroTags(SDL_Surface *screen, const Vector<int> &offset) {
288 int tagHeight(res->normalFont->CharHeight() * 4 + res->smallHeroTagFrame->BorderHeight() * 2);
289 int tagWidth(res->normalFont->CharWidth() * 6 + res->smallHeroTagFrame->BorderWidth() * 2);
293 rect.y = offset.Y() + BackgroundHeight() - tagHeight;
294 rect.w = BackgroundWidth();
296 SDL_FillRect(screen, &rect, SDL_MapRGB(screen->format, 0, 0, 0));
297 rect.y += res->normalFont->CharHeight() / 8;
298 rect.h -= res->normalFont->CharHeight() / 4;
299 SDL_FillRect(screen, &rect, res->heroesBgColor);
301 for (int i(0); i < numHeroes; ++i) {
302 smallHeroTags[i].Render(screen, tagWidth, tagHeight, smallHeroTagPositions[i] + offset);