4 * Created on: Aug 8, 2012
8 #include "SelectSpell.h"
10 #include "SelectAttackType.h"
11 #include "SelectMoveAction.h"
12 #include "../BattleState.h"
13 #include "../../app/Application.h"
14 #include "../../app/Input.h"
15 #include "../../geometry/operators.h"
16 #include "../../geometry/Point.h"
17 #include "../../graphics/Frame.h"
19 using app::Application;
21 using geometry::Point;
22 using geometry::Vector;
23 using graphics::Frame;
27 void SelectSpell::EnterState(Application &c, SDL_Surface *screen) {
31 void SelectSpell::ExitState(Application &c, SDL_Surface *screen) {
35 void SelectSpell::ResumeState(Application &ctrl, SDL_Surface *screen) {
39 void SelectSpell::PauseState(Application &ctrl, SDL_Surface *screen) {
44 void SelectSpell::Resize(int width, int height) {
49 void SelectSpell::HandleInput(const Input &input) {
50 if (input.JustPressed(Input::ACTION_A)) {
51 // TODO: switch to target select
52 if (battle->GetSpellMenu().SelectedIsEnabled()) {
57 if (input.JustPressed(Input::ACTION_B)) {
58 ctrl->PopState(); // return control to parent
60 if (input.JustPressed(Input::PAD_UP)) {
61 battle->GetSpellMenu().PreviousRow();
63 if (input.JustPressed(Input::PAD_RIGHT)) {
64 battle->GetSpellMenu().NextItem();
66 if (input.JustPressed(Input::PAD_DOWN)) {
67 battle->GetSpellMenu().NextRow();
69 if (input.JustPressed(Input::PAD_LEFT)) {
70 battle->GetSpellMenu().PreviousItem();
74 void SelectSpell::UpdateWorld(float deltaT) {
78 void SelectSpell::Render(SDL_Surface *screen) {
79 parent->Render(screen);
80 Vector<int> offset(battle->CalculateScreenOffset(screen));
81 RenderFrame(screen, offset);
82 RenderHeadline(screen, offset);
83 RenderMenu(screen, offset);
86 void SelectSpell::RenderFrame(SDL_Surface *screen, const Vector<int> &offset) {
87 const Frame *frame(battle->Res().selectFrame);
88 Point<int> position(frame->BorderWidth(), frame->BorderHeight());
89 int width(battle->BackgroundWidth() - 2 * frame->BorderWidth());
90 int height(battle->Res().normalFont->CharHeight() * 13);
91 frame->Draw(screen, position + offset, width, height);
94 void SelectSpell::RenderHeadline(SDL_Surface *screen, const Vector<int> &offset) {
95 const Resources &res(battle->Res());
97 2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(),
98 2 * res.selectFrame->BorderHeight());
99 res.normalFont->DrawString(res.spellMenuHeadline, screen, position + offset);
102 void SelectSpell::RenderMenu(SDL_Surface *screen, const Vector<int> &offset) {
103 const Resources &res(battle->Res());
105 2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(),
106 2 * res.selectFrame->BorderHeight() + 2 * res.normalFont->CharHeight());
107 battle->GetSpellMenu().Draw(screen, position + offset);