X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FWorldState.hpp;h=d47024ff6633ed1fb65cb07dd29d1c8ba6ce2080;hb=4e3d9c23940c4511623b5bf328cbbe42641c4b30;hp=38f894420b717115c0cb049beb67c1f130b2b702;hpb=551573ecb04969696f916aeb5485658e298a7f6b;p=blank.git diff --git a/src/app/WorldState.hpp b/src/app/WorldState.hpp index 38f8944..d47024f 100644 --- a/src/app/WorldState.hpp +++ b/src/app/WorldState.hpp @@ -1,9 +1,13 @@ #ifndef BLANK_APP_WORLDSTATE_HPP_ #define BLANK_APP_WORLDSTATE_HPP_ +#include "PreloadState.hpp" #include "State.hpp" +#include "UnloadState.hpp" #include "../ai/Spawner.hpp" #include "../ui/Interface.hpp" +#include "../world/BlockTypeRegistry.hpp" +#include "../world/ChunkRenderer.hpp" #include "../world/World.hpp" @@ -22,18 +26,26 @@ public: const WorldSave & ); + void OnEnter() override; + void Handle(const SDL_Event &) override; void Update(int dt) override; void Render(Viewport &) override; World &GetWorld() noexcept { return world; } + Interface &GetInterface() noexcept { return interface; } private: Environment &env; + BlockTypeRegistry block_types; World world; + ChunkRenderer chunk_renderer; Spawner spawner; Interface interface; + PreloadState preload; + UnloadState unload; + }; }