TDME2 1.9.121
SceneEntity.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10
11using std::string;
12
18
19SceneEntity::SceneEntity(const string& id, const string& description, const Transformations& transformations, Prototype* prototype): BaseProperties(id, description)
20{
21 this->transformations.fromTransformations(transformations);
22 this->prototype = prototype;
23}
24
26}
27
29{
30 BaseProperties totalProperties(name, description);
31 for (auto i = 0; i < getPrototype()->getPropertyCount(); i++) {
32 auto prototypeProperty = getPrototype()->getPropertyByIndex(i);
33 totalProperties.addProperty(prototypeProperty->getName(), prototypeProperty->getValue());
34 }
35 for (auto i = 0; i < getPropertyCount(); i++) {
36 auto entityProperty = getPropertyByIndex(i);
37 auto totalProperty = totalProperties.getProperty(entityProperty->getName());
38 if (totalProperty != nullptr) {
39 totalProperties.updateProperty(totalProperty->getName(), entityProperty->getName(), entityProperty->getValue());
40 } else {
41 totalProperties.addProperty(entityProperty->getName(), entityProperty->getValue());
42 }
43 }
44 return totalProperties;
45}
Transformations which contain scale, rotations and translation.
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
BaseProperty * getPropertyByIndex(int idx)
Get property by index.
bool updateProperty(const string &oldName, const string &name, const string &value)
Update a property.
BaseProperty * getProperty(const string &name)
Retrieve property by name.
bool addProperty(const string &name, const string &value)
Add a property.
Base property model class.
Definition: BaseProperty.h:16
Prototype definition.
Definition: Prototype.h:49
Scene entity definition.
Definition: SceneEntity.h:24
const BaseProperties getTotalProperties()
Definition: SceneEntity.cpp:28