TDME2 1.9.121
EnvironmentMapping.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
12#include <tdme/engine/Entity.h>
14#include <tdme/math/Matrix4x4.h>
16#include <tdme/math/Vector3.h>
17
18using std::string;
19
31
32/**
33 * Environment mapping entity
34 * @author Andreas Drewke
35 * @version $Id$
36 */
38{
39
40private:
41 friend class Engine;
42
43 Engine* engine { nullptr };
44 Entity* parentEntity { nullptr };
45 bool frustumCulling { true };
48 bool enabled { true };
51 Color4 effectColorMul { 1.0f, 1.0f, 1.0f, 1.0f };
52 Color4 effectColorAdd { 0.0f, 0.0f, 0.0f, 0.0f };
53 string id;
54 int width;
55 int height;
57 int64_t timeRenderUpdateFrequency { 100LL };
58
59 // overridden methods
60 inline void setParentEntity(Entity* entity) override {
61 this->parentEntity = entity;
62 }
63 inline Entity* getParentEntity() override {
64 return parentEntity;
65 }
66 inline void applyParentTransformations(const Transformations& parentTransformations) override {
68 }
69
70 /**
71 * Render environment map
72 */
73 inline void render() {
77 }
78
79public:
80 /**
81 * Public constructor
82 * @param id id
83 * @param width width
84 * @param height height
85 * @param boundingBox bounding box
86 */
87 EnvironmentMapping(const string& id, int width, int height, BoundingBox boundingBox);
88
89 // overridden methods
90 inline EntityType getEntityType() override {
92 }
93
94 void setEngine(Engine* engine) override;
95
96 inline void setRenderer(Renderer* renderer) override {
97 }
98
99 inline void initialize() override;
100 inline void dispose() override;
101
102 inline bool isEnabled() override {
103 return enabled;
104 }
105
106 void setEnabled(bool enabled) override;
107 inline bool isFrustumCulling() override {
108 return frustumCulling;
109 }
110 void setFrustumCulling(bool frustumCulling) override;
111
112 void fromTransformations(const Transformations& transformations) override;
113 void update() override;
114
115 inline BoundingBox* getBoundingBox() override {
116 return &boundingBox;
117 }
118
121 }
122
123 inline const Color4& getEffectColorAdd() const override {
124 return effectColorAdd;
125 }
126
127 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
128 }
129
130 inline const Color4& getEffectColorMul() const override {
131 return effectColorMul;
132 }
133
134 inline void setEffectColorMul(const Color4& effectColorMul) override {
135 }
136
137 inline const string& getId() override {
138 return id;
139 }
140
141 inline bool isContributesShadows() override {
142 return false;
143 }
144
145 inline void setContributesShadows(bool contributesShadows) override {
146 }
147
148 inline bool isReceivesShadows() override {
149 return false;
150 }
151
152 inline void setReceivesShadows(bool receivesShadows) override {
153 }
154
155 inline bool isPickable() override {
156 return false;
157 }
158
159 inline void setPickable(bool pickable) override {
160 }
161
162 inline const Vector3& getTranslation() const override {
164 }
165
166 inline void setTranslation(const Vector3& translation) override {
168 }
169
170 inline const Vector3& getScale() const override {
172 }
173
174 inline void setScale(const Vector3& scale) override {
176 }
177
178 inline const Vector3& getPivot() const override {
180 }
181
182 inline void setPivot(const Vector3& pivot) override {
184 }
185
186 inline const int getRotationCount() const override {
188 }
189
190 inline Rotation& getRotation(const int idx) override {
192 }
193
194 inline void addRotation(const Vector3& axis, const float angle) override {
195 Transformations::addRotation(axis, angle);
196 }
197
198 inline void removeRotation(const int idx) override {
200 }
201
202 inline const Vector3& getRotationAxis(const int idx) const override {
204 }
205
206 inline void setRotationAxis(const int idx, const Vector3& axis) override {
208 }
209
210 inline const float getRotationAngle(const int idx) const override {
212 }
213
214 inline void setRotationAngle(const int idx, const float angle) override {
216 }
217
218 inline const Quaternion& getRotationsQuaternion() const override {
220 }
221
222 inline const Matrix4x4& getTransformationsMatrix() const override {
224 }
225
226 inline const Transformations& getTransformations() const override {
227 return *this;
228 }
229
230 inline RenderPass getRenderPass() const override {
231 return renderPass;
232 }
233
234 inline void setRenderPass(RenderPass renderPass) override {
235 }
236
237 /**
238 * @return width
239 */
240 inline int32_t getWidth() {
241 return width;
242 }
243
244 /**
245 * @return height
246 */
247 inline int32_t getHeight() {
248 return height;
249 }
250
251 /**
252 * @return render pass mask
253 */
254 inline int32_t getRenderPassMask() {
255 return renderPassMask;
256 }
257
258 /**
259 * Set up render pass mask
260 * @param renderPassMask render pass mask
261 */
262 inline void setRenderPassMask(int32_t renderPassMask) {
263 this->renderPassMask = renderPassMask;
265 }
266
267 /**
268 * @return render update time frequency in milliseconds
269 */
272 }
273
274 /**
275 * Set up render update time frequency
276 * @param frequency frequency in milliseconds
277 */
278 inline void setTimeRenderUpdateFrequency(int64_t frequency) {
279 this->timeRenderUpdateFrequency = frequency;
281 }
282
283 /**
284 * @return cube map texture id
285 */
286 inline int32_t getCubeMapTextureId() {
287 if (environmentMappingRenderer == nullptr) return 0;
289 }
290
291};
Engine main class.
Definition: Engine.h:122
TDME engine entity.
Definition: Entity.h:31
static constexpr int RENDERPASS_ALL
Definition: Entity.h:57
@ ENTITYTYPE_ENVIRONMENTMAPPING
Definition: Entity.h:62
Environment mapping entity.
const Matrix4x4 & getTransformationsMatrix() const override
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.
EnvironmentMapping(const string &id, int width, int height, BoundingBox boundingBox)
Public constructor.
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.
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.
void setRenderPassMask(int32_t renderPassMask)
Set up render pass mask.
const string & getId() override
void setPickable(bool pickable) override
Set this object pickable.
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
const Vector3 & getTranslation() const override
EnvironmentMappingRenderer * environmentMappingRenderer
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
void render()
Render environment map.
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
const Vector3 & getScale() const override
const Vector3 & getPivot() const override
BoundingBox * getBoundingBoxTransformed() override
void setScale(const Vector3 &scale) override
Set scale.
void applyParentTransformations(const Transformations &parentTransformations) override
Apply parent transformations.
const float getRotationAngle(const int idx) const override
const Transformations & getTransformations() const override
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setTimeRenderUpdateFrequency(int64_t frequency)
Set up render update time frequency.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
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.
Rotation & getRotation(const int idx) override
Get rotation at given index.
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
void setRenderer(Renderer *renderer) override
Set up renderer.
void setRotationAngle(const int idx, const float angle) override
Rotation representation.
Definition: Rotation.h:18
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
Rotation & getRotation(const int idx)
Get rotation at given index.
void setRotationAngle(const int idx, const float angle)
void setRotationAxis(const int idx, const Vector3 &axis)
Set rotation axis.
void setTranslation(const Vector3 &translation)
Set translation.
void removeRotation(const int idx)
Remove rotation.
const Quaternion & getRotationsQuaternion() const
virtual void applyParentTransformations(const Transformations &parentTransformations)
Apply parent transformations.
const Vector3 & getScale() const
void setScale(const Vector3 &scale)
Set scale.
const Vector3 & getRotationAxis(const int idx) const
const int getRotationCount() const
const Vector3 & getPivot() const
const Vector3 & getTranslation() const
void setPivot(const Vector3 &pivot)
Set pivot.
void addRotation(const Vector3 &axis, const float angle)
Add rotation.
const float getRotationAngle(const int idx) const
Color 4 definition.
Definition: Color4.h:20
Representation of a 3d model.
Definition: Model.h:32
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
void setRenderPassMask(int32_t renderPassMask)
Set up render pass mask.
void setTimeRenderUpdateFrequency(int64_t frequency)
Set up render update time frequency.
void render(const Vector3 &position)
Renders given objects in to environment cube map.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
void getTranslation(Vector3 &translation) const
Get translation.
Definition: Matrix4x4.h:261
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22