X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FPartyMenu.h;h=f104898c31ca66d6b001cf0ab1aa9353f8f67a58;hb=4309d259becd96ead792678257e910c03a6b4a3d;hp=2172bfccc536e40bb339a052322857d21267f630;hpb=57a75f13e98f4b5d311c2d3b9d9ff637120c5ee2;p=l2e.git diff --git a/src/menu/PartyMenu.h b/src/menu/PartyMenu.h index 2172bfc..f104898 100644 --- a/src/menu/PartyMenu.h +++ b/src/menu/PartyMenu.h @@ -1,18 +1,17 @@ -/* - * PartyMenu.h - * - * Created on: Oct 21, 2012 - * Author: holy - */ - #ifndef MENU_PARTYMENU_H_ #define MENU_PARTYMENU_H_ -#include "fwd.h" +namespace common { + struct GameConfig; +} +namespace menu { + struct Resources; +} + #include "HeroStatus.h" #include "../app/State.h" -#include "../common/fwd.h" -#include "../geometry/Vector.h" +#include "../math/Vector.h" +#include "../graphics/Menu.h" namespace menu { @@ -25,13 +24,31 @@ public: public: virtual void HandleEvents(const app::Input &); - virtual void UpdateWorld(float deltaT); + virtual void UpdateWorld(Uint32 deltaT); virtual void Render(SDL_Surface *); public: + common::GameConfig &Game() { return *game; } + const common::GameConfig &Game() const { return *game; } Resources &Res(); const Resources &Res() const; + int Width() const; + int Height() const; + +public: + void RenderBackground(SDL_Surface *screen) const; + void RenderHeros(SDL_Surface *screen, const math::Vector &offset) const; + void RenderMenu(SDL_Surface *screen, const math::Vector &offset) const; + void RenderInfo(SDL_Surface *screen, const math::Vector &offset) const; + + math::Vector StatusOffset(int index) const; + const HeroStatus &GetHeroStatus(int index) const { return status[index]; } + + static void OnEquipSelect(void *, int); + static void OnSpellSelect(void *, int); + static void OnStatusSelect(void *, int); + private: virtual void OnEnterState(SDL_Surface *screen); virtual void OnExitState(SDL_Surface *screen); @@ -40,14 +57,26 @@ private: virtual void OnResize(int width, int height); - void RenderHeros(SDL_Surface *screen, const geometry::Vector &offset) const; +private: + enum MenuItem { + MENU_ITEM_ITEM, + MENU_ITEM_SPELL, + MENU_ITEM_CAPSULE, + MENU_ITEM_EQUIP, + MENU_ITEM_STATUS, + MENU_ITEM_CHANGE, + MENU_ITEM_CONFIG, + MENU_ITEM_SCENARIO, + }; private: HeroStatus status[4]; + math::Vector statusPositions[4]; common::GameConfig *game; + graphics::Menu mainMenu; }; } -#endif /* MENU_PARTYMENU_H_ */ +#endif