X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FWorld.hpp;h=2fd312c7ce39efb990ed2be07b16f0ce6b7313a8;hb=ede25c0a2f59e21521d1cd962e6ea9d78169ca12;hp=10710fbd6667a2dc8ac957d8068dae4564a392ab;hpb=5d2da8a07411ad6417d6ed8d1be997189cf5ce89;p=blank.git diff --git a/src/world/World.hpp b/src/world/World.hpp index 10710fb..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,23 +49,23 @@ public: bool Intersection(const Entity &e, std::vector &); void Resolve(Entity &e, std::vector &); - BlockTypeRegistry &BlockTypes() { return blockType; } + BlockTypeRegistry &BlockTypes() noexcept { return block_type; } + ChunkLoader &Loader() noexcept { return chunks; } Entity &Player() { return *player; } Entity &AddEntity() { entities.emplace_back(); return entities.back(); } Chunk &PlayerChunk(); - Chunk &Next(const Chunk &to, const glm::tvec3 &dir); + Chunk &Next(const Chunk &to, const glm::ivec3 &dir); void Update(int dt); void Render(Viewport &); private: - BlockTypeRegistry blockType; - CuboidShape blockShape; - StairShape stairShape; - CuboidShape slabShape; + BlockTypeRegistry block_type; + + ArrayTexture block_tex; Generator generate; ChunkLoader chunks;