X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FWorld.cpp;h=1d25e01ba2acd61289aac298a5cccbded2d35f68;hb=9ebe2c320fd9f94266ab93fa2f9d9908a0a284d3;hp=3d3eb6c3d9ba11a6aebc685e01480dca6b6e773f;hpb=65dbb0391afb6867bd9b388c6351b947a022abad;p=blank.git diff --git a/src/world/World.cpp b/src/world/World.cpp index 3d3eb6c..1d25e01 100644 --- a/src/world/World.cpp +++ b/src/world/World.cpp @@ -1,11 +1,12 @@ #include "World.hpp" +#include "EntityCollision.hpp" #include "WorldCollision.hpp" #include "../app/Assets.hpp" -#include "../app/TextureIndex.hpp" #include "../graphics/Format.hpp" #include "../graphics/Viewport.hpp" +#include #include #include #include @@ -13,22 +14,14 @@ namespace blank { -World::World(const Assets &assets, const Config &config, const WorldSave &save) -: block_type() -, block_tex() +World::World(const BlockTypeRegistry &types, const Config &config, const WorldSave &save) +: block_type(types) , generate(config.gen) -, chunks(config.load, block_type, generate, save) +, chunks(config.load, types, generate, save) , player() , entities() , light_direction(config.light_direction) , fog_density(config.fog_density) { - TextureIndex tex_index; - assets.LoadBlockTypes("default", block_type, tex_index); - - block_tex.Bind(); - assets.LoadTextures(tex_index, block_tex); - block_tex.FilterNearest(); - generate.Space(0); generate.Light(13); generate.Solids({ 1, 4, 7, 10 }); @@ -50,6 +43,10 @@ struct Candidate { float dist; }; +bool CandidateLess(const Candidate &a, const Candidate &b) { + return a.dist < b.dist; +} + std::vector candidates; } @@ -57,52 +54,78 @@ std::vector candidates; bool World::Intersection( const Ray &ray, const glm::mat4 &M, - Chunk *&chunk, - int &blkid, - float &dist, - glm::vec3 &normal + const Chunk::Pos &reference, + WorldCollision &coll ) { candidates.clear(); for (Chunk &cur_chunk : chunks.Loaded()) { float cur_dist; - if (cur_chunk.Intersection(ray, M * cur_chunk.Transform(player->ChunkCoords()), cur_dist)) { + if (cur_chunk.Intersection(ray, M * cur_chunk.Transform(reference), cur_dist)) { candidates.push_back({ &cur_chunk, cur_dist }); } } if (candidates.empty()) return false; - chunk = nullptr; - dist = std::numeric_limits::infinity(); - blkid = -1; + std::sort(candidates.begin(), candidates.end(), CandidateLess); + + coll.chunk = nullptr; + coll.block = -1; + coll.depth = std::numeric_limits::infinity(); for (Candidate &cand : candidates) { - if (cand.dist > dist) continue; - int cur_blkid; + if (cand.dist > coll.depth) continue; + WorldCollision cur_coll; + if (cand.chunk->Intersection(ray, M * cand.chunk->Transform(reference), cur_coll)) { + if (cur_coll.depth < coll.depth) { + coll = cur_coll; + } + } + } + + return coll.chunk; +} + +bool World::Intersection( + const Ray &ray, + const glm::mat4 &M, + const Entity &reference, + EntityCollision &coll +) { + coll.entity = nullptr; + coll.depth = std::numeric_limits::infinity(); + for (Entity &cur_entity : entities) { + if (&cur_entity == &reference) { + continue; + } float cur_dist; glm::vec3 cur_normal; - if (cand.chunk->Intersection(ray, M * cand.chunk->Transform(player->ChunkCoords()), cur_blkid, cur_dist, cur_normal)) { - if (cur_dist < dist) { - chunk = cand.chunk; - blkid = cur_blkid; - dist = cur_dist; - normal = cur_normal; + if (blank::Intersection(ray, cur_entity.Bounds(), M * cur_entity.Transform(reference.ChunkCoords()), &cur_dist, &cur_normal)) { + // TODO: fine grained check goes here? maybe? + if (cur_dist < coll.depth) { + coll.entity = &cur_entity; + coll.depth = cur_dist; + coll.normal = cur_normal; } } } - return chunk; + return coll.entity; } bool World::Intersection(const Entity &e, std::vector &col) { AABB box = e.Bounds(); - glm::mat4 M = e.Transform(player->ChunkCoords()); + Chunk::Pos reference = e.ChunkCoords(); + glm::mat4 M = e.Transform(reference); bool any = false; - // TODO: this only needs to check the chunks surrounding the entity's chunk position - // need find out if that is quicker than the rough chunk bounds test for (Chunk &cur_chunk : chunks.Loaded()) { - if (cur_chunk.Intersection(box, M, cur_chunk.Transform(player->ChunkCoords()), col)) { + if (manhattan_radius(cur_chunk.Position() - e.ChunkCoords()) > 1) { + // chunk is not one of the 3x3x3 surrounding the entity + // since there's no entity which can extent over 16 blocks, they can be skipped + continue; + } + if (cur_chunk.Intersection(box, M, cur_chunk.Transform(reference), col)) { any = true; } } @@ -114,11 +137,6 @@ Chunk &World::PlayerChunk() { return chunks.ForceLoad(player->ChunkCoords()); } -Chunk &World::Next(const Chunk &to, const glm::ivec3 &dir) { - const Chunk::Pos tgt_pos = to.Position() + dir; - return chunks.ForceLoad(tgt_pos); -} - namespace { @@ -182,21 +200,6 @@ void World::Resolve(Entity &e, std::vector &col) { void World::Render(Viewport &viewport) { - viewport.WorldPosition(player->Transform(player->ChunkCoords())); - - BlockLighting &chunk_prog = viewport.ChunkProgram(); - chunk_prog.SetTexture(block_tex); - chunk_prog.SetFogDensity(fog_density); - - for (Chunk &chunk : chunks.Loaded()) { - glm::mat4 m(chunk.Transform(player->ChunkCoords())); - chunk_prog.SetM(m); - glm::mat4 mvp(chunk_prog.GetVP() * m); - if (!CullTest(Chunk::Bounds(), mvp)) { - chunk.Draw(); - } - } - DirectionalLighting &entity_prog = viewport.EntityProgram(); entity_prog.SetLightDirection(light_direction); entity_prog.SetFogDensity(fog_density);