fix generator area centering

This commit is contained in:
MihailRis
2025-04-11 20:37:08 +03:00
parent c110fafbcf
commit 98813472a8
3 changed files with 6 additions and 8 deletions
+3 -3
View File
@@ -32,18 +32,18 @@ Chunks::Chunks(
: events(events),
indices(indices),
areaMap(w, d) {
areaMap.setCenter(ox-w/2, oz-d/2);
areaMap.setCenter(ox - w / 2, oz - d / 2);
areaMap.setOutCallback([this](int, int, const auto& chunk) {
this->events->trigger(LevelEventType::CHUNK_HIDDEN, chunk.get());
});
}
void Chunks::configure(int32_t x, int32_t z, uint32_t radius) {
setCenter(x, z);
uint32_t diameter = radius * 2LL;
if (getWidth() != diameter) {
resize(diameter, diameter);
}
setCenter(x, z);
}
voxel* Chunks::get(int32_t x, int32_t y, int32_t z) const {
@@ -313,7 +313,7 @@ glm::vec3 Chunks::rayCastToObstacle(
}
void Chunks::setCenter(int32_t x, int32_t z) {
areaMap.setCenter(floordiv(x, CHUNK_W), floordiv(z, CHUNK_D));
areaMap.setCenter(floordiv<CHUNK_W>(x), floordiv<CHUNK_D>(z));
}
void Chunks::resize(uint32_t newW, uint32_t newD) {