X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FWorld.hpp;h=e0209c96aaf273eb4fab523fd4734b2353e5af28;hb=e872614d387c4bfc3afb04bcc7cba3d9b8f3954b;hp=183fa603209af587d23d18f8f2b0e40c0a98d177;hpb=32909aa3224ec0ed5656721178eb6ad31cd047df;p=blank.git diff --git a/src/world/World.hpp b/src/world/World.hpp index 183fa60..e0209c9 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,8 +14,9 @@ namespace blank { -class BlockLighting; -class DirectionalLighting; +class Assets; +class EntityCollision; +class Viewport; class WorldCollision; class World { @@ -36,36 +37,47 @@ public: ChunkLoader::Config load = ChunkLoader::Config(); }; - explicit World(const Config &); + World(const Assets &, const Config &, const WorldSave &); + /// check if this ray hits a block + /// depth in the collision is the distance between the ray's + /// origin and the intersection point + /// M is the global transform for given reference chunk bool Intersection( const Ray &, const glm::mat4 &M, - Chunk *&chunk, - int &blkid, - float &dist, - glm::vec3 &normal); + const Chunk::Pos &reference, + WorldCollision &); + /// check if this ray hits an entity + /// intersections with the reference are not tested + /// M is the global transform for the chunk of given reference entity + bool Intersection( + const Ray &, + const glm::mat4 &M, + const Entity &reference, + EntityCollision &); + + /// check if given entity intersects with the world bool Intersection(const Entity &e, std::vector &); - void Resolve(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); void Update(int dt); - void Render(BlockLighting &, DirectionalLighting &); + void Render(Viewport &); private: - BlockTypeRegistry blockType; - CuboidShape blockShape; - StairShape stairShape; - CuboidShape slabShape; + BlockTypeRegistry block_type; + + ArrayTexture block_tex; Generator generate; ChunkLoader chunks;