diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-06 18:58:31 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-06 18:58:31 +0200 |
commit | 4c370798d52b1b7c055c49ff4a38f73cf720c82e (patch) | |
tree | cb9c7233b4b55d8e6cb1fab410b81ea16f89d353 /source/ChunkMap.h | |
parent | Lua plugins can get player's equipped item (diff) | |
download | cuberite-4c370798d52b1b7c055c49ff4a38f73cf720c82e.tar cuberite-4c370798d52b1b7c055c49ff4a38f73cf720c82e.tar.gz cuberite-4c370798d52b1b7c055c49ff4a38f73cf720c82e.tar.bz2 cuberite-4c370798d52b1b7c055c49ff4a38f73cf720c82e.tar.lz cuberite-4c370798d52b1b7c055c49ff4a38f73cf720c82e.tar.xz cuberite-4c370798d52b1b7c055c49ff4a38f73cf720c82e.tar.zst cuberite-4c370798d52b1b7c055c49ff4a38f73cf720c82e.zip |
Diffstat (limited to '')
-rw-r--r-- | source/ChunkMap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/ChunkMap.h b/source/ChunkMap.h index 165e41f10..bfdbc889b 100644 --- a/source/ChunkMap.h +++ b/source/ChunkMap.h @@ -22,6 +22,7 @@ class cFurnaceEntity; class cPawn; class cPickup; class cChunkDataSerializer; +class cBlockArea; typedef std::list<cClientHandle *> cClientHandleList; typedef cChunk * cChunkPtr; @@ -216,6 +217,9 @@ public: /// Calls the callback for each chunk in the coords specified (all cords are inclusive). Returns true if all chunks have been processed successfully bool ForEachChunkInRect(int a_MinChunkX, int a_MaxChunkX, int a_MinChunkZ, int a_MaxChunkZ, cChunkDataCallback & a_Callback); + /// Writes the block area into the specified coords. Returns true if all chunks have been processed. Prefer cBlockArea::Write() instead. + bool WriteBlockArea(cBlockArea & a_Area, int a_MinBlockX, int a_MinBlockY, int a_MinBlockZ, int a_DataTypes); + /// Returns the number of valid chunks and the number of dirty chunks void GetChunkStats(int & a_NumChunksValid, int & a_NumChunksDirty); |