diff options
author | Mattes D <github@xoft.cz> | 2014-12-11 17:06:18 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-12-11 17:06:18 +0100 |
commit | 781b3303a5aeb1ac572d83452186ed3777040487 (patch) | |
tree | 43cec18a07f201e8c94e9ac318f4635b0d4053bb /src/World.h | |
parent | Cosmetic touchups. (diff) | |
parent | Added a cWorld:PrepareChunk function. (diff) | |
download | cuberite-781b3303a5aeb1ac572d83452186ed3777040487.tar cuberite-781b3303a5aeb1ac572d83452186ed3777040487.tar.gz cuberite-781b3303a5aeb1ac572d83452186ed3777040487.tar.bz2 cuberite-781b3303a5aeb1ac572d83452186ed3777040487.tar.lz cuberite-781b3303a5aeb1ac572d83452186ed3777040487.tar.xz cuberite-781b3303a5aeb1ac572d83452186ed3777040487.tar.zst cuberite-781b3303a5aeb1ac572d83452186ed3777040487.zip |
Diffstat (limited to 'src/World.h')
-rw-r--r-- | src/World.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/World.h b/src/World.h index 2f51d60a1..6f28ba534 100644 --- a/src/World.h +++ b/src/World.h @@ -375,6 +375,12 @@ public: /** Touches the chunk, causing it to be loaded or generated */ void TouchChunk(int a_ChunkX, int a_ChunkZ); + + /** Queues the chunk for preparing - making sure that it's generated and lit. + The specified chunk is queued to be loaded or generated, and lit if needed. + The specified callback is called after the chunk has been prepared. If there's no preparation to do, only the callback is called. + It is legal to call with no callback. */ + void PrepareChunk(int a_ChunkX, int a_ChunkZ, cChunkCoordCallback * a_CallAfter = nullptr); /** Marks the chunk as failed-to-load: */ void ChunkLoadFailed(int a_ChunkX, int a_ChunkZ); |