From eec456be63f6fee8604f7a9c40aa41a1af3f1fac Mon Sep 17 00:00:00 2001 From: sfan5 Date: Tue, 8 Jul 2014 20:04:37 +0200 Subject: Move MapBlock (de)serializing code out of Database class --- src/database.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/database.h') diff --git a/src/database.h b/src/database.h index d8669dd9b..ffec7c977 100644 --- a/src/database.h +++ b/src/database.h @@ -21,6 +21,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #define DATABASE_HEADER #include +#include #include "irr_v3d.h" #include "irrlichttypes.h" @@ -28,16 +29,14 @@ with this program; if not, write to the Free Software Foundation, Inc., #define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")" #endif -class MapBlock; - class Database { public: virtual void beginSave() = 0; virtual void endSave() = 0; - virtual bool saveBlock(MapBlock *block) = 0; - virtual MapBlock *loadBlock(v3s16 blockpos) = 0; + virtual bool saveBlock(v3s16 blockpos, std::string &data) = 0; + virtual std::string loadBlock(v3s16 blockpos) = 0; s64 getBlockAsInteger(const v3s16 pos) const; v3s16 getIntegerAsBlock(s64 i) const; virtual void listAllLoadableBlocks(std::list &dst) = 0; -- cgit v1.2.3