TDME2 1.9.121
|
Oct tree partition implementation. More...
#include <tdme/engine/OctTreePartition.h>
Classes | |
struct | PartitionTreeNode |
Public Member Functions | |
OctTreePartition () | |
Public constructor. More... | |
const vector< Entity * > & | getVisibleEntities (Frustum *frustum) override |
Get visible entities. More... | |
bool | isVisibleEntity (Entity *entity) override |
Check if entity is visible. More... | |
void | dump () |
Dump oct tree to console. More... | |
![]() | |
virtual | ~Partition () |
Destructor. More... | |
virtual void | reset ()=0 |
Reset. More... | |
virtual void | addEntity (Entity *entity)=0 |
Adds a entity. More... | |
virtual void | updateEntity (Entity *entity)=0 |
Updates a entity. More... | |
virtual void | removeEntity (Entity *entity)=0 |
Removes a entity. More... | |
virtual const vector< Entity * > & | getVisibleEntities (Frustum *frustum)=0 |
Get visible entities. More... | |
virtual bool | isVisibleEntity (Entity *entity)=0 |
Check if entity is visible. More... | |
Private Member Functions | |
void | reset () override |
Reset. More... | |
void | addEntity (Entity *entity) override |
Adds a entity. More... | |
void | updateEntity (Entity *entity) override |
Updates a entity. More... | |
void | removeEntity (Entity *entity) override |
Removes a entity. More... | |
void | updatePartitionTree (PartitionTreeNode *parent, int32_t x, int32_t y, int32_t z, float partitionSize, Entity *entity) |
Update partition tree. More... | |
bool | isPartitionNodeEmpty (PartitionTreeNode *node) |
Is partition empty. More... | |
void | removePartitionNode (PartitionTreeNode *node) |
Remove partition node, should be empty. More... | |
int32_t | doPartitionTreeLookUpVisibleObjects (Frustum *frustum, PartitionTreeNode *node) |
Do partition tree lookup. More... | |
void | dumpNode (PartitionTreeNode *node, int indent) |
Dump node to console. More... | |
void | findEntity (PartitionTreeNode *node, Entity *entity) |
Find entity. More... | |
Private Attributes | |
VectorIteratorMultiple< Entity * > | entityIterator |
unordered_map< string, vector< PartitionTreeNode * > > | entityPartitionNodes |
vector< Entity * > | visibleEntities |
unordered_set< Entity * > | visibleEntitiesSet |
PartitionTreeNode | treeRoot |
Static Private Attributes | |
static constexpr float | PARTITION_SIZE_MIN { 64.0f } |
static constexpr float | PARTITION_SIZE_MAX { 512.0f } |
OctTreePartition | ( | ) |
Public constructor.
Definition at line 34 of file OctTreePartition.cpp.
|
overrideprivatevirtual |
Adds a entity.
entity | entity |
Implements Partition.
Definition at line 50 of file OctTreePartition.cpp.
|
inlineprivate |
Do partition tree lookup.
frustum | frustum |
node | node |
Definition at line 205 of file OctTreePartition.h.
void dump | ( | ) |
Dump oct tree to console.
Definition at line 150 of file OctTreePartition.cpp.
|
private |
Dump node to console.
node | node |
indent | indent |
Definition at line 133 of file OctTreePartition.cpp.
|
private |
Get visible entities.
frustum | frustum |
Implements Partition.
Definition at line 122 of file OctTreePartition.cpp.
|
inlineprivate |
Is partition empty.
node | node |
Definition at line 166 of file OctTreePartition.h.
|
inlineoverridevirtual |
Check if entity is visible.
frustum | frustum |
entity | entity |
Implements Partition.
Definition at line 263 of file OctTreePartition.h.
|
overrideprivatevirtual |
Removes a entity.
entity | entity |
Implements Partition.
Definition at line 77 of file OctTreePartition.cpp.
|
inlineprivate |
Remove partition node, should be empty.
node | node |
Definition at line 184 of file OctTreePartition.h.
|
overrideprivatevirtual |
|
inlineoverrideprivatevirtual |
Updates a entity.
entity | entity |
Implements Partition.
Definition at line 80 of file OctTreePartition.h.
|
inlineprivate |
Update partition tree.
parent | parent |
x | x |
y | y |
z | z |
partitionSize | partition size |
entity | entity |
Definition at line 94 of file OctTreePartition.h.
|
private |
Definition at line 71 of file OctTreePartition.h.
|
private |
Definition at line 72 of file OctTreePartition.h.
|
staticconstexprprivate |
Definition at line 69 of file OctTreePartition.h.
|
staticconstexprprivate |
Definition at line 68 of file OctTreePartition.h.
|
private |
Definition at line 75 of file OctTreePartition.h.
|
private |
Definition at line 73 of file OctTreePartition.h.
|
private |
Definition at line 74 of file OctTreePartition.h.