X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FWorld.hpp;h=2fd312c7ce39efb990ed2be07b16f0ce6b7313a8;hb=5e8eee742138f2578e83e710ffc41408abd3073f;hp=b98efca544ef0969af3f056075b43f039986e80f;hpb=549646ac3e5bede5e77031f773649edf8de83608;p=blank.git diff --git a/src/world/World.hpp b/src/world/World.hpp index b98efca..2fd312c 100644 --- a/src/world/World.hpp +++ b/src/world/World.hpp @@ -5,7 +5,7 @@ #include "ChunkLoader.hpp" #include "Entity.hpp" #include "Generator.hpp" -#include "../model/shapes.hpp" +#include "../graphics/ArrayTexture.hpp" #include #include @@ -14,6 +14,7 @@ namespace blank { +class Assets; class Viewport; class WorldCollision; @@ -35,7 +36,7 @@ public: ChunkLoader::Config load = ChunkLoader::Config(); }; - explicit World(const Config &); + World(const Assets &, const Config &, const WorldSave &); bool Intersection( const Ray &, @@ -48,7 +49,7 @@ public: bool Intersection(const Entity &e, std::vector &); void Resolve(Entity &e, std::vector &); - BlockTypeRegistry &BlockTypes() noexcept { return blockType; } + BlockTypeRegistry &BlockTypes() noexcept { return block_type; } ChunkLoader &Loader() noexcept { return chunks; } Entity &Player() { return *player; } @@ -62,10 +63,9 @@ public: void Render(Viewport &); private: - BlockTypeRegistry blockType; - CuboidShape blockShape; - StairShape stairShape; - CuboidShape slabShape; + BlockTypeRegistry block_type; + + ArrayTexture block_tex; Generator generate; ChunkLoader chunks;