4 * Created on: Aug 8, 2012
8 #include "SelectSpell.h"
10 #include "SelectAttackType.h"
11 #include "SelectMoveAction.h"
12 #include "SelectTarget.h"
13 #include "../BattleState.h"
14 #include "../../app/Application.h"
15 #include "../../app/Input.h"
16 #include "../../common/Spell.h"
17 #include "../../geometry/operators.h"
18 #include "../../geometry/Point.h"
19 #include "../../graphics/Frame.h"
21 using app::Application;
24 using geometry::Point;
25 using geometry::Vector;
26 using graphics::Frame;
30 void SelectSpell::EnterState(Application &c, SDL_Surface *screen) {
34 void SelectSpell::ExitState(Application &c, SDL_Surface *screen) {
38 void SelectSpell::ResumeState(Application &ctrl, SDL_Surface *screen) {
39 if (battle->ActiveHeroTargets().HasSelected()) {
44 void SelectSpell::PauseState(Application &ctrl, SDL_Surface *screen) {
49 void SelectSpell::Resize(int width, int height) {
54 void SelectSpell::HandleEvents(const Input &input) {
55 if (input.JustPressed(Input::ACTION_A)) {
56 if (battle->GetSpellMenu().SelectedIsEnabled()) {
57 const Spell *spell(battle->GetSpellMenu().Selected());
58 battle->ActiveHeroTargets().Reset();
59 if (spell->GetTargetingMode().TargetsAlly()) {
60 battle->ActiveHeroTargets().SelectHeroes();
62 battle->ActiveHeroTargets().SelectEnemies();
64 if (spell->GetTargetingMode().TargetsAll()) {
65 battle->SetAttackType(AttackChoice::MAGIC);
66 // TODO: remove item from inventory
67 battle->ActiveHeroAttackChoice().SetSpell(spell);
71 if (spell->GetTargetingMode().TargetsSingle()) {
72 battle->ActiveHeroTargets().SetSingle();
74 battle->ActiveHeroTargets().SetMultiple();
76 ctrl->PushState(new SelectTarget(battle, parent, &battle->ActiveHeroTargets(), battle->Res().magicTargetCursor));
80 if (input.JustPressed(Input::ACTION_B)) {
81 ctrl->PopState(); // return control to parent
83 if (input.JustPressed(Input::PAD_UP)) {
84 battle->GetSpellMenu().PreviousRow();
86 if (input.JustPressed(Input::PAD_RIGHT)) {
87 battle->GetSpellMenu().NextItem();
89 if (input.JustPressed(Input::PAD_DOWN)) {
90 battle->GetSpellMenu().NextRow();
92 if (input.JustPressed(Input::PAD_LEFT)) {
93 battle->GetSpellMenu().PreviousItem();
97 void SelectSpell::UpdateWorld(float deltaT) {
101 void SelectSpell::Render(SDL_Surface *screen) {
102 parent->Render(screen);
103 Vector<int> offset(battle->CalculateScreenOffset(screen));
104 RenderFrame(screen, offset);
105 RenderHeadline(screen, offset);
106 RenderMenu(screen, offset);
109 void SelectSpell::RenderFrame(SDL_Surface *screen, const Vector<int> &offset) {
110 const Frame *frame(battle->Res().selectFrame);
111 Point<int> position(frame->BorderWidth(), frame->BorderHeight());
112 int width(battle->BackgroundWidth() - 2 * frame->BorderWidth());
113 int height(battle->Res().normalFont->CharHeight() * 13);
114 frame->Draw(screen, position + offset, width, height);
117 void SelectSpell::RenderHeadline(SDL_Surface *screen, const Vector<int> &offset) {
118 const Resources &res(battle->Res());
120 2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(),
121 2 * res.selectFrame->BorderHeight());
122 res.normalFont->DrawString(res.spellMenuHeadline, screen, position + offset);
125 void SelectSpell::RenderMenu(SDL_Surface *screen, const Vector<int> &offset) {
126 const Resources &res(battle->Res());
128 2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(),
129 2 * res.selectFrame->BorderHeight() + 2 * res.normalFont->CharHeight());
130 battle->GetSpellMenu().Draw(screen, position + offset);