mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-12 13:40:32 +01:00
7ff2288627
Also adds a heuristic that will enable this behaviour automatically.
37 lines
966 B
C++
37 lines
966 B
C++
#ifndef _DB_SQLITE3_H
|
|
#define _DB_SQLITE3_H
|
|
|
|
#include "db.h"
|
|
#include <unordered_map>
|
|
#include <sqlite3.h>
|
|
|
|
class DBSQLite3 : public DB {
|
|
public:
|
|
DBSQLite3(const std::string &mapdir);
|
|
std::vector<BlockPos> getBlockPos(BlockPos min, BlockPos max) override;
|
|
void getBlocksOnXZ(BlockList &blocks, int16_t x, int16_t z,
|
|
int16_t min_y, int16_t max_y) override;
|
|
void getBlocksByPos(BlockList &blocks,
|
|
const std::vector<BlockPos> &positions) override;
|
|
~DBSQLite3() override;
|
|
|
|
bool preferRangeQueries() const override { return false; }
|
|
|
|
private:
|
|
inline void getPosRange(int64_t &min, int64_t &max, int16_t zPos,
|
|
int16_t zPos2) const;
|
|
void loadBlockCache(int16_t zPos);
|
|
|
|
sqlite3 *db;
|
|
|
|
sqlite3_stmt *stmt_get_block_pos;
|
|
sqlite3_stmt *stmt_get_block_pos_z;
|
|
sqlite3_stmt *stmt_get_blocks_z;
|
|
sqlite3_stmt *stmt_get_block_exact;
|
|
|
|
int16_t blockCachedZ = -10000;
|
|
std::unordered_map<int16_t, BlockList> blockCache; // indexed by X
|
|
};
|
|
|
|
#endif // _DB_SQLITE3_H
|