X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FSelectItem.h;h=1942ff405e74e98460f7f0a3dacbed4e354d6847;hb=f552d26f537af9fa48255bd71cdc1a0a1b860bac;hp=a4540bb62ced2721cf4bc13a8599195a18042661;hpb=6d080d21d8055df9962296863b4c0954bc81410b;p=l2e.git diff --git a/src/battle/states/SelectItem.h b/src/battle/states/SelectItem.h index a4540bb..1942ff4 100644 --- a/src/battle/states/SelectItem.h +++ b/src/battle/states/SelectItem.h @@ -8,41 +8,38 @@ #ifndef BATTLE_SELECTITEM_H_ #define BATTLE_SELECTITEM_H_ +#include "../fwd.h" #include "../../app/State.h" - #include "../../geometry/Vector.h" namespace battle { -class BattleState; -class SelectAttackType; - class SelectItem : public app::State { public: SelectItem(BattleState *battle, SelectAttackType *parent) - : ctrl(0), battle(battle), parent(parent) { } + : battle(battle), parent(parent) { } public: - virtual void EnterState(app::Application &ctrl, SDL_Surface *screen); - virtual void ExitState(app::Application &ctrl, SDL_Surface *screen); - virtual void ResumeState(app::Application &ctrl, SDL_Surface *screen); - virtual void PauseState(app::Application &ctrl, SDL_Surface *screen); - - virtual void Resize(int width, int height); - virtual void HandleEvents(const app::Input &); virtual void UpdateWorld(float deltaT); virtual void Render(SDL_Surface *); +private: + virtual void OnEnterState(SDL_Surface *screen); + virtual void OnExitState(SDL_Surface *screen); + virtual void OnResumeState(SDL_Surface *screen); + virtual void OnPauseState(SDL_Surface *screen); + + virtual void OnResize(int width, int height); + private: void RenderFrame(SDL_Surface *, const geometry::Vector &offset); void RenderHeadline(SDL_Surface *, const geometry::Vector &offset); void RenderMenu(SDL_Surface *, const geometry::Vector &offset); private: - app::Application *ctrl; BattleState *battle; SelectAttackType *parent;