TDME2 1.9.121
ImposterObject3D.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
13#include <tdme/engine/Camera.h>
14#include <tdme/engine/Entity.h>
19#include <tdme/math/fwd-tdme.h>
21
22using std::string;
23using std::to_string;
24using std::vector;
25
40
41/**
42 * Imposter object 3d to be used with engine class
43 * @author Andreas Drewke
44 * @version $Id$
45 */
47 public Transformations,
48 public Entity
49{
50 friend class LODObject3DImposter;
51
52private:
53 Engine* engine { nullptr };
54 Entity* parentEntity { nullptr };
55 bool frustumCulling { true };
56
57 vector<Model*> billboardModels;
58
59 string id;
60 vector<Object3D*> billboardObjects;
62
63 bool enabled;
70 string shaderId { "default" };
71 string distanceShaderId { "" };
72 float distanceShaderDistance { 50.0f };
73 bool enableEarlyZRejection { false };
74
77
78 /**
79 * Set parent entity, needs to be called before adding to engine
80 * @param entity entity
81 */
82 inline void setParentEntity(Entity* entity) override {
83 this->parentEntity = entity;
84 }
85
86 /**
87 * @return parent entity
88 */
89 inline Entity* getParentEntity() override {
90 return parentEntity;
91 }
92
93 // overridden methods
94 inline void applyParentTransformations(const Transformations& parentTransformations) override {
96 // delegate to LOD objects
98 }
99
100public:
101 /**
102 * Public constructor
103 * @param id id
104 * @param billboardModels billboard models
105 */
107 const string& id,
108 const vector<Model*>& billboardModels
109 );
110
111 /**
112 * Public destructor
113 */
115
116 // overridden method
117 inline EntityType getEntityType() override {
119 }
120
121 /**
122 * @return billboard objects
123 */
124 inline const vector<Object3D*> getBillboardObjects() {
125 return billboardObjects;
126 }
127
128 /**
129 * @return billboard object
130 */
132 //
133 return billboardObject;
134 }
135
136 /**
137 * Get current billboard object
138 * @param camera camera
139 * @return LOD object to render
140 */
142 Vector3 cameraForwardVector = getBoundingBoxTransformed()->getCenter().clone().sub(camera->getLookFrom()).setY(0.0f).normalize();
143 auto angle = Vector3::computeAngle(Vector3(0.0, 0.0f, -1.0f), cameraForwardVector, Rotation::Y_AXIS);
144 auto imposterIdx = static_cast<int>(angle / 360.0f * billboardModels.size()) % billboardModels.size();
145 billboardObject = billboardObjects[imposterIdx];
146 // done
147 return billboardObject;
148 }
149
150 // overridden methods
151 void setEngine(Engine* engine) override;
152 void setRenderer(Renderer* renderer) override;
153 void initialize() override;
154 void dispose() override;
155
156 inline bool isEnabled() override {
157 return enabled;
158 }
159
160 void setEnabled(bool enabled) override;
161 bool isFrustumCulling() override;
162 void setFrustumCulling(bool frustumCulling) override;
163 void fromTransformations(const Transformations& transformations) override;
164 void update() override;
165
166 inline BoundingBox* getBoundingBox() override {
168 }
169
172 }
173
174 inline const Color4& getEffectColorMul() const override {
175 return effectColorMul;
176 }
177
178 inline void setEffectColorMul(const Color4& effectColorMul) override {
179 this->effectColorMul = effectColorMul;
181 }
182
183 inline const Color4& getEffectColorAdd() const override {
184 return effectColorAdd;
185 }
186
187 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
188 this->effectColorAdd = effectColorAdd;
190 }
191
192 inline const string& getId() override {
193 return id;
194 }
195
196 inline bool isPickable() override {
197 return pickable;
198 }
199
200 inline bool isContributesShadows() override {
201 return contributesShadows;
202 }
203
204 inline void setContributesShadows(bool contributesShadows) override {
205 this->contributesShadows = contributesShadows;
207 }
208
209 inline bool isReceivesShadows() override {
210 return receivesShadows;
211 }
212
213 inline void setReceivesShadows(bool receivesShadows) override {
214 this->receivesShadows = receivesShadows;
216 }
217
218 inline void setPickable(bool pickable) override {
219 this->pickable = pickable;
220 }
221
222 inline const Matrix4x4 getNodeTransformationsMatrix(const string& id) {
224 }
225
226 inline const Vector3& getTranslation() const override {
228 }
229
230 inline void setTranslation(const Vector3& translation) override {
232 }
233
234 inline const Vector3& getScale() const override {
236 }
237
238 inline void setScale(const Vector3& scale) override {
240 }
241
242 inline const Vector3& getPivot() const override {
244 }
245
246 inline void setPivot(const Vector3& pivot) override {
248 }
249
250 inline const int getRotationCount() const override {
252 }
253
254 inline Rotation& getRotation(const int idx) override {
256 }
257
258 inline void addRotation(const Vector3& axis, const float angle) override {
259 Transformations::addRotation(axis, angle);
260 }
261
262 inline void removeRotation(const int idx) override {
264 }
265
266 inline const Vector3& getRotationAxis(const int idx) const override {
268 }
269
270 inline void setRotationAxis(const int idx, const Vector3& axis) override {
272 }
273
274 inline const float getRotationAngle(const int idx) const override {
276 }
277
278 inline void setRotationAngle(const int idx, const float angle) override {
280 }
281
282 inline const Quaternion& getRotationsQuaternion() const override {
284 }
285
286 inline const Matrix4x4& getTransformationsMatrix() const override {
288 }
289
290 inline const Transformations& getTransformations() const override {
291 return *this;
292 }
293
294 inline RenderPass getRenderPass() const override {
295 return renderPass;
296 }
297
298 inline void setRenderPass(RenderPass renderPass) override {
299 this->renderPass = renderPass;
301 }
302
303 /**
304 * @return shader id
305 */
306 inline const string& getShader() {
307 return shaderId;
308 }
309
310 /**
311 * Set shader id
312 * @param id shader
313 */
314 inline void setShader(const string& id) {
315 this->shaderId = id;
316 shaderParameters.setShader(shaderId);
318 }
319
320 /**
321 * @return distance shader id
322 */
323 inline const string& getDistanceShader() {
324 return distanceShaderId;
325 }
326
327 /**
328 * Set distance shader id
329 * @param id shader
330 */
331 inline void setDistanceShader(const string& id) {
332 this->distanceShaderId = id;
333 distanceShaderParameters.setShader(distanceShaderId);
335 }
336
337 /**
338 * @return distance shader distance
339 */
342 }
343
344 /**
345 * Set distance shader distance
346 * @param distanceShaderDistance shader
347 */
349 this->distanceShaderDistance = distanceShaderDistance;
351 }
352
353 /**
354 * @return If early z rejection is enabled
355 */
358 }
359
360 /**
361 * Enable/disable early z rejection
362 * @param enableEarlyZRejection enable early z rejection
363 */
365
366 /**
367 * Returns shader parameter for given parameter name, if the value does not exist, the default will be returned
368 * @param shaderId shader id
369 * @param parameterName parameter name
370 * @return shader parameter
371 */
372 inline const ShaderParameter getShaderParameter(const string& parameterName) {
373 return shaderParameters.getShaderParameter(parameterName);
374 }
375
376 /**
377 * Set shader parameter for given parameter name
378 * @param shaderId shader id
379 * @param parameterName parameter name
380 * @param paraemterValue parameter value
381 */
382 inline void setShaderParameter(const string& parameterName, const ShaderParameter& parameterValue) {
383 shaderParameters.setShaderParameter(parameterName, parameterValue);
384 for (auto billboardObject: billboardObjects) billboardObject->setShaderParameter(parameterName, parameterValue);
385 }
386
387 /**
388 * Returns distance shader parameter for given parameter name, if the value does not exist, the default will be returned
389 * @param shaderId shader id
390 * @param parameterName parameter name
391 * @return shader parameter
392 */
393 inline const ShaderParameter getDistanceShaderParameter(const string& parameterName) {
394 return distanceShaderParameters.getShaderParameter(parameterName);
395 }
396
397 /**
398 * Set distance shader parameter for given parameter name
399 * @param shaderId shader id
400 * @param parameterName parameter name
401 * @param paraemterValue parameter value
402 */
403 inline void setDistanceShaderParameter(const string& parameterName, const ShaderParameter& parameterValue) {
404 distanceShaderParameters.setShaderParameter(parameterName, parameterValue);
405 for (auto billboardObject: billboardObjects) billboardObject->setDistanceShaderParameter(parameterName, parameterValue);
406 }
407
408};
const Vector3 & getLookFrom() const
Definition: Camera.h:213
Engine main class.
Definition: Engine.h:122
TDME2 engine entity shader parameters.
void setShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given parameter name.
void setShader(const string &shaderId)
Set shader.
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
@ ENTITYTYPE_IMPOSTEROBJECT3D
Definition: Entity.h:63
Imposter object 3d to be used with engine class.
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 setShader(const string &id)
Set shader id.
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.
vector< Object3D * > billboardObjects
const vector< Object3D * > getBillboardObjects()
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.
EntityShaderParameters shaderParameters
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
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.
const ShaderParameter getShaderParameter(const string &parameterName)
Returns shader parameter for given parameter name, if the value does not exist, the default will be r...
const Vector3 & getTranslation() const override
void setShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given parameter name.
ImposterObject3D(const string &id, const vector< Model * > &billboardModels)
Public constructor.
const ShaderParameter getDistanceShaderParameter(const string &parameterName)
Returns distance shader parameter for given parameter name, if the value does not exist,...
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
void setEnableEarlyZRejection(bool enableEarlyZRejection)
Enable/disable early z rejection.
BoundingBox * getBoundingBoxTransformed() override
void setDistanceShader(const string &id)
Set distance shader id.
void setScale(const Vector3 &scale) override
Set scale.
const Matrix4x4 getNodeTransformationsMatrix(const string &id)
~ImposterObject3D()
Public destructor.
EntityShaderParameters distanceShaderParameters
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 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 setDistanceShaderDistance(float distanceShaderDistance)
Set distance shader distance.
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.
Object3D * determineBillboardObject(Camera *camera)
Get current billboard object.
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
void setDistanceShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set distance shader parameter for given parameter name.
void setRenderer(Renderer *renderer) override
Set up renderer.
void setRotationAngle(const int idx, const float angle) override
LOD object 3D + imposter to be used with engine class.
Object 3D to be used with engine class.
Definition: Object3D.h:60
void setShader(const string &id)
Set shader.
Definition: Object3D.cpp:116
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
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
Definition: Object3D.h:235
void setShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given parameter name.
Definition: Object3D.h:504
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
Definition: Object3D.cpp:52
BoundingBox * getBoundingBoxTransformed() override
Definition: Object3D.h:219
void setDistanceShader(const string &id)
Set distance shader.
Definition: Object3D.cpp:136
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
Definition: Object3D.h:247
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
Rotation representation.
Definition: Rotation.h:18
static STATIC_DLL_IMPEXT Vector3 Y_AXIS
Definition: Rotation.h:22
Shader parameter model class.
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
const Vector3 & getCenter() const
Definition: BoundingBox.h:120
const Matrix4x4 getNodeTransformationsMatrix(const string &id)
Returns transformation matrix for given node.
Definition: Object3DBase.h:255
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & setY(float y)
Set Y.
Definition: Vector3.h:128
Console class.
Definition: Console.h:26