TDME2 1.9.121
SceneEntity.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
10
11using std::string;
12
16
17/**
18 * Scene entity definition
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23 : public BaseProperties
24{
25private:
27 Prototype* prototype { nullptr };
29
30public:
31 /**
32 * Public constructor
33 * @param id id
34 * @param description description
35 * @param transformations transformations
36 * @param prototype prototype
37 */
38 SceneEntity(const string& id, const string& description, const Transformations& transformations, Prototype* prototype);
39
40 /**
41 * Destructor
42 */
44
45 /**
46 * @return id
47 */
48 inline const string& getId() {
49 return name;
50 }
51
52 /**
53 * Set id
54 * @param id id
55 */
56 inline void setId(const string& id) {
57 this->name = name;
58 }
59
60 /**
61 * @return description
62 */
63 inline const string& getDescription() {
64 return description;
65 }
66
67 /**
68 * Set description
69 * @param description description
70 */
71 inline void setDescription(const string& description) {
72 this->description = description;
73 }
74
75 /**
76 * @return transformations
77 */
79 return transformations;
80 }
81
82 /**
83 * @return prototype
84 */
86 return prototype;
87 }
88
89 /**
90 * Set up prototype
91 * @param prototype prototype
92 */
94 this->prototype = prototype;
95 }
96
97 /**
98 * @return reflection environment mapping id
99 */
100 inline const string& getReflectionEnvironmentMappingId() {
102 }
103
104 /**
105 * @return reflection environment mapping id
106 */
108 this->reflectionEnvironmentMappingId = reflectionEnvironmentMappingId;
109 }
110
111 /**
112 * @return merged properties from entity and object
113 */
115
116};
Transformations which contain scale, rotations and translation.
Prototype definition.
Definition: Prototype.h:49
Scene entity definition.
Definition: SceneEntity.h:24
void setId(const string &id)
Set id.
Definition: SceneEntity.h:56
void setReflectionEnvironmentMappingId(const string &reflectionEnvironmentMappingId)
Definition: SceneEntity.h:107
const string & getReflectionEnvironmentMappingId()
Definition: SceneEntity.h:100
void setPrototype(Prototype *prototype)
Set up prototype.
Definition: SceneEntity.h:93
Transformations & getTransformations()
Definition: SceneEntity.h:78
const BaseProperties getTotalProperties()
Definition: SceneEntity.cpp:28
const string & getDescription()
Definition: SceneEntity.h:63
SceneEntity(const string &id, const string &description, const Transformations &transformations, Prototype *prototype)
Public constructor.
Definition: SceneEntity.cpp:19
void setDescription(const string &description)
Set description.
Definition: SceneEntity.h:71