Luanti 5.15.0-dev
 
Loading...
Searching...
No Matches
areastore.h
Go to the documentation of this file.
1// Luanti
2// SPDX-License-Identifier: LGPL-2.1-or-later
3// Copyright (C) 2015 est31 <mtest31@outlook.com>
4
5#pragma once
6
7#include "irr_v3d.h"
8#include <map>
9#include <vector>
10#include <istream>
11#include "util/container.h"
12#include "util/numeric.h"
13#ifndef ANDROID
14 #include "cmake_config.h"
15#endif
16#if USE_SPATIAL
17 #include <spatialindex/SpatialIndex.h>
18#endif
19
20
21struct Area {
22 Area(u32 area_id) : id(area_id) {}
23
24 Area(const v3s16 &mine, const v3s16 &maxe, u32 area_id = U32_MAX) :
25 id(area_id), minedge(mine), maxedge(maxe)
26 {
28 }
29
30 u32 id;
32 std::string data;
33};
34
35
36class AreaStore {
37public:
39 m_res_cache(1000, &cacheMiss, this)
40 {}
41
42 virtual ~AreaStore() = default;
43
45
46 virtual void reserve(size_t count) {};
47 size_t size() const { return areas_map.size(); }
48
52 virtual bool insertArea(Area *a) = 0;
53
56 virtual bool removeArea(u32 id) = 0;
57
60 void getAreasForPos(std::vector<Area *> *result, v3s16 pos);
61
65 virtual void getAreasInArea(std::vector<Area *> *result,
66 v3s16 minedge, v3s16 maxedge, bool accept_overlap) = 0;
67
69 void setCacheParams(bool enabled, u8 block_radius, size_t limit);
70
73 const Area *getArea(u32 id) const;
74
76 void serialize(std::ostream &is) const;
77
82 void deserialize(std::istream &is);
83
84protected:
87 void invalidateCache();
88
91 virtual void getAreasForPosImpl(std::vector<Area *> *result, v3s16 pos) = 0;
92
94 u32 getNextId() const;
95
96 // Note: This can't be an unordered_map, since all
97 // references would be invalidated on rehash.
98 typedef std::map<u32, Area> AreaMap;
100
101private:
103 static void cacheMiss(void *data, const v3s16 &mpos, std::vector<Area *> *dest);
104
105 bool m_cache_enabled = true;
110};
111
112
114public:
115 virtual void reserve(size_t count) { m_areas.reserve(count); }
116 virtual bool insertArea(Area *a);
117 virtual bool removeArea(u32 id);
118 virtual void getAreasInArea(std::vector<Area *> *result,
119 v3s16 minedge, v3s16 maxedge, bool accept_overlap);
120
121protected:
122 virtual void getAreasForPosImpl(std::vector<Area *> *result, v3s16 pos);
123
124private:
125 std::vector<Area *> m_areas;
126};
127
128
129#if USE_SPATIAL
130
132public:
134 virtual ~SpatialAreaStore();
135
136 virtual bool insertArea(Area *a);
137 virtual bool removeArea(u32 id);
138 virtual void getAreasInArea(std::vector<Area *> *result,
139 v3s16 minedge, v3s16 maxedge, bool accept_overlap);
140
141protected:
142 virtual void getAreasForPosImpl(std::vector<Area *> *result, v3s16 pos);
143
144private:
145 SpatialIndex::ISpatialIndex *m_tree = nullptr;
146 SpatialIndex::IStorageManager *m_storagemanager = nullptr;
147
148 class VectorResultVisitor : public SpatialIndex::IVisitor {
149 public:
150 VectorResultVisitor(std::vector<Area *> *result, SpatialAreaStore *store) :
151 m_store(store),
152 m_result(result)
153 {}
155
156 virtual void visitNode(const SpatialIndex::INode &in) {}
157
158 virtual void visitData(const SpatialIndex::IData &in)
159 {
160 u32 id = in.getIdentifier();
161
162 auto itr = m_store->areas_map.find(id);
163 assert(itr != m_store->areas_map.end());
164 m_result->push_back(&itr->second);
165 }
166
167 virtual void visitData(std::vector<const SpatialIndex::IData *> &v)
168 {
169 for (size_t i = 0; i < v.size(); i++)
170 visitData(*(v[i]));
171 }
172
173 private:
175 std::vector<Area *> *m_result = nullptr;
176 };
177};
178
179#endif // USE_SPATIAL
Definition areastore.h:36
AreaMap areas_map
Definition areastore.h:99
AreaStore()
Definition areastore.h:38
virtual void reserve(size_t count)
Definition areastore.h:46
virtual void getAreasForPosImpl(std::vector< Area * > *result, v3s16 pos)=0
Implementation of getAreasForPos.
void setCacheParams(bool enabled, u8 block_radius, size_t limit)
Sets cache parameters.
Definition areastore.cpp:124
static void cacheMiss(void *data, const v3s16 &mpos, std::vector< Area * > *dest)
Called by the cache when a value isn't found in the cache.
Definition areastore.cpp:132
void getAreasForPos(std::vector< Area * > *result, v3s16 pos)
Finds areas that the passed position is contained in.
Definition areastore.cpp:153
u32 getNextId() const
Returns the next area ID and increments it.
Definition areastore.cpp:111
static AreaStore * getOptimalImplementation()
Definition areastore.cpp:33
virtual ~AreaStore()=default
std::map< u32, Area > AreaMap
Definition areastore.h:98
virtual bool insertArea(Area *a)=0
Add an area to the store.
const Area * getArea(u32 id) const
Returns a pointer to the area coresponding to the passed ID, or NULL if it doesn't exist.
Definition areastore.cpp:42
LRUCache< v3s16, std::vector< Area * > > m_res_cache
Definition areastore.h:109
virtual bool removeArea(u32 id)=0
Removes an area from the store by ID.
void serialize(std::ostream &is) const
Serializes the store's areas to a binary ostream.
Definition areastore.cpp:50
virtual void getAreasInArea(std::vector< Area * > *result, v3s16 minedge, v3s16 maxedge, bool accept_overlap)=0
Finds areas that are completely contained inside the area defined by the passed edges.
void deserialize(std::istream &is)
Deserializes the Areas from a binary istream.
Definition areastore.cpp:74
u8 m_cacheblock_radius
Range, in nodes, of the getAreasForPos cache.
Definition areastore.h:108
void invalidateCache()
Invalidates the getAreasForPos cache.
Definition areastore.cpp:104
size_t size() const
Definition areastore.h:47
bool m_cache_enabled
Definition areastore.h:105
Definition container.h:249
Definition areastore.h:148
~VectorResultVisitor()
Definition areastore.h:154
virtual void visitData(const SpatialIndex::IData &in)
Definition areastore.h:158
virtual void visitNode(const SpatialIndex::INode &in)
Definition areastore.h:156
VectorResultVisitor(std::vector< Area * > *result, SpatialAreaStore *store)
Definition areastore.h:150
virtual void visitData(std::vector< const SpatialIndex::IData * > &v)
Definition areastore.h:167
SpatialAreaStore * m_store
Definition areastore.h:174
std::vector< Area * > * m_result
Definition areastore.h:175
Definition areastore.h:131
SpatialIndex::ISpatialIndex * m_tree
Definition areastore.h:145
virtual bool removeArea(u32 id)
Removes an area from the store by ID.
Definition areastore.cpp:259
virtual ~SpatialAreaStore()
Definition areastore.cpp:292
virtual void getAreasForPosImpl(std::vector< Area * > *result, v3s16 pos)
Implementation of getAreasForPos.
Definition areastore.cpp:274
virtual void getAreasInArea(std::vector< Area * > *result, v3s16 minedge, v3s16 maxedge, bool accept_overlap)
Finds areas that are completely contained inside the area defined by the passed edges.
Definition areastore.cpp:280
virtual bool insertArea(Area *a)
Add an area to the store.
Definition areastore.cpp:247
SpatialIndex::IStorageManager * m_storagemanager
Definition areastore.h:146
SpatialAreaStore()
Definition areastore.cpp:298
Definition areastore.h:113
virtual void getAreasInArea(std::vector< Area * > *result, v3s16 minedge, v3s16 maxedge, bool accept_overlap)
Finds areas that are completely contained inside the area defined by the passed edges.
Definition areastore.cpp:217
virtual bool insertArea(Area *a)
Add an area to the store.
Definition areastore.cpp:177
virtual void getAreasForPosImpl(std::vector< Area * > *result, v3s16 pos)
Implementation of getAreasForPos.
Definition areastore.cpp:208
virtual void reserve(size_t count)
Definition areastore.h:115
virtual bool removeArea(u32 id)
Removes an area from the store by ID.
Definition areastore.cpp:190
std::vector< Area * > m_areas
Definition areastore.h:125
core::vector3d< s16 > v3s16
Definition irr_v3d.h:13
#define U32_MAX
Definition irrlichttypes.h:23
void sortBoxVerticies(core::vector3d< T > &p1, core::vector3d< T > &p2)
Definition numeric.h:118
Definition areastore.h:21
v3s16 maxedge
Definition areastore.h:31
u32 id
Definition areastore.h:30
Area(u32 area_id)
Definition areastore.h:22
std::string data
Definition areastore.h:32
Area(const v3s16 &mine, const v3s16 &maxe, u32 area_id=U32_MAX)
Definition areastore.h:24
v3s16 minedge
Definition areastore.h:31