diff options
author | Mattes D <github@xoft.cz> | 2014-09-05 22:16:48 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-05 22:16:48 +0200 |
commit | 137b021d26d47b11fc27df1c0b52f408f0ef5257 (patch) | |
tree | 462a02d3ab4ed76bfeb43db320435670be9f4d04 /src/ChunkMap.h | |
parent | BiomeMultiCache is not used for simple generators. (diff) | |
download | cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.gz cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.bz2 cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.lz cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.xz cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.tar.zst cuberite-137b021d26d47b11fc27df1c0b52f408f0ef5257.zip |
Diffstat (limited to 'src/ChunkMap.h')
-rw-r--r-- | src/ChunkMap.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/ChunkMap.h b/src/ChunkMap.h index 8c564d0de..7354536d4 100644 --- a/src/ChunkMap.h +++ b/src/ChunkMap.h @@ -133,6 +133,9 @@ public: /** Copies the chunk's blocktypes into a_Blocks; returns true if successful */ bool GetChunkBlockTypes (int a_ChunkX, int a_ChunkZ, BLOCKTYPE * a_Blocks); + /** Returns true iff the chunk is in the loader / generator queue. */ + bool IsChunkQueued(int a_ChunkX, int a_ChunkZ); + bool IsChunkValid (int a_ChunkX, int a_ChunkZ); bool HasChunkAnyClients (int a_ChunkX, int a_ChunkZ); int GetHeight (int a_BlockX, int a_BlockZ); // Waits for the chunk to get loaded / generated @@ -278,12 +281,6 @@ public: /** Touches the chunk, causing it to be loaded or generated */ void TouchChunk(int a_ChunkX, int a_ChunkZ); - /** Loads the chunk, if not already loaded. Doesn't generate. Returns true if chunk valid (even if already loaded before) */ - bool LoadChunk(int a_ChunkX, int a_ChunkZ); - - /** Loads the chunks specified. Doesn't report failure, other than chunks being !IsValid() */ - void LoadChunks(const cChunkCoordsList & a_Chunks); - /** Marks the chunk as failed-to-load */ void ChunkLoadFailed(int a_ChunkX, int a_ChunkZ); |