X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FStatusMenu.h;h=45af969a72bd4f3fd110265d8feb5da3f5495964;hb=63a2a96b70a18d08a2714571f79fe7d99612cb9e;hp=61082d4d95903d94b21413a6ba2f14c1854d3612;hpb=317100aa5878503dad034a1e1eb734d1e952f842;p=l2e.git diff --git a/src/menu/StatusMenu.h b/src/menu/StatusMenu.h index 61082d4..45af969 100644 --- a/src/menu/StatusMenu.h +++ b/src/menu/StatusMenu.h @@ -1,17 +1,20 @@ -/* - * StatusMenu.h - * - * Created on: Oct 22, 2012 - * Author: holy - */ - #ifndef MENU_STATUSMENU_H_ #define MENU_STATUSMENU_H_ -#include "fwd.h" +namespace common { + class Hero; + class Item; +} +namespace math { + template + class Vector; +} +namespace menu { + class PartyMenu; +} + #include "../app/State.h" -#include "../common/fwd.h" -#include "../geometry/Vector.h" +#include "../graphics/Menu.h" namespace menu { @@ -23,7 +26,7 @@ public: public: virtual void HandleEvents(const app::Input &); - virtual void UpdateWorld(float deltaT); + virtual void UpdateWorld(Uint32 deltaT); virtual void Render(SDL_Surface *); public: @@ -41,18 +44,27 @@ private: void NextHero(); void PreviousHero(); - void RenderStatus(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderStats(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderStatsLine(const char *label, int number, SDL_Surface *screen, const geometry::Vector &position) const; - void RenderEquipment(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderEquipmentLine(const common::Item *, SDL_Surface *screen, const geometry::Vector &position) const; + const common::Hero &GetHero() const; + + void RenderStatus(SDL_Surface *screen, const math::Vector &offset) const; + void RenderStats(SDL_Surface *screen, const math::Vector &offset) const; + void RenderStatsLine(const char *label, int number, SDL_Surface *screen, const math::Vector &position) const; + void RenderEquipment(SDL_Surface *screen, const math::Vector &offset) const; + void RenderEquipmentLine(const common::Item *, SDL_Surface *screen, const math::Vector &position) const; + /// @param offset the top right corner! + void RenderExperience(SDL_Surface *screen, const math::Vector &offset) const; + /// @param offset the top right corner! + void RenderNextLevel(SDL_Surface *screen, const math::Vector &offset) const; + void RenderIkari(SDL_Surface *screen, const math::Vector &offset) const; + void RenderMenu(SDL_Surface *screen, const math::Vector &offset) const; private: PartyMenu *parent; int cursor; + graphics::Menu menu; }; } -#endif /* MENU_STATUSMENU_H_ */ +#endif