]> git.localhorst.tv Git - l2e.git/blob - src/menu/StatusMenu.cpp
added hero's stats in status screen
[l2e.git] / src / menu / StatusMenu.cpp
1 /*
2  * StatusMenu.cpp
3  *
4  *  Created on: Oct 22, 2012
5  *      Author: holy
6  */
7
8 #include "StatusMenu.h"
9
10 #include "HeroStatus.h"
11 #include "PartyMenu.h"
12 #include "Resources.h"
13 #include "../app/Application.h"
14 #include "../app/Input.h"
15 #include "../common/GameConfig.h"
16 #include "../common/GameState.h"
17 #include "../common/Hero.h"
18 #include "../common/Item.h"
19 #include "../common/Stats.h"
20 #include "../graphics/Font.h"
21
22 using app::Input;
23 using common::Hero;
24 using common::Item;
25 using common::Stats;
26 using geometry::Vector;
27 using graphics::Font;
28
29 namespace menu {
30
31 StatusMenu::StatusMenu(PartyMenu *parent, int cursor)
32 : parent(parent)
33 , cursor(cursor) {
34
35 }
36
37
38 void StatusMenu::OnEnterState(SDL_Surface *) {
39
40 }
41
42 void StatusMenu::OnExitState(SDL_Surface *) {
43
44 }
45
46 void StatusMenu::OnResumeState(SDL_Surface *) {
47
48 }
49
50 void StatusMenu::OnPauseState(SDL_Surface *) {
51
52 }
53
54
55 void StatusMenu::OnResize(int width, int height) {
56
57 }
58
59
60 void StatusMenu::HandleEvents(const Input &input) {
61         if (input.JustPressed(Input::ACTION_B)) {
62                 Ctrl().PopState();
63         }
64
65         if (input.JustPressed(Input::SHOULDER_RIGHT)) {
66                 NextHero();
67         }
68         if (input.JustPressed(Input::SHOULDER_LEFT)) {
69                 PreviousHero();
70         }
71 }
72
73 void StatusMenu::UpdateWorld(float deltaT) {
74
75 }
76
77 void StatusMenu::Render(SDL_Surface *screen) {
78         Vector<int> offset((screen->w - Width()) / 2, (screen->h - Height()) / 2);
79         Vector<int> shoulderNavOffset(
80                         5 * parent->Res().statusFont->CharWidth(),
81                         parent->Res().statusFont->CharHeight());
82         Vector<int> statsOffset(
83                         4 * parent->Res().statusFont->CharWidth(),
84                         8 * parent->Res().statusFont->CharHeight() - parent->Res().statusFont->CharHeight() / 8);
85         Vector<int> equipOffset(
86                         17 * parent->Res().statusFont->CharWidth(),
87                         4 * parent->Res().statusFont->CharHeight() - parent->Res().statusFont->CharHeight() / 8);
88
89         parent->RenderBackground(screen);
90         parent->Res().shoulderNav->Draw(screen, offset + shoulderNavOffset);
91         RenderStatus(screen, offset + parent->StatusOffset(0));
92         RenderStats(screen, offset + statsOffset);
93         RenderEquipment(screen, offset + equipOffset);
94 }
95
96 int StatusMenu::Width() const {
97         return parent->Width();
98 }
99
100 int StatusMenu::Height() const {
101         return parent->Height();
102 }
103
104 void StatusMenu::RenderStatus(SDL_Surface *screen, const Vector<int> &offset) const {
105         parent->GetHeroStatus(cursor).Render(screen, offset);
106 }
107
108 void StatusMenu::RenderStats(SDL_Surface *screen, const Vector<int> &offset) const {
109         const Stats &stats(parent->Game().state->party[cursor]->GetStats());
110         Vector<int> lineBreak(0, parent->Res().statusFont->CharHeight());
111
112         Vector<int> position(offset);
113         RenderStatsLine(parent->Res().atpLabel, stats.Attack(), screen, position);
114
115         position += lineBreak;
116         RenderStatsLine(parent->Res().dfpLabel, stats.Defense(), screen, position);
117
118         position += lineBreak;
119         RenderStatsLine(parent->Res().strLabel, stats.Strength(), screen, position);
120
121         position += lineBreak;
122         RenderStatsLine(parent->Res().aglLabel, stats.Agility(), screen, position);
123
124         position += lineBreak;
125         RenderStatsLine(parent->Res().intLabel, stats.Intelligence(), screen, position);
126
127         position += lineBreak;
128         RenderStatsLine(parent->Res().gutLabel, stats.Gut(), screen, position);
129
130         position += lineBreak;
131         RenderStatsLine(parent->Res().mgrLabel, stats.MagicResistance(), screen, position);
132 }
133
134 void StatusMenu::RenderStatsLine(const char *label, int number, SDL_Surface *screen, const Vector<int> &position) const {
135         const Font &font(*parent->Res().statusFont);
136         const Vector<int> numberOffset(4 * font.CharWidth(), 0);
137
138         font.DrawString(label, screen, position, 3);
139         font.DrawNumber(number, screen, position + numberOffset, 3);
140 }
141
142 void StatusMenu::RenderEquipment(SDL_Surface *screen, const Vector<int> &offset) const {
143         const Hero &hero(*parent->Game().state->party[cursor]);
144         Vector<int> lineBreak(0, 2 * parent->Res().statusFont->CharHeight());
145
146         Vector<int> position(offset);
147         RenderEquipmentLine(hero.Weapon(), screen, position);
148
149         position += lineBreak;
150         RenderEquipmentLine(hero.Armor(), screen, position);
151
152         position += lineBreak;
153         RenderEquipmentLine(hero.Shield(), screen, position);
154
155         position += lineBreak;
156         RenderEquipmentLine(hero.Helmet(), screen, position);
157
158         position += lineBreak;
159         RenderEquipmentLine(hero.Ring(), screen, position);
160
161         position += lineBreak;
162         RenderEquipmentLine(hero.Jewel(), screen, position);
163 }
164
165 void StatusMenu::RenderEquipmentLine(const Item *item, SDL_Surface *screen, const Vector<int> &position) const {
166         const Font &font(*parent->Res().statusFont);
167         const Vector<int> textOffset(font.CharWidth(), 0);
168         if (item) {
169                 if (item->MenuIcon()) {
170                         item->MenuIcon()->Draw(screen, position);
171                 }
172                 font.DrawString(item->Name(), screen, position + textOffset);
173         } else {
174                 font.DrawString(parent->Res().noEquipmentText, screen, position + textOffset);
175         }
176 }
177
178
179 void StatusMenu::NextHero() {
180         cursor = (cursor + 1) % parent->Game().state->partySize;
181 }
182
183 void StatusMenu::PreviousHero() {
184         cursor = (cursor + parent->Game().state->partySize - 1) % parent->Game().state->partySize;
185 }
186
187 }