108 if (
id == entityHierarchyLevel->
id)
return entityHierarchyLevel;
109 for (
auto& it: entityHierarchyLevel->
children) {
111 if (childEntityHierarchyLevel !=
nullptr)
return childEntityHierarchyLevel;
164 const vector<Entity*>
query(
const string& parentId =
string());
193 vector<Entity*> entitiesByType;
196 entitiesByType.push_back(entity);
199 return entitiesByType;
244 inline const string&
getId()
override {
Entity hierarchy to be used with engine class.
const Matrix4x4 & getTransformationsMatrix() const override
BoundingBox boundingBoxTransformed
const Color4 & getEffectColorAdd() const override
The effect color will be added to fragment color.
RenderPass getRenderPass() const override
void dispose() override
Dispose this object 3d.
void setTranslation(const Vector3 &translation) override
Set translation.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
void removeRotation(const int idx) override
Remove rotation.
const vector< Entity * > & getEntities()
void setPivot(const Vector3 &pivot) override
Set pivot.
const int getRotationCount() const override
const Quaternion & getRotationsQuaternion() const override
void initialize() override
Initiates this object 3d.
bool isReceivesShadows() override
BoundingBox * getBoundingBox() override
void setRenderPass(RenderPass renderPass) override
Set render pass.
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
void addRotation(const Vector3 &axis, const float angle) override
Add rotation.
void update() override
Update transformations.
const string & getId() override
EntityHierarchyLevel * getEntityHierarchyLevel(EntityHierarchyLevel *entityHierarchyLevel, const string &id)
Retrieve entity hierarchy level by given entity id or nullptr if not found.
void setPickable(bool pickable) override
Set this object pickable.
Entity * getParentEntity() override
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
bool isPickable() override
void addEntity(Entity *entity, const string &parentId=string())
Adds a entity to the hierarchy.
const Vector3 & getTranslation() const override
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
const Vector3 & getScale() const override
const Vector3 & getPivot() const override
EntityHierarchyLevel entityRoot
vector< Entity * > getEntitiesByType(EntityType entityType)
Return entities with given entity type.
vector< Entity * > entities
BoundingBox * getBoundingBoxTransformed() override
void setScale(const Vector3 &scale) override
Set scale.
bool isContributesShadows() override
void applyParentTransformations(const Transformations &parentTransformations) override
Apply parent transformations.
EntityHierarchyLevel * getEntityHierarchyLevel(const string &id)
Get entity hierarchy level by given entity id.
const vector< Entity * > query(const string &parentId=string())
Query direct sub entities for given parent entity id.
const float getRotationAngle(const int idx) const override
void removeEntity(const string &id)
Removes a entity from hierarchy by given unique entity id.
const Transformations & getTransformations() const override
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
Entity * getEntityByType(EntityType entityType)
Returns first found entity with given entity type.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
Entity * getEntity(const string &id)
EntityType getEntityType() override
const Vector3 & getRotationAxis(const int idx) const override
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
void setRotationAxis(const int idx, const Vector3 &axis) override
Set rotation axis.
bool isFrustumCulling() override
bool isEnabled() override
Rotation & getRotation(const int idx) override
Get rotation at given index.
virtual ~EntityHierarchy()
Destructor.
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
void updateHierarchy(const Transformations &parentTransformations, EntityHierarchyLevel &entityHierarchyLevel, int depth, bool &firstEntity)
Update hierarchy from given entity hierarchy level ongoing.
void setRenderer(Renderer *renderer) override
Set up renderer.
void setRotationAngle(const int idx, const float angle) override
virtual void setEffectColorMul(const Color4 &effectColorMul)=0
Set effect color that will be multiplied with fragment color.
virtual EntityType getEntityType()=0
virtual void setContributesShadows(bool contributesShadows)=0
Enable/disable contributes shadows.
friend class EntityHierarchy
@ ENTITYTYPE_ENTITYHIERARCHY
virtual void setPickable(bool pickable)=0
Set this object pickable.
virtual void setReceivesShadows(bool receivesShadows)=0
Enable/disable receives shadows.
virtual void setEffectColorAdd(const Color4 &effectColorAdd)=0
Set effect color that will be added to fragment color.
Object 3D to be used with engine class.
Representation of a 3d model.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
map< string, EntityHierarchyLevel > children
EntityHierarchyLevel * parent