]> git.localhorst.tv Git - l2e.git/blob - src/battle/states/SelectIkari.cpp
4bfea03d749142430489cdbc456d1279d147d03d
[l2e.git] / src / battle / states / SelectIkari.cpp
1 /*
2  * SelectIkari.cpp
3  *
4  *  Created on: Aug 9, 2012
5  *      Author: holy
6  */
7
8 #include "SelectIkari.h"
9
10 #include "SelectAttackType.h"
11 #include "SelectTarget.h"
12 #include "../BattleState.h"
13 #include "../../app/Application.h"
14 #include "../../app/Input.h"
15 #include "../../common/Ikari.h"
16 #include "../../common/Item.h"
17 #include "../../graphics/Frame.h"
18
19 using app::Application;
20 using app::Input;
21 using common::Ikari;
22 using math::Vector;
23 using graphics::Frame;
24
25 namespace battle {
26
27 void SelectIkari::OnEnterState(SDL_Surface *screen) {
28
29 }
30
31 void SelectIkari::OnExitState(SDL_Surface *screen) {
32
33 }
34
35 void SelectIkari::OnResumeState(SDL_Surface *screen) {
36         if (battle->ActiveHero().GetAttackChoice().Selection().HasSelected()) {
37                 battle->ActiveHero().GetAttackChoice().SetType(AttackChoice::IKARI);
38                 battle->ActiveHero().GetAttackChoice().SetItem(battle->ActiveHero().IkariMenu().Selected());
39                 Ctrl().PopState();
40         }
41 }
42
43 void SelectIkari::OnPauseState(SDL_Surface *screen) {
44
45 }
46
47
48 void SelectIkari::OnResize(int width, int height) {
49
50 }
51
52
53 void SelectIkari::HandleEvents(const Input &input) {
54         if (input.JustPressed(Input::ACTION_A)) {
55                 if (battle->ActiveHero().IkariMenu().SelectedIsEnabled() && battle->ActiveHero().IkariMenu().Selected()->HasIkari()) {
56                         AttackChoice &ac(battle->ActiveHero().GetAttackChoice());
57                         const Ikari *ikari(battle->ActiveHero().IkariMenu().Selected()->GetIkari());
58                         ac.Selection().Reset();
59                         if (ikari->GetTargetingMode().TargetsAlly()) {
60                                 ac.Selection().SelectHeroes();
61                         } else {
62                                 ac.Selection().SelectMonsters();
63                         }
64                         if (ikari->GetTargetingMode().TargetsAll()) {
65                                 ac.SetType(AttackChoice::IKARI);
66                                 ac.SetItem(battle->ActiveHero().IkariMenu().Selected());
67                                 battle->NextHero();
68                                 Ctrl().PopState();
69                         } else {
70                                 if (ikari->GetTargetingMode().TargetsSingle()) {
71                                         ac.Selection().SetSingle();
72                                 } else {
73                                         ac.Selection().SetMultiple();
74                                 }
75                                 Ctrl().PushState(new SelectTarget(battle, parent, &ac.Selection(), ikari->IsMagical() ? battle->Res().magicTargetCursor : battle->Res().weaponTargetCursor));
76                         }
77                 }
78         }
79         if (input.JustPressed(Input::ACTION_B)) {
80                 Ctrl().PopState(); // return control to parent
81         }
82         if (input.JustPressed(Input::PAD_UP)) {
83                 battle->ActiveHero().IkariMenu().PreviousRow();
84         }
85         if (input.JustPressed(Input::PAD_RIGHT)) {
86                 battle->ActiveHero().IkariMenu().NextItem();
87         }
88         if (input.JustPressed(Input::PAD_DOWN)) {
89                 battle->ActiveHero().IkariMenu().NextRow();
90         }
91         if (input.JustPressed(Input::PAD_LEFT)) {
92                 battle->ActiveHero().IkariMenu().PreviousItem();
93         }
94 }
95
96 void SelectIkari::UpdateWorld(float deltaT) {
97
98 }
99
100 void SelectIkari::Render(SDL_Surface *screen) {
101         parent->Render(screen);
102         Vector<int> offset(battle->CalculateScreenOffset(screen));
103         RenderFrame(screen, offset);
104         RenderHeadline(screen, offset);
105         RenderMenu(screen, offset);
106 }
107
108 void SelectIkari::RenderFrame(SDL_Surface *screen, const Vector<int> &offset) {
109         const Frame *frame(battle->Res().selectFrame);
110         Vector<int> position(frame->BorderSize());
111         int width(battle->Width() - 2 * frame->BorderWidth());
112         int height(battle->Res().normalFont->CharHeight() * 13);
113         frame->Draw(screen, position + offset, width, height);
114 }
115
116 void SelectIkari::RenderHeadline(SDL_Surface *screen, const Vector<int> &offset) {
117         const Resources &res(battle->Res());
118         Vector<int> position(
119                         2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(),
120                         2 * res.selectFrame->BorderHeight());
121         res.normalFont->DrawString(res.ikariMenuHeadline, screen, position + offset);
122 }
123
124 void SelectIkari::RenderMenu(SDL_Surface *screen, const Vector<int> &offset) {
125         const Resources &res(battle->Res());
126         Vector<int> position(
127                         2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(),
128                         2 * res.selectFrame->BorderHeight() + 2 * res.normalFont->CharHeight());
129         battle->ActiveHero().IkariMenu().Draw(screen, position + offset);
130 }
131
132 }