diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-21 16:18:02 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-21 16:18:02 +0100 |
commit | f0145ee9fa09ce2c27b8149fee37c6f5fce7e1da (patch) | |
tree | 9eaa3d17bbeda373649470cd5ce060c4fbf76b58 /source/cWorld.cpp | |
parent | Optimized hightmap recalc when setting a chunk's block (diff) | |
download | cuberite-f0145ee9fa09ce2c27b8149fee37c6f5fce7e1da.tar cuberite-f0145ee9fa09ce2c27b8149fee37c6f5fce7e1da.tar.gz cuberite-f0145ee9fa09ce2c27b8149fee37c6f5fce7e1da.tar.bz2 cuberite-f0145ee9fa09ce2c27b8149fee37c6f5fce7e1da.tar.lz cuberite-f0145ee9fa09ce2c27b8149fee37c6f5fce7e1da.tar.xz cuberite-f0145ee9fa09ce2c27b8149fee37c6f5fce7e1da.tar.zst cuberite-f0145ee9fa09ce2c27b8149fee37c6f5fce7e1da.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cWorld.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/source/cWorld.cpp b/source/cWorld.cpp index a8e02a277..84f350495 100644 --- a/source/cWorld.cpp +++ b/source/cWorld.cpp @@ -1331,6 +1331,33 @@ void cWorld::CompareChunkClients(int a_ChunkX1, int a_ChunkY1, int a_ChunkZ1, in +bool cWorld::AddChunkClient(int a_ChunkX, int a_ChunkY, int a_ChunkZ, cClientHandle * a_Client)
+{
+ return m_ChunkMap->AddChunkClient(a_ChunkX, a_ChunkY, a_ChunkZ, a_Client);
+}
+
+
+
+
+
+void cWorld::RemoveClientFromChunks(cClientHandle * a_Client, const cChunkCoordsList & a_Chunks)
+{
+ m_ChunkMap->RemoveClientFromChunks(a_Client, a_Chunks);
+}
+
+
+
+
+
+bool cWorld::SendChunkTo(int a_ChunkX, int a_ChunkY, int a_ChunkZ, cClientHandle * a_Client)
+{
+ return m_ChunkMap->SendChunkTo(a_ChunkX, a_ChunkY, a_ChunkZ, a_Client);
+}
+
+
+
+
+
void cWorld::SaveAllChunks()
{
LOG("Saving all chunks...");
|