38 #ifndef COAL_HIERARCHY_TREE_H
39 #define COAL_HIERARCHY_TREE_H
55 template <
typename BV>
65 HierarchyTree(
int bu_threshold_ = 16,
int topdown_level_ = 0);
71 void init(std::vector<Node*>& leaves,
int level = 0);
96 void update(
Node* leaf,
int lookahead_level = -1);
142 typedef typename std::vector<NodeBase<BV>*>::iterator NodeVecIterator;
144 typename std::vector<NodeBase<BV>*>::const_iterator NodeVecConstIterator;
146 struct SortByMorton {
147 bool operator()(
const Node* a,
const Node* b)
const {
153 void bottomup(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
156 Node* topdown(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
169 Node* topdown_0(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
177 Node* topdown_1(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
181 void init_0(std::vector<Node*>& leaves);
187 void init_1(std::vector<Node*>& leaves);
193 void init_2(std::vector<Node*>& leaves);
198 void init_3(std::vector<Node*>& leaves);
200 Node* mortonRecurse_0(
const NodeVecIterator lbeg,
const NodeVecIterator lend,
201 const uint32_t& split,
int bits);
203 Node* mortonRecurse_1(
const NodeVecIterator lbeg,
const NodeVecIterator lend,
204 const uint32_t& split,
int bits);
206 Node* mortonRecurse_2(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
209 void update_(
Node* leaf,
const BV& bv);
220 void insertLeaf(
Node*
const sub_root,
Node*
const leaf);
233 void fetchLeaves(
Node* root, std::vector<Node*>& leaves,
int depth = -1);
235 static size_t indexOf(
Node* node);
238 Node* createNode(
Node* parent,
const BV& bv,
void* data);
240 Node* createNode(
Node* parent,
const BV& bv1,
const BV& bv2,
void* data);
242 Node* createNode(
Node* parent,
void* data);
244 void deleteNode(
Node* node);
246 void recurseDeleteNode(
Node* node);
248 void recurseRefit(
Node* node);
272 template <
typename BV>
277 template <
typename BV>
283 template <
typename BV>
Class for hierarchy tree structure.
Definition: hierarchy_tree.h:56
~HierarchyTree()
Definition: hierarchy_tree-inl.h:61
Node * getRoot() const
get the root of the tree
Definition: hierarchy_tree-inl.h:273
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-inl.h:49
void balanceBottomup()
balance the tree from bottom
Definition: hierarchy_tree-inl.h:209
void update(Node *leaf, int lookahead_level=-1)
Updates a leaf node. A use case is when the bounding volume of an object changes. Ensure every parent...
Definition: hierarchy_tree-inl.h:123
Node * insert(const BV &bv, void *data)
Insest a node.
Definition: hierarchy_tree-inl.h:88
int topdown_level
decide which topdown algorithm to use
Definition: hierarchy_tree.h:265
void clear()
Clear the tree.
Definition: hierarchy_tree-inl.h:106
void remove(Node *leaf)
Remove a leaf node.
Definition: hierarchy_tree-inl.h:98
void balanceTopdown()
balance the tree from top
Definition: hierarchy_tree-inl.h:221
void init(std::vector< Node * > &leaves, int level=0)
Initialize the tree by a set of leaves using algorithm with a given level.
Definition: hierarchy_tree-inl.h:67
int bu_threshold
decide the depth to use expensive bottom-up algorithm
Definition: hierarchy_tree.h:268
void refit()
refit the tree, i.e., when the leaf nodes' bounding volumes change, update the entire tree in a botto...
Definition: hierarchy_tree-inl.h:250
bool empty() const
Whether the tree is empty.
Definition: hierarchy_tree-inl.h:117
size_t getMaxDepth() const
get the max depth of the tree
Definition: hierarchy_tree-inl.h:199
size_t n_leaves
Definition: hierarchy_tree.h:253
size_t size() const
number of leaves in the tree
Definition: hierarchy_tree-inl.h:267
void balanceIncremental(int iterations)
balance the tree in an incremental way
Definition: hierarchy_tree-inl.h:232
NodeBase< BV > Node
Definition: hierarchy_tree.h:58
void print(Node *root, int depth)
print the tree in a recursive way
Definition: hierarchy_tree-inl.h:285
Node * free_node
Definition: hierarchy_tree.h:259
int max_lookahead_level
Definition: hierarchy_tree.h:261
size_t getMaxHeight() const
get the max height of the tree
Definition: hierarchy_tree-inl.h:192
unsigned int opath
Definition: hierarchy_tree.h:255
Node * root_node
Definition: hierarchy_tree.h:251
void extractLeaves(const Node *root, std::vector< Node * > &leaves) const
extract all the leaves of the tree
Definition: hierarchy_tree-inl.h:256
size_t select(const NodeBase< BV > &query, const NodeBase< BV > &node1, const NodeBase< BV > &node2)
select from node1 and node2 which is close to a given query. 0 for node1 and 1 for node2
Definition: hierarchy_tree-inl.h:952
bool nodeBaseLess(NodeBase< BV > *a, NodeBase< BV > *b, int d)
Compare two nodes accoording to the d-th dimension of node center.
Definition: hierarchy_tree-inl.h:930
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
dynamic AABB tree node
Definition: node_base.h:49
uint32_t code
morton code for current BV
Definition: node_base.h:69