diff --git a/.gitignore b/.gitignore index 535c745..e8ccc2d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +cmake-build-debug/ +cmake-build-emrelease/ +cmake-build-release/ +cmake-build-relwithdebinfo/ ### C++ template # Prerequisites *.d diff --git a/src/render/ui/debug.cpp b/src/render/ui/debug.cpp index b4956ec..8588ff1 100644 --- a/src/render/ui/debug.cpp +++ b/src/render/ui/debug.cpp @@ -14,9 +14,6 @@ namespace fp::debug { bool enabled = false; - // Yes. I made this only for this. - blt::averagizer_o_matic fps_average{60.0}; - void drawAndIncrement(const std::string& text, float x, float& pos, text::font_size size = fp::text::FONT_14) { auto text_size = fp::text::getTextSize(text, size); fp::text::drawText(text, x, pos, size, {0.0, 0.0, 0.0, 1.0}); @@ -47,10 +44,9 @@ namespace fp::debug { float x_offset = 10; drawAndIncrement("Untitled Application", x_offset, left_y_pos, fp::text::FONT_22); - fps_average.insert(1.0 / fp::window::getFrameDelta()); std::string fps = "FPS: "; - fps += std::to_string(fps_average.average()); + fps += std::to_string(1.0 / fp::window::getFrameDelta()); fps += " ("; fps += std::to_string((double) fp::window::getFrameDeltaRaw() / 1000000.0); fps += "ms)"; diff --git a/src/world/chunk/world.cpp b/src/world/chunk/world.cpp index 9c1ee34..f1ae692 100644 --- a/src/world/chunk/world.cpp +++ b/src/world/chunk/world.cpp @@ -11,17 +11,17 @@ #include "stb/stb_perlin.h" #include -inline void checkEdgeFaces( - fp::mesh_storage* mesh, fp::chunk* chunk, fp::chunk* neighbour, fp::face face, +inline void checkEdgeFace( + fp::block_storage* local, fp::block_storage* neighbour, + fp::mesh_storage* mesh, fp::face face, const fp::block_pos& pos, const fp::block_pos& neighbour_pos ) { - auto* storage = chunk->getBlockStorage(); - auto& block = fp::registry::get(storage->get(pos)); - auto texture_index = fp::registry::getTextureIndex(block.textureName); + auto& block = fp::registry::get(local->get(pos)); if (block.visibility == fp::registry::OPAQUE) { - if (fp::registry::get(storage->get(neighbour_pos)).visibility > fp::registry::OPAQUE) - mesh->addFace(face, pos, texture_index); + if (fp::registry::get(neighbour->get(neighbour_pos)).visibility > fp::registry::OPAQUE) { + mesh->addFace(face, pos, fp::registry::getTextureIndex(block.textureName)); + } } } @@ -42,11 +42,16 @@ void fp::world::generateChunkMesh(chunk* chunk) { return; } - auto* mesh = new mesh_storage(); - BLT_START_INTERVAL("Chunk", "Mesh"); + auto* mesh = new mesh_storage(); auto* block_storage = chunk->getBlockStorage(); + auto* x_neg_storage = neighbours[X_NEG]->getBlockStorage(); + auto* x_pos_storage = neighbours[X_POS]->getBlockStorage(); + auto* y_neg_storage = neighbours[Y_NEG]->getBlockStorage(); + auto* y_pos_storage = neighbours[Y_POS]->getBlockStorage(); + auto* z_neg_storage = neighbours[Z_NEG]->getBlockStorage(); + auto* z_pos_storage = neighbours[Z_POS]->getBlockStorage(); for (int i = 0; i < CHUNK_SIZE; i++) { for (int j = 0; j < CHUNK_SIZE; j++) { @@ -76,25 +81,25 @@ void fp::world::generateChunkMesh(chunk* chunk) { for (int i = 0; i < CHUNK_SIZE; i++) { for (int j = 0; j < CHUNK_SIZE; j++) { - checkEdgeFaces( - mesh, chunk, neighbours[X_NEG], X_NEG, {0, i, j}, {CHUNK_SIZE - 1, i, j} + checkEdgeFace( + block_storage, x_neg_storage, mesh, X_NEG, {0, i, j}, {CHUNK_SIZE - 1, i, j} ); - checkEdgeFaces( - mesh, chunk, neighbours[X_POS], X_POS, {CHUNK_SIZE - 1, i, j}, {0, i, j} + checkEdgeFace( + block_storage, x_pos_storage, mesh, X_POS, {CHUNK_SIZE - 1, i, j}, {0, i, j} ); - checkEdgeFaces( - mesh, chunk, neighbours[Y_NEG], Y_NEG, {i, 0, j}, {i, CHUNK_SIZE - 1, j} + checkEdgeFace( + block_storage, y_neg_storage, mesh, Y_NEG, {i, 0, j}, {i, CHUNK_SIZE - 1, j} ); - checkEdgeFaces( - mesh, chunk, neighbours[Y_POS], Y_POS, {i, CHUNK_SIZE - 1, j}, {i, 0, j} + checkEdgeFace( + block_storage, y_pos_storage, mesh, Y_POS, {i, CHUNK_SIZE - 1, j}, {i, 0, j} ); - - checkEdgeFaces( - mesh, chunk, neighbours[Z_NEG], Z_NEG, {i, j, 0}, {i, j, CHUNK_SIZE - 1} + + checkEdgeFace( + block_storage, z_neg_storage, mesh, Z_NEG, {i, j, 0}, {i, j, CHUNK_SIZE - 1} ); - checkEdgeFaces( - mesh, chunk, neighbours[Z_POS], Z_POS, {i, j, CHUNK_SIZE - 1}, {i, j, 0} + checkEdgeFace( + block_storage, z_pos_storage, mesh, Z_POS, {i, j, CHUNK_SIZE - 1}, {i, j, 0} ); } }