X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FResources.h;h=47e46256f668fbcf2f8db6425c66c9908c059747;hb=10a8d3a83e7ad6815bc9f752922239ef32073a5e;hp=bc6f2041a3b8779b4674a8a0c48668a169681e25;hpb=57a75f13e98f4b5d311c2d3b9d9ff637120c5ee2;p=l2e.git diff --git a/src/menu/Resources.h b/src/menu/Resources.h index bc6f204..47e4625 100644 --- a/src/menu/Resources.h +++ b/src/menu/Resources.h @@ -1,10 +1,3 @@ -/* - * Resources.h - * - * Created on: Oct 21, 2012 - * Author: holy - */ - #ifndef MENU_RESOURCES_H_ #define MENU_RESOURCES_H_ @@ -14,14 +7,106 @@ namespace menu { struct Resources { + static const int TYPE_ID = 701; + graphics::Texture *menubg; graphics::Font *normalFont; + graphics::Font *inactiveFont; + graphics::Font *statusFont; graphics::Sprite *statusLabels; + graphics::Frame *statusFrame; + + graphics::MenuProperties *mainMenuProperties; + const char *mainMenuItemText; + const char *mainMenuSpellText; + const char *mainMenuCapsuleText; + const char *mainMenuEquipmentText; + const char *mainMenuStatusText; + const char *mainMenuChangeText; + const char *mainMenuConfigText; + const char *mainMenuScenarioText; + + const char *mainMenuTimeText; + const char *mainMenuGoldText; + + graphics::Sprite *heroCursor; + int heroCursorBlinkTime; + + const char *noEquipmentText; + + graphics::Sprite *shoulderNav; + + const char *atpLabel; + const char *dfpLabel; + const char *strLabel; + const char *aglLabel; + const char *intLabel; + const char *gutLabel; + const char *mgrLabel; + + const char *ipLabel; + const char *experienceLabel; + const char *nextLevelLabel; + + graphics::MenuProperties *statusMenuProperties; + + const char *nextLabel; + const char *returnLabel; + + graphics::MenuProperties *itemMenuProperties; + const char *itemMenuUseText; + const char *itemMenuSortText; + const char *itemMenuDropText; + + graphics::MenuProperties *inventoryMenuProperties; + + graphics::MenuProperties *spellMenuProperties; + + graphics::MenuProperties *equipmentActionMenuProperties; + graphics::MenuProperties *equipmentMenuProperties; + const char *equipMenuEquipLabel; + const char *equipMenuStrongestLabel; + const char *equipMenuRemoveLabel; + const char *equipMenuRemoveAllLabel; + const char *equipMenuDropLabel; + + graphics::MenuProperties *configMenuProperties; + const char *configMessageSpeedLabel; + const char *configMessageSpeedFast; + const char *configMessageSpeedNormal; + const char *configMessageSpeedSlow; + const char *configBattleCursorLabel; + const char *configStatusCursorLabel; + const char *configCursorClear; + const char *configCursorMemory; + const char *configMusicLabel; + const char *configMusicStereo; + const char *configMusicMono; + + graphics::MenuProperties *scenarioMenuProperties; + const char *scenarioMenuHeadline; + + graphics::Texture *capsulebg; + + graphics::MenuProperties *capsuleMenuProperties; + + 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; Resources(); + static void CreateTypeDescription(); + static void Construct(void *); + }; }