2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* octree.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2022-01-03 20:27:34 +00:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef OCTREE_H
|
|
|
|
#define OCTREE_H
|
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/math/aabb.h"
|
2020-05-25 17:20:45 +00:00
|
|
|
#include "core/math/geometry_3d.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/math/vector3.h"
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/string/print_string.h"
|
|
|
|
#include "core/templates/list.h"
|
|
|
|
#include "core/templates/map.h"
|
|
|
|
#include "core/variant/variant.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
typedef uint32_t OctreeElementID;
|
|
|
|
|
|
|
|
#define OCTREE_ELEMENT_INVALID_ID 0
|
|
|
|
#define OCTREE_SIZE_LIMIT 1e15
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs = false, class AL = DefaultAllocator>
|
2014-02-10 01:10:30 +00:00
|
|
|
class Octree {
|
|
|
|
public:
|
2017-03-05 15:44:50 +00:00
|
|
|
typedef void *(*PairCallback)(void *, OctreeElementID, T *, int, OctreeElementID, T *, int);
|
|
|
|
typedef void (*UnpairCallback)(void *, OctreeElementID, T *, int, OctreeElementID, T *, int, void *);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
private:
|
2014-02-10 01:10:30 +00:00
|
|
|
enum {
|
2017-03-05 15:44:50 +00:00
|
|
|
NEG = 0,
|
|
|
|
POS = 1,
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
OCTANT_NX_NY_NZ,
|
|
|
|
OCTANT_PX_NY_NZ,
|
|
|
|
OCTANT_NX_PY_NZ,
|
|
|
|
OCTANT_PX_PY_NZ,
|
|
|
|
OCTANT_NX_NY_PZ,
|
|
|
|
OCTANT_PX_NY_PZ,
|
|
|
|
OCTANT_NX_PY_PZ,
|
|
|
|
OCTANT_PX_PY_PZ
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PairKey {
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
OctreeElementID A;
|
|
|
|
OctreeElementID B;
|
|
|
|
};
|
|
|
|
uint64_t key;
|
|
|
|
};
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ bool operator<(const PairKey &p_pair) const {
|
|
|
|
return key < p_pair.key;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ PairKey(OctreeElementID p_A, OctreeElementID p_B) {
|
|
|
|
if (p_A < p_B) {
|
|
|
|
A = p_A;
|
|
|
|
B = p_B;
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
B = p_A;
|
|
|
|
A = p_B;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
_FORCE_INLINE_ PairKey() {}
|
2016-03-08 23:00:52 +00:00
|
|
|
};
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct Element;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct Octant {
|
|
|
|
// cached for FAST plane check
|
2017-11-17 02:09:00 +00:00
|
|
|
AABB aabb;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-12 15:01:17 +00:00
|
|
|
uint64_t last_pass = 0;
|
|
|
|
Octant *parent = nullptr;
|
|
|
|
Octant *children[8] = { nullptr };
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2022-01-06 23:08:56 +00:00
|
|
|
int children_count = 0; // cache for amount of children (fast check for removal)
|
2020-05-12 15:01:17 +00:00
|
|
|
int parent_index = -1; // cache for parent index (fast check for removal)
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
List<Element *, AL> pairable_elements;
|
|
|
|
List<Element *, AL> elements;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-12 15:01:17 +00:00
|
|
|
Octant() {}
|
|
|
|
~Octant() {}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct PairData;
|
|
|
|
|
|
|
|
struct Element {
|
2020-05-12 15:01:17 +00:00
|
|
|
Octree *octree = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-05-12 15:01:17 +00:00
|
|
|
T *userdata = nullptr;
|
|
|
|
int subindex = 0;
|
|
|
|
bool pairable = false;
|
|
|
|
uint32_t pairable_mask = 0;
|
|
|
|
uint32_t pairable_type = 0;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-12 15:01:17 +00:00
|
|
|
uint64_t last_pass = 0;
|
|
|
|
OctreeElementID _id = 0;
|
|
|
|
Octant *common_parent = nullptr;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-11-17 02:09:00 +00:00
|
|
|
AABB aabb;
|
|
|
|
AABB container_aabb;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
List<PairData *, AL> pair_list;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct OctantOwner {
|
|
|
|
Octant *octant;
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *E;
|
2016-03-08 23:00:52 +00:00
|
|
|
}; // an element can be in max 8 octants
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
List<OctantOwner, AL> octant_owners;
|
|
|
|
|
2020-05-12 15:01:17 +00:00
|
|
|
Element() {}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct PairData {
|
|
|
|
int refcount;
|
|
|
|
bool intersect;
|
2017-03-05 15:44:50 +00:00
|
|
|
Element *A, *B;
|
2014-02-10 01:10:30 +00:00
|
|
|
void *ud;
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<PairData *, AL>::Element *eA, *eB;
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef Map<OctreeElementID, Element, Comparator<OctreeElementID>, AL> ElementMap;
|
|
|
|
typedef Map<PairKey, PairData, Comparator<PairKey>, AL> PairMap;
|
2016-03-08 23:00:52 +00:00
|
|
|
ElementMap element_map;
|
|
|
|
PairMap pair_map;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
PairCallback pair_callback;
|
|
|
|
UnpairCallback unpair_callback;
|
|
|
|
void *pair_callback_userdata;
|
|
|
|
void *unpair_callback_userdata;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
|
|
|
OctreeElementID last_element_id;
|
2014-02-10 01:10:30 +00:00
|
|
|
uint64_t pass;
|
|
|
|
|
|
|
|
real_t unit_size;
|
|
|
|
Octant *root;
|
|
|
|
int octant_count;
|
|
|
|
int pair_count;
|
|
|
|
|
|
|
|
_FORCE_INLINE_ void _pair_check(PairData *p_pair) {
|
2017-03-05 15:44:50 +00:00
|
|
|
bool intersect = p_pair->A->aabb.intersects_inclusive(p_pair->B->aabb);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (intersect != p_pair->intersect) {
|
2014-02-10 01:10:30 +00:00
|
|
|
if (intersect) {
|
|
|
|
if (pair_callback) {
|
2017-03-05 15:44:50 +00:00
|
|
|
p_pair->ud = pair_callback(pair_callback_userdata, p_pair->A->_id, p_pair->A->userdata, p_pair->A->subindex, p_pair->B->_id, p_pair->B->userdata, p_pair->B->subindex);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
pair_count++;
|
|
|
|
} else {
|
|
|
|
if (unpair_callback) {
|
2017-03-05 15:44:50 +00:00
|
|
|
unpair_callback(pair_callback_userdata, p_pair->A->_id, p_pair->A->userdata, p_pair->A->subindex, p_pair->B->_id, p_pair->B->userdata, p_pair->B->subindex, p_pair->ud);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
pair_count--;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
p_pair->intersect = intersect;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void _pair_reference(Element *p_A, Element *p_B) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_A == p_B || (p_A->userdata == p_B->userdata && p_A->userdata)) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (!(p_A->pairable_type & p_B->pairable_mask) &&
|
2020-05-14 14:41:43 +00:00
|
|
|
!(p_B->pairable_type & p_A->pairable_mask)) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return; // none can pair with none
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
PairKey key(p_A->_id, p_B->_id);
|
2017-03-05 15:44:50 +00:00
|
|
|
typename PairMap::Element *E = pair_map.find(key);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
if (!E) {
|
|
|
|
PairData pdata;
|
2017-03-05 15:44:50 +00:00
|
|
|
pdata.refcount = 1;
|
|
|
|
pdata.A = p_A;
|
|
|
|
pdata.B = p_B;
|
|
|
|
pdata.intersect = false;
|
|
|
|
E = pair_map.insert(key, pdata);
|
|
|
|
E->get().eA = p_A->pair_list.push_back(&E->get());
|
|
|
|
E->get().eB = p_B->pair_list.push_back(&E->get());
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-14 11:26:56 +00:00
|
|
|
/*
|
|
|
|
if (pair_callback)
|
|
|
|
pair_callback(pair_callback_userdata,p_A->userdata,p_B->userdata);
|
|
|
|
*/
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
|
|
|
E->get().refcount++;
|
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void _pair_unreference(Element *p_A, Element *p_B) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_A == p_B) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
PairKey key(p_A->_id, p_B->_id);
|
2017-03-05 15:44:50 +00:00
|
|
|
typename PairMap::Element *E = pair_map.find(key);
|
2014-02-10 01:10:30 +00:00
|
|
|
if (!E) {
|
|
|
|
return; // no pair
|
|
|
|
}
|
|
|
|
|
|
|
|
E->get().refcount--;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (E->get().refcount == 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
// bye pair
|
|
|
|
|
|
|
|
if (E->get().intersect) {
|
|
|
|
if (unpair_callback) {
|
2017-03-05 15:44:50 +00:00
|
|
|
unpair_callback(pair_callback_userdata, p_A->_id, p_A->userdata, p_A->subindex, p_B->_id, p_B->userdata, p_B->subindex, E->get().ud);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pair_count--;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_A == E->get().B) {
|
2014-02-10 01:10:30 +00:00
|
|
|
//may be reaching inverted
|
2017-03-05 15:44:50 +00:00
|
|
|
SWAP(p_A, p_B);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
p_A->pair_list.erase(E->get().eA);
|
|
|
|
p_B->pair_list.erase(E->get().eB);
|
2014-02-10 01:10:30 +00:00
|
|
|
pair_map.erase(E);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_FORCE_INLINE_ void _element_check_pairs(Element *p_element) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<PairData *, AL>::Element *E = p_element->pair_list.front();
|
|
|
|
while (E) {
|
|
|
|
_pair_check(E->get());
|
|
|
|
E = E->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_FORCE_INLINE_ void _optimize() {
|
2017-03-05 15:44:50 +00:00
|
|
|
while (root && root->children_count < 2 && !root->elements.size() && !(use_pairs && root->pairable_elements.size())) {
|
2020-04-01 23:20:12 +00:00
|
|
|
Octant *new_root = nullptr;
|
2017-03-05 15:44:50 +00:00
|
|
|
if (root->children_count == 1) {
|
|
|
|
for (int i = 0; i < 8; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
if (root->children[i]) {
|
2017-03-05 15:44:50 +00:00
|
|
|
new_root = root->children[i];
|
2020-04-01 23:20:12 +00:00
|
|
|
root->children[i] = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ERR_FAIL_COND(!new_root);
|
2020-04-01 23:20:12 +00:00
|
|
|
new_root->parent = nullptr;
|
2017-03-05 15:44:50 +00:00
|
|
|
new_root->parent_index = -1;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
memdelete_allocator<Octant, AL>(root);
|
2014-02-10 01:10:30 +00:00
|
|
|
octant_count--;
|
2017-03-05 15:44:50 +00:00
|
|
|
root = new_root;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _insert_element(Element *p_element, Octant *p_octant);
|
2017-11-17 02:09:00 +00:00
|
|
|
void _ensure_valid_root(const AABB &p_aabb);
|
2020-04-01 23:20:12 +00:00
|
|
|
bool _remove_element_from_octant(Element *p_element, Octant *p_octant, Octant *p_limit = nullptr);
|
2014-02-10 01:10:30 +00:00
|
|
|
void _remove_element(Element *p_element);
|
2017-03-05 15:44:50 +00:00
|
|
|
void _pair_element(Element *p_element, Octant *p_octant);
|
|
|
|
void _unpair_element(Element *p_element, Octant *p_octant);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
struct _CullConvexData {
|
2017-03-05 15:44:50 +00:00
|
|
|
const Plane *planes;
|
2014-02-10 01:10:30 +00:00
|
|
|
int plane_count;
|
2020-04-29 00:14:06 +00:00
|
|
|
const Vector3 *points;
|
|
|
|
int point_count;
|
2017-03-05 15:44:50 +00:00
|
|
|
T **result_array;
|
2014-02-10 01:10:30 +00:00
|
|
|
int *result_idx;
|
|
|
|
int result_max;
|
|
|
|
uint32_t mask;
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _cull_convex(Octant *p_octant, _CullConvexData *p_cull);
|
2017-11-17 02:09:00 +00:00
|
|
|
void _cull_aabb(Octant *p_octant, const AABB &p_aabb, T **p_result_array, int *p_result_idx, int p_result_max, int *p_subindex_array, uint32_t p_mask);
|
2017-03-05 15:44:50 +00:00
|
|
|
void _cull_segment(Octant *p_octant, const Vector3 &p_from, const Vector3 &p_to, T **p_result_array, int *p_result_idx, int p_result_max, int *p_subindex_array, uint32_t p_mask);
|
|
|
|
void _cull_point(Octant *p_octant, const Vector3 &p_point, T **p_result_array, int *p_result_idx, int p_result_max, int *p_subindex_array, uint32_t p_mask);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void _remove_tree(Octant *p_octant) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!p_octant) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_octant->children[i]) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_remove_tree(p_octant->children[i]);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
memdelete_allocator<Octant, AL>(p_octant);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2017-11-17 02:09:00 +00:00
|
|
|
OctreeElementID create(T *p_userdata, const AABB &p_aabb = AABB(), int p_subindex = 0, bool p_pairable = false, uint32_t p_pairable_type = 0, uint32_t pairable_mask = 1);
|
|
|
|
void move(OctreeElementID p_id, const AABB &p_aabb);
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_pairable(OctreeElementID p_id, bool p_pairable = false, uint32_t p_pairable_type = 0, uint32_t pairable_mask = 1);
|
2014-02-10 01:10:30 +00:00
|
|
|
void erase(OctreeElementID p_id);
|
|
|
|
|
|
|
|
bool is_pairable(OctreeElementID p_id) const;
|
|
|
|
T *get(OctreeElementID p_id) const;
|
|
|
|
int get_subindex(OctreeElementID p_id) const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int cull_convex(const Vector<Plane> &p_convex, T **p_result_array, int p_result_max, uint32_t p_mask = 0xFFFFFFFF);
|
2020-04-01 23:20:12 +00:00
|
|
|
int cull_aabb(const AABB &p_aabb, T **p_result_array, int p_result_max, int *p_subindex_array = nullptr, uint32_t p_mask = 0xFFFFFFFF);
|
|
|
|
int cull_segment(const Vector3 &p_from, const Vector3 &p_to, T **p_result_array, int p_result_max, int *p_subindex_array = nullptr, uint32_t p_mask = 0xFFFFFFFF);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
int cull_point(const Vector3 &p_point, T **p_result_array, int p_result_max, int *p_subindex_array = nullptr, uint32_t p_mask = 0xFFFFFFFF);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_pair_callback(PairCallback p_callback, void *p_userdata);
|
|
|
|
void set_unpair_callback(UnpairCallback p_callback, void *p_userdata);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
int get_octant_count() const { return octant_count; }
|
|
|
|
int get_pair_count() const { return pair_count; }
|
2017-03-05 15:44:50 +00:00
|
|
|
Octree(real_t p_unit_size = 1.0);
|
2014-02-10 01:10:30 +00:00
|
|
|
~Octree() { _remove_tree(root); }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* PRIVATE FUNCTIONS */
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
T *Octree<T, use_pairs, AL>::get(OctreeElementID p_id) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
const typename ElementMap::Element *E = element_map.find(p_id);
|
2020-04-01 23:20:12 +00:00
|
|
|
ERR_FAIL_COND_V(!E, nullptr);
|
2014-02-10 01:10:30 +00:00
|
|
|
return E->get().userdata;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
bool Octree<T, use_pairs, AL>::is_pairable(OctreeElementID p_id) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
const typename ElementMap::Element *E = element_map.find(p_id);
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(!E, false);
|
2014-02-10 01:10:30 +00:00
|
|
|
return E->get().pairable;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
int Octree<T, use_pairs, AL>::get_subindex(OctreeElementID p_id) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
const typename ElementMap::Element *E = element_map.find(p_id);
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(!E, -1);
|
2014-02-10 01:10:30 +00:00
|
|
|
return E->get().subindex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define OCTREE_DIVISOR 4
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::_insert_element(Element *p_element, Octant *p_octant) {
|
2017-01-14 20:35:39 +00:00
|
|
|
real_t element_size = p_element->aabb.get_longest_axis_size() * 1.01; // avoid precision issues
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_octant->aabb.size.x / OCTREE_DIVISOR < element_size) {
|
|
|
|
//if (p_octant->aabb.size.x*0.5 < element_size) {
|
2016-03-08 23:00:52 +00:00
|
|
|
/* at smallest possible size for the element */
|
2014-02-10 01:10:30 +00:00
|
|
|
typename Element::OctantOwner owner;
|
2017-03-05 15:44:50 +00:00
|
|
|
owner.octant = p_octant;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (use_pairs && p_element->pairable) {
|
|
|
|
p_octant->pairable_elements.push_back(p_element);
|
|
|
|
owner.E = p_octant->pairable_elements.back();
|
|
|
|
} else {
|
|
|
|
p_octant->elements.push_back(p_element);
|
|
|
|
owner.E = p_octant->elements.back();
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
p_element->octant_owners.push_back(owner);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
if (p_element->common_parent == nullptr) {
|
2017-03-05 15:44:50 +00:00
|
|
|
p_element->common_parent = p_octant;
|
|
|
|
p_element->container_aabb = p_octant->aabb;
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
|
|
|
p_element->container_aabb.merge_with(p_octant->aabb);
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (use_pairs && p_octant->children_count > 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
pass++; //elements below this only get ONE reference added
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
if (p_octant->children[i]) {
|
2017-03-05 15:44:50 +00:00
|
|
|
_pair_element(p_element, p_octant->children[i]);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* not big enough, send it to subitems */
|
2017-03-05 15:44:50 +00:00
|
|
|
int splits = 0;
|
2020-04-01 23:20:12 +00:00
|
|
|
bool candidate = p_element->common_parent == nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
if (p_octant->children[i]) {
|
|
|
|
/* element exists, go straight to it */
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_octant->children[i]->aabb.intersects_inclusive(p_element->aabb)) {
|
|
|
|
_insert_element(p_element, p_octant->children[i]);
|
2014-02-10 01:10:30 +00:00
|
|
|
splits++;
|
|
|
|
}
|
|
|
|
} else {
|
2018-09-13 01:38:39 +00:00
|
|
|
/* check against AABB where child should be */
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-11-17 02:09:00 +00:00
|
|
|
AABB aabb = p_octant->aabb;
|
2017-03-05 15:44:50 +00:00
|
|
|
aabb.size *= 0.5;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (i & 1) {
|
2017-06-06 18:33:51 +00:00
|
|
|
aabb.position.x += aabb.size.x;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
|
|
|
if (i & 2) {
|
2017-06-06 18:33:51 +00:00
|
|
|
aabb.position.y += aabb.size.y;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
|
|
|
if (i & 4) {
|
2017-06-06 18:33:51 +00:00
|
|
|
aabb.position.z += aabb.size.z;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (aabb.intersects_inclusive(p_element->aabb)) {
|
2014-02-10 01:10:30 +00:00
|
|
|
/* if actually intersects, create the child */
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Octant *child = memnew_allocator(Octant, AL);
|
|
|
|
p_octant->children[i] = child;
|
|
|
|
child->parent = p_octant;
|
|
|
|
child->parent_index = i;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
child->aabb = aabb;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
p_octant->children_count++;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_insert_element(p_element, child);
|
2014-02-10 01:10:30 +00:00
|
|
|
octant_count++;
|
|
|
|
splits++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (candidate && splits > 1) {
|
|
|
|
p_element->common_parent = p_octant;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (use_pairs) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *E = p_octant->pairable_elements.front();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while (E) {
|
|
|
|
_pair_reference(p_element, E->get());
|
|
|
|
E = E->next();
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (p_element->pairable) {
|
|
|
|
// and always test non-pairable if element is pairable
|
2017-03-05 15:44:50 +00:00
|
|
|
E = p_octant->elements.front();
|
|
|
|
while (E) {
|
|
|
|
_pair_reference(p_element, E->get());
|
|
|
|
E = E->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
2017-11-17 02:09:00 +00:00
|
|
|
void Octree<T, use_pairs, AL>::_ensure_valid_root(const AABB &p_aabb) {
|
2014-02-10 01:10:30 +00:00
|
|
|
if (!root) {
|
|
|
|
// octre is empty
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-11-17 02:09:00 +00:00
|
|
|
AABB base(Vector3(), Vector3(1.0, 1.0, 1.0) * unit_size);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while (!base.encloses(p_aabb)) {
|
2017-06-06 18:33:51 +00:00
|
|
|
if (ABS(base.position.x + base.size.x) <= ABS(base.position.x)) {
|
2014-02-10 01:10:30 +00:00
|
|
|
/* grow towards positive */
|
2017-03-05 15:44:50 +00:00
|
|
|
base.size *= 2.0;
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
2017-06-06 18:33:51 +00:00
|
|
|
base.position -= base.size;
|
2017-03-05 15:44:50 +00:00
|
|
|
base.size *= 2.0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
root = memnew_allocator(Octant, AL);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
root->parent = nullptr;
|
2017-03-05 15:44:50 +00:00
|
|
|
root->parent_index = -1;
|
|
|
|
root->aabb = base;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
octant_count++;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
|
|
|
} else {
|
2017-11-17 02:09:00 +00:00
|
|
|
AABB base = root->aabb;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while (!base.encloses(p_aabb)) {
|
2019-08-15 02:57:49 +00:00
|
|
|
ERR_FAIL_COND_MSG(base.size.x > OCTREE_SIZE_LIMIT, "Octree upper size limit reached, does the AABB supplied contain NAN?");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Octant *gp = memnew_allocator(Octant, AL);
|
2014-02-10 01:10:30 +00:00
|
|
|
octant_count++;
|
2017-03-05 15:44:50 +00:00
|
|
|
root->parent = gp;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-06-06 18:33:51 +00:00
|
|
|
if (ABS(base.position.x + base.size.x) <= ABS(base.position.x)) {
|
2014-02-10 01:10:30 +00:00
|
|
|
/* grow towards positive */
|
2017-03-05 15:44:50 +00:00
|
|
|
base.size *= 2.0;
|
|
|
|
gp->aabb = base;
|
|
|
|
gp->children[0] = root;
|
|
|
|
root->parent_index = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
2017-06-06 18:33:51 +00:00
|
|
|
base.position -= base.size;
|
2017-03-05 15:44:50 +00:00
|
|
|
base.size *= 2.0;
|
|
|
|
gp->aabb = base;
|
|
|
|
gp->children[(1 << 0) | (1 << 1) | (1 << 2)] = root; // add at all-positive
|
|
|
|
root->parent_index = (1 << 0) | (1 << 1) | (1 << 2);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
gp->children_count = 1;
|
|
|
|
root = gp;
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
bool Octree<T, use_pairs, AL>::_remove_element_from_octant(Element *p_element, Octant *p_octant, Octant *p_limit) {
|
|
|
|
bool octant_removed = false;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while (true) {
|
2014-02-10 01:10:30 +00:00
|
|
|
// check all exit conditions
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_octant == p_limit) { // reached limit, nothing to erase, exit
|
2014-02-10 01:10:30 +00:00
|
|
|
return octant_removed;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool unpaired = false;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (use_pairs && p_octant->last_pass != pass) {
|
2018-01-18 20:37:17 +00:00
|
|
|
// check whether we should unpair stuff
|
2014-02-10 01:10:30 +00:00
|
|
|
// always test pairable
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *E = p_octant->pairable_elements.front();
|
|
|
|
while (E) {
|
|
|
|
_pair_unreference(p_element, E->get());
|
|
|
|
E = E->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
if (p_element->pairable) {
|
|
|
|
// and always test non-pairable if element is pairable
|
2017-03-05 15:44:50 +00:00
|
|
|
E = p_octant->elements.front();
|
|
|
|
while (E) {
|
|
|
|
_pair_unreference(p_element, E->get());
|
|
|
|
E = E->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
p_octant->last_pass = pass;
|
|
|
|
unpaired = true;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool removed = false;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Octant *parent = p_octant->parent;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (p_octant->children_count == 0 && p_octant->elements.is_empty() && p_octant->pairable_elements.is_empty()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
// erase octant
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_octant == root) { // won't have a parent, just erase
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
root = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_INDEX_V(p_octant->parent_index, 8, octant_removed);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
parent->children[p_octant->parent_index] = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
parent->children_count--;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
memdelete_allocator<Octant, AL>(p_octant);
|
2014-02-10 01:10:30 +00:00
|
|
|
octant_count--;
|
2017-03-05 15:44:50 +00:00
|
|
|
removed = true;
|
|
|
|
octant_removed = true;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!removed && !unpaired) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return octant_removed; // no reason to keep going up anymore! was already visited and was not removed
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
p_octant = parent;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return octant_removed;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::_unpair_element(Element *p_element, Octant *p_octant) {
|
2016-03-08 23:00:52 +00:00
|
|
|
// always test pairable
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *E = p_octant->pairable_elements.front();
|
|
|
|
while (E) {
|
|
|
|
if (E->get()->last_pass != pass) { // only remove ONE reference
|
|
|
|
_pair_unreference(p_element, E->get());
|
|
|
|
E->get()->last_pass = pass;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
E = E->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (p_element->pairable) {
|
|
|
|
// and always test non-pairable if element is pairable
|
2017-03-05 15:44:50 +00:00
|
|
|
E = p_octant->elements.front();
|
|
|
|
while (E) {
|
|
|
|
if (E->get()->last_pass != pass) { // only remove ONE reference
|
|
|
|
_pair_unreference(p_element, E->get());
|
|
|
|
E->get()->last_pass = pass;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
E = E->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
p_octant->last_pass = pass;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_octant->children_count == 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return; // small optimization for leafs
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_octant->children[i]) {
|
2017-03-05 15:44:50 +00:00
|
|
|
_unpair_element(p_element, p_octant->children[i]);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::_pair_element(Element *p_element, Octant *p_octant) {
|
2014-02-10 01:10:30 +00:00
|
|
|
// always test pairable
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *E = p_octant->pairable_elements.front();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while (E) {
|
|
|
|
if (E->get()->last_pass != pass) { // only get ONE reference
|
|
|
|
_pair_reference(p_element, E->get());
|
|
|
|
E->get()->last_pass = pass;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
E = E->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (p_element->pairable) {
|
|
|
|
// and always test non-pairable if element is pairable
|
2017-03-05 15:44:50 +00:00
|
|
|
E = p_octant->elements.front();
|
|
|
|
while (E) {
|
|
|
|
if (E->get()->last_pass != pass) { // only get ONE reference
|
|
|
|
_pair_reference(p_element, E->get());
|
|
|
|
E->get()->last_pass = pass;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
E = E->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
p_octant->last_pass = pass;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_octant->children_count == 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return; // small optimization for leafs
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_octant->children[i]) {
|
2017-03-05 15:44:50 +00:00
|
|
|
_pair_element(p_element, p_octant->children[i]);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::_remove_element(Element *p_element) {
|
2014-02-10 01:10:30 +00:00
|
|
|
pass++; // will do a new pass for this
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<typename Element::OctantOwner, AL>::Element *I = p_element->octant_owners.front();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
/* FIRST remove going up normally */
|
2017-03-05 15:44:50 +00:00
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Octant *o = I->get().octant;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!use_pairs) { // small speedup
|
2017-03-05 15:44:50 +00:00
|
|
|
o->elements.erase(I->get().E);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_remove_element_from_octant(p_element, o);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* THEN remove going down */
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
I = p_element->octant_owners.front();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
if (use_pairs) {
|
2017-03-05 15:44:50 +00:00
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Octant *o = I->get().octant;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
// erase children pairs, they are erased ONCE even if repeated
|
|
|
|
pass++;
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (o->children[i]) {
|
2017-03-05 15:44:50 +00:00
|
|
|
_unpair_element(p_element, o->children[i]);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_element->pairable) {
|
2017-03-05 15:44:50 +00:00
|
|
|
o->pairable_elements.erase(I->get().E);
|
2020-05-14 14:41:43 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
o->elements.erase(I->get().E);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p_element->octant_owners.clear();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (use_pairs) {
|
|
|
|
int remaining = p_element->pair_list.size();
|
2014-02-10 01:10:30 +00:00
|
|
|
//p_element->pair_list.clear();
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND(remaining);
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
2017-11-17 02:09:00 +00:00
|
|
|
OctreeElementID Octree<T, use_pairs, AL>::create(T *p_userdata, const AABB &p_aabb, int p_subindex, bool p_pairable, uint32_t p_pairable_type, uint32_t p_pairable_mask) {
|
2017-03-05 15:44:50 +00:00
|
|
|
// check for AABB validity
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifdef DEBUG_ENABLED
|
2017-06-06 18:33:51 +00:00
|
|
|
ERR_FAIL_COND_V(p_aabb.position.x > 1e15 || p_aabb.position.x < -1e15, 0);
|
|
|
|
ERR_FAIL_COND_V(p_aabb.position.y > 1e15 || p_aabb.position.y < -1e15, 0);
|
|
|
|
ERR_FAIL_COND_V(p_aabb.position.z > 1e15 || p_aabb.position.z < -1e15, 0);
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(p_aabb.size.x > 1e15 || p_aabb.size.x < 0.0, 0);
|
|
|
|
ERR_FAIL_COND_V(p_aabb.size.y > 1e15 || p_aabb.size.y < 0.0, 0);
|
|
|
|
ERR_FAIL_COND_V(p_aabb.size.z > 1e15 || p_aabb.size.z < 0.0, 0);
|
|
|
|
ERR_FAIL_COND_V(Math::is_nan(p_aabb.size.x), 0);
|
|
|
|
ERR_FAIL_COND_V(Math::is_nan(p_aabb.size.y), 0);
|
|
|
|
ERR_FAIL_COND_V(Math::is_nan(p_aabb.size.z), 0);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#endif
|
|
|
|
typename ElementMap::Element *E = element_map.insert(last_element_id++,
|
2017-03-05 15:44:50 +00:00
|
|
|
Element());
|
2014-02-10 01:10:30 +00:00
|
|
|
Element &e = E->get();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
e.aabb = p_aabb;
|
|
|
|
e.userdata = p_userdata;
|
|
|
|
e.subindex = p_subindex;
|
|
|
|
e.last_pass = 0;
|
|
|
|
e.octree = this;
|
|
|
|
e.pairable = p_pairable;
|
|
|
|
e.pairable_type = p_pairable_type;
|
|
|
|
e.pairable_mask = p_pairable_mask;
|
|
|
|
e._id = last_element_id - 1;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (!e.aabb.has_no_surface()) {
|
|
|
|
_ensure_valid_root(p_aabb);
|
2017-03-05 15:44:50 +00:00
|
|
|
_insert_element(&e, root);
|
2020-05-14 14:41:43 +00:00
|
|
|
if (use_pairs) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_element_check_pairs(&e);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return last_element_id - 1;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
2017-11-17 02:09:00 +00:00
|
|
|
void Octree<T, use_pairs, AL>::move(OctreeElementID p_id, const AABB &p_aabb) {
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
// check for AABB validity
|
2017-06-06 18:33:51 +00:00
|
|
|
ERR_FAIL_COND(p_aabb.position.x > 1e15 || p_aabb.position.x < -1e15);
|
|
|
|
ERR_FAIL_COND(p_aabb.position.y > 1e15 || p_aabb.position.y < -1e15);
|
|
|
|
ERR_FAIL_COND(p_aabb.position.z > 1e15 || p_aabb.position.z < -1e15);
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND(p_aabb.size.x > 1e15 || p_aabb.size.x < 0.0);
|
|
|
|
ERR_FAIL_COND(p_aabb.size.y > 1e15 || p_aabb.size.y < 0.0);
|
|
|
|
ERR_FAIL_COND(p_aabb.size.z > 1e15 || p_aabb.size.z < 0.0);
|
|
|
|
ERR_FAIL_COND(Math::is_nan(p_aabb.size.x));
|
|
|
|
ERR_FAIL_COND(Math::is_nan(p_aabb.size.y));
|
|
|
|
ERR_FAIL_COND(Math::is_nan(p_aabb.size.z));
|
2014-02-10 01:10:30 +00:00
|
|
|
#endif
|
|
|
|
typename ElementMap::Element *E = element_map.find(p_id);
|
|
|
|
ERR_FAIL_COND(!E);
|
|
|
|
Element &e = E->get();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool old_has_surf = !e.aabb.has_no_surface();
|
|
|
|
bool new_has_surf = !p_aabb.has_no_surface();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (old_has_surf != new_has_surf) {
|
2014-02-10 01:10:30 +00:00
|
|
|
if (old_has_surf) {
|
|
|
|
_remove_element(&e); // removing
|
2020-04-01 23:20:12 +00:00
|
|
|
e.common_parent = nullptr;
|
2017-11-17 02:09:00 +00:00
|
|
|
e.aabb = AABB();
|
2014-02-10 01:10:30 +00:00
|
|
|
_optimize();
|
|
|
|
} else {
|
|
|
|
_ensure_valid_root(p_aabb); // inserting
|
2020-04-01 23:20:12 +00:00
|
|
|
e.common_parent = nullptr;
|
2017-03-05 15:44:50 +00:00
|
|
|
e.aabb = p_aabb;
|
|
|
|
_insert_element(&e, root);
|
2020-05-14 14:41:43 +00:00
|
|
|
if (use_pairs) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_element_check_pairs(&e);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!old_has_surf) { // doing nothing
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
// it still is enclosed in the same AABB it was assigned to
|
|
|
|
if (e.container_aabb.encloses(p_aabb)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
e.aabb = p_aabb;
|
2020-05-14 14:41:43 +00:00
|
|
|
if (use_pairs) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_element_check_pairs(&e); // must check pairs anyway
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-17 02:09:00 +00:00
|
|
|
AABB combined = e.aabb;
|
2014-02-10 01:10:30 +00:00
|
|
|
combined.merge_with(p_aabb);
|
|
|
|
_ensure_valid_root(combined);
|
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
ERR_FAIL_COND(e.octant_owners.front() == nullptr);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
/* FIND COMMON PARENT */
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
List<typename Element::OctantOwner, AL> owners = e.octant_owners; // save the octant owners
|
|
|
|
Octant *common_parent = e.common_parent;
|
2014-02-10 01:10:30 +00:00
|
|
|
ERR_FAIL_COND(!common_parent);
|
|
|
|
|
|
|
|
//src is now the place towards where insertion is going to happen
|
|
|
|
pass++;
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
while (common_parent && !common_parent->aabb.encloses(p_aabb)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
common_parent = common_parent->parent;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
ERR_FAIL_COND(!common_parent);
|
|
|
|
|
|
|
|
//prepare for reinsert
|
|
|
|
e.octant_owners.clear();
|
2020-04-01 23:20:12 +00:00
|
|
|
e.common_parent = nullptr;
|
2017-03-05 15:44:50 +00:00
|
|
|
e.aabb = p_aabb;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_insert_element(&e, common_parent); // reinsert from this point
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
pass++;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2019-02-12 20:10:08 +00:00
|
|
|
for (typename List<typename Element::OctantOwner, AL>::Element *F = owners.front(); F;) {
|
|
|
|
Octant *o = F->get().octant;
|
|
|
|
typename List<typename Element::OctantOwner, AL>::Element *N = F->next();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-14 11:26:56 +00:00
|
|
|
/*
|
|
|
|
if (!use_pairs)
|
2019-02-12 20:10:08 +00:00
|
|
|
o->elements.erase( F->get().E );
|
2017-01-14 11:26:56 +00:00
|
|
|
*/
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (use_pairs && e.pairable) {
|
2019-02-12 20:10:08 +00:00
|
|
|
o->pairable_elements.erase(F->get().E);
|
2020-05-14 14:41:43 +00:00
|
|
|
} else {
|
2019-02-12 20:10:08 +00:00
|
|
|
o->elements.erase(F->get().E);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (_remove_element_from_octant(&e, o, common_parent->parent)) {
|
2019-02-12 20:10:08 +00:00
|
|
|
owners.erase(F);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2019-02-12 20:10:08 +00:00
|
|
|
F = N;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (use_pairs) {
|
|
|
|
//unpair child elements in anything that survived
|
2019-02-12 20:10:08 +00:00
|
|
|
for (typename List<typename Element::OctantOwner, AL>::Element *F = owners.front(); F; F = F->next()) {
|
|
|
|
Octant *o = F->get().octant;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
// erase children pairs, unref ONCE
|
|
|
|
pass++;
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (o->children[i]) {
|
2017-03-05 15:44:50 +00:00
|
|
|
_unpair_element(&e, o->children[i]);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_element_check_pairs(&e);
|
|
|
|
}
|
|
|
|
|
|
|
|
_optimize();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::set_pairable(OctreeElementID p_id, bool p_pairable, uint32_t p_pairable_type, uint32_t p_pairable_mask) {
|
2014-02-10 01:10:30 +00:00
|
|
|
typename ElementMap::Element *E = element_map.find(p_id);
|
|
|
|
ERR_FAIL_COND(!E);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Element &e = E->get();
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_pairable == e.pairable && e.pairable_type == p_pairable_type && e.pairable_mask == p_pairable_mask) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return; // no changes, return
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (!e.aabb.has_no_surface()) {
|
|
|
|
_remove_element(&e);
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
e.pairable = p_pairable;
|
|
|
|
e.pairable_type = p_pairable_type;
|
|
|
|
e.pairable_mask = p_pairable_mask;
|
2020-04-01 23:20:12 +00:00
|
|
|
e.common_parent = nullptr;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (!e.aabb.has_no_surface()) {
|
|
|
|
_ensure_valid_root(e.aabb);
|
2017-03-05 15:44:50 +00:00
|
|
|
_insert_element(&e, root);
|
2020-05-14 14:41:43 +00:00
|
|
|
if (use_pairs) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_element_check_pairs(&e);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::erase(OctreeElementID p_id) {
|
2014-02-10 01:10:30 +00:00
|
|
|
typename ElementMap::Element *E = element_map.find(p_id);
|
|
|
|
ERR_FAIL_COND(!E);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Element &e = E->get();
|
|
|
|
|
|
|
|
if (!e.aabb.has_no_surface()) {
|
2016-03-08 23:00:52 +00:00
|
|
|
_remove_element(&e);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
element_map.erase(p_id);
|
|
|
|
_optimize();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::_cull_convex(Octant *p_octant, _CullConvexData *p_cull) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (*p_cull->result_idx == p_cull->result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return; //pointless
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (!p_octant->elements.is_empty()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *I;
|
|
|
|
I = p_octant->elements.front();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Element *e = I->get();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (e->last_pass == pass || (use_pairs && !(e->pairable_type & p_cull->mask))) {
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
e->last_pass = pass;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-04-29 00:14:06 +00:00
|
|
|
if (e->aabb.intersects_convex_shape(p_cull->planes, p_cull->plane_count, p_cull->points, p_cull->point_count)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
if (*p_cull->result_idx < p_cull->result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_cull->result_array[*p_cull->result_idx] = e->userdata;
|
|
|
|
(*p_cull->result_idx)++;
|
|
|
|
} else {
|
|
|
|
return; // pointless to continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (use_pairs && !p_octant->pairable_elements.is_empty()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *I;
|
|
|
|
I = p_octant->pairable_elements.front();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Element *e = I->get();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (e->last_pass == pass || (use_pairs && !(e->pairable_type & p_cull->mask))) {
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
e->last_pass = pass;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-04-29 00:14:06 +00:00
|
|
|
if (e->aabb.intersects_convex_shape(p_cull->planes, p_cull->plane_count, p_cull->points, p_cull->point_count)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
if (*p_cull->result_idx < p_cull->result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_cull->result_array[*p_cull->result_idx] = e->userdata;
|
|
|
|
(*p_cull->result_idx)++;
|
|
|
|
} else {
|
|
|
|
return; // pointless to continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2020-04-29 00:14:06 +00:00
|
|
|
if (p_octant->children[i] && p_octant->children[i]->aabb.intersects_convex_shape(p_cull->planes, p_cull->plane_count, p_cull->points, p_cull->point_count)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
_cull_convex(p_octant->children[i], p_cull);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
2017-11-17 02:09:00 +00:00
|
|
|
void Octree<T, use_pairs, AL>::_cull_aabb(Octant *p_octant, const AABB &p_aabb, T **p_result_array, int *p_result_idx, int p_result_max, int *p_subindex_array, uint32_t p_mask) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (*p_result_idx == p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return; //pointless
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (!p_octant->elements.is_empty()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *I;
|
|
|
|
I = p_octant->elements.front();
|
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Element *e = I->get();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (e->last_pass == pass || (use_pairs && !(e->pairable_type & p_mask))) {
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
e->last_pass = pass;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2016-02-17 19:06:40 +00:00
|
|
|
if (p_aabb.intersects_inclusive(e->aabb)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
if (*p_result_idx < p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_result_array[*p_result_idx] = e->userdata;
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_subindex_array) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_subindex_array[*p_result_idx] = e->subindex;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
(*p_result_idx)++;
|
|
|
|
} else {
|
|
|
|
return; // pointless to continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (use_pairs && !p_octant->pairable_elements.is_empty()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *I;
|
|
|
|
I = p_octant->pairable_elements.front();
|
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Element *e = I->get();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (e->last_pass == pass || (use_pairs && !(e->pairable_type & p_mask))) {
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
e->last_pass = pass;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2016-02-17 19:06:40 +00:00
|
|
|
if (p_aabb.intersects_inclusive(e->aabb)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
if (*p_result_idx < p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_result_array[*p_result_idx] = e->userdata;
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_subindex_array) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_subindex_array[*p_result_idx] = e->subindex;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
(*p_result_idx)++;
|
|
|
|
} else {
|
|
|
|
return; // pointless to continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2016-02-17 19:06:40 +00:00
|
|
|
if (p_octant->children[i] && p_octant->children[i]->aabb.intersects_inclusive(p_aabb)) {
|
2017-08-16 15:00:07 +00:00
|
|
|
_cull_aabb(p_octant->children[i], p_aabb, p_result_array, p_result_idx, p_result_max, p_subindex_array, p_mask);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::_cull_segment(Octant *p_octant, const Vector3 &p_from, const Vector3 &p_to, T **p_result_array, int *p_result_idx, int p_result_max, int *p_subindex_array, uint32_t p_mask) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (*p_result_idx == p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return; //pointless
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (!p_octant->elements.is_empty()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *I;
|
|
|
|
I = p_octant->elements.front();
|
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Element *e = I->get();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (e->last_pass == pass || (use_pairs && !(e->pairable_type & p_mask))) {
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
e->last_pass = pass;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (e->aabb.intersects_segment(p_from, p_to)) {
|
|
|
|
if (*p_result_idx < p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_result_array[*p_result_idx] = e->userdata;
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_subindex_array) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_subindex_array[*p_result_idx] = e->subindex;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
(*p_result_idx)++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return; // pointless to continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (use_pairs && !p_octant->pairable_elements.is_empty()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *I;
|
|
|
|
I = p_octant->pairable_elements.front();
|
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Element *e = I->get();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (e->last_pass == pass || (use_pairs && !(e->pairable_type & p_mask))) {
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
e->last_pass = pass;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (e->aabb.intersects_segment(p_from, p_to)) {
|
|
|
|
if (*p_result_idx < p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_result_array[*p_result_idx] = e->userdata;
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_subindex_array) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_subindex_array[*p_result_idx] = e->subindex;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
(*p_result_idx)++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return; // pointless to continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
if (p_octant->children[i] && p_octant->children[i]->aabb.intersects_segment(p_from, p_to)) {
|
|
|
|
_cull_segment(p_octant->children[i], p_from, p_to, p_result_array, p_result_idx, p_result_max, p_subindex_array, p_mask);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::_cull_point(Octant *p_octant, const Vector3 &p_point, T **p_result_array, int *p_result_idx, int p_result_max, int *p_subindex_array, uint32_t p_mask) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (*p_result_idx == p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return; //pointless
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (!p_octant->elements.is_empty()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *I;
|
|
|
|
I = p_octant->elements.front();
|
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Element *e = I->get();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (e->last_pass == pass || (use_pairs && !(e->pairable_type & p_mask))) {
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
e->last_pass = pass;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
if (e->aabb.has_point(p_point)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
if (*p_result_idx < p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_result_array[*p_result_idx] = e->userdata;
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_subindex_array) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_subindex_array[*p_result_idx] = e->subindex;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
(*p_result_idx)++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return; // pointless to continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-15 12:04:21 +00:00
|
|
|
if (use_pairs && !p_octant->pairable_elements.is_empty()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
typename List<Element *, AL>::Element *I;
|
|
|
|
I = p_octant->pairable_elements.front();
|
|
|
|
for (; I; I = I->next()) {
|
|
|
|
Element *e = I->get();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (e->last_pass == pass || (use_pairs && !(e->pairable_type & p_mask))) {
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
e->last_pass = pass;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
if (e->aabb.has_point(p_point)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
if (*p_result_idx < p_result_max) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_result_array[*p_result_idx] = e->userdata;
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_subindex_array) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_subindex_array[*p_result_idx] = e->subindex;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
(*p_result_idx)++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return; // pointless to continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
//could be optimized..
|
|
|
|
if (p_octant->children[i] && p_octant->children[i]->aabb.has_point(p_point)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
_cull_point(p_octant->children[i], p_point, p_result_array, p_result_idx, p_result_max, p_subindex_array, p_mask);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
int Octree<T, use_pairs, AL>::cull_convex(const Vector<Plane> &p_convex, T **p_result_array, int p_result_max, uint32_t p_mask) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!root || p_convex.size() == 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return 0;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-25 17:20:45 +00:00
|
|
|
Vector<Vector3> convex_points = Geometry3D::compute_convex_mesh_points(&p_convex[0], p_convex.size());
|
2020-05-14 14:41:43 +00:00
|
|
|
if (convex_points.size() == 0) {
|
2020-05-04 20:02:58 +00:00
|
|
|
return 0;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2020-04-29 00:14:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int result_count = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
pass++;
|
|
|
|
_CullConvexData cdata;
|
2017-03-05 15:44:50 +00:00
|
|
|
cdata.planes = &p_convex[0];
|
|
|
|
cdata.plane_count = p_convex.size();
|
2020-04-29 00:14:06 +00:00
|
|
|
cdata.points = &convex_points[0];
|
|
|
|
cdata.point_count = convex_points.size();
|
2017-03-05 15:44:50 +00:00
|
|
|
cdata.result_array = p_result_array;
|
|
|
|
cdata.result_max = p_result_max;
|
|
|
|
cdata.result_idx = &result_count;
|
|
|
|
cdata.mask = p_mask;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_cull_convex(root, &cdata);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return result_count;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
2017-11-17 02:09:00 +00:00
|
|
|
int Octree<T, use_pairs, AL>::cull_aabb(const AABB &p_aabb, T **p_result_array, int p_result_max, int *p_subindex_array, uint32_t p_mask) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!root) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return 0;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int result_count = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
pass++;
|
2017-08-16 15:00:07 +00:00
|
|
|
_cull_aabb(root, p_aabb, p_result_array, &result_count, p_result_max, p_subindex_array, p_mask);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return result_count;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
int Octree<T, use_pairs, AL>::cull_segment(const Vector3 &p_from, const Vector3 &p_to, T **p_result_array, int p_result_max, int *p_subindex_array, uint32_t p_mask) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!root) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return 0;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int result_count = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
pass++;
|
2017-03-05 15:44:50 +00:00
|
|
|
_cull_segment(root, p_from, p_to, p_result_array, &result_count, p_result_max, p_subindex_array, p_mask);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return result_count;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
int Octree<T, use_pairs, AL>::cull_point(const Vector3 &p_point, T **p_result_array, int p_result_max, int *p_subindex_array, uint32_t p_mask) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!root) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return 0;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int result_count = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
pass++;
|
2017-03-05 15:44:50 +00:00
|
|
|
_cull_point(root, p_point, p_result_array, &result_count, p_result_max, p_subindex_array, p_mask);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return result_count;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::set_pair_callback(PairCallback p_callback, void *p_userdata) {
|
|
|
|
pair_callback = p_callback;
|
|
|
|
pair_callback_userdata = p_userdata;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2020-05-14 12:29:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
void Octree<T, use_pairs, AL>::set_unpair_callback(UnpairCallback p_callback, void *p_userdata) {
|
|
|
|
unpair_callback = p_callback;
|
|
|
|
unpair_callback_userdata = p_userdata;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T, bool use_pairs, class AL>
|
|
|
|
Octree<T, use_pairs, AL>::Octree(real_t p_unit_size) {
|
|
|
|
last_element_id = 1;
|
|
|
|
pass = 1;
|
|
|
|
unit_size = p_unit_size;
|
2020-04-01 23:20:12 +00:00
|
|
|
root = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
octant_count = 0;
|
|
|
|
pair_count = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
pair_callback = nullptr;
|
|
|
|
unpair_callback = nullptr;
|
|
|
|
pair_callback_userdata = nullptr;
|
|
|
|
unpair_callback_userdata = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2020-03-25 10:10:34 +00:00
|
|
|
#endif // OCTREE_H
|