X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld.cpp;h=03e0ebb0b474ef3bb7d47a490e4bcf8cce7ef67d;hb=d66d14f853f2d05f54076d38c72e53419dfc4cc5;hp=6ce0700d2b99e694066ba3ab61e2ef08c5e745d6;hpb=d6435142245c019523b9385048d6d79bdd2565f2;p=blank.git diff --git a/src/world.cpp b/src/world.cpp index 6ce0700..03e0ebb 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -6,167 +6,17 @@ namespace blank { -const BlockType BlockType::DEFAULT; -const CuboidShape BlockType::DEFAULT_SHAPE({{ 0, 0, 0 }, { 1, 1, 1 }}); - -void BlockType::FillVBO( - const glm::vec3 &pos, - std::vector &vertices, - std::vector &colors, - std::vector &normals -) const { - shape->Vertices(vertices, pos); - colors.insert(colors.end(), shape->VertexCount(), color); - shape->Normals(normals); -} - -void BlockType::FillOutlineVBO( - std::vector &vertices, - std::vector &colors -) const { - shape->Outline(vertices); - colors.insert(colors.end(), shape->OutlineCount(), outline_color); -} - - -BlockTypeRegistry::BlockTypeRegistry() { - Add(BlockType::DEFAULT); -} - -int BlockTypeRegistry::Add(const BlockType &t) { - int id = types.size(); - types.push_back(t); - types.back().id = id; - return id; -} - - -Chunk::Chunk() -: blocks(Size()) -, model() -, transform(1.0f) -, dirty(false) { - -} - -Chunk::Chunk(Chunk &&other) -: blocks(std::move(other.blocks)) -, model(std::move(other.model)) -, transform(other.transform) -, dirty(other.dirty) { - -} - -Chunk &Chunk::operator =(Chunk &&other) { - blocks = std::move(other.blocks); - model = std::move(other.model); - transform = other.transform; - dirty = other.dirty; - return *this; -} - - -void Chunk::Draw() { - if (dirty) { - Update(); - } - model.Draw(); -} - - -bool Chunk::Intersection( - const Ray &ray, - const glm::mat4 &M, - int *blkid, - float *dist, - glm::vec3 *normal) const { - { // rough check - const AABB bb{{0, 0, 0}, {Width(), Height(), Depth()}}; - if (!blank::Intersection(ray, bb, M)) { - return false; - } - } - - if (!blkid && !dist && !normal) { - return true; - } - - // TODO: should be possible to heavily optimize this - int id = 0; - int closest_id = -1; - float closest_dist = std::numeric_limits::infinity(); - glm::vec3 closest_normal(0, 1, 0); - for (int z = 0; z < Depth(); ++z) { - for (int y = 0; y < Height(); ++y) { - for (int x = 0; x < Width(); ++x, ++id) { - if (!blocks[id].type->visible) { - continue; - } - float cur_dist; - glm::vec3 cur_norm; - if (blocks[id].type->shape->Intersects(ray, glm::translate(M, glm::vec3(x, y, z)), cur_dist, cur_norm)) { - if (cur_dist < closest_dist) { - closest_id = id; - closest_dist = cur_dist; - closest_normal = cur_norm; - } - } - } - } - } - - if (closest_id < 0) { - return false; - } - - if (blkid) { - *blkid = closest_id; - } - if (dist) { - *dist = closest_dist; - } - if (normal) { - *normal = closest_normal; - } - return true; -} - -void Chunk::Position(const glm::vec3 &pos) { - position = pos; - transform = glm::translate(pos * Extent()); -} - - -int Chunk::VertexCount() const { - // TODO: query blocks as soon as type shapes are implemented - int count = 0; - for (const auto &block : blocks) { - count += block.type->shape->VertexCount(); - } - return count; -} - -void Chunk::Update() { - model.Clear(); - model.Reserve(VertexCount()); - - for (size_t i = 0; i < Size(); ++i) { - if (blocks[i].type->visible) { - blocks[i].type->FillModel(ToCoords(i), model); - } - } - - model.Invalidate(); - dirty = false; -} - - World::World() : blockType() -, blockShape({{ 0.0f, 0.0f, 0.0f }, { 1.0f, 1.0f, 1.0f }}) -, stairShape({{ 0.0f, 0.0f, 0.0f }, { 1.0f, 1.0f, 1.0f }}, { 0.5f, 0.5f }) -, slabShape({{ 0.0f, 0.0f, 0.0f }, { 1.0f, 0.5f, 1.0f }}) -, chunks() { +, blockShape({{ -0.5f, -0.5f, -0.5f }, { 0.5f, 0.5f, 0.5f }}) +, stairShape({{ -0.5f, -0.5f, -0.5f }, { 0.5f, 0.5f, 0.5f }}, { 0.0f, 0.0f }) +, slabShape({{ -0.5f, -0.5f, -0.5f }, { 0.5f, 0.0f, 0.5f }}) +, generate(0) +, player() +, player_chunk(0, 0, 0) +, loaded() +, to_generate() +, to_free() { blockType.Add(BlockType{ true, { 1.0f, 1.0f, 1.0f }, &blockShape }); // white block blockType.Add(BlockType{ true, { 1.0f, 1.0f, 1.0f }, &stairShape }); // white stair blockType.Add(BlockType{ true, { 1.0f, 1.0f, 1.0f }, &slabShape }); // white slab @@ -179,48 +29,46 @@ World::World() blockType.Add(BlockType{ true, { 0.0f, 0.0f, 1.0f }, &blockShape }); // blue block blockType.Add(BlockType{ true, { 0.0f, 0.0f, 1.0f }, &stairShape }); // blue stair blockType.Add(BlockType{ true, { 0.0f, 0.0f, 1.0f }, &slabShape }); // blue slab + + generate.Solids({ 1, 4, 7, 10 }); + + player.Position({ 4.0f, 4.0f, 4.0f }); } -void World::Generate() { - for (int z = -1; z < 2; ++z) { - for (int y = -1; y < 2; ++y) { - for (int x = -1; x < 2; ++x) { - Generate(glm::vec3(x, y, z)); - } - } - } +namespace { + +bool ChunkLess(const Chunk &a, const Chunk &b) { + return + a.Position().x * a.Position().x + + a.Position().y * a.Position().y + + a.Position().z * a.Position().z < + b.Position().x * b.Position().x + + b.Position().y * b.Position().y + + b.Position().z * b.Position().z; } -Chunk &World::Generate(const glm::vec3 &pos) { - chunks.emplace_back(); - Chunk &chunk = chunks.back(); - chunk.Position(pos); - for (size_t i = 1; i < blockType.Size(); ++i) { - chunk.BlockAt(i) = Block(blockType[i]); - chunk.BlockAt(i + 257) = Block(blockType[i]); - chunk.BlockAt(i + 514) = Block(blockType[i]); - } - if (false) { - chunk.BlockAt(glm::vec3(0, 0, 0)) = Block(blockType[4]); - chunk.BlockAt(glm::vec3(0, 0, 1)) = Block(blockType[1]); - chunk.BlockAt(glm::vec3(1, 0, 0)) = Block(blockType[5]); - chunk.BlockAt(glm::vec3(1, 0, 1)) = Block(blockType[3]); - chunk.BlockAt(glm::vec3(2, 0, 0)) = Block(blockType[4]); - chunk.BlockAt(glm::vec3(2, 0, 1)) = Block(blockType[1]); - chunk.BlockAt(glm::vec3(3, 0, 0)) = Block(blockType[2]); - chunk.BlockAt(glm::vec3(3, 0, 1)) = Block(blockType[5]); - chunk.BlockAt(glm::vec3(2, 0, 2)) = Block(blockType[4]); - chunk.BlockAt(glm::vec3(2, 0, 3)) = Block(blockType[1]); - chunk.BlockAt(glm::vec3(3, 0, 2)) = Block(blockType[2]); - chunk.BlockAt(glm::vec3(3, 0, 3)) = Block(blockType[5]); - chunk.BlockAt(glm::vec3(1, 1, 0)) = Block(blockType[5]); - chunk.BlockAt(glm::vec3(1, 1, 1)) = Block(blockType[4]); - chunk.BlockAt(glm::vec3(2, 1, 1)) = Block(blockType[3]); - chunk.BlockAt(glm::vec3(2, 2, 1)) = Block(blockType[2]); +} + +void World::Generate(const Chunk::Pos &from, const Chunk::Pos &to) { + for (int z = from.z; z < to.z; ++z) { + for (int y = from.y; y < to.y; ++y) { + for (int x = from.x; x < to.x; ++x) { + Block::Pos pos{float(x), float(y), float(z)}; + if (ChunkAvailable(pos)) { + continue; + } else if (x == 0 && y == 0 && z == 0) { + loaded.emplace_back(blockType); + loaded.back().Position(pos); + generate(loaded.back()); + } else { + to_generate.emplace_back(blockType); + to_generate.back().Position(pos); + } + } + } } - chunk.Invalidate(); - return chunk; + to_generate.sort(ChunkLess); } bool World::Intersection( @@ -235,11 +83,11 @@ bool World::Intersection( float closest_dist = std::numeric_limits::infinity(); glm::vec3 closest_normal; - for (Chunk &cur_chunk : chunks) { + for (Chunk &cur_chunk : loaded) { int cur_blkid; float cur_dist; glm::vec3 cur_normal; - if (cur_chunk.Intersection(ray, M * cur_chunk.Transform(), &cur_blkid, &cur_dist, &cur_normal)) { + if (cur_chunk.Intersection(ray, M * cur_chunk.Transform(player.ChunkCoords()), &cur_blkid, &cur_dist, &cur_normal)) { if (cur_dist < closest_dist) { closest_chunk = &cur_chunk; closest_blkid = cur_blkid; @@ -265,14 +113,113 @@ bool World::Intersection( } -Chunk &World::Next(const Chunk &to, const glm::vec3 &dir) { - const glm::vec3 tgt_pos = to.Position() + dir; - for (Chunk &chunk : chunks) { - if (chunk.Position() == tgt_pos) { - return chunk; +Chunk *World::ChunkLoaded(const Chunk::Pos &pos) { + for (Chunk &chunk : loaded) { + if (chunk.Position() == pos) { + return &chunk; + } + } + return nullptr; +} + +Chunk *World::ChunkQueued(const Chunk::Pos &pos) { + for (Chunk &chunk : to_generate) { + if (chunk.Position() == pos) { + return &chunk; + } + } + return nullptr; +} + +Chunk *World::ChunkAvailable(const Chunk::Pos &pos) { + Chunk *chunk = ChunkLoaded(pos); + if (chunk) return chunk; + + return ChunkQueued(pos); +} + +Chunk &World::Next(const Chunk &to, const glm::tvec3 &dir) { + const Chunk::Pos tgt_pos = to.Position() + dir; + + Chunk *chunk = ChunkLoaded(tgt_pos); + if (chunk) { + return *chunk; + } + + chunk = ChunkQueued(tgt_pos); + if (chunk) { + generate(*chunk); + return *chunk; + } + + loaded.emplace_back(blockType); + loaded.back().Position(tgt_pos); + generate(loaded.back()); + return loaded.back(); +} + + +void World::Update(int dt) { + player.Update(dt); + + CheckChunkGeneration(); +} + +void World::CheckChunkGeneration() { + if (player.ChunkCoords() != player_chunk) { + player_chunk = player.ChunkCoords(); + + constexpr int max_dist = 8; + // unload far away chunks + for (auto iter(loaded.begin()), end(loaded.end()); iter != end;) { + if (std::abs(player_chunk.x - iter->Position().x) > max_dist + || std::abs(player_chunk.y - iter->Position().y) > max_dist + || std::abs(player_chunk.z - iter->Position().z) > max_dist) { + auto saved = iter; + ++iter; + to_free.splice(to_free.end(), loaded, saved); + } else { + ++iter; + } + } + // abort far away queued chunks + for (auto iter(to_generate.begin()), end(to_generate.end()); iter != end;) { + if (std::abs(player_chunk.x - iter->Position().x) > max_dist + || std::abs(player_chunk.y - iter->Position().y) > max_dist + || std::abs(player_chunk.z - iter->Position().z) > max_dist) { + iter = to_generate.erase(iter); + } else { + ++iter; + } + } + // add missing new chunks + const Chunk::Pos offset(max_dist, max_dist, max_dist); + Generate(player_chunk - offset, player_chunk + offset); + } + + if (!to_generate.empty()) { + generate(to_generate.front()); + loaded.splice(loaded.end(), to_generate, to_generate.begin()); + } + + if (!to_free.empty()) { + to_free.pop_front(); + } +} + + +void World::Render(DirectionalLighting &program) { + program.SetLightDirection({ -1.0f, -3.0f, -2.0f }); + program.SetView(glm::inverse(player.Transform(player.ChunkCoords()))); + + for (Chunk &chunk : LoadedChunks()) { + glm::mat4 m(chunk.Transform(player.ChunkCoords())); + program.SetM(m); + glm::mat4 mvp(program.GetVP() * m); + if (!CullTest(Chunk::Bounds(), mvp)) { + chunk.Draw(); } } - return Generate(tgt_pos); } }