TDME2 1.9.121
SceneConnector.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
11#include <tdme/math/fwd-tdme.h>
12#include <tdme/math/Vector3.h>
14
30
31/**
32 * Scene engine/physics connector
33 * @author Andreas Drewke
34 * @version $Id$
35 */
37{
38
39public:
40 static constexpr int32_t RIGIDBODY_TYPEID_STATIC { 1 };
41 static constexpr int32_t RIGIDBODY_TYPEID_DYNAMIC { 2 };
42 static constexpr int32_t RIGIDBODY_TYPEID_COLLISION { 4 };
43 static constexpr int32_t RIGIDBODY_TYPEID_TRIGGER { 8 };
44
55
56public:
57
58 /**
59 * @return render groups partition size / width
60 */
61 inline static float getRenderGroupsPartitionWidth() {
63 }
64
65 /**
66 * Set render groups partition size / width
67 * @param renderNodesPartitionDepth render groups partition size / width
68 */
69 inline static void setRenderGroupsPartitionWidth(float renderNodesPartitionWidth) {
70 SceneConnector::renderGroupsPartitionWidth = renderNodesPartitionWidth;
71 }
72
73 /**
74 * @return render groups partition size / height
75 */
76 inline static float getRenderGroupsPartitionHeight() {
78 }
79
80 /**
81 * Set render groups partition size / height
82 * @param renderNodesPartitionDepth render groups partition size / height
83 */
84 inline static void setRenderGroupsPartitionHeight(float renderNodesPartitionHeight) {
85 SceneConnector::renderGroupsPartitionHeight = renderNodesPartitionHeight;
86 }
87
88 /**
89 * @return render groups partition size / depth
90 */
91 inline static float getRenderGroupsPartitionDepth() {
93 }
94
95 /**
96 * Set render groups partition size / depth
97 * @param renderNodesPartitionDepth render groups partition size / depth
98 */
99 inline static void setRenderGroupsPartitionDepth(float renderNodesPartitionDepth) {
100 SceneConnector::renderGroupsPartitionDepth = renderNodesPartitionDepth;
101 }
102
103 /**
104 * Set render groups reduce objects by a given factor
105 * @param reduceBy render groups objects reduce by factor
106 */
107 inline static void setRenderGroupsReduceBy(int reduceBy) {
109 }
110
111 /**
112 * @return render groups objects reduce by factor
113 */
114 inline static int getRenderGroupsReduceBy() {
116 }
117
118 /**
119 * @return render groups LOD levels
120 */
121 inline static int getRenderGroupsLodLevels() {
123 }
124
125 /**
126 * Set render groups LOD levels
127 * @param lodLevels render groups LOD levels
128 */
129 inline static void setRenderGroupsLodLevels(int lodLevels) {
130 renderGroupsLODLevels = lodLevels;
131 }
132
133 /**
134 * @return render groups LOD2 minumum distance
135 */
136 inline static float getRenderGroupsLod2MinDistance() {
138 }
139
140 /**
141 * Set render groups LOD2 minumum distance
142 * @param minDistance render groups LOD2 minumum distance
143 */
144 inline static void setRenderGroupsLod2MinDistance(float minDistance) {
145 renderGroupsLOD2MinDistance = minDistance;
146 }
147
148 /**
149 * @return render groups LOD3 minumum distance
150 */
151 inline static float getRenderGroupsLod3MinDistance() {
153 }
154
155 /**
156 * Set render groups LOD3 minumum distance
157 * @param minDistance render groups LOD3 minumum distance
158 */
159 inline static void setRenderGroupsLod3MinDistance(float minDistance) {
160 renderGroupsLOD3MinDistance = minDistance;
161 }
162
163 /**
164 * @return render groups LOD2 reduce by factor
165 */
166 inline static int getRenderGroupsLod2ReduceBy() {
168 }
169
170 /**
171 * Set render groups LOD2 reduce by factor
172 * @param reduceBy render groups LOD2 reduce by factor
173 */
174 inline static void setRenderGroupsLod2ReduceBy(int reduceBy) {
175 renderGroupsLOD2ReduceBy = reduceBy;
176 }
177
178 /**
179 * @return render groups LOD3 reduce by factor
180 */
181 inline static int getRenderGroupsLod3ReduceBy() {
183 }
184
185 /**
186 * Set render groups LOD3 reduce by factor
187 * @param reduceBy render groups LOD3 reduce by factor
188 */
189 inline static void setRenderGroupsLod3ReduceBy(int reduceBy) {
190 renderGroupsLOD3ReduceBy = reduceBy;
191 }
192
193 /**
194 * @return If early z rejection is enabled, in scene loading case its used for render groups and terrain
195 */
196 inline static bool isEnableEarlyZRejection() {
198 }
199
200 /**
201 * Enable/disable early z rejection, in scene loading case its used for render groups and terrain
202 * @param enableEarlyZRejection enable early z rejection
203 */
206 }
207
208 /**
209 * Set lights from scene
210 * @param engine engine
211 * @param scene scene
212 * @param translation translation
213 */
214 static void setLights(Engine* engine, Scene* scene, const Vector3& translation = Vector3(0.0f, 0.0f, 0.0f));
215
216 /**
217 * Create particle system
218 * @param particleSystem prototype particle system
219 * @param id id
220 * @param enableDynamicShadows enable dynamic shadows
221 * @return engine particle system entity
222 */
223 static Entity* createParticleSystem(PrototypeParticleSystem* particleSystem, const string& id, bool enableDynamicShadows = true);
224
225 /**
226 * Create engine entity
227 * @param id id
228 * @param transformations transformations
229 * @return entity
230 */
231 static Entity* createEmpty(const string& id, const Transformations& transformations);
232
233 /**
234 * Create engine entity
235 * @param prototype prototype
236 * @param id id
237 * @param transformations transformations
238 * @param instances instances which applies only for skinned objects
239 * @param parentEntity parent entity
240 * @return entity
241 */
242 static Entity* createEntity(Prototype* prototype, const string& id, const Transformations& transformations, int instances = 1, Entity* parentEntity = nullptr);
243
244 /**
245 * Create engine entity
246 * @param sceneEntity scene object
247 * @param translation translation
248 * @param instances instances which applies only for skinned objects
249 * @param parentEntity parent entity
250 * @return entity
251 */
252 static Entity* createEntity(SceneEntity* sceneEntity, const Vector3& translation = Vector3(0.0f, 0.0f, 0.0f), int instances = 1, Entity* parentEntity = nullptr);
253
254 /**
255 * Add scene to engine
256 * @param engine engine
257 * @param scene scene
258 * @param addEmpties add empties
259 * @param addTrigger add trigger
260 * @param addEnvironmentMapping add environment mapping
261 * @param pickable pickable
262 * @param enable enable
263 * @param translation translation
264 * @param progressCallback progress callback
265 */
266 static void addScene(Engine* engine, Scene* scene, bool addEmpties, bool addTrigger, bool addEnvironmentMapping, bool pickable, bool enable = true, const Vector3& translation = Vector3(0.0f, 0.0f, 0.0f), ProgressCallback* progressCallback = nullptr);
267
268 /**
269 * Create rigid body
270 * @param world world
271 * @param prototype prototype
272 * @param id id
273 * @param transformations transformations
274 * @param collisionTypeId collision type id or 0 for default
275 * @param index use a optional index or all bounding volumes
276 * @param overrideType override physics type if required
277 * @return rigid body
278 */
279 static Body* createBody(World* world, Prototype* prototype, const string& id, const Transformations& transformations, uint16_t collisionTypeId = 0, int index = -1, PrototypePhysics_BodyType* overrideType = nullptr);
280
281 /**
282 * Create rigid body
283 * @param world world
284 * @param sceneEntity scene entity
285 * @param translation translation
286 * @param collisionTypeId collision type id or 0 for default
287 * @param index use a optional index or all bounding volumes
288 * @param overrideType override physics type if required
289 * @return rigid body
290 */
291 static Body* createBody(World* world, SceneEntity* sceneEntity, const Vector3& translation = Vector3(0.0f, 0.0f, 0.0f), uint16_t collisionTypeId = 0, int index = -1, PrototypePhysics_BodyType* overrideType = nullptr);
292
293 /**
294 * Add scene to physics world
295 * @param world world
296 * @param scene scene
297 * @param enable enable
298 * @param translation translation
299 * @param progressCallback progress callback
300 */
301 static void addScene(World* world, Scene* scene, bool enable = true, const Vector3& translation = Vector3(0.0f, 0.0f, 0.0f), ProgressCallback* progressCallback = nullptr);
302
303 /**
304 * Disable scene in engine
305 * @param engine engine
306 * @param scene scene
307 */
308 static void disableScene(Engine* engine, Scene* scene);
309
310 /**
311 * Disable scene in physics world
312 * @param world world
313 * @param scene scene
314 */
315 static void disableScene(World* world, Scene* scene);
316
317 /**
318 * Enable disabled scene in engine
319 * @param engine engine
320 * @param scene scene
321 * @param translation translation
322 */
323 static void enableScene(Engine* engine, Scene* scene, const Vector3& translation = Vector3(0.0f, 0.0f, 0.0f));
324
325 /**
326 * Enable disabled scene in physics world
327 * @param world world
328 * @param scene scene
329 * @param translation translation
330 */
331 static void enableScene(World* world, Scene* scene, const Vector3& translation = Vector3(0.0f, 0.0f, 0.0f));
332
333 /**
334 * Reset engine regarding given scene
335 * @param engine engine
336 * @param scene scene
337 */
338 static void resetEngine(Engine* engine, Scene* scene);
339
340 /**
341 * Add scene entity sounds into given audio instance associated with given id
342 * @param audio audio instance to load sounds into
343 * @param prototype scene entity
344 * @param id audio entity id
345 * @param poolSize pool size, which is optional if you want to use a pool for each sound
346 */
347 static void addSounds(Audio* audio, Prototype* prototype, const string& id, const int poolSize = 1);
348
349private:
351};
Interface to audio module.
Definition: Audio.h:30
Engine main class.
Definition: Engine.h:122
TDME engine entity.
Definition: Entity.h:31
Scene engine/physics connector.
static float getRenderGroupsPartitionHeight()
static STATIC_DLL_IMPEXT int renderGroupsLODLevels
static float getRenderGroupsPartitionDepth()
static void setRenderGroupsPartitionWidth(float renderNodesPartitionWidth)
Set render groups partition size / width.
static void setEnableEarlyZRejection(bool enableEarlyZRejection)
Enable/disable early z rejection, in scene loading case its used for render groups and terrain.
static void setRenderGroupsLod2MinDistance(float minDistance)
Set render groups LOD2 minumum distance.
static Entity * createEntity(Prototype *prototype, const string &id, const Transformations &transformations, int instances=1, Entity *parentEntity=nullptr)
Create engine entity.
static void setRenderGroupsLod2ReduceBy(int reduceBy)
Set render groups LOD2 reduce by factor.
static Body * createBody(World *world, Prototype *prototype, const string &id, const Transformations &transformations, uint16_t collisionTypeId=0, int index=-1, PrototypePhysics_BodyType *overrideType=nullptr)
Create rigid body.
static void addScene(Engine *engine, Scene *scene, bool addEmpties, bool addTrigger, bool addEnvironmentMapping, bool pickable, bool enable=true, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f), ProgressCallback *progressCallback=nullptr)
Add scene to engine.
static STATIC_DLL_IMPEXT int renderGroupsReduceBy
static STATIC_DLL_IMPEXT Model * emptyModel
static constexpr int32_t RIGIDBODY_TYPEID_COLLISION
static STATIC_DLL_IMPEXT float renderGroupsPartitionHeight
static void setRenderGroupsPartitionDepth(float renderNodesPartitionDepth)
Set render groups partition size / depth.
static void enableScene(Engine *engine, Scene *scene, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f))
Enable disabled scene in engine.
static constexpr int32_t RIGIDBODY_TYPEID_DYNAMIC
static void setLights(Engine *engine, Scene *scene, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f))
Set lights from scene.
static STATIC_DLL_IMPEXT int renderGroupsLOD3ReduceBy
static STATIC_DLL_IMPEXT bool enableEarlyZRejection
static STATIC_DLL_IMPEXT int renderGroupsLOD2ReduceBy
static int getRenderGroupsLod3ReduceBy()
static void disableScene(Engine *engine, Scene *scene)
Disable scene in engine.
static int getRenderGroupsLod2ReduceBy()
static bool isEnableEarlyZRejection()
static Entity * createEmpty(const string &id, const Transformations &transformations)
Create engine entity.
static void setRenderGroupsPartitionHeight(float renderNodesPartitionHeight)
Set render groups partition size / height.
static STATIC_DLL_IMPEXT float renderGroupsPartitionDepth
static Entity * createParticleSystem(PrototypeParticleSystem *particleSystem, const string &id, bool enableDynamicShadows=true)
Create particle system.
static constexpr int32_t RIGIDBODY_TYPEID_TRIGGER
static void addSounds(Audio *audio, Prototype *prototype, const string &id, const int poolSize=1)
Add scene entity sounds into given audio instance associated with given id.
static float getRenderGroupsLod3MinDistance()
static void setRenderGroupsLod3MinDistance(float minDistance)
Set render groups LOD3 minumum distance.
static float getRenderGroupsLod2MinDistance()
static float getRenderGroupsPartitionWidth()
static void setRenderGroupsReduceBy(int reduceBy)
Set render groups reduce objects by a given factor.
static void resetEngine(Engine *engine, Scene *scene)
Reset engine regarding given scene.
static void setRenderGroupsLod3ReduceBy(int reduceBy)
Set render groups LOD3 reduce by factor.
static STATIC_DLL_IMPEXT float renderGroupsPartitionWidth
static STATIC_DLL_IMPEXT float renderGroupsLOD3MinDistance
static STATIC_DLL_IMPEXT float renderGroupsLOD2MinDistance
static void setRenderGroupsLodLevels(int lodLevels)
Set render groups LOD levels.
static constexpr int32_t RIGIDBODY_TYPEID_STATIC
Transformations which contain scale, rotations and translation.
Representation of a 3d model.
Definition: Model.h:32
Dynamic rigid/static rigid/collision body class.
Definition: Body.h:43
Dynamic physics world class.
Definition: World.h:38
Prototype definition.
Definition: Prototype.h:49
Scene entity definition.
Definition: SceneEntity.h:24
Scene definition.
Definition: Scene.h:41
3D vector 3 class
Definition: Vector3.h:22
Mutable string class.
Definition: MutableString.h:16
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11