Move AreaStore container selection logic into getOptimalImplementation
authorShadowNinja <shadowninja@minetest.net>
Fri, 30 Oct 2015 03:38:36 +0000 (23:38 -0400)
committerShadowNinja <shadowninja@minetest.net>
Mon, 7 Mar 2016 21:33:20 +0000 (16:33 -0500)
src/script/lua_api/l_areastore.cpp
src/util/areastore.cpp
src/util/areastore.h

index 8b8b157d7fe021942a39024292db585475567ab8..8e9b2c7d59773506789a1df323a3e4e4098a71bb 100644 (file)
@@ -25,9 +25,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "irr_v3d.h"
 #include "util/areastore.h"
 #include "filesys.h"
-#ifndef ANDROID
-       #include "cmake_config.h"
-#endif
 #include <fstream>
 
 static inline void get_data_and_border_flags(lua_State *L, u8 start_i,
@@ -294,11 +291,7 @@ int LuaAreaStore::l_from_file(lua_State *L)
 
 LuaAreaStore::LuaAreaStore()
 {
-#if USE_SPATIAL
-       this->as = new SpatialAreaStore();
-#else
-       this->as = new VectorAreaStore();
-#endif
+       this->as = AreaStore::getOptimalImplementation();
 }
 
 LuaAreaStore::LuaAreaStore(const std::string &type)
index b0076faa31a63cc4d91c96f6f19c9d25388fc5c9..cf972586c495731b21d417824891c2f43ce2349d 100644 (file)
@@ -44,6 +44,16 @@ with this program; if not, write to the Free Software Foundation, Inc.,
        AST_OVERLAPS_IN_DIMENSION((amine), (amaxe), (b), Y) &&  \
        AST_OVERLAPS_IN_DIMENSION((amine), (amaxe), (b), Z))
 
+
+AreaStore *AreaStore::getOptimalImplementation()
+{
+#if USE_SPATIAL
+       return new SpatialAreaStore();
+#else
+       return new VectorAreaStore();
+#endif
+}
+
 u16 AreaStore::size() const
 {
        return areas_map.size();
index c36cbc389dd814de88530b9a5715b0140b9643ae..dee1f8bab4f6e3274d327a7a0efe77d536c40339 100644 (file)
@@ -52,7 +52,6 @@ struct Area {
        std::string data;
 };
 
-std::vector<std::string> get_areastore_typenames();
 
 class AreaStore {
 protected:
@@ -93,6 +92,8 @@ public:
 
        const Area *getArea(u32 id) const;
        u16 size() const;
+
+       static AreaStore *getOptimalImplementation();
 #if 0
        bool deserialize(std::istream &is);
        void serialize(std::ostream &is) const;