X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fchunk.cpp;h=16ff4e5023bb65f4f68495294b7b940007b67239;hb=a58c4558e7d4934f4d0ee621520acfe1c8258c93;hp=10031e77e359deb60145bdefe24d2195baecfa6e;hpb=2d5671c2ef977defae9ce0ce7248582ab3e8f011;p=blank.git diff --git a/src/chunk.cpp b/src/chunk.cpp index 10031e7..16ff4e5 100644 --- a/src/chunk.cpp +++ b/src/chunk.cpp @@ -6,6 +6,12 @@ #include +namespace { + +blank::Model::Buffer buf; + +} + namespace blank { Chunk::Chunk(const BlockTypeRegistry &types) @@ -117,7 +123,6 @@ void Chunk::CheckUpdate() { if (dirty) { Update(); } - model.CheckUpdate(); } void Chunk::Update() { @@ -127,20 +132,50 @@ void Chunk::Update() { vtx_count += shape->VertexCount(); idx_count += shape->VertexIndexCount(); } - model.Clear(); - model.Reserve(vtx_count, idx_count); + buf.Clear(); + buf.Reserve(vtx_count, idx_count); Model::Index vtx_counter = 0; for (size_t i = 0; i < Size(); ++i) { + if (Obstructed(i)) continue; + const BlockType &type = Type(blocks[i]); - type.FillModel(model, ToCoords(i), vtx_counter); + type.FillModel(buf, ToCoords(i), vtx_counter); vtx_counter += type.shape->VertexCount(); } - model.Invalidate(); + model.Update(buf); dirty = false; } +bool Chunk::Obstructed(int idx) const { + if (IsBorder(idx)) return false; + + // not checking neighbor visibility here, so all + // invisible blocks must have their fill set to 6x false + // (the default, so should be okay) + + const BlockType &right = Type(blocks[idx + 1]); + if (!right.fill.left) return false; + + const BlockType &left = Type(blocks[idx - 1]); + if (!left.fill.right) return false; + + const BlockType &top = Type(blocks[idx + Width()]); + if (!top.fill.bottom) return false; + + const BlockType &bottom = Type(blocks[idx - Width()]); + if (!bottom.fill.top) return false; + + const BlockType &front = Type(blocks[idx + Width() * Height()]); + if (!front.fill.back) return false; + + const BlockType &back = Type(blocks[idx - Width() * Height()]); + if (!back.fill.front) return false; + + return true; +} + ChunkLoader::ChunkLoader(const BlockTypeRegistry ®, const Generator &gen) : base(0, 0, 0)