X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FApplication.hpp;h=9644794c1e7d54a9ff5bade9b0c9a0f9c155a5d5;hb=745729c1935276e6f49d108a0a465214aa93c3cb;hp=a3c62769164d9f5d7277aff0fb456caae0f5e1d2;hpb=282d731ea8f10342efa82012028de7043b3dd639;p=blank.git diff --git a/src/app/Application.hpp b/src/app/Application.hpp index a3c6276..9644794 100644 --- a/src/app/Application.hpp +++ b/src/app/Application.hpp @@ -1,17 +1,21 @@ #ifndef BLANK_APP_APPLICATION_HPP_ #define BLANK_APP_APPLICATION_HPP_ -#include "init.hpp" -#include "RandomWalk.hpp" -#include "../graphics/BlockLighting.hpp" -#include "../graphics/Camera.hpp" -#include "../graphics/DirectionalLighting.hpp" +#include "Assets.hpp" +#include "FrameCounter.hpp" +#include "../ai/RandomWalk.hpp" +#include "../audio/Audio.hpp" +#include "../graphics/Viewport.hpp" #include "../ui/Interface.hpp" #include "../world/World.hpp" +#include + namespace blank { +class Window; + class Application { public: @@ -24,7 +28,8 @@ public: World::Config world = World::Config(); }; - explicit Application(const Config &); + Application(Window &, const Config &); + ~Application(); Application(const Application &) = delete; Application &operator =(const Application &) = delete; @@ -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 @@ -51,17 +57,12 @@ public: static Entity &MakeTestEntity(World &); private: - InitSDL init_sdl; - InitIMG init_img; - InitTTF init_ttf; - InitGL init_gl; - Window window; - GLContext ctx; - InitGLEW init_glew; - BlockLighting chunk_prog; - DirectionalLighting entity_prog; - - Camera cam; + Window &window; + Viewport viewport; + Assets assets; + Audio audio; + FrameCounter counter; + World world; Interface interface;