add on_chunk_present and on_chunk_remove events

This commit is contained in:
MihailRis
2025-01-12 05:41:42 +03:00
parent cfa6b5e578
commit 22c7cb8398
9 changed files with 65 additions and 9 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ Chunks::Chunks(
areaMap(w, d) {
areaMap.setCenter(ox-w/2, oz-d/2);
areaMap.setOutCallback([this](int, int, const auto& chunk) {
this->events->trigger(EVT_CHUNK_HIDDEN, chunk.get());
this->events->trigger(LevelEventType::CHUNK_HIDDEN, chunk.get());
});
}
@@ -323,7 +323,7 @@ void Chunks::resize(uint32_t newW, uint32_t newD) {
bool Chunks::putChunk(const std::shared_ptr<Chunk>& chunk) {
if (areaMap.set(chunk->x, chunk->z, chunk)) {
if (events) {
events->trigger(LevelEventType::EVT_CHUNK_SHOWN, chunk.get());
events->trigger(LevelEventType::CHUNK_SHOWN, chunk.get());
}
return true;
}