]> git.localhorst.tv Git - l2e.git/blob - src/battle/states/SelectSpell.cpp
switched some (x,y) and (w,h) pairs to vectors
[l2e.git] / src / battle / states / SelectSpell.cpp
1 /*
2  * SelectSpell.cpp
3  *
4  *  Created on: Aug 8, 2012
5  *      Author: holy
6  */
7
8 #include "SelectSpell.h"
9
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 "../../graphics/Frame.h"
18
19 using app::Application;
20 using app::Input;
21 using common::Spell;
22 using geometry::Vector;
23 using graphics::Frame;
24
25 namespace battle {
26
27 void SelectSpell::EnterState(Application &c, SDL_Surface *screen) {
28         ctrl = &c;
29 }
30
31 void SelectSpell::ExitState(Application &c, SDL_Surface *screen) {
32         ctrl = 0;
33 }
34
35 void SelectSpell::ResumeState(Application &ctrl, SDL_Surface *screen) {
36         if (battle->ActiveHero().GetAttackChoice().Selection().HasSelected()) {
37                 battle->ActiveHero().GetAttackChoice().SetType(AttackChoice::MAGIC);
38                 battle->ActiveHero().GetAttackChoice().SetSpell(battle->ActiveHero().SpellMenu().Selected());
39                 ctrl.PopState();
40         }
41 }
42
43 void SelectSpell::PauseState(Application &ctrl, SDL_Surface *screen) {
44
45 }
46
47
48 void SelectSpell::Resize(int width, int height) {
49
50 }
51
52
53 void SelectSpell::HandleEvents(const Input &input) {
54         if (input.JustPressed(Input::ACTION_A)) {
55                 if (battle->ActiveHero().SpellMenu().SelectedIsEnabled()) {
56                         AttackChoice &ac(battle->ActiveHero().GetAttackChoice());
57                         const Spell *spell(battle->ActiveHero().SpellMenu().Selected());
58                         ac.Selection().Reset();
59                         if (spell->GetTargetingMode().TargetsAlly()) {
60                                 ac.Selection().SelectHeroes();
61                         } else {
62                                 ac.Selection().SelectMonsters();
63                         }
64                         if (spell->GetTargetingMode().TargetsAll()) {
65                                 ac.SetType(AttackChoice::MAGIC);
66                                 // TODO: remove item from inventory
67                                 ac.SetSpell(spell);
68                                 battle->NextHero();
69                                 ctrl->PopState();
70                         } else {
71                                 if (spell->GetTargetingMode().TargetsSingle()) {
72                                         ac.Selection().SetSingle();
73                                 } else {
74                                         ac.Selection().SetMultiple();
75                                 }
76                                 ctrl->PushState(new SelectTarget(battle, parent, &ac.Selection(), battle->Res().magicTargetCursor));
77                         }
78                 }
79         }
80         if (input.JustPressed(Input::ACTION_B)) {
81                 ctrl->PopState(); // return control to parent
82         }
83         if (input.JustPressed(Input::PAD_UP)) {
84                 battle->ActiveHero().SpellMenu().PreviousRow();
85         }
86         if (input.JustPressed(Input::PAD_RIGHT)) {
87                 battle->ActiveHero().SpellMenu().NextItem();
88         }
89         if (input.JustPressed(Input::PAD_DOWN)) {
90                 battle->ActiveHero().SpellMenu().NextRow();
91         }
92         if (input.JustPressed(Input::PAD_LEFT)) {
93                 battle->ActiveHero().SpellMenu().PreviousItem();
94         }
95 }
96
97 void SelectSpell::UpdateWorld(float deltaT) {
98
99 }
100
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);
107 }
108
109 void SelectSpell::RenderFrame(SDL_Surface *screen, const Vector<int> &offset) {
110         const Frame *frame(battle->Res().selectFrame);
111         Vector<int> position(frame->BorderSize());
112         int width(battle->Width() - 2 * frame->BorderWidth());
113         int height(battle->Res().normalFont->CharHeight() * 13);
114         frame->Draw(screen, position + offset, width, height);
115 }
116
117 void SelectSpell::RenderHeadline(SDL_Surface *screen, const Vector<int> &offset) {
118         const Resources &res(battle->Res());
119         Vector<int> position(
120                         2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(),
121                         2 * res.selectFrame->BorderHeight());
122         res.normalFont->DrawString(res.spellMenuHeadline, screen, position + offset);
123 }
124
125 void SelectSpell::RenderMenu(SDL_Surface *screen, const Vector<int> &offset) {
126         const Resources &res(battle->Res());
127         Vector<int> position(
128                         2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(),
129                         2 * res.selectFrame->BorderHeight() + 2 * res.normalFont->CharHeight());
130         battle->ActiveHero().SpellMenu().Draw(screen, position + offset);
131 }
132
133 }