TDME2 1.9.121
LinesObject3D.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
13#include <tdme/engine/Entity.h>
15#include <tdme/math/Matrix4x4.h>
17#include <tdme/math/Vector3.h>
18
19using std::string;
20
32
33/**
34 * Object 3D to be used with engine class
35 * @author Andreas Drewke
36 * @version $Id$
37 */
39{
40
41private:
42 friend class Engine;
43
44 Engine* engine { nullptr };
45 Entity* parentEntity { nullptr };
46 bool frustumCulling { true };
48
49 // overridden methods
50 inline void setParentEntity(Entity* entity) override {
51 this->parentEntity = entity;
52 }
53 inline Entity* getParentEntity() override {
54 return parentEntity;
55 }
56 inline void applyParentTransformations(const Transformations& parentTransformations) override {
59 }
60
61public:
62 /**
63 * Public constructor
64 * @param id id
65 * @param lineWidth line width
66 * @param points points
67 * @param color color
68 * @param colors optional colors
69 * @param texture optional texture
70 */
71 LinesObject3D(const string& id, float lineWidth, const vector<Vector3>& points, const Color4& color, const vector<Color4>& colors = {}, Texture* texture = nullptr);
72
73 // overridden methods
74 inline EntityType getEntityType() override {
76 }
77
78 void setEngine(Engine* engine) override;
79
80 inline void setRenderer(Renderer* renderer) override {
81 LinesObject3DInternal::setRenderer(renderer);
82 }
83
84 inline void initialize() override {
85 LinesObject3DInternal::initialize();
86 }
87
88 inline void dispose() override {
89 LinesObject3DInternal::dispose();
90 }
91
92 inline bool isEnabled() override {
93 return LinesObject3DInternal::isEnabled();
94 }
95
96 void setEnabled(bool enabled) override;
97 inline bool isFrustumCulling() override {
98 return frustumCulling;
99 }
100 void setFrustumCulling(bool frustumCulling) override;
101
102 void fromTransformations(const Transformations& transformations) override;
103 void update() override;
104
105 inline BoundingBox* getBoundingBox() override {
106 return LinesObject3DInternal::getBoundingBox();
107 }
108
110 return LinesObject3DInternal::getBoundingBoxTransformed();
111 }
112
113 inline const Color4& getEffectColorAdd() const override {
114 return LinesObject3DInternal::getEffectColorAdd();
115 }
116
117 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
118 return LinesObject3DInternal::setEffectColorAdd(effectColorAdd);
119 }
120
121 inline const Color4& getEffectColorMul() const override {
122 return LinesObject3DInternal::getEffectColorMul();
123 }
124
125 inline void setEffectColorMul(const Color4& effectColorMul) override {
126 return LinesObject3DInternal::setEffectColorMul(effectColorMul);
127 }
128
129 inline const string& getId() override {
130 return LinesObject3DInternal::getId();
131 }
132
133 inline bool isContributesShadows() override {
134 return LinesObject3DInternal::isContributesShadows();
135 }
136
137 inline void setContributesShadows(bool contributesShadows) override {
138 LinesObject3DInternal::setContributesShadows(contributesShadows);
139 }
140
141 inline bool isReceivesShadows() override {
142 return LinesObject3DInternal::isReceivesShadows();
143 }
144
145 inline void setReceivesShadows(bool receivesShadows) override {
146 LinesObject3DInternal::setReceivesShadows(receivesShadows);
147 }
148
149 inline bool isPickable() override {
150 return LinesObject3DInternal::isPickable();
151 }
152
153 inline void setPickable(bool pickable) override {
154 LinesObject3DInternal::setPickable(pickable);
155 }
156
157 inline const Vector3& getTranslation() const override {
159 }
160
161 inline void setTranslation(const Vector3& translation) override {
163 }
164
165 inline const Vector3& getScale() const override {
167 }
168
169 inline void setScale(const Vector3& scale) override {
171 }
172
173 inline const Vector3& getPivot() const override {
175 }
176
177 inline void setPivot(const Vector3& pivot) override {
179 }
180
181 inline const int getRotationCount() const override {
183 }
184
185 inline Rotation& getRotation(const int idx) override {
187 }
188
189 inline void addRotation(const Vector3& axis, const float angle) override {
190 Transformations::addRotation(axis, angle);
191 }
192
193 inline void removeRotation(const int idx) override {
195 }
196
197 inline const Vector3& getRotationAxis(const int idx) const override {
199 }
200
201 inline void setRotationAxis(const int idx, const Vector3& axis) override {
203 }
204
205 inline const float getRotationAngle(const int idx) const override {
207 }
208
209 inline void setRotationAngle(const int idx, const float angle) override {
211 }
212
213 inline const Quaternion& getRotationsQuaternion() const override {
215 }
216
217 inline const Matrix4x4& getTransformationsMatrix() const override {
219 }
220
221 inline const Transformations& getTransformations() const override {
222 return *this;
223 }
224
225 inline RenderPass getRenderPass() const override {
226 return renderPass;
227 }
228
229 inline void setRenderPass(RenderPass renderPass) override {
230 this->renderPass = renderPass;
231 }
232
233};
Engine main class.
Definition: Engine.h:122
TDME engine entity.
Definition: Entity.h:31
@ ENTITYTYPE_LINESOBJECT3D
Definition: Entity.h:64
Object 3D to be used with engine class.
Definition: LinesObject3D.h:39
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.
Definition: LinesObject3D.h:88
void setTranslation(const Vector3 &translation) override
Set translation.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Definition: LinesObject3D.h:50
void removeRotation(const int idx) override
Remove rotation.
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.
Definition: LinesObject3D.h:84
bool isReceivesShadows() override
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
Definition: LinesObject3D.h:53
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
const Vector3 & getTranslation() const override
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
LinesObject3D(const string &id, float lineWidth, const vector< Vector3 > &points, const Color4 &color, const vector< Color4 > &colors={}, Texture *texture=nullptr)
Public constructor.
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.
bool isContributesShadows() override
void applyParentTransformations(const Transformations &parentTransformations) override
Apply parent transformations.
Definition: LinesObject3D.h:56
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
Definition: LinesObject3D.h:74
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.
bool isFrustumCulling() override
Definition: LinesObject3D.h:97
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.
Definition: LinesObject3D.h:80
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
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22