X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FResources.h;h=9ea26e665000270d0b024e7ef5eaa550cd9b07b3;hb=0285546b22f9e8f496ca6b1abffdd232647b6b6a;hp=e5241c33d8f3ac95353a80f7951040a5334ee404;hpb=bba1ac05e8c1854dc61bd737d228d9bc18bbb6ad;p=l2e.git diff --git a/src/menu/Resources.h b/src/menu/Resources.h index e5241c3..9ea26e6 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,9 +7,12 @@ 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; @@ -38,8 +34,65 @@ struct Resources { 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; + Resources(); + static void CreateTypeDescription(); + static void Construct(void *); + }; }