summaryrefslogtreecommitdiffstats
path: root/src/WorldStorage/SchematicFileSerilizer.h
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-01-20 18:59:12 +0100
committerTycho <work.tycho+git@gmail.com>2014-01-20 18:59:12 +0100
commit4f09e8df6ecf20bd50573b7bf40c46f5ade21124 (patch)
tree202fa43fe7b8ef492439183759cb85c46ffeb75c /src/WorldStorage/SchematicFileSerilizer.h
parentMerge branch 'ForEachChunkProvider' into GeneratingBenchmark (diff)
downloadcuberite-4f09e8df6ecf20bd50573b7bf40c46f5ade21124.tar
cuberite-4f09e8df6ecf20bd50573b7bf40c46f5ade21124.tar.gz
cuberite-4f09e8df6ecf20bd50573b7bf40c46f5ade21124.tar.bz2
cuberite-4f09e8df6ecf20bd50573b7bf40c46f5ade21124.tar.lz
cuberite-4f09e8df6ecf20bd50573b7bf40c46f5ade21124.tar.xz
cuberite-4f09e8df6ecf20bd50573b7bf40c46f5ade21124.tar.zst
cuberite-4f09e8df6ecf20bd50573b7bf40c46f5ade21124.zip
Diffstat (limited to 'src/WorldStorage/SchematicFileSerilizer.h')
-rw-r--r--src/WorldStorage/SchematicFileSerilizer.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/WorldStorage/SchematicFileSerilizer.h b/src/WorldStorage/SchematicFileSerilizer.h
new file mode 100644
index 000000000..b8a7162c6
--- /dev/null
+++ b/src/WorldStorage/SchematicFileSerilizer.h
@@ -0,0 +1,20 @@
+
+#include "../BlockArea.h"
+
+// fwd: FastNBT.h
+class cParsedNBT;
+
+class cSchematicFileSerializer
+{
+public:
+
+ /// Loads an area from a .schematic file. Returns true if successful
+ static bool LoadFromSchematicFile(const AString & a_FileName);
+
+ /// Saves the area into a .schematic file. Returns true if successful
+ static bool SaveToSchematicFile(const AString & a_FileName);
+
+private:
+ /// Loads the area from a schematic file uncompressed and parsed into a NBT tree. Returns true if successful.
+ static bool LoadFromSchematicNBT(cBlockArea& a_BlockArea, cParsedNBT & a_NBT);
+};