mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-16 18:58:29 +02:00
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
//
|
|
// DeleteEntityOperator.h
|
|
// libraries/entities/src
|
|
//
|
|
// Created by Brad Hefta-Gaub on 8/11/2014.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_DeleteEntityOperator_h
|
|
#define hifi_DeleteEntityOperator_h
|
|
|
|
class EntityToDeleteDetails {
|
|
public:
|
|
const EntityItem* entity;
|
|
AACube cube;
|
|
EntityTreeElement* containingElement;
|
|
};
|
|
|
|
inline uint qHash(const EntityToDeleteDetails& a, uint seed) {
|
|
return qHash(a.entity->getEntityItemID(), seed);
|
|
}
|
|
|
|
inline bool operator==(const EntityToDeleteDetails& a, const EntityToDeleteDetails& b) {
|
|
return a.entity->getEntityItemID() == b.entity->getEntityItemID();
|
|
}
|
|
|
|
class DeleteEntityOperator : public RecurseOctreeOperator {
|
|
public:
|
|
DeleteEntityOperator(EntityTree* tree);
|
|
DeleteEntityOperator(EntityTree* tree, const EntityItemID& searchEntityID);
|
|
void addEntityIDToDeleteList(const EntityItemID& searchEntityID);
|
|
virtual bool PreRecursion(OctreeElement* element);
|
|
virtual bool PostRecursion(OctreeElement* element);
|
|
private:
|
|
EntityTree* _tree;
|
|
QSet<EntityToDeleteDetails> _entitiesToDelete;
|
|
quint64 _changeTime;
|
|
int _foundCount;
|
|
int _lookingCount;
|
|
bool subTreeContainsSomeEntitiesToDelete(OctreeElement* element);
|
|
};
|
|
|
|
#endif // hifi_DeleteEntityOperator_h
|