]> git.localhorst.tv Git - l2e.git/blob - src/battle/Resources.h
added "No equit" text to battle resources
[l2e.git] / src / battle / Resources.h
1 /*
2  * Resources.h
3  *
4  *  Created on: Aug 8, 2012
5  *      Author: holy
6  */
7
8 #ifndef BATTLE_RESOURCES_H_
9 #define BATTLE_RESOURCES_H_
10
11 #include "../graphics/Menu.h"
12
13 namespace common {
14         class Inventory;
15         class Item;
16         class Spell;
17 }
18 namespace graphics {
19         class Font;
20         class Frame;
21         class Gauge;
22         class Sprite;
23 }
24
25 namespace battle {
26
27 struct Resources {
28
29         graphics::Sprite *moveIcons;
30         graphics::Sprite *attackIcons;
31         graphics::Sprite *attackChoiceIcons;
32
33         graphics::Frame *heroTagFrame;
34         graphics::Frame *activeHeroTagFrame;
35
36         graphics::Font *heroTagFont;
37         graphics::Sprite *heroTagLabels;
38
39         graphics::Gauge *healthGauge;
40         graphics::Gauge *manaGauge;
41         graphics::Gauge *ikariGauge;
42
43         graphics::Frame *selectFrame;
44
45         graphics::Font *normalFont;
46         graphics::Font *disabledFont;
47
48         graphics::Sprite *menuCursor;
49         graphics::Sprite *weaponTargetCursor;
50         graphics::Sprite *magicTargetCursor;
51         graphics::Sprite *itemTargetCursor;
52
53         const char *spellMenuHeadline;
54         graphics::Menu<const common::Spell *> spellMenuPrototype;
55
56         common::Inventory *inventory;
57         const char *itemMenuHeadline;
58         graphics::Menu<const common::Item *> itemMenuPrototype;
59
60         const char *ikariMenuHeadline;
61         graphics::Menu<const common::Item *> ikariMenuPrototype;
62         const char *noEquipmentText;
63
64         graphics::Sprite *weaponMenuIcon;
65         graphics::Sprite *armorMenuIcon;
66         graphics::Sprite *shieldMenuIcon;
67         graphics::Sprite *helmetMenuIcon;
68         graphics::Sprite *ringMenuIcon;
69         graphics::Sprite *jewelMenuIcon;
70
71
72         Resources()
73         : moveIcons(0)
74         , attackIcons(0)
75         , attackChoiceIcons(0)
76
77         , heroTagFrame(0)
78         , activeHeroTagFrame(0)
79
80         , heroTagFont(0)
81         , heroTagLabels(0)
82
83         , healthGauge(0)
84         , manaGauge(0)
85         , ikariGauge(0)
86
87         , selectFrame(0)
88
89         , normalFont(0)
90         , disabledFont(0)
91
92         , menuCursor(0)
93         , weaponTargetCursor(0)
94         , magicTargetCursor(0)
95         , itemTargetCursor(0)
96
97         , spellMenuHeadline("")
98         , inventory(0)
99         , itemMenuHeadline("")
100         , ikariMenuHeadline("")
101         , noEquipmentText("")
102
103         , weaponMenuIcon(0)
104         , armorMenuIcon(0)
105         , shieldMenuIcon(0)
106         , helmetMenuIcon(0)
107         , ringMenuIcon(0)
108         , jewelMenuIcon(0)
109         { }
110
111 };
112
113 }
114
115 #endif /* BATTLE_RESOURCES_H_ */