]> git.localhorst.tv Git - l2e.git/blob - src/battle/states/SelectItem.cpp
merged Point into Vector
[l2e.git] / src / battle / states / SelectItem.cpp
1 /*
2  * SelectItem.cpp
3  *
4  *  Created on: Aug 9, 2012
5  *      Author: holy
6  */
7
8 #include "SelectItem.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/Item.h"
16 #include "../../graphics/Frame.h"
17
18 using app::Application;
19 using app::Input;
20 using common::Item;
21 using geometry::Vector;
22 using graphics::Frame;
23
24 namespace battle {
25
26 void SelectItem::EnterState(Application &c, SDL_Surface *screen) {
27         ctrl = &c;
28 }
29
30 void SelectItem::ExitState(Application &c, SDL_Surface *screen) {
31         ctrl = 0;
32 }
33
34 void SelectItem::ResumeState(Application &ctrl, SDL_Surface *screen) {
35         if (battle->ActiveHero().GetAttackChoice().Selection().HasSelected()) {
36                 battle->ActiveHero().GetAttackChoice().SetType(AttackChoice::ITEM);
37                 battle->ActiveHero().GetAttackChoice().SetItem(battle->ItemMenu().Selected());
38                 ctrl.PopState();
39         }
40 }
41
42 void SelectItem::PauseState(Application &ctrl, SDL_Surface *screen) {
43
44 }
45
46
47 void SelectItem::Resize(int width, int height) {
48
49 }
50
51
52 void SelectItem::HandleEvents(const Input &input) {
53         if (input.JustPressed(Input::ACTION_A)) {
54                 if (battle->ItemMenu().SelectedIsEnabled()) {
55                         AttackChoice &ac(battle->ActiveHero().GetAttackChoice());
56                         const Item *item(battle->ItemMenu().Selected());
57                         ac.Selection().Reset();
58                         if (item->GetTargetingMode().TargetsAlly()) {
59                                 ac.Selection().SelectHeroes();
60                         } else {
61                                 ac.Selection().SelectMonsters();
62                         }
63                         if (item->GetTargetingMode().TargetsAll()) {
64                                 ac.SetType(AttackChoice::ITEM);
65                                 // TODO: remove item from inventory
66                                 ac.SetItem(item);
67                                 battle->NextHero();
68                                 ctrl->PopState();
69                         } else {
70                                 if (item->GetTargetingMode().TargetsSingle()) {
71                                         ac.Selection().SetSingle();
72                                 } else {
73                                         ac.Selection().SetMultiple();
74                                 }
75                                 ctrl->PushState(new SelectTarget(battle, parent, &ac.Selection(), battle->Res().itemTargetCursor));
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->ItemMenu().PreviousRow();
84         }
85         if (input.JustPressed(Input::PAD_RIGHT)) {
86                 battle->ItemMenu().NextItem();
87         }
88         if (input.JustPressed(Input::PAD_DOWN)) {
89                 battle->ItemMenu().NextRow();
90         }
91         if (input.JustPressed(Input::PAD_LEFT)) {
92                 battle->ItemMenu().PreviousItem();
93         }
94 }
95
96 void SelectItem::UpdateWorld(float deltaT) {
97
98 }
99
100 void SelectItem::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 SelectItem::RenderFrame(SDL_Surface *screen, const Vector<int> &offset) {
109         const Frame *frame(battle->Res().selectFrame);
110         Vector<int> position(frame->BorderWidth(), frame->BorderHeight());
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 SelectItem::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.itemMenuHeadline, screen, position + offset);
122 }
123
124 void SelectItem::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->ItemMenu().Draw(screen, position + offset);
130 }
131
132 }