]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/Resources.h
implemented capsule renaming
[l2e.git] / src / menu / Resources.h
index 62b825ded0cf94b39d7bf2b6597035bfb86d65d1..6fc064167d3ca901508e57d8eaef0dbff1ab31bb 100644 (file)
@@ -1,10 +1,3 @@
-/*
- * Resources.h
- *
- *  Created on: Oct 21, 2012
- *      Author: holy
- */
-
 #ifndef MENU_RESOURCES_H_
 #define MENU_RESOURCES_H_
 
@@ -14,15 +7,14 @@ namespace menu {
 
 struct Resources {
 
+       static const int TYPE_ID = 701;
+
        graphics::Texture *menubg;
 
        graphics::Font *normalFont;
        graphics::Font *inactiveFont;
        graphics::Font *statusFont;
 
-       graphics::Sprite *menuCursor;
-       graphics::Sprite *menuActiveCursor;
-
        graphics::Sprite *statusLabels;
        graphics::Frame *statusFrame;
 
@@ -54,7 +46,9 @@ struct Resources {
        const char *gutLabel;
        const char *mgrLabel;
 
+       const char *hpLabel;
        const char *ipLabel;
+       const char *levelLabel;
        const char *experienceLabel;
        const char *nextLevelLabel;
 
@@ -67,6 +61,7 @@ struct Resources {
        const char *itemMenuUseText;
        const char *itemMenuSortText;
        const char *itemMenuDropText;
+       const char *itemMenuSelectText;
 
        graphics::MenuProperties *inventoryMenuProperties;
 
@@ -96,8 +91,30 @@ struct Resources {
        graphics::MenuProperties *scenarioMenuProperties;
        const char *scenarioMenuHeadline;
 
+       graphics::Texture *capsulebg;
+
+       graphics::MenuProperties *capsuleMenuProperties;
+       graphics::MenuProperties *capsuleFeedMenuProperties;
+
+       const char *capsuleFeedLabel;
+       const char *capsuleChangeLabel;
+       const char *capsuleNameLabel;
+       const char *capsuleClassLabel;
+       const char *capsuleAlignmentLabel;
+       const char *capsuleTribeLabel;
+       const char *capsuleAttack1Label;
+       const char *capsuleAttack2Label;
+       const char *capsuleAttack3Label;
+       const char *capsuleNoAttackText;
+       const char *capsuleNotHungryText;
+
+       graphics::CharSelect *capsuleNameCharSelectTemplate;
+
        Resources();
 
+       static void CreateTypeDescription();
+       static void Construct(void *);
+
 };
 
 }