]> git.localhorst.tv Git - blank.git/blobdiff - src/app/Application.hpp
display frame counter
[blank.git] / src / app / Application.hpp
index 99f0dc4fbad0b168249c20e18fc97797a19524ad..97cac73805b5ddad01c194e2f22d023830869d36 100644 (file)
@@ -1,14 +1,19 @@
 #ifndef BLANK_APP_APPLICATION_HPP_
 #define BLANK_APP_APPLICATION_HPP_
 
+#include "Assets.hpp"
+#include "FrameCounter.hpp"
 #include "init.hpp"
 #include "RandomWalk.hpp"
+#include "../graphics/BlendedSprite.hpp"
 #include "../graphics/BlockLighting.hpp"
 #include "../graphics/Camera.hpp"
 #include "../graphics/DirectionalLighting.hpp"
 #include "../ui/Interface.hpp"
 #include "../world/World.hpp"
 
+#include <SDL.h>
+
 
 namespace blank {
 
@@ -43,6 +48,7 @@ public:
 
        /// process all events in SDL's queue
        void HandleEvents();
+       void Handle(const SDL_WindowEvent &);
        /// integrate to the next step with dt milliseconds passed
        void Update(int dt);
        /// push the current state to display
@@ -53,12 +59,17 @@ public:
 private:
        InitSDL init_sdl;
        InitIMG init_img;
+       InitTTF init_ttf;
        InitGL init_gl;
        Window window;
        GLContext ctx;
        InitGLEW init_glew;
+       Assets assets;
+       FrameCounter counter;
+
        BlockLighting chunk_prog;
        DirectionalLighting entity_prog;
+       BlendedSprite sprite_prog;
 
        Camera cam;
        World world;