6#include <unordered_map>
7#include <unordered_set>
22using std::unordered_map;
23using std::unordered_set;
34OctTreePartition::OctTreePartition()
53 vector<PartitionTreeNode*>* thisEntityPartitions =
nullptr;
56 thisEntityPartitions = &thisEntityPartitionsIt->second;
58 if (thisEntityPartitions !=
nullptr && thisEntityPartitions->empty() ==
false) {
64 auto minXPartition =
static_cast< int32_t
>(Math::floor(boundingBox->getMin().getX() /
PARTITION_SIZE_MAX));
65 auto minYPartition =
static_cast< int32_t
>(Math::floor(boundingBox->getMin().getY() /
PARTITION_SIZE_MAX));
66 auto minZPartition =
static_cast< int32_t
>(Math::floor(boundingBox->getMin().getZ() /
PARTITION_SIZE_MAX));
67 auto maxXPartition =
static_cast< int32_t
>(Math::floor(boundingBox->getMax().getX() /
PARTITION_SIZE_MAX));
68 auto maxYPartition =
static_cast< int32_t
>(Math::floor(boundingBox->getMax().getY() /
PARTITION_SIZE_MAX));
69 auto maxZPartition =
static_cast< int32_t
>(Math::floor(boundingBox->getMax().getZ() /
PARTITION_SIZE_MAX));
70 for (
auto yPartition = minYPartition; yPartition <= maxYPartition; yPartition++)
71 for (
auto xPartition = minXPartition; xPartition <= maxXPartition; xPartition++)
72 for (
auto zPartition = minZPartition; zPartition <= maxZPartition; zPartition++) {
80 vector<PartitionTreeNode*>* objectPartitionsVector =
nullptr;
83 objectPartitionsVector = &objectPartitionsVectorIt->second;
85 if (objectPartitionsVector ==
nullptr || objectPartitionsVector->empty() ==
true) {
87 "OctTreePartition::removeEntity(): '" +
95 while (objectPartitionsVector->size() > 0) {
96 auto lastIdx = objectPartitionsVector->size() - 1;
97 auto partitionTreeNode = (*objectPartitionsVector)[lastIdx];
98 auto& partitionObjects = partitionTreeNode->partitionEntities;
99 partitionObjects.erase(remove(partitionObjects.begin(), partitionObjects.end(), entity), partitionObjects.end());
100 objectPartitionsVector->erase(objectPartitionsVector->begin() + lastIdx);
101 if (partitionObjects.empty() ==
true) {
102 auto rootPartitionTreeNode = partitionTreeNode;
103 while (rootPartitionTreeNode->parent !=
nullptr) rootPartitionTreeNode = rootPartitionTreeNode->parent;
109 if ((
void*)&treeRootSubNodeIt == (
void*)rootPartitionTreeNode) {
114 string key = to_string(rootPartitionTreeNode->x) +
"," + to_string(rootPartitionTreeNode->y) +
"," + to_string(rootPartitionTreeNode->z);
134 for (
auto i = 0; i < indent; i++) Console::print(
"\t");
135 Console::println(to_string(node->
x) +
"/" + to_string(node->
y) +
"/" + to_string(node->
z) +
": ");
137 for (
auto i = 0; i < indent + 1; i++) Console::print(
"\t");
138 Console::println(entity->getId());
145 if (nodeEntity == entity) Console::println(
"OctTreePartition::findEntity(): found entity: " + entity->
getId());
virtual const string & getId()=0
virtual BoundingBox * getBoundingBoxTransformed()=0
Oct tree partition implementation.
bool isPartitionNodeEmpty(PartitionTreeNode *node)
Is partition empty.
void removeEntity(Entity *entity) override
Removes a entity.
void dumpNode(PartitionTreeNode *node, int indent)
Dump node to console.
const vector< Entity * > & getVisibleEntities(Frustum *frustum) override
Get visible entities.
PartitionTreeNode treeRoot
void removePartitionNode(PartitionTreeNode *node)
Remove partition node, should be empty.
unordered_set< Entity * > visibleEntitiesSet
void addEntity(Entity *entity) override
Adds a entity.
void dump()
Dump oct tree to console.
void updatePartitionTree(PartitionTreeNode *parent, int32_t x, int32_t y, int32_t z, float partitionSize, Entity *entity)
Update partition tree.
int32_t doPartitionTreeLookUpVisibleObjects(Frustum *frustum, PartitionTreeNode *node)
Do partition tree lookup.
void findEntity(PartitionTreeNode *node, Entity *entity)
Find entity.
unordered_map< string, vector< PartitionTreeNode * > > entityPartitionNodes
static constexpr float PARTITION_SIZE_MAX
void reset() override
Reset.
vector< Entity * > visibleEntities
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Vector iterator template to be used to iterate multiple vectors at a single invocation.
list< PartitionTreeNode > subNodes
unordered_map< string, PartitionTreeNode * > subNodesByCoordinate
PartitionTreeNode * parent
vector< Entity * > partitionEntities