summaryrefslogtreecommitdiffstats
path: root/source/cChunkLoader.h
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-10-03 20:41:19 +0200
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-10-03 20:41:19 +0200
commit386d58b5862d8b76925c6523721594887606e82a (patch)
treeef073e7a843f4b75a4008d4b7383f7cdf08ceee5 /source/cChunkLoader.h
parentVisual Studio 2010 solution and project files (diff)
downloadcuberite-386d58b5862d8b76925c6523721594887606e82a.tar
cuberite-386d58b5862d8b76925c6523721594887606e82a.tar.gz
cuberite-386d58b5862d8b76925c6523721594887606e82a.tar.bz2
cuberite-386d58b5862d8b76925c6523721594887606e82a.tar.lz
cuberite-386d58b5862d8b76925c6523721594887606e82a.tar.xz
cuberite-386d58b5862d8b76925c6523721594887606e82a.tar.zst
cuberite-386d58b5862d8b76925c6523721594887606e82a.zip
Diffstat (limited to 'source/cChunkLoader.h')
-rw-r--r--source/cChunkLoader.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/source/cChunkLoader.h b/source/cChunkLoader.h
new file mode 100644
index 000000000..5d9be39c5
--- /dev/null
+++ b/source/cChunkLoader.h
@@ -0,0 +1,32 @@
+#pragma once
+
+class cCriticalSection;
+class cEvent;
+class cChunk;
+class cChunkLoader
+{
+public:
+ cChunkLoader();
+ ~cChunkLoader();
+
+ cChunk* LoadChunk( int a_X, int a_Y, int a_Z );
+ bool SaveChunk( const cChunk & a_Chunk );
+
+ struct ChunkPack;
+private:
+ cChunk* LoadFormat1( int a_X, int a_Y, int a_Z );
+ ChunkPack* LoadPak1( int PakX, int PakY, int PakZ ); // This loads a .pak file from disk and returns it, nothing more
+
+ // Old stuffs
+ cChunk* LoadOldFormat( int a_X, int a_Y, int a_Z );
+ bool SaveOldFormat( const cChunk & a_Chunk );
+
+ static void SaveThread( void* a_Param );
+
+ bool m_bStop;
+ cCriticalSection* m_CriticalSection;
+ cEvent* m_Event;
+
+ struct ChunkPacks; // Defined in .cpp
+ ChunkPacks* m_ChunkPacks;
+}; \ No newline at end of file