]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/RunState.h
added run state to flee from battle
[l2e.git] / src / battle / states / RunState.h
diff --git a/src/battle/states/RunState.h b/src/battle/states/RunState.h
new file mode 100644 (file)
index 0000000..870f48d
--- /dev/null
@@ -0,0 +1,47 @@
+/*
+ * RunState.h
+ *
+ *  Created on: Aug 10, 2012
+ *      Author: holy
+ */
+
+#ifndef BATTLE_RUNSTATE_H_
+#define BATTLE_RUNSTATE_H_
+
+#include "../../app/State.h"
+
+#include "../../geometry/Vector.h"
+
+namespace battle {
+
+class BattleState;
+
+class RunState
+: public app::State {
+
+public:
+       explicit RunState(BattleState *battle)
+       : ctrl(0), battle(battle){ }
+
+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:
+       app::Application *ctrl;
+       BattleState *battle;
+       app::Timer<Uint32> timer;
+
+};
+
+}
+
+#endif /* BATTLE_RUNSTATE_H_ */