TDME2 1.9.121
|
Scene engine/physics connector. More...
#include <tdme/engine/SceneConnector.h>
Static Public Member Functions | |
static float | getRenderGroupsPartitionWidth () |
static void | setRenderGroupsPartitionWidth (float renderNodesPartitionWidth) |
Set render groups partition size / width. More... | |
static float | getRenderGroupsPartitionHeight () |
static void | setRenderGroupsPartitionHeight (float renderNodesPartitionHeight) |
Set render groups partition size / height. More... | |
static float | getRenderGroupsPartitionDepth () |
static void | setRenderGroupsPartitionDepth (float renderNodesPartitionDepth) |
Set render groups partition size / depth. More... | |
static void | setRenderGroupsReduceBy (int reduceBy) |
Set render groups reduce objects by a given factor. More... | |
static int | getRenderGroupsReduceBy () |
static int | getRenderGroupsLodLevels () |
static void | setRenderGroupsLodLevels (int lodLevels) |
Set render groups LOD levels. More... | |
static float | getRenderGroupsLod2MinDistance () |
static void | setRenderGroupsLod2MinDistance (float minDistance) |
Set render groups LOD2 minumum distance. More... | |
static float | getRenderGroupsLod3MinDistance () |
static void | setRenderGroupsLod3MinDistance (float minDistance) |
Set render groups LOD3 minumum distance. More... | |
static int | getRenderGroupsLod2ReduceBy () |
static void | setRenderGroupsLod2ReduceBy (int reduceBy) |
Set render groups LOD2 reduce by factor. More... | |
static int | getRenderGroupsLod3ReduceBy () |
static void | setRenderGroupsLod3ReduceBy (int reduceBy) |
Set render groups LOD3 reduce by factor. More... | |
static bool | isEnableEarlyZRejection () |
static void | setEnableEarlyZRejection (bool enableEarlyZRejection) |
Enable/disable early z rejection, in scene loading case its used for render groups and terrain. More... | |
static void | setLights (Engine *engine, Scene *scene, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f)) |
Set lights from scene. More... | |
static Entity * | createParticleSystem (PrototypeParticleSystem *particleSystem, const string &id, bool enableDynamicShadows=true) |
Create particle system. More... | |
static Entity * | createEmpty (const string &id, const Transformations &transformations) |
Create engine entity. More... | |
static Entity * | createEntity (Prototype *prototype, const string &id, const Transformations &transformations, int instances=1, Entity *parentEntity=nullptr) |
Create engine entity. More... | |
static Entity * | createEntity (SceneEntity *sceneEntity, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f), int instances=1, Entity *parentEntity=nullptr) |
Create engine entity. More... | |
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. More... | |
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. More... | |
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) |
Create rigid body. More... | |
static void | addScene (World *world, Scene *scene, bool enable=true, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f), ProgressCallback *progressCallback=nullptr) |
Add scene to physics world. More... | |
static void | disableScene (Engine *engine, Scene *scene) |
Disable scene in engine. More... | |
static void | disableScene (World *world, Scene *scene) |
Disable scene in physics world. More... | |
static void | enableScene (Engine *engine, Scene *scene, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f)) |
Enable disabled scene in engine. More... | |
static void | enableScene (World *world, Scene *scene, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f)) |
Enable disabled scene in physics world. More... | |
static void | resetEngine (Engine *engine, Scene *scene) |
Reset engine regarding given scene. More... | |
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. More... | |
Static Public Attributes | |
static constexpr int32_t | RIGIDBODY_TYPEID_STATIC { 1 } |
static constexpr int32_t | RIGIDBODY_TYPEID_DYNAMIC { 2 } |
static constexpr int32_t | RIGIDBODY_TYPEID_COLLISION { 4 } |
static constexpr int32_t | RIGIDBODY_TYPEID_TRIGGER { 8 } |
static STATIC_DLL_IMPEXT float | renderGroupsPartitionWidth = 64.0f |
static STATIC_DLL_IMPEXT float | renderGroupsPartitionHeight = 64.0f |
static STATIC_DLL_IMPEXT float | renderGroupsPartitionDepth = 64.0f |
static STATIC_DLL_IMPEXT int | renderGroupsReduceBy = 1 |
static STATIC_DLL_IMPEXT int | renderGroupsLODLevels = 3 |
static STATIC_DLL_IMPEXT float | renderGroupsLOD2MinDistance = 25.0 |
static STATIC_DLL_IMPEXT float | renderGroupsLOD3MinDistance = 50.0 |
static STATIC_DLL_IMPEXT int | renderGroupsLOD2ReduceBy = 4 |
static STATIC_DLL_IMPEXT int | renderGroupsLOD3ReduceBy = 16 |
static STATIC_DLL_IMPEXT bool | enableEarlyZRejection = false |
Static Private Attributes | |
static STATIC_DLL_IMPEXT Model * | emptyModel = nullptr |
|
static |
Add scene to engine.
engine | engine |
scene | scene |
addEmpties | add empties |
addTrigger | add trigger |
addEnvironmentMapping | add environment mapping |
pickable | pickable |
enable | enable |
translation | translation |
progressCallback | progress callback |
Definition at line 504 of file SceneConnector.cpp.
|
static |
Add scene to physics world.
world | world |
scene | scene |
enable | enable |
translation | translation |
progressCallback | progress callback |
Definition at line 914 of file SceneConnector.cpp.
|
static |
Add scene entity sounds into given audio instance associated with given id.
audio | audio instance to load sounds into |
prototype | scene entity |
id | audio entity id |
poolSize | pool size, which is optional if you want to use a pool for each sound |
Definition at line 1262 of file SceneConnector.cpp.
|
static |
Create rigid body.
world | world |
prototype | prototype |
id | id |
transformations | transformations |
collisionTypeId | collision type id or 0 for default |
index | use a optional index or all bounding volumes |
overrideType | override physics type if required |
Definition at line 806 of file SceneConnector.cpp.
|
static |
Create rigid body.
world | world |
sceneEntity | scene entity |
translation | translation |
collisionTypeId | collision type id or 0 for default |
index | use a optional index or all bounding volumes |
overrideType | override physics type if required |
Definition at line 904 of file SceneConnector.cpp.
|
static |
Create engine entity.
id | id |
transformations | transformations |
Definition at line 306 of file SceneConnector.cpp.
|
static |
Create engine entity.
prototype | prototype |
id | id |
transformations | transformations |
instances | instances which applies only for skinned objects |
parentEntity | parent entity |
Definition at line 318 of file SceneConnector.cpp.
|
static |
Create engine entity.
sceneEntity | scene object |
translation | translation |
instances | instances which applies only for skinned objects |
parentEntity | parent entity |
Definition at line 494 of file SceneConnector.cpp.
|
static |
Create particle system.
particleSystem | prototype particle system |
id | id |
enableDynamicShadows | enable dynamic shadows |
Definition at line 205 of file SceneConnector.cpp.
Disable scene in engine.
engine | engine |
scene | scene |
Definition at line 1019 of file SceneConnector.cpp.
Disable scene in physics world.
world | world |
scene | scene |
Definition at line 1083 of file SceneConnector.cpp.
|
static |
Enable disabled scene in engine.
engine | engine |
scene | scene |
translation | translation |
Definition at line 1121 of file SceneConnector.cpp.
|
static |
Enable disabled scene in physics world.
world | world |
scene | scene |
translation | translation |
Definition at line 1191 of file SceneConnector.cpp.
|
inlinestatic |
Definition at line 136 of file SceneConnector.h.
|
inlinestatic |
Definition at line 166 of file SceneConnector.h.
|
inlinestatic |
Definition at line 151 of file SceneConnector.h.
|
inlinestatic |
Definition at line 181 of file SceneConnector.h.
|
inlinestatic |
Definition at line 121 of file SceneConnector.h.
|
inlinestatic |
Definition at line 91 of file SceneConnector.h.
|
inlinestatic |
Definition at line 76 of file SceneConnector.h.
|
inlinestatic |
Definition at line 61 of file SceneConnector.h.
|
inlinestatic |
Definition at line 114 of file SceneConnector.h.
|
inlinestatic |
Definition at line 196 of file SceneConnector.h.
Reset engine regarding given scene.
engine | engine |
scene | scene |
Definition at line 1237 of file SceneConnector.cpp.
|
inlinestatic |
Enable/disable early z rejection, in scene loading case its used for render groups and terrain.
enableEarlyZRejection | enable early z rejection |
Definition at line 204 of file SceneConnector.h.
|
static |
Set lights from scene.
engine | engine |
scene | scene |
translation | translation |
Definition at line 177 of file SceneConnector.cpp.
|
inlinestatic |
Set render groups LOD2 minumum distance.
minDistance | render groups LOD2 minumum distance |
Definition at line 144 of file SceneConnector.h.
|
inlinestatic |
Set render groups LOD2 reduce by factor.
reduceBy | render groups LOD2 reduce by factor |
Definition at line 174 of file SceneConnector.h.
|
inlinestatic |
Set render groups LOD3 minumum distance.
minDistance | render groups LOD3 minumum distance |
Definition at line 159 of file SceneConnector.h.
|
inlinestatic |
Set render groups LOD3 reduce by factor.
reduceBy | render groups LOD3 reduce by factor |
Definition at line 189 of file SceneConnector.h.
|
inlinestatic |
Set render groups LOD levels.
lodLevels | render groups LOD levels |
Definition at line 129 of file SceneConnector.h.
|
inlinestatic |
Set render groups partition size / depth.
renderNodesPartitionDepth | render groups partition size / depth |
Definition at line 99 of file SceneConnector.h.
|
inlinestatic |
Set render groups partition size / height.
renderNodesPartitionDepth | render groups partition size / height |
Definition at line 84 of file SceneConnector.h.
|
inlinestatic |
Set render groups partition size / width.
renderNodesPartitionDepth | render groups partition size / width |
Definition at line 69 of file SceneConnector.h.
|
inlinestatic |
Set render groups reduce objects by a given factor.
reduceBy | render groups objects reduce by factor |
Definition at line 107 of file SceneConnector.h.
|
staticprivate |
Definition at line 350 of file SceneConnector.h.
|
static |
Definition at line 54 of file SceneConnector.h.
|
static |
Definition at line 50 of file SceneConnector.h.
|
static |
Definition at line 52 of file SceneConnector.h.
|
static |
Definition at line 51 of file SceneConnector.h.
|
static |
Definition at line 53 of file SceneConnector.h.
|
static |
Definition at line 49 of file SceneConnector.h.
|
static |
Definition at line 47 of file SceneConnector.h.
|
static |
Definition at line 46 of file SceneConnector.h.
|
static |
Definition at line 45 of file SceneConnector.h.
|
static |
Definition at line 48 of file SceneConnector.h.
|
staticconstexpr |
Definition at line 42 of file SceneConnector.h.
|
staticconstexpr |
Definition at line 41 of file SceneConnector.h.
|
staticconstexpr |
Definition at line 40 of file SceneConnector.h.
|
staticconstexpr |
Definition at line 43 of file SceneConnector.h.