TDME2 1.9.121
|
#include <tdme/engine/Engine.h>
Classes | |
struct | DecomposedEntities |
class | EngineThread |
struct | EngineThreadQueueElement |
class | EngineThreadQueueElementPool |
struct | Shader |
Public Types | |
enum | AnimationProcessingTarget { NONE , CPU , CPU_NORENDERING , GPU } |
enum | ShaderType { SHADERTYPE_OBJECT3D , SHADERTYPE_POSTPROCESSING , SHADERTYPE_MAX } |
enum | EffectPass { EFFECTPASS_NONE , EFFECTPASS_LIGHTSCATTERING , EFFECTPASS_COUNT } |
Public Member Functions | |
~Engine () | |
Destructor. More... | |
float | getShadowMapLightEyeDistanceScale () |
void | setShadowMapLightEyeDistanceScale (float shadowMapLightEyeDistanceScale) |
Set shadow map light eye distance scale. More... | |
const ShaderParameter | getShaderParameter (const string &shaderId, const string ¶meterName) |
Returns shader parameter for given shader id and parameter name, if the value does not exist, the default will be returned. More... | |
void | setShaderParameter (const string &shaderId, const string ¶meterName, const ShaderParameter ¶meterValue) |
Set shader parameter for given shader id and parameter name. More... | |
const string | getGraphicsVendor () |
const string | getGraphicsRenderer () |
Renderer::RendererType | getGraphicsRendererType () |
bool | isInitialized () |
int32_t | getWidth () |
int32_t | getHeight () |
int32_t | getScaledWidth () |
int32_t | getScaledHeight () |
GUI * | getGUI () |
Timing * | getTiming () |
Camera * | getCamera () |
Partition * | getPartition () |
void | setPartition (Partition *partition) |
Set partition. More... | |
FrameBuffer * | getFrameBuffer () |
GeometryBuffer * | getGeometryBuffer () |
int32_t | getLightCount () |
Light * | getLightAt (int32_t idx) |
Returns light at idx (0 <= idx < 8) More... | |
const Color4 & | getSceneColor () const |
void | setSceneColor (const Color4 &sceneColor) |
Set scene color. More... | |
int32_t | getEntityCount () |
Entity * | getEntity (const string &id) |
Returns a entity by given id. More... | |
void | addEntity (Entity *entity) |
Adds an entity by id. More... | |
bool | removeEntity (const string &id) |
Removes an entity. More... | |
void | reset () |
Removes all entities and caches. More... | |
void | initialize () |
Initialize render engine. More... | |
void | reshape (int32_t width, int32_t height) |
Reshape. More... | |
void | scale (int32_t width, int32_t height) |
Scale which applies to main engine only. More... | |
void | unscale () |
Disable scaling, which applies to main engine only. More... | |
void | renderToScreen () |
Render scaled main engine to screen. More... | |
void | display () |
Renders the scene. More... | |
Vector3 | computeWorldCoordinateByMousePosition (int32_t mouseX, int32_t mouseY, float z) |
Compute world coordinate from mouse position and z value. More... | |
Vector3 | computeWorldCoordinateByMousePosition (int32_t mouseX, int32_t mouseY) |
Compute world coordinate from mouse position Note: this does not work with GLES2 as reading from depth buffer is not available. More... | |
Entity * | getEntityByMousePosition (int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter=nullptr, Node **object3DNode=nullptr, ParticleSystemEntity **particleSystemEntity=nullptr) |
Retrieves entity by mouse position. More... | |
Entity * | getEntityByMousePosition (int32_t mouseX, int32_t mouseY, Vector3 &contactPoint, EntityPickingFilter *filter=nullptr, Node **object3DNode=nullptr, ParticleSystemEntity **particleSystemEntity=nullptr) |
Retrieves entity by mouse position with contact point. More... | |
Entity * | doRayCasting (const Vector3 &startPoint, const Vector3 &endPoint, Vector3 &contactPoint, EntityPickingFilter *filter=nullptr) |
Does a ray casting of visible 3d object based entities. More... | |
Entity * | getEntityContactPointByMousePosition (int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter) |
Retrieves object by mouse position. More... | |
bool | computeScreenCoordinateByWorldCoordinate (const Vector3 &worldCoordinate, Vector2 &screenCoordinate, int width=-1, int height=-1) |
Convert screen coordinate by world coordinate. More... | |
void | dispose () |
Shutdown the engine. More... | |
bool | makeScreenshot (const string &pathName, const string &fileName, bool removeAlphaChannel=true) |
Creates a PNG file from current screen( This does not seem to work with GLES2 and offscreen engines. More... | |
bool | makeScreenshot (vector< uint8_t > &pngData) |
Creates a PNG file from current screen into a data vector This does not seem to work with GLES2 and offscreen engines. More... | |
void | resetPostProcessingPrograms () |
Clear post processing programs. More... | |
void | addPostProcessingProgram (const string &programId) |
Add post processing program. More... | |
Renderer::Renderer_Statistics | getRendererStatistics () |
void | dumpShaders () |
Print registered shaders and it default parameters to console. More... | |
void | enqueueAction (Action *action) |
Add action to action queue to be executed before next engine update. More... | |
Static Public Member Functions | |
static Engine * | getInstance () |
Returns engine instance. More... | |
static TextureManager * | getTextureManager () |
static VBOManager * | getVBOManager () |
static int | getThreadCount () |
static void | setThreadCount (int threadCount) |
Set engine thread count. More... | |
static bool | is4K () |
static void | set4K (bool have4K) |
Set if having 4k. More... | |
static float | getAnimationBlendingTime () |
static void | setAnimationBlendingTime (float animationBlendingTime) |
Set animation blending time. More... | |
static int32_t | getShadowMapWidth () |
static int32_t | getShadowMapHeight () |
static int32_t | getShadowMapRenderLookUps () |
static void | setShadowMapSize (int32_t width, int32_t height) |
Set shadow map size. More... | |
static void | setShadowMapRenderLookUps (int32_t shadowMapRenderLookUps) |
Set shadowmap look ups for each pixel when rendering. More... | |
static int32_t | getEnvironmentMappingWidth () |
static int32_t | getEnvironmentMappingHeight () |
static void | setEnvironmentMappingSize (int32_t width, int32_t height) |
Set environment mapping size. More... | |
static float | getTransformationsComputingReduction1Distance () |
static void | setTransformationsComputingReduction1Distance (float transformationsComputingReduction1Distance) |
Set distance of animated object including skinned objects from camera which animation computation will be computed only every second frame. More... | |
static float | getTransformationsComputingReduction2Distance () |
static void | setTransformationsComputingReduction2Distance (float transformationsComputingReduction2Distance) |
Set distance of animated object including skinned objects from camera which animation computation will be computed only every forth frame. More... | |
static uint8_t | getUniqueShaderId (const string &shaderId) |
static const vector< string > | getRegisteredShader (ShaderType type) |
Returns registered shaders for given type. More... | |
static void | registerShader (ShaderType type, const string &shaderId, const map< string, ShaderParameter > ¶meterDefaults={}) |
Register shader. More... | |
static const map< string, ShaderParameter > | getShaderParameterDefaults (const string &shaderId) |
Returns parameter defaults of shader with given id. More... | |
static const ShaderParameter | getDefaultShaderParameter (const string &shaderId, const string ¶meterName) |
Returns shader parameter default value for given shader id and parameter name. More... | |
static Engine * | createOffScreenInstance (int32_t width, int32_t height, bool enableShadowMapping, bool enableDepthBuffer, bool enableGeometryBuffer) |
Creates an offscreen rendering instance Note: More... | |
Static Public Attributes | |
static constexpr int | LIGHTS_MAX { 8 } |
static constexpr int | ENGINETHREADSQUEUE_RENDER_DISPATCH_COUNT { 200 } |
static constexpr int | ENGINETHREADSQUEUE_PRERENDER_DISPATCH_COUNT { 5 } |
static constexpr int | ENGINETHREADSQUEUE_COMPUTE_DISPATCH_COUNT { 5 } |
Static Protected Attributes | |
static STATIC_DLL_IMPEXT Engine * | currentEngine = nullptr |
Private Member Functions | |
ShadowMapping * | getShadowMapping () |
EntityRenderer * | getEntityRenderer () |
Engine () | |
Private constructor. More... | |
void | decomposeEntityType (Entity *entity, DecomposedEntities &decomposedEntities, bool decomposeAllEntities=false) |
Decompose entity type. More... | |
void | decomposeEntityTypes (const vector< Entity * > &entities, DecomposedEntities &decomposedEntities, bool decomposeAllEntities=false) |
Decompose entity types. More... | |
void | preRenderFunction (vector< Object3D * > &objects, int threadIdx) |
Update vertex buffers and such before rendering. More... | |
void | computeTransformationsFunction (vector< Object3D * > &objects, int threadIdx) |
Computes visibility and transformations. More... | |
void | computeTransformations (Camera *camera, DecomposedEntities &decomposedEntites, bool autoEmit, bool computeTransformations) |
Computes visibility and transformations. More... | |
void | initGUIMode () |
Set up GUI mode rendering. More... | |
void | doneGUIMode () |
Set up GUI mode rendering. More... | |
void | resetLists (DecomposedEntities &decomposedEntites) |
Reset lists. More... | |
void | initRendering () |
Initiates the rendering process updates timing, updates camera. More... | |
Entity * | getEntityByMousePosition (DecomposedEntities &decomposedEntities, bool forcePicking, int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter=nullptr, Node **object3DNode=nullptr, ParticleSystemEntity **particleSystemEntity=nullptr) |
Retrieves entity by mouse position. More... | |
Entity * | doRayCasting (DecomposedEntities &decomposedEntities, bool forcePicking, const Vector3 &startPoint, const Vector3 &endPoint, Vector3 &contactPoint, EntityPickingFilter *filter=nullptr) |
Does a ray casting of visible 3d object based entities. More... | |
void | deregisterEntity (Entity *entity) |
Removes a entity from internal lists, those entities can also be sub entities from entity hierarchy or particle system groups and such. More... | |
void | registerEntity (Entity *entity) |
Adds a entity to internal lists, those entities can also be sub entities from entity hierarchy or particle system groups and such. More... | |
void | doPostProcessing (PostProcessingProgram::RenderPass renderPass, const array< FrameBuffer *, 2 > postProcessingFrameBuffers, FrameBuffer *targetFrameBuffer) |
Do post processing. More... | |
void | render (FrameBuffer *renderFrameBuffer, GeometryBuffer *renderGeometryBuffer, DecomposedEntities &visibleDecomposedEntities, int32_t effectPass, int32_t renderPassMask, const string &shaderPrefix, bool useEZR, bool applyShadowMapping, bool applyPostProcessing, bool doRenderLightSource, bool doRenderParticleSystems, int32_t renderTypes) |
Do a render/effect pass. More... | |
bool | renderLightSources (int width, int height) |
Render light sources. More... | |
void | removeFromDecomposedEntities (DecomposedEntities &decomposedEntities, Entity *entity) |
Remove entity from decomposed entities. More... | |
void | removeEntityFromLists (Entity *entity) |
Remove entity. More... | |
Static Private Member Functions | |
static MeshManager * | getMeshManager () |
static ShadowMapCreationShader * | getShadowMapCreationShader () |
static ShadowMapRenderShader * | getShadowMapRenderShader () |
static LightingShader * | getLightingShader () |
static ParticlesShader * | getParticlesShader () |
static LinesShader * | getLinesShader () |
static SkinningShader * | getSkinningShader () |
static GUIShader * | getGUIShader () |
static FrameBufferRenderShader * | getFrameBufferRenderShader () |
static DeferredLightingRenderShader * | getDeferredLightingRenderShader () |
static PostProcessingShader * | getPostProcessingShader () |
enum EffectPass |
enum ShaderType |
|
private |
Private constructor.
Definition at line 252 of file Engine.cpp.
~Engine | ( | ) |
Destructor.
Definition at line 276 of file Engine.cpp.
void addEntity | ( | Entity * | entity | ) |
void addPostProcessingProgram | ( | const string & | programId | ) |
Add post processing program.
programId | program id |
Definition at line 2042 of file Engine.cpp.
bool computeScreenCoordinateByWorldCoordinate | ( | const Vector3 & | worldCoordinate, |
Vector2 & | screenCoordinate, | ||
int | width = -1 , |
||
int | height = -1 |
||
) |
Convert screen coordinate by world coordinate.
worldCoordinate | world woordinate |
screenCoordinate | screen coordinate |
width | optional render target width |
height | optional render target height |
Definition at line 1894 of file Engine.cpp.
|
private |
Computes visibility and transformations.
camera | camera |
decomposedEntities | decomposed entities |
autoEmit | auto emit particle systems |
computeTransformations | compute transformations |
Definition at line 1142 of file Engine.cpp.
|
private |
Computes visibility and transformations.
objects | objects |
threadIdx | thread index |
Definition at line 1006 of file Engine.cpp.
Vector3 computeWorldCoordinateByMousePosition | ( | int32_t | mouseX, |
int32_t | mouseY | ||
) |
Compute world coordinate from mouse position Note: this does not work with GLES2 as reading from depth buffer is not available.
mouseX | mouse x |
mouseY | mouse y |
Definition at line 1492 of file Engine.cpp.
Vector3 computeWorldCoordinateByMousePosition | ( | int32_t | mouseX, |
int32_t | mouseY, | ||
float | z | ||
) |
Compute world coordinate from mouse position and z value.
mouseX | mouse x |
mouseY | mouse y |
z | z |
Definition at line 1469 of file Engine.cpp.
|
static |
Creates an offscreen rendering instance Note:
width | width |
height | height |
enableShadowMapping | enable shadow mapping |
enableDepthBuffer | enable depth buffer |
enableDepthBuffer | enable geometry buffer |
Definition at line 310 of file Engine.cpp.
|
inlineprivate |
Decompose entity type.
entity | entity to decompose |
decomposedEntities | decomposed entities |
decomposeAllEntities | decompose all entities, also those who are not rendered right now |
Definition at line 1010 of file Engine.cpp.
|
inlineprivate |
Decompose entity types.
entities | given entities to decompose |
decomposedEntities | decomposed entities |
decomposeAllEntities | decompose all entities, also those who are not rendered right now |
Definition at line 1136 of file Engine.cpp.
|
private |
Removes a entity from internal lists, those entities can also be sub entities from entity hierarchy or particle system groups and such.
entity | entity |
Definition at line 392 of file Engine.cpp.
void display | ( | ) |
Renders the scene.
Definition at line 1269 of file Engine.cpp.
void dispose | ( | ) |
Shutdown the engine.
Definition at line 1907 of file Engine.cpp.
|
private |
Set up GUI mode rendering.
Definition at line 1962 of file Engine.cpp.
|
private |
Do post processing.
renderPass | render pass |
postProcessingFrameBuffers | frame buffers to swap, input needs to live in postProcessingFrameBuffers[0] |
targetFrameBuffer | target frame buffer |
Definition at line 2047 of file Engine.cpp.
|
inline |
|
private |
Does a ray casting of visible 3d object based entities.
decomposedEntities | decomposed entities |
forcePicking | override picking to be always enabled |
startPoint | start point |
endPoint | end point |
contactPoint | world coordinate of contact point |
filter | filter |
Definition at line 1766 of file Engine.cpp.
void dumpShaders | ( | ) |
Print registered shaders and it default parameters to console.
Definition at line 2437 of file Engine.cpp.
|
inline |
|
inlinestatic |
|
inlinestatic |
|
inlinestaticprivate |
|
inline |
|
private |
Retrieves entity by mouse position.
decomposedEntities | decomposed entities |
forcePicking | override picking to be always enabled |
mouseX | mouse x |
mouseY | mouse y |
filter | filter |
object3DNode | pointer to store node of Object3D to if appliable |
particleSystemEntity | pointer to store sub particle system entity if having a particle system group |
Definition at line 1513 of file Engine.cpp.
|
inline |
Retrieves entity by mouse position.
mouseX | mouse x |
mouseY | mouse y |
filter | filter |
object3DNode | pointer to store node of Object3D to if appliable |
particleSystemEntity | pointer to store sub particle system entity if having a particle system group |
Entity * getEntityByMousePosition | ( | int32_t | mouseX, |
int32_t | mouseY, | ||
Vector3 & | contactPoint, | ||
EntityPickingFilter * | filter = nullptr , |
||
Node ** | object3DNode = nullptr , |
||
ParticleSystemEntity ** | particleSystemEntity = nullptr |
||
) |
Retrieves entity by mouse position with contact point.
mouseX | mouse x |
mouseY | mouse y |
contactPoint | world coordinate of contact point |
filter | filter |
object3DNode | pointer to store node of Object3D to if appliable |
particleSystemEntity | pointer to store sub particle system entity if having a particle system group |
Definition at line 1757 of file Engine.cpp.
Entity * getEntityContactPointByMousePosition | ( | int32_t | mouseX, |
int32_t | mouseY, | ||
EntityPickingFilter * | filter | ||
) |
Retrieves object by mouse position.
mouseX | mouse x |
mouseY | mouse y |
filter | filter |
|
inlineprivate |
|
inlinestatic |
|
inlinestatic |
|
inline |
|
inlinestaticprivate |
|
inline |
const string getGraphicsRenderer | ( | ) |
Definition at line 354 of file Engine.cpp.
|
inline |
const string getGraphicsVendor | ( | ) |
Definition at line 350 of file Engine.cpp.
|
inlinestaticprivate |
|
inlinestatic |
|
inline |
|
inlinestaticprivate |
|
inlinestaticprivate |
|
inlinestaticprivate |
|
inlinestaticprivate |
|
inlinestaticprivate |
|
static |
Returns registered shaders for given type.
type | type |
Definition at line 2111 of file Engine.cpp.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
static |
Returns parameter defaults of shader with given id.
shaderId | shader id |
Definition at line 2134 of file Engine.cpp.
|
inlinestaticprivate |
|
inlinestatic |
|
inline |
|
inlineprivate |
|
inlinestatic |
|
inlinestaticprivate |
|
inlinestatic |
|
inlinestaticprivate |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
private |
Set up GUI mode rendering.
Definition at line 1950 of file Engine.cpp.
void initialize | ( | ) |
Initialize render engine.
Definition at line 668 of file Engine.cpp.
|
private |
Initiates the rendering process updates timing, updates camera.
Definition at line 990 of file Engine.cpp.
|
inline |
bool makeScreenshot | ( | const string & | pathName, |
const string & | fileName, | ||
bool | removeAlphaChannel = true |
||
) |
Creates a PNG file from current screen( This does not seem to work with GLES2 and offscreen engines.
pathName | path name |
fileName | file name |
removeAlphaChannel | remove alpha channel |
Definition at line 1971 of file Engine.cpp.
bool makeScreenshot | ( | vector< uint8_t > & | pngData | ) |
Creates a PNG file from current screen into a data vector This does not seem to work with GLES2 and offscreen engines.
pngData | png data |
Definition at line 2004 of file Engine.cpp.
|
private |
Update vertex buffers and such before rendering.
objects | objects |
threadIdx | thread index |
Definition at line 1002 of file Engine.cpp.
|
private |
Adds a entity to internal lists, those entities can also be sub entities from entity hierarchy or particle system groups and such.
entity | entity |
Definition at line 406 of file Engine.cpp.
|
static |
Register shader.
type | shader type |
shaderId | shader id |
parameterTypes | parameter types |
parameterDefault | parameter defaults |
Definition at line 2122 of file Engine.cpp.
bool removeEntity | ( | const string & | id | ) |
Removes an entity.
id | id |
Definition at line 451 of file Engine.cpp.
|
private |
|
inlineprivate |
Remove entity from decomposed entities.
decomposedEntities | decomposed entities |
entity | entity |
Definition at line 483 of file Engine.cpp.
|
private |
Do a render/effect pass.
renderFrameBuffer | render frame buffer |
renderGeometryBuffer | render geometry buffer |
visibleDecomposedEntities | visible decomposed entities |
effectPass | effect pass |
renderPassMask | render pass mask |
shaderPrefix | shader prefix |
useEZR | if to use early Z rejection |
applyShadowMapping | if to apply shadow mapping |
applyPostProcessing | if to apply post processing |
doRenderLightSource | do render light source |
doRenderParticleSystems | if to render particle systems |
renderTypes | render types |
Definition at line 2143 of file Engine.cpp.
|
private |
Render light sources.
width | render target width |
height | render target height |
Definition at line 2417 of file Engine.cpp.
void renderToScreen | ( | ) |
Render scaled main engine to screen.
Definition at line 966 of file Engine.cpp.
void reset | ( | ) |
Removes all entities and caches.
Definition at line 652 of file Engine.cpp.
|
private |
Reset lists.
decomposedEntities | decomposed entities |
Definition at line 970 of file Engine.cpp.
void resetPostProcessingPrograms | ( | ) |
Clear post processing programs.
Definition at line 2038 of file Engine.cpp.
void reshape | ( | int32_t | width, |
int32_t | height | ||
) |
void scale | ( | int32_t | width, |
int32_t | height | ||
) |
Scale which applies to main engine only.
width | width |
height | height |
Definition at line 943 of file Engine.cpp.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
void setPartition | ( | Partition * | partition | ) |
|
inline |
|
inline |
|
inline |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
void unscale | ( | ) |
Disable scaling, which applies to main engine only.
Definition at line 957 of file Engine.cpp.
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
staticprivate |
|
private |
|
staticprivate |
|
private |
|
private |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticconstexpr |
|
staticconstexpr |
|
staticconstexpr |
|
private |
|
private |
|
staticprivate |
|
private |
|
staticprivate |
|
staticprivate |
|
private |
|
staticprivate |
|
staticprivate |
|
private |
|
staticprivate |
|
staticprivate |
|
private |
|
private |
|
staticprivate |
|
private |
|
private |
|
staticprivate |
|
private |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
private |