TDME2 1.9.121
Object3D.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5
6#include <tdme/tdme.h>
19#include <tdme/engine/Camera.h>
20#include <tdme/engine/Engine.h>
21#include <tdme/engine/Entity.h>
23#include <tdme/engine/Timing.h>
25#include <tdme/math/Matrix4x4.h>
27#include <tdme/math/Vector3.h>
28
29using std::map;
30using std::string;
31
51
52/**
53 * Object 3D to be used with engine class
54 * @author Andreas Drewke
55 * @version $Id$
56 */
58 : public Object3DInternal
59 , public Entity
60{
61private:
62 friend class Engine;
63 friend class ImposterObject3D;
64 friend class LODObject3D;
65 friend class LODObject3DImposter;
66 friend class Object3DRenderGroup;
71
72 Engine* engine { nullptr };
73 Entity* parentEntity { nullptr };
74 bool frustumCulling { true };
76 string shaderId;
77 uint8_t uniqueShaderId { 0 };
80 float distanceShaderDistance { 50.0f };
85 bool enableEarlyZRejection { false };
86 bool disableDepthTest { false };
87 int64_t frameTransformationsLast { -1LL };
88 int64_t timeTransformationsLast { -1LL };
91 bool needsPreRender { false };
92 bool needsForwardShading { false };
93
94 /**
95 * @return if this object3d instance needs a computeTransformations() call each frame
96 */
98 return model->hasSkinning() == true || model->hasAnimations() == true;
99 }
100
101 /**
102 * Compute animations
103 * @param contextIdx context index
104 */
105 inline void computeTransformations(int contextIdx) {
106 auto timing = engine->getTiming();
107 auto currentFrameAtTime = timing->getCurrentFrameAtTime();
108 auto currentFrame = timing->getFrame();
109 auto distanceFromCamera = (engine->getCamera()->getLookFrom() - getBoundingBoxTransformed()->computeClosestPointInBoundingBox(engine->getCamera()->getLookFrom())).computeLengthSquared();
110 if (distanceFromCamera > Math::square(Engine::getTransformationsComputingReduction2Distance())) {
111 if (frameTransformationsLast != -1LL && currentFrame - frameTransformationsLast < 4) return;
112 } else
113 if (distanceFromCamera > Math::square(Math::square(Engine::getTransformationsComputingReduction1Distance()))) {
114 if (frameTransformationsLast != -1LL && currentFrame - frameTransformationsLast < 2) return;
115 }
116 computeTransformations(contextIdx, timeTransformationsLast, currentFrameAtTime);
117 frameTransformationsLast = timing->getFrame();
118 timeTransformationsLast = currentFrameAtTime;
119 }
120
121 /**
122 * Compute transformations
123 * @param contextIdx context index
124 * @param lastFrameAtTime time of last animation computation
125 * @param currentFrameAtTime time of current animation computation
126 */
127 inline void computeTransformations(int contextIdx, int64_t lastFrameAtTime, int64_t currentFrameAtTime) override {
128 Object3DInternal::computeTransformations(contextIdx, lastFrameAtTime, currentFrameAtTime);
129 }
130
131 /**
132 * @return if this object3d instance needs a preRender() call each frame
133 */
134 inline bool isNeedsPreRender() {
135 return
136 needsPreRender == true ||
138 }
139
140 /**
141 * Pre render step like uploading VBOs and such
142 * @param contextIdx context index
143 */
144 inline void preRender(int contextIdx) {
146 for (auto object3DNode: object3dNodes) {
147 if (object3DNode->renderer->needsPreRender() == true) {
148 object3DNode->renderer->preRender(contextIdx);
149 }
150 }
151 }
152
153 /**
154 * @return if this object3d needs forward shading
155 */
156 inline bool isNeedsForwardShading() {
157 return needsForwardShading == true || reflectionEnvironmentMappingId.empty() == false;
158 }
159
160 // overridden methods
161 inline void setParentEntity(Entity* entity) override {
162 this->parentEntity = entity;
163 }
164 inline Entity* getParentEntity() override {
165 return parentEntity;
166 }
167 inline void applyParentTransformations(const Transformations& parentTransformations) override {
168 for (auto& transformations: instanceTransformations) transformations.applyParentTransformations(parentTransformations);
170 }
171
172public:
173 /**
174 * Public constructor
175 * @param id id
176 * @param model model
177 * @param instances instances to compute and render by duplication, which only is intended to be used with skinned meshes
178 */
179 Object3D(const string& id, Model* model, int instances);
180
181 /**
182 * Public constructor
183 * @param id id
184 * @param model model
185 */
186 Object3D(const string& id, Model* model);
187
188 /**
189 * Set up if this object3d instance needs a preRender() call each frame
190 */
192 this->needsPreRender = needsPreRender;
193 }
194
195 // overridden methods
196 inline EntityType getEntityType() override {
197 return ENTITYTYPE_OBJECT3D;
198 }
199
200 void setEngine(Engine* engine) override;
201 void setRenderer(Renderer* renderer) override;
202 void initialize() override;
203 void dispose() override;
204
205 inline bool isEnabled() override {
206 return Object3DInternal::isEnabled();
207 }
208
209 void setEnabled(bool enabled) override;
210 bool isFrustumCulling() override;
211 void setFrustumCulling(bool frustumCulling) override;
212 void fromTransformations(const Transformations& transformations) override;
213 void update() override;
214
215 inline BoundingBox* getBoundingBox() override {
216 return Object3DInternal::getBoundingBox();
217 }
218
220 return Object3DInternal::getBoundingBoxTransformed();
221 }
222
223 inline const Color4& getEffectColorAdd() const override {
224 return Object3DInternal::getEffectColorAdd();
225 }
226
227 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
228 return Object3DInternal::setEffectColorAdd(effectColorAdd);
229 }
230
231 inline const Color4& getEffectColorMul() const override {
232 return Object3DInternal::getEffectColorMul();
233 }
234
235 inline void setEffectColorMul(const Color4& effectColorMul) override {
236 return Object3DInternal::setEffectColorMul(effectColorMul);
237 }
238
239 inline const string& getId() override {
240 return Object3DInternal::getId();
241 }
242
243 inline bool isContributesShadows() override {
244 return Object3DInternal::isContributesShadows();
245 }
246
247 inline void setContributesShadows(bool contributesShadows) override {
248 Object3DInternal::setContributesShadows(contributesShadows);
249 }
250
251 inline bool isReceivesShadows() override {
252 return Object3DInternal::isReceivesShadows();
253 }
254
255 inline void setReceivesShadows(bool receivesShadows) override {
256 Object3DInternal::setReceivesShadows(receivesShadows);
257 }
258
259 inline bool isPickable() override {
260 return Object3DInternal::isPickable();
261 }
262
263 inline void setPickable(bool pickable) override {
264 Object3DInternal::setPickable(pickable);
265 }
266
267 inline const Vector3& getTranslation() const override {
268 return instanceTransformations[currentInstance].getTranslation();
269 }
270
271 inline void setTranslation(const Vector3& translation) override {
272 instanceTransformations[currentInstance].setTranslation(translation);
273 }
274
275 inline const Vector3& getScale() const override {
276 return instanceTransformations[currentInstance].getScale();
277 }
278
279 inline void setScale(const Vector3& scale) override {
281 }
282
283 inline const Vector3& getPivot() const override {
284 return instanceTransformations[currentInstance].getPivot();
285 }
286
287 inline void setPivot(const Vector3& pivot) override {
289 }
290
291 inline const int getRotationCount() const override {
292 return instanceTransformations[currentInstance].getRotationCount();
293 }
294
295 inline Rotation& getRotation(const int idx) override {
296 return instanceTransformations[currentInstance].getRotation(idx);
297 }
298
299 inline void addRotation(const Vector3& axis, const float angle) override {
300 instanceTransformations[currentInstance].addRotation(axis, angle);
301 }
302
303 inline void removeRotation(const int idx) override {
304 instanceTransformations[currentInstance].removeRotation(idx);
305 }
306
307 inline const Vector3& getRotationAxis(const int idx) const override {
308 return instanceTransformations[currentInstance].getRotationAxis(idx);
309 }
310
311 inline void setRotationAxis(const int idx, const Vector3& axis) override {
312 instanceTransformations[currentInstance].setRotationAxis(idx, axis);
313 }
314
315 inline const float getRotationAngle(const int idx) const override {
316 return instanceTransformations[currentInstance].getRotationAngle(idx);
317 }
318
319 inline void setRotationAngle(const int idx, const float angle) override {
320 instanceTransformations[currentInstance].setRotationAngle(idx, angle);
321 }
322
323 inline const Quaternion& getRotationsQuaternion() const override {
324 return instanceTransformations[currentInstance].getRotationsQuaternion();
325 }
326
327 inline const Matrix4x4& getTransformationsMatrix() const override {
328 return instanceTransformations[currentInstance].getTransformationsMatrix();
329 }
330
331 inline const Transformations& getTransformations() const override {
333 }
334
335 inline RenderPass getRenderPass() const override {
336 return renderPass;
337 }
338
339 inline void setRenderPass(RenderPass renderPass) override {
340 this->renderPass = renderPass;
341 }
342
343 /**
344 * @return shader id
345 */
346 inline const string& getShader() {
347 return shaderId;
348 }
349
350 /**
351 * Set shader
352 * @param id shader id
353 */
354 void setShader(const string& id);
355
356 /**
357 * @return unique shader id
358 */
359 inline uint8_t getUniqueShaderId() {
360 return uniqueShaderId;
361 }
362
363 /**
364 * @return distance shader id
365 */
366 inline const string& getDistanceShader() {
367 return distanceShaderId;
368 }
369
370 /**
371 * @return unique distance shader id
372 */
373 inline uint8_t getUniqueDistanceShaderId() {
375 }
376
377 /**
378 * Set distance shader
379 * @param id shader id
380 */
381 void setDistanceShader(const string& id);
382
383 /**
384 * @return distance shader distance
385 */
388 }
389
390 /**
391 * Set distance shader distance
392 * @param distanceShaderDistance shader
393 */
395 this->distanceShaderDistance = distanceShaderDistance;
396 }
397
398 /**
399 * @return reflection environment mapping id
400 */
401 inline const string& getReflectionEnvironmentMappingId() {
403 }
404
405 /**
406 * @return reflection environment mapping id
407 */
409 this->reflectionEnvironmentMappingId = reflectionEnvironmentMappingId;
410 }
411
412 /**
413 * @return if object3d has a reflection environment mapping position
414 */
417 }
418
419 /**
420 * @return reflection environment mapping position
421 */
424 }
425
426 /**
427 * Set reflection environment mapping position
428 * @param reflectionEnvironmentMappingPosition reflection environment mapping position
429 */
432 this->reflectionEnvironmentMappingPosition = reflectionEnvironmentMappingPosition;
433 }
434
435 /**
436 * Unset reflection environment mapping position
437 */
440 this->reflectionEnvironmentMappingPosition.set(0.0f, 0.0f, 0.0f);
441 }
442
443 /**
444 * @return if to exclude from a certain effect pass
445 */
448 }
449
450 /**
451 * Set exclude from effect pass
452 * @param effectPass effect pass
453 */
454 inline void setExcludeEffectPass(Engine::EffectPass effectPass) {
455 this->excludeFromEffectPass = effectPass;
456 }
457
458 /**
459 * @return If early z rejection is enabled
460 */
461 inline bool isEnableEarlyZRejection() const {
463 }
464
465 /**
466 * Enable/disable early z rejection
467 * @param enableEarlyZRejection enable early z rejection
468 */
470 this->enableEarlyZRejection = enableEarlyZRejection;
471 }
472
473 /**
474 * @return if depth test is disabled
475 */
476 inline bool isDisableDepthTest() const {
477 return disableDepthTest;
478 }
479
480 /**
481 * Set disable depth test
482 * @param disableDepthTest disable depth test
483 */
485 this->disableDepthTest = disableDepthTest;
486 }
487
488 /**
489 * Returns shader parameter for given parameter name, if the value does not exist, the default will be returned
490 * @param shaderId shader id
491 * @param parameterName parameter name
492 * @return shader parameter
493 */
494 inline const ShaderParameter getShaderParameter(const string& parameterName) {
495 return shaderParameters.getShaderParameter(parameterName);
496 }
497
498 /**
499 * Set shader parameter for given parameter name
500 * @param shaderId shader id
501 * @param parameterName parameter name
502 * @param paraemterValue parameter value
503 */
504 inline void setShaderParameter(const string& parameterName, const ShaderParameter& parameterValue) {
505 shaderParameters.setShaderParameter(parameterName, parameterValue);
506 }
507
508 /**
509 * Returns distance shader parameter for given parameter name, if the value does not exist, the default will be returned
510 * @param shaderId shader id
511 * @param parameterName parameter name
512 * @return shader parameter
513 */
514 inline const ShaderParameter getDistanceShaderParameter(const string& parameterName) {
515 return distanceShaderParameters.getShaderParameter(parameterName);
516 }
517
518 /**
519 * Set distance shader parameter for given parameter name
520 * @param shaderId shader id
521 * @param parameterName parameter name
522 * @param paraemterValue parameter value
523 */
524 inline void setDistanceShaderParameter(const string& parameterName, const ShaderParameter& parameterValue) {
525 distanceShaderParameters.setShaderParameter(parameterName, parameterValue);
526 }
527
528};
const Vector3 & getLookFrom() const
Definition: Camera.h:213
Engine main class.
Definition: Engine.h:122
Timing * getTiming()
Definition: Engine.h:900
static STATIC_DLL_IMPEXT AnimationProcessingTarget animationProcessingTarget
Definition: Engine.h:191
static float getTransformationsComputingReduction2Distance()
Definition: Engine.h:717
static float getTransformationsComputingReduction1Distance()
Definition: Engine.h:702
Camera * getCamera()
Definition: Engine.h:907
TDME2 engine entity shader parameters.
void setShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given parameter name.
const ShaderParameter getShaderParameter(const string &parameterName) const
Returns shader parameter for given parameter name, if the value does not exist, the default will be r...
TDME engine entity.
Definition: Entity.h:31
Imposter object 3d to be used with engine class.
LOD object 3D + imposter to be used with engine class.
LOD object 3D to be used with engine class.
Definition: LODObject3D.h:47
Object 3D render group for static objects that might be animated by shaders.
Object 3D to be used with engine class.
Definition: Object3D.h:60
Engine::EffectPass excludeFromEffectPass
Definition: Object3D.h:84
const Matrix4x4 & getTransformationsMatrix() const override
Definition: Object3D.h:327
const Color4 & getEffectColorAdd() const override
The effect color will be added to fragment color.
Definition: Object3D.h:223
void computeTransformations(int contextIdx)
Compute animations.
Definition: Object3D.h:105
friend class SkinnedObject3DRenderGroup
Definition: Object3D.h:68
RenderPass getRenderPass() const override
Definition: Object3D.h:335
void dispose() override
Dispose this object 3d.
Definition: Object3D.cpp:106
void setShader(const string &id)
Set shader.
Definition: Object3D.cpp:116
void setTranslation(const Vector3 &translation) override
Set translation.
Definition: Object3D.h:271
bool isNeedsForwardShading()
Definition: Object3D.h:156
bool hasReflectionEnvironmentMappingPosition()
Definition: Object3D.h:415
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Definition: Object3D.h:161
void removeRotation(const int idx) override
Remove rotation.
Definition: Object3D.h:303
bool isNeedsComputeTransformations()
Definition: Object3D.h:97
int64_t frameTransformationsLast
Definition: Object3D.h:87
RenderPass renderPass
Definition: Object3D.h:75
void setPivot(const Vector3 &pivot) override
Set pivot.
Definition: Object3D.h:287
const int getRotationCount() const override
Definition: Object3D.h:291
const Quaternion & getRotationsQuaternion() const override
Definition: Object3D.h:323
void initialize() override
Initiates this object 3d.
Definition: Object3D.cpp:111
bool isReceivesShadows() override
Definition: Object3D.h:251
uint8_t getUniqueDistanceShaderId()
Definition: Object3D.h:373
EntityShaderParameters shaderParameters
Definition: Object3D.h:89
uint8_t uniqueShaderId
Definition: Object3D.h:77
Engine::EffectPass getExcludeFromEffectPass() const
Definition: Object3D.h:446
BoundingBox * getBoundingBox() override
Definition: Object3D.h:215
void setRenderPass(RenderPass renderPass) override
Set render pass.
Definition: Object3D.h:339
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
Definition: Object3D.h:255
const string & getShader()
Definition: Object3D.h:346
void addRotation(const Vector3 &axis, const float angle) override
Add rotation.
Definition: Object3D.h:299
void update() override
Update transformations.
Definition: Object3D.cpp:58
Object3D(const string &id, Model *model, int instances)
Public constructor.
Definition: Object3D.cpp:29
void unsetReflectionEnvironmentMappingPosition()
Unset reflection environment mapping position.
Definition: Object3D.h:438
const string & getId() override
Definition: Object3D.h:239
void setPickable(bool pickable) override
Set this object pickable.
Definition: Object3D.h:263
bool reflectionEnvironmentMappingPositionSet
Definition: Object3D.h:82
float getDistanceShaderDistance()
Definition: Object3D.h:386
Entity * getParentEntity() override
Definition: Object3D.h:164
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
Definition: Object3D.h:235
const ShaderParameter getShaderParameter(const string &parameterName)
Returns shader parameter for given parameter name, if the value does not exist, the default will be r...
Definition: Object3D.h:494
bool isPickable() override
Definition: Object3D.h:259
const Vector3 & getTranslation() const override
Definition: Object3D.h:267
void setShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given parameter name.
Definition: Object3D.h:504
float distanceShaderDistance
Definition: Object3D.h:80
const ShaderParameter getDistanceShaderParameter(const string &parameterName)
Returns distance shader parameter for given parameter name, if the value does not exist,...
Definition: Object3D.h:514
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
Definition: Object3D.cpp:52
const string & getDistanceShader()
Definition: Object3D.h:366
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
Definition: Object3D.h:231
const Vector3 & getReflectionEnvironmentMappingPosition()
Definition: Object3D.h:422
const Vector3 & getScale() const override
Definition: Object3D.h:275
const Vector3 & getPivot() const override
Definition: Object3D.h:283
uint8_t getUniqueShaderId()
Definition: Object3D.h:359
void setEnableEarlyZRejection(bool enableEarlyZRejection)
Enable/disable early z rejection.
Definition: Object3D.h:469
bool isEnableEarlyZRejection() const
Definition: Object3D.h:461
BoundingBox * getBoundingBoxTransformed() override
Definition: Object3D.h:219
void setDistanceShader(const string &id)
Set distance shader.
Definition: Object3D.cpp:136
void setReflectionEnvironmentMappingId(const string &reflectionEnvironmentMappingId)
Definition: Object3D.h:408
void setScale(const Vector3 &scale) override
Set scale.
Definition: Object3D.h:279
bool isDisableDepthTest() const
Definition: Object3D.h:476
bool isContributesShadows() override
Definition: Object3D.h:243
Entity * parentEntity
Definition: Object3D.h:73
string reflectionEnvironmentMappingId
Definition: Object3D.h:81
Vector3 reflectionEnvironmentMappingPosition
Definition: Object3D.h:83
EntityShaderParameters distanceShaderParameters
Definition: Object3D.h:90
const string & getReflectionEnvironmentMappingId()
Definition: Object3D.h:401
void applyParentTransformations(const Transformations &parentTransformations) override
Apply parent transformations.
Definition: Object3D.h:167
const float getRotationAngle(const int idx) const override
Definition: Object3D.h:315
void setReflectionEnvironmentMappingPosition(const Vector3 &reflectionEnvironmentMappingPosition)
Set reflection environment mapping position.
Definition: Object3D.h:430
const Transformations & getTransformations() const override
Definition: Object3D.h:331
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
Definition: Object3D.cpp:89
void setEngine(Engine *engine) override
Set up engine.
Definition: Object3D.cpp:41
void setExcludeEffectPass(Engine::EffectPass effectPass)
Set exclude from effect pass.
Definition: Object3D.h:454
void setEnabled(bool enabled) override
Enable/disable rendering.
Definition: Object3D.cpp:64
int64_t timeTransformationsLast
Definition: Object3D.h:88
EntityType getEntityType() override
Definition: Object3D.h:196
const Vector3 & getRotationAxis(const int idx) const override
Definition: Object3D.h:307
void computeTransformations(int contextIdx, int64_t lastFrameAtTime, int64_t currentFrameAtTime) override
Compute transformations.
Definition: Object3D.h:127
void setDistanceShaderDistance(float distanceShaderDistance)
Set distance shader distance.
Definition: Object3D.h:394
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
Definition: Object3D.h:247
void setRotationAxis(const int idx, const Vector3 &axis) override
Set rotation axis.
Definition: Object3D.h:311
void preRender(int contextIdx)
Pre render step like uploading VBOs and such.
Definition: Object3D.h:144
uint8_t uniqueDistanceShaderId
Definition: Object3D.h:79
bool isFrustumCulling() override
Definition: Object3D.cpp:85
bool isEnabled() override
Definition: Object3D.h:205
Rotation & getRotation(const int idx) override
Get rotation at given index.
Definition: Object3D.h:295
void setNeedsPreRender(bool needsPreRender)
Set up if this object3d instance needs a preRender() call each frame.
Definition: Object3D.h:191
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
Definition: Object3D.h:227
void setDistanceShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set distance shader parameter for given parameter name.
Definition: Object3D.h:524
void setRenderer(Renderer *renderer) override
Set up renderer.
Definition: Object3D.cpp:48
void setRotationAngle(const int idx, const float angle) override
Definition: Object3D.h:319
void setDisableDepthTest(bool disableDepthTest)
Set disable depth test.
Definition: Object3D.h:484
Object particle system entity to be used with engine class.
Rotation representation.
Definition: Rotation.h:18
Shader parameter model class.
Timing class.
Definition: Timing.h:17
int64_t getCurrentFrameAtTime()
Definition: Timing.h:75
Transformations which contain scale, rotations and translation.
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
Vector3 computeClosestPointInBoundingBox(const Vector3 &point)
Compute closest point in bounding box of given point.
Definition: BoundingBox.h:77
vector< Transformations > instanceTransformations
Definition: Object3DBase.h:56
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73