38 #ifndef COAL_HIERARCHY_TREE_ARRAY_H
39 #define COAL_HIERARCHY_TREE_ARRAY_H
54 namespace implementation_array {
57 template <
typename BV>
64 SortByMorton(
Node* nodes_in) :
nodes(nodes_in) {}
65 SortByMorton(
Node* nodes_in, uint32_t split_in)
66 :
nodes(nodes_in), split(split_in) {}
67 bool operator()(
size_t a,
size_t b)
const {
88 HierarchyTree(
int bu_threshold_ = 16,
int topdown_level_ = 0);
94 void init(
Node* leaves,
int n_leaves_,
int level = 0);
98 size_t insert(
const BV& bv,
void* data);
110 void update(
size_t leaf,
int lookahead_level = -1);
114 bool update(
size_t leaf,
const BV& bv);
120 bool update(
size_t leaf,
const BV& bv,
const Vec3s& vel);
154 void print(
size_t root,
int depth);
158 void bottomup(
size_t* lbeg,
size_t* lend);
161 size_t topdown(
size_t* lbeg,
size_t* lend);
167 void getMaxDepth(
size_t node,
size_t depth,
size_t& max_depth)
const;
174 size_t topdown_0(
size_t* lbeg,
size_t* lend);
182 size_t topdown_1(
size_t* lbeg,
size_t* lend);
186 void init_0(
Node* leaves,
int n_leaves_);
192 void init_1(
Node* leaves,
int n_leaves_);
198 void init_2(
Node* leaves,
int n_leaves_);
203 void init_3(
Node* leaves,
int n_leaves_);
205 size_t mortonRecurse_0(
size_t* lbeg,
size_t* lend,
const uint32_t& split,
208 size_t mortonRecurse_1(
size_t* lbeg,
size_t* lend,
const uint32_t& split,
211 size_t mortonRecurse_2(
size_t* lbeg,
size_t* lend);
214 void update_(
size_t leaf,
const BV& bv);
217 void insertLeaf(
size_t root,
size_t leaf);
222 size_t removeLeaf(
size_t leaf);
226 void fetchLeaves(
size_t root,
Node*& leaves,
int depth = -1);
228 size_t indexOf(
size_t node);
230 size_t allocateNode();
233 size_t createNode(
size_t parent,
const BV& bv1,
const BV& bv2,
void* data);
235 size_t createNode(
size_t parent,
const BV& bv,
void* data);
237 size_t createNode(
size_t parent,
void* data);
239 void deleteNode(
size_t node);
241 void recurseRefit(
size_t node);
263 static const size_t NULL_NODE = std::numeric_limits<size_t>::max();
266 template <
typename BV>
270 template <
typename BV>
286 template <
typename BV>
291 template <
typename BV>
Class for hierarchy tree structure.
Definition: hierarchy_tree_array.h:58
void remove(size_t leaf)
Remove a leaf node.
Definition: hierarchy_tree_array-inl.h:245
Node * nodes
Definition: hierarchy_tree_array.h:245
void balanceTopdown()
balance the tree from top
Definition: hierarchy_tree_array-inl.h:363
size_t n_leaves
Definition: hierarchy_tree_array.h:249
int bu_threshold
decide the depth to use expensive bottom-up algorithm
Definition: hierarchy_tree_array.h:260
void init(Node *leaves, int n_leaves_, int level=0)
Initialize the tree by a set of leaves using algorithm with a given level.
Definition: hierarchy_tree_array-inl.h:77
int max_lookahead_level
Definition: hierarchy_tree_array.h:253
bool empty() const
Whether the tree is empty.
Definition: hierarchy_tree_array-inl.h:269
size_t n_nodes
Definition: hierarchy_tree_array.h:246
static const size_t NULL_NODE
Definition: hierarchy_tree_array.h:263
void clear()
Clear the tree.
Definition: hierarchy_tree_array-inl.h:253
size_t n_nodes_alloc
Definition: hierarchy_tree_array.h:247
size_t getMaxHeight() const
get the max height of the tree
Definition: hierarchy_tree_array-inl.h:321
Node * getNodes() const
get the pointer to the nodes array
Definition: hierarchy_tree_array-inl.h:433
void balanceBottomup()
balance the tree from bottom
Definition: hierarchy_tree_array-inl.h:339
size_t size() const
number of leaves in the tree
Definition: hierarchy_tree_array-inl.h:421
size_t getRoot() const
get the root of the tree
Definition: hierarchy_tree_array-inl.h:427
size_t insert(const BV &bv, void *data)
Initialize the tree by a set of leaves using algorithm with a given level.
Definition: hierarchy_tree_array-inl.h:236
NodeBase< BV > Node
Definition: hierarchy_tree_array.h:60
unsigned int opath
Definition: hierarchy_tree_array.h:251
void print(size_t root, int depth)
print the tree in a recursive way
Definition: hierarchy_tree_array-inl.h:439
~HierarchyTree()
Definition: hierarchy_tree_array-inl.h:71
void update(size_t leaf, int lookahead_level=-1)
update one leaf node
Definition: hierarchy_tree_array-inl.h:275
HierarchyTree(int bu_threshold_=16, int topdown_level_=0)
Create hierarchy tree with suitable setting. bu_threshold decides the height of tree node to start bo...
Definition: hierarchy_tree_array-inl.h:54
void refit()
refit the tree, i.e., when the leaf nodes' bounding volumes change, update the entire tree in a botto...
Definition: hierarchy_tree_array-inl.h:403
int topdown_level
decide which topdown algorithm to use
Definition: hierarchy_tree_array.h:257
size_t getMaxDepth() const
get the max depth of the tree
Definition: hierarchy_tree_array-inl.h:329
void extractLeaves(size_t root, Node *&leaves) const
extract all the leaves of the tree
Definition: hierarchy_tree_array-inl.h:409
size_t freelist
Definition: hierarchy_tree_array.h:250
size_t root_node
Definition: hierarchy_tree_array.h:244
void balanceIncremental(int iterations)
balance the tree in an incremental way
Definition: hierarchy_tree_array-inl.h:385
size_t select(size_t query, size_t node1, size_t node2, NodeBase< BV > *nodes)
select the node from node1 and node2 which is close to the query-th node in the nodes....
Definition: hierarchy_tree_array-inl.h:933
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
double Scalar
Definition: data_types.h:68
Definition: node_base_array.h:50
uint32_t code
Definition: node_base_array.h:63
Functor comparing two nodes.
Definition: hierarchy_tree_array.h:271
bool operator()(size_t i, size_t j) const
Definition: hierarchy_tree_array-inl.h:901
nodeBaseLess(const NodeBase< BV > *nodes_, size_t d_)
Definition: hierarchy_tree_array-inl.h:894