TDME2 1.9.121
Object3DInternal.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
14
15using std::string;
16
25
26/**
27 * Object 3D
28 * @author Andreas Drewke
29 * @version $Id$
30 */
32 : public Object3DBase
33{
34 friend class EntityRenderer;
35
36protected:
37 string id;
38 bool enabled;
46
47 /**
48 * Update bounding volume
49 */
50 void updateBoundingBox();
51
52public:
53 /**
54 * Public constructor
55 * @param id id
56 * @param model model
57 * @param instances instances to compute and render by duplication
58 */
59 Object3DInternal(const string& id, Model* model, int instances);
60
61 /**
62 * Destructor
63 */
64 virtual ~Object3DInternal();
65
66 /**
67 * @return object id
68 */
69 inline const string& getId() {
70 return id;
71 }
72
73 /**
74 * @return true if enabled to be rendered
75 */
76 inline bool isEnabled() {
77 return enabled;
78 }
79
80 /**
81 * Enable/disable rendering
82 * @param enabled enabled
83 */
84 inline void setEnabled(bool enabled) {
85 this->enabled = enabled;
86 }
87
88 /**
89 * @return if object is pickable
90 */
91 inline bool isPickable() {
92 return pickable;
93 }
94
95 /**
96 * Set this object pickable
97 * @param pickable pickable
98 */
99 inline void setPickable(bool pickable) {
100 this->pickable = pickable;
101 }
102
103 /**
104 * @return if entity contributes to shadows
105 */
106 inline bool isContributesShadows() {
107 return contributesShadows;
108 }
109
110 /**
111 * Enable/disable contributes shadows
112 * @param contributesShadows contributes shadows
113 */
115 this->contributesShadows = contributesShadows;
116 }
117
118 /**
119 * @return if entity receives shadows
120 */
121 inline bool isReceivesShadows() {
122 return receivesShadows;
123 }
124
125 /**
126 * Enable/disable receives shadows
127 * @param receivesShadows receives shadows
128 */
130 this->receivesShadows = receivesShadows;
131 }
132
133 /**
134 * The effect color will be multiplied with fragment color
135 * @return effect color
136 */
137 inline const Color4& getEffectColorMul() const {
138 return effectColorMul;
139 }
140
141 /**
142 * The effect color that will be multiplied with fragment color
143 * @param effectColorMul effect color
144 */
146 this->effectColorMul = effectColorMul;
147 }
148
149 /**
150 * The effect color will be added to fragment color
151 * @return effect color
152 */
153 inline const Color4& getEffectColorAdd() const {
154 return effectColorAdd;
155 }
156
157 /**
158 * The effect color will be added to fragment color
159 * @return effect color
160 */
162 this->effectColorAdd = effectColorAdd;
163 }
164
165 /**
166 * @return bounding box
167 */
169 return &boundingBox;
170 }
171
172 /**
173 * Retrieves bounding sphere with transformations applied
174 * @return bounding sphere
175 */
178 }
179
180 /**
181 * Bind a texture to a node and faces entity
182 * @param textureId texture id
183 * @param nodeId node id or empty if texture should be bound to all nodes
184 * @param facesEntityId faces entity id or empty if texture should be bound to all faces entities
185 */
186 void bindDiffuseTexture(int32_t textureId, const string& nodeId = string(), const string& facesEntityId = string());
187
188 /**
189 * Bind frame buffer color texture to a node and faces entity of this object
190 * @param frameBuffer frame buffer
191 * @param nodeId node id or empty string for all
192 * @param facesEntityId faces entity id or empty string for all
193 */
194 void bindDiffuseTexture(FrameBuffer* frameBuffer, const string& nodeId = string(), const string& facesEntityId = string());
195
196 /**
197 * Unbind dynamic texture to a node and faces entity of this object
198 * @param nodeId node id or empty string for all
199 * @param facesEntityId faces entity id orempty string for all
200 */
201 void unbindDiffuseTexture(const string& nodeId = string(), const string& facesEntityId = string());
202
203 /**
204 * Set texture matrix
205 * @param textureMatrix texture matrix
206 * @param nodeId node id or empty string for all
207 * @param facesEntityId faces entity id or empty string for all
208 */
209 void setTextureMatrix(const Matrix2D3x3& textureMatrix, const string& nodeId = string(), const string& facesEntityId = string());
210
211 // overridden methods
212 inline void initialize() override {
214 }
215 inline void dispose() override {
217 }
218 void fromTransformations(const Transformations& transformations);
219 void update();
220
221 void setNodeTransformationsMatrix(const string& id, const Matrix4x4& matrix);
222 void unsetNodeTransformationsMatrix(const string& id);
223
224};
Frame buffer class.
Definition: FrameBuffer.h:21
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
virtual void initialize()
Initiates this object3d.
virtual void dispose()
Disposes this object3d.
void setContributesShadows(bool contributesShadows)
Enable/disable contributes shadows.
void dispose() override
Disposes this object3d.
void setTextureMatrix(const Matrix2D3x3 &textureMatrix, const string &nodeId=string(), const string &facesEntityId=string())
Set texture matrix.
BoundingBox * getBoundingBoxTransformed()
Retrieves bounding sphere with transformations applied.
void setEnabled(bool enabled)
Enable/disable rendering.
void initialize() override
Initiates this object3d.
const Color4 & getEffectColorMul() const
The effect color will be multiplied with fragment color.
void unbindDiffuseTexture(const string &nodeId=string(), const string &facesEntityId=string())
Unbind dynamic texture to a node and faces entity of this object.
void bindDiffuseTexture(int32_t textureId, const string &nodeId=string(), const string &facesEntityId=string())
Bind a texture to a node and faces entity.
const Color4 & getEffectColorAdd() const
The effect color will be added to fragment color.
void setPickable(bool pickable)
Set this object pickable.
void setEffectColorMul(const Color4 &effectColorMul)
The effect color that will be multiplied with fragment color.
void setEffectColorAdd(const Color4 &effectColorAdd)
The effect color will be added to fragment color.
void setNodeTransformationsMatrix(const string &id, const Matrix4x4 &matrix)
void fromTransformations(const Transformations &transformations)
Object3DInternal(const string &id, Model *model, int instances)
Public constructor.
void setReceivesShadows(bool receivesShadows)
Enable/disable receives shadows.
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
4x4 3D Matrix class
Definition: Matrix4x4.h:24