TDME2 1.9.121
Engine.h
Go to the documentation of this file.
1#pragma once
2
3#include <algorithm>
4#include <array>
5#include <map>
6#include <string>
7#include <unordered_map>
8#include <unordered_set>
9#include <vector>
10
11#include <tdme/tdme.h>
33#include <tdme/engine/Light.h>
36#include <tdme/gui/fwd-tdme.h>
39#include <tdme/math/fwd-tdme.h>
41#include <tdme/math/Matrix4x4.h>
46#include <tdme/utilities/Pool.h>
47
48using std::array;
49using std::map;
50using std::remove;
51using std::string;
52using std::to_string;
53using std::unordered_map;
54using std::unordered_set;
55using std::vector;
56
105using tdme::gui::GUI;
115
116/**
117 * Engine main class
118 * @author Andreas Drewke
119 * @version $Id$
120 */
122{
127 friend class EntityHierarchy;
128 friend class EnvironmentMapping;
129 friend class FogParticleSystem;
130 friend class FrameBuffer;
131 friend class GeometryBuffer;
132 friend class ImposterObject3D;
133 friend class LinesObject3D;
134 friend class LODObject3D;
136 friend class Object3D;
163 friend class tdme::gui::GUI;
168
169public:
173 static constexpr int LIGHTS_MAX { 8 };
174 // TODO: make sure one can set up this parameter also
175 static constexpr int ENGINETHREADSQUEUE_RENDER_DISPATCH_COUNT { 200 };
178
179protected:
181
182private:
185
190
192
216
217 struct Shader {
219 string id;
220 map<string, ShaderParameter> parameterDefaults;
221 };
222
223 STATIC_DLL_IMPEXT static map<string, Shader> shaders;
224
227 vector<Object3D*> objects;
228 vector<Object3D*> objectsForwardShading;
229 vector<Object3D*> objectsPostPostProcessing;
230 vector<Object3D*> objectsNoDepthTest;
231 vector<LODObject3D*> lodObjects;
232 vector<LODObject3DImposter*> lodObjectsImposter;
233 vector<ObjectParticleSystem*> opses;
234 vector<Entity*> ppses;
235 vector<ParticleSystemGroup*> psgs;
236 vector<LinesObject3D*> linesObjects;
237 vector<Object3DRenderGroup*> objectRenderGroups;
238 vector<EntityHierarchy*> entityHierarchies;
239 vector<EnvironmentMapping*> environmentMappingEntities;
240 vector<Object3D*> ezrObjects;
241 vector<Object3D*> needsPreRenderEntities;
243 };
244
245 STATIC_DLL_IMPEXT static unordered_map<string, uint8_t> uniqueShaderIds;
246
247 int32_t width { -1 };
248 int32_t height { -1 };
249 int32_t scaledWidth { -1 };
250 int32_t scaledHeight { -1 };
251 GUI* gui { nullptr };
252 Timing* timing { nullptr };
253 Camera* camera { nullptr };
254
255 Partition* partition { nullptr };
256
257 array<Light, LIGHTS_MAX> lights;
268
269 unordered_map<string, Entity*> entitiesById;
270
271 unordered_set<Entity*> autoEmitParticleSystemEntities;
272 unordered_set<Entity*> noFrustumCullingEntities;
273 unordered_set<Entity*> needsPreRenderEntities;
275
277
279
284
286
288
290
291 map<string, map<string, ShaderParameter>> shaderParameters;
292
293 vector<Action*> actions;
294
297
299
300 Engine* engine { nullptr };
301
302 struct {
305
306 struct {
308 uint32_t renderTypes;
311
312 vector<Object3D*> objects;
313 };
314
315 class EngineThread: public Thread {
316 friend class Engine;
318 private:
319 int idx;
322 unordered_map<uint8_t, unordered_map<Model*, vector<Object3D*>>> objectsByShadersAndModels;
323 volatile int elementsProcessed { 0 };
324
325 private:
326 /**
327 * Constructor
328 * @param idx thread index
329 * @param queue queue
330 */
332
333 /**
334 * Run
335 */
336 virtual void run();
337
338 /**
339 * @return transparent render faces pool
340 */
343 }
344
345 /**
346 * @return processed elements
347 */
348 volatile inline int getProcessedElements() {
349 return elementsProcessed;
350 }
351
352 /**
353 * Reset processed element count
354 */
357 }
358
359 };
360
361 class EngineThreadQueueElementPool: public Pool<EngineThreadQueueElement*> {
362 public:
363 /**
364 * Public constructor
365 */
367 }
368
369 protected:
370 /**
371 * Instantiate a transparent render face
372 */
374 return new EngineThreadQueueElement();
375 }
376
377 };
378
379 STATIC_DLL_IMPEXT static vector<EngineThread*> engineThreads;
382
383 /**
384 * @return mesh manager
385 */
386 inline static MeshManager* getMeshManager() {
387 return meshManager;
388 }
389
390 /**
391 * @return shadow mapping or nullptr if disabled
392 */
394 return shadowMapping;
395 }
396
397 /**
398 * @return shadow mapping shader
399 */
402 }
403
404 /**
405 * @return shadow mapping shader
406 */
409 }
410
411 /**
412 * @return lighting shader
413 */
415 return lightingShader;
416 }
417
418 /**
419 * @return particles shader
420 */
422 return particlesShader;
423 }
424
425 /**
426 * @return lines shader
427 */
428 inline static LinesShader* getLinesShader() {
429 return linesShader;
430 }
431
432 /**
433 * @return skinning shader
434 */
436 return skinningShader;
437 }
438
439 /**
440 * @return GUI shader
441 */
442 inline static GUIShader* getGUIShader() {
443 return guiShader;
444 }
445
446 /**
447 * @return frame buffer render shader
448 */
451 }
452
453 /**
454 * @return deferred lighting render shader
455 */
458 }
459
460 /**
461 * @return post processing shader
462 */
465 }
466
467 /**
468 * @return object 3d renderer
469 */
471 return entityRenderer;
472 }
473
474 /**
475 * Private constructor
476 */
477 Engine();
478
479 /**
480 * Decompose entity type
481 * @param entity entity to decompose
482 * @param decomposedEntities decomposed entities
483 * @param decomposeAllEntities decompose all entities, also those who are not rendered right now
484 */
485 void decomposeEntityType(Entity* entity, DecomposedEntities& decomposedEntities, bool decomposeAllEntities = false);
486
487 /**
488 * Decompose entity types
489 * @param entities given entities to decompose
490 * @param decomposedEntities decomposed entities
491 * @param decomposeAllEntities decompose all entities, also those who are not rendered right now
492 */
494 const vector<Entity*>& entities,
495 DecomposedEntities& decomposedEntities,
496 bool decomposeAllEntities = false
497 );
498
499 /**
500 * Update vertex buffers and such before rendering
501 * @param objects objects
502 * @param threadIdx thread index
503 */
504 void preRenderFunction(vector<Object3D*>& objects, int threadIdx);
505
506 /**
507 * Computes visibility and transformations
508 * @param objects objects
509 * @param threadIdx thread index
510 */
511 void computeTransformationsFunction(vector<Object3D*>& objects, int threadIdx);
512
513 /**
514 * Computes visibility and transformations
515 * @param camera camera
516 * @param decomposedEntities decomposed entities
517 * @param autoEmit auto emit particle systems
518 * @param computeTransformations compute transformations
519 */
520 void computeTransformations(Camera* camera, DecomposedEntities& decomposedEntites, bool autoEmit, bool computeTransformations);
521
522 /**
523 * Set up GUI mode rendering
524 */
525 void initGUIMode();
526
527 /**
528 * Set up GUI mode rendering
529 */
530 void doneGUIMode();
531
532 /**
533 * Reset lists
534 * @param decomposedEntities decomposed entities
535 */
536 void resetLists(DecomposedEntities& decomposedEntites);
537
538 /**
539 * Initiates the rendering process
540 * updates timing, updates camera
541 */
542 void initRendering();
543
544public:
545 /**
546 * Destructor
547 */
548 ~Engine();
549
550 /**
551 * Returns engine instance
552 * @return
553 */
554 inline static Engine* getInstance() {
555 if (instance == nullptr) {
556 instance = new Engine();
557 }
558 return instance;
559 }
560
561 /**
562 * @return texture manager
563 */
566 }
567
568
569 /**
570 * @return vertex buffer object manager
571 */
572 inline static VBOManager* getVBOManager() {
573 return vboManager;
574 }
575
576 /**
577 * @return engine thread count
578 */
579 inline static int getThreadCount() {
580 return Engine::threadCount;
581 }
582
583 /**
584 * Set engine thread count
585 * @param threadCount engine thread count
586 */
587 inline static void setThreadCount(int threadCount) {
589 }
590
591 /**
592 * @return if having 4k
593 */
594 inline static bool is4K() {
595 return Engine::have4K;
596 }
597
598 /**
599 * Set if having 4k
600 * @param have4K have 4k
601 */
602 inline static void set4K(bool have4K) {
604 }
605
606 /**
607 * @return animation blending time
608 */
609 inline static float getAnimationBlendingTime() {
611 }
612
613 /**
614 * Set animation blending time
615 * @param animationBlendingTime animation blending time
616 */
619 }
620
621 /**
622 * @return shadow map light eye distance scale
623 */
626 }
627
628 /**
629 * Set shadow map light eye distance scale
630 * @param shadowMapLightEyeDistanceScale shadow map light eye distance scale
631 */
633 this->shadowMapLightEyeDistanceScale = shadowMapLightEyeDistanceScale;
634 }
635
636 /**
637 * @return shadow map width
638 */
639 inline static int32_t getShadowMapWidth() {
641 }
642
643 /**
644 * @return shadow map height
645 */
646 inline static int32_t getShadowMapHeight() {
648 }
649
650 /**
651 * @return shadow map render look ups
652 */
653 inline static int32_t getShadowMapRenderLookUps() {
655 }
656
657 /**
658 * Set shadow map size
659 * @param width width
660 * @param height height
661 */
662 inline static void setShadowMapSize(int32_t width, int32_t height) {
665 }
666
667 /**
668 * Set shadowmap look ups for each pixel when rendering
669 * @param shadow map render look ups
670 */
673 }
674
675 /**
676 * @return environment mapping width
677 */
678 inline static int32_t getEnvironmentMappingWidth() {
680 }
681
682 /**
683 * @return environment mapping height
684 */
685 inline static int32_t getEnvironmentMappingHeight() {
687 }
688
689 /**
690 * Set environment mapping size
691 * @param width width
692 * @param height height
693 */
694 inline static void setEnvironmentMappingSize(int32_t width, int32_t height) {
697 }
698
699 /**
700 * @return distance of animated object including skinned objects from which animation computation will be computed only every second frame
701 */
704 }
705
706 /**
707 * Set distance of animated object including skinned objects from camera which animation computation will be computed only every second frame
708 * @param skinningComputingReduction1Distance distance
709 */
712 }
713
714 /**
715 * @return distance of animated object including skinned objects from which animation computation will be computed only every forth frame
716 */
719 }
720
721 /**
722 * Set distance of animated object including skinned objects from camera which animation computation will be computed only every forth frame
723 * @param skinningComputingReduction2Distance distance
724 */
727 }
728
729 /**
730 * @return unique shader id
731 */
732 static uint8_t getUniqueShaderId(const string& shaderId) {
733 auto uniqueShaderIdIt = uniqueShaderIds.find(shaderId);
734 if (uniqueShaderIdIt == uniqueShaderIds.end()) {
735 auto uniqueShaderId = uniqueShaderIds.size() + 1;
736 uniqueShaderIds[shaderId] = uniqueShaderId;
737 return uniqueShaderId;
738 }
739 return uniqueShaderIdIt->second;
740 }
741
742 /**
743 * Returns registered shaders for given type
744 * @param type type
745 */
746 static const vector<string> getRegisteredShader(ShaderType type);
747
748 /**
749 * Register shader
750 * @param type shader type
751 * @param shaderId shader id
752 * @param parameterTypes parameter types
753 * @param parameterDefault parameter defaults
754 */
755 static void registerShader(ShaderType type, const string& shaderId, const map<string, ShaderParameter>& parameterDefaults = {});
756
757 /**
758 * Returns parameter defaults of shader with given id
759 * @param shaderId shader id
760 * @return shader parameter defaults
761 */
762 static const map<string, ShaderParameter> getShaderParameterDefaults(const string& shaderId);
763
764 /**
765 * Returns shader parameter default value for given shader id and parameter name
766 * @param shaderId shader id
767 * @param parameterName parameter name
768 * @return shader parameter
769 */
770 static inline const ShaderParameter getDefaultShaderParameter(const string& shaderId, const string& parameterName) {
771 auto shaderIt = shaders.find(shaderId);
772 if (shaderIt == shaders.end()) {
773 Console::println("Engine::getDefaultShaderParameter(): no shader registered with id: " + shaderId);
774 return ShaderParameter();
775 }
776 auto& shader = shaderIt->second;
777 auto shaderParameterIt = shader.parameterDefaults.find(parameterName);
778 if (shaderParameterIt == shader.parameterDefaults.end()) {
779 Console::println("Engine::getDefaultShaderParameter(): no default for shader registered with id: " + shaderId + ", and parameter name: " + parameterName);
780 return ShaderParameter();
781 }
782 auto& shaderParameter = shaderParameterIt->second;
783 return shaderParameter;
784 }
785
786 /**
787 * Returns shader parameter for given shader id and parameter name, if the value does not exist, the default will be returned
788 * @param shaderId shader id
789 * @param parameterName parameter name
790 * @return shader parameter
791 */
792 inline const ShaderParameter getShaderParameter(const string& shaderId, const string& parameterName) {
793 auto shaderParameterIt = shaderParameters.find(shaderId);
794 if (shaderParameterIt == shaderParameters.end()) {
795 return getDefaultShaderParameter(shaderId, parameterName);
796 }
797 auto& shaderParameterMap = shaderParameterIt->second;
798 auto shaderParameterParameterIt = shaderParameterMap.find(parameterName);
799 if (shaderParameterParameterIt == shaderParameterMap.end()) {
800 return getDefaultShaderParameter(shaderId, parameterName);
801 }
802 auto& shaderParameter = shaderParameterParameterIt->second;
803 return shaderParameter;
804 }
805
806 /**
807 * Set shader parameter for given shader id and parameter name
808 * @param shaderId shader id
809 * @param parameterName parameter name
810 * @param paraemterValue parameter value
811 */
812 inline void setShaderParameter(const string& shaderId, const string& parameterName, const ShaderParameter& parameterValue) {
813 auto currentShaderParameter = getShaderParameter(shaderId, parameterName);
814 if (currentShaderParameter.getType() == ShaderParameter::TYPE_NONE) {
815 Console::println("Engine::setShaderParameter(): no parameter for shader registered with id: " + shaderId + ", and parameter name: " + parameterName);
816 return;
817 }
818 if (currentShaderParameter.getType() != parameterValue.getType()) {
819 Console::println("Engine::setShaderParameter(): parameter type mismatch for shader registered with id: " + shaderId + ", and parameter name: " + parameterName);
820 }
821 shaderParameters[shaderId][parameterName] = parameterValue;
822 }
823
824 /**
825 * Creates an offscreen rendering instance
826 * Note:
827 * - the root engine must have been initialized before
828 * - the created offscreen engine must not be initialized
829 * @param width width
830 * @param height height
831 * @param enableShadowMapping enable shadow mapping
832 * @param enableDepthBuffer enable depth buffer
833 * @param enableDepthBuffer enable geometry buffer
834 * @return off screen engine
835 */
836 static Engine* createOffScreenInstance(int32_t width, int32_t height, bool enableShadowMapping, bool enableDepthBuffer, bool enableGeometryBuffer);
837
838 /**
839 * @return graphics vendor
840 */
841 const string getGraphicsVendor();
842
843 /**
844 * @return graphics renderer
845 */
846 const string getGraphicsRenderer();
847
848 /**
849 * @return graphics renderer type
850 */
851 inline Renderer::RendererType getGraphicsRendererType() {
852 return renderer->getRendererType();
853 }
854
855 /**
856 * @return if initialized and ready to be used
857 */
858 inline bool isInitialized() {
859 return initialized;
860 }
861
862 /**
863 * @return width
864 */
865 inline int32_t getWidth() {
866 return width;
867 }
868
869 /**
870 * @return height
871 */
872 inline int32_t getHeight() {
873 return height;
874 }
875
876 /**
877 * @return scaled width or -1 if not in use
878 */
879 inline int32_t getScaledWidth() {
880 return scaledWidth;
881 }
882
883 /**
884 * @return scaled height -1 if not in use
885 */
886 inline int32_t getScaledHeight() {
887 return scaledHeight;
888 }
889
890 /**
891 * @return GUI
892 */
893 inline GUI* getGUI() {
894 return gui;
895 }
896
897 /**
898 * @return Timing
899 */
900 inline Timing* getTiming() {
901 return timing;
902 }
903
904 /**
905 * @return Camera
906 */
907 inline Camera* getCamera() {
908 return camera;
909 }
910
911 /**
912 * @return partition
913 */
915 return partition;
916 }
917
918 /**
919 * Set partition
920 * @param partition partition
921 */
923
924 /**
925 * @return frame buffer or nullptr
926 */
928 return frameBuffer;
929 }
930
931 /**
932 * @return geometry buffer or nullptr
933 */
935 return geometryBuffer;
936 }
937
938 /**
939 * @return count of lights
940 */
941 inline int32_t getLightCount() {
942 return lights.size();
943 }
944
945 /**
946 * Returns light at idx (0 <= idx < 8)
947 * @param idx idx
948 * @return Light
949 */
950 inline Light* getLightAt(int32_t idx) {
951 return &lights[idx];
952 }
953
954 /**
955 * @return scene / background color
956 */
957 inline const Color4& getSceneColor() const {
958 return sceneColor;
959 }
960
961 /**
962 * Set scene color
963 * @param sceneColor scene color
964 */
965 inline void setSceneColor(const Color4& sceneColor) {
966 this->sceneColor = sceneColor;
967 }
968
969 /**
970 * @return entity count
971 */
972 inline int32_t getEntityCount() {
973 return entitiesById.size();
974 }
975
976 /**
977 * Returns a entity by given id
978 * @param id id
979 * @return entity or nullptr
980 */
981 inline Entity* getEntity(const string& id) {
982 auto entityByIdIt = entitiesById.find(id);
983 if (entityByIdIt != entitiesById.end()) {
984 return entityByIdIt->second;
985 }
986 return nullptr;
987 }
988
989 /**
990 * Adds an entity by id
991 * @param entity object
992 */
993 void addEntity(Entity* entity);
994
995 /**
996 * Removes an entity
997 * @param id id
998 * @return if entity was found and removed
999 */
1000 bool removeEntity(const string& id);
1001
1002 /**
1003 * Removes all entities and caches
1004 */
1005 void reset();
1006
1007 /**
1008 * Initialize render engine
1009 */
1010 void initialize();
1011
1012 /**
1013 * Reshape
1014 * @param width width
1015 * @param height height
1016 */
1017 void reshape(int32_t width, int32_t height);
1018
1019 /**
1020 * Scale which applies to main engine only
1021 * @param width width
1022 * @param height height
1023 */
1024 void scale(int32_t width, int32_t height);
1025
1026 /**
1027 * Disable scaling, which applies to main engine only
1028 */
1029 void unscale();
1030
1031 /**
1032 * Render scaled main engine to screen
1033 */
1034 void renderToScreen();
1035
1036 /**
1037 * Renders the scene
1038 */
1039 void display();
1040
1041 /**
1042 * Compute world coordinate from mouse position and z value
1043 * @param mouseX mouse x
1044 * @param mouseY mouse y
1045 * @param z z
1046 * @return world coordinate
1047 */
1048 Vector3 computeWorldCoordinateByMousePosition(int32_t mouseX, int32_t mouseY, float z);
1049
1050 /**
1051 * Compute world coordinate from mouse position
1052 * Note: this does not work with GLES2 as reading from depth buffer is not available
1053 * @param mouseX mouse x
1054 * @param mouseY mouse y
1055 * @return coordinate
1056 */
1057 Vector3 computeWorldCoordinateByMousePosition(int32_t mouseX, int32_t mouseY);
1058
1059 /**
1060 * Retrieves entity by mouse position
1061 * @param mouseX mouse x
1062 * @param mouseY mouse y
1063 * @param filter filter
1064 * @param object3DNode pointer to store node of Object3D to if appliable
1065 * @param particleSystemEntity pointer to store sub particle system entity if having a particle system group
1066 * @return entity or nullptr
1067 */
1068 inline Entity* getEntityByMousePosition(int32_t mouseX, int32_t mouseY, EntityPickingFilter* filter = nullptr, Node** object3DNode = nullptr, ParticleSystemEntity** particleSystemEntity = nullptr) {
1069 return
1072 false,
1073 mouseX,
1074 mouseY,
1075 filter,
1076 object3DNode,
1077 particleSystemEntity
1078 );
1079 }
1080
1081 /**
1082 * Retrieves entity by mouse position with contact point
1083 * @param mouseX mouse x
1084 * @param mouseY mouse y
1085 * @param contactPoint world coordinate of contact point
1086 * @param filter filter
1087 * @param object3DNode pointer to store node of Object3D to if appliable
1088 * @param particleSystemEntity pointer to store sub particle system entity if having a particle system group
1089 * @return entity or nullptr
1090 */
1091 Entity* getEntityByMousePosition(int32_t mouseX, int32_t mouseY, Vector3& contactPoint, EntityPickingFilter* filter = nullptr, Node** object3DNode = nullptr, ParticleSystemEntity** particleSystemEntity = nullptr);
1092
1093 /**
1094 * Does a ray casting of visible 3d object based entities
1095 * @param startPoint start point
1096 * @param endPoint end point
1097 * @param contactPoint world coordinate of contact point
1098 * @param filter filter
1099 * @return entity or nullptr
1100 */
1102 const Vector3& startPoint,
1103 const Vector3& endPoint,
1104 Vector3& contactPoint,
1105 EntityPickingFilter* filter = nullptr
1106 ) {
1107 return
1110 false,
1111 startPoint,
1112 endPoint,
1113 contactPoint,
1114 filter
1115 );
1116 }
1117
1118 /**
1119 * Retrieves object by mouse position
1120 * @param mouseX mouse x
1121 * @param mouseY mouse y
1122 * @param filter filter
1123 * @return entity or nullptr
1124 */
1125 Entity* getEntityContactPointByMousePosition(int32_t mouseX, int32_t mouseY, EntityPickingFilter* filter);
1126
1127 /**
1128 * Convert screen coordinate by world coordinate
1129 * @param worldCoordinate world woordinate
1130 * @param screenCoordinate screen coordinate
1131 * @param width optional render target width
1132 * @param height optional render target height
1133 * @returns if world coordinate is within frustum
1134 */
1135 bool computeScreenCoordinateByWorldCoordinate(const Vector3& worldCoordinate, Vector2& screenCoordinate, int width = -1, int height = -1);
1136
1137 /**
1138 * Shutdown the engine
1139 */
1140 void dispose();
1141
1142 /**
1143 * Creates a PNG file from current screen(
1144 * This does not seem to work with GLES2 and offscreen engines
1145 * @param pathName path name
1146 * @param fileName file name
1147 * @param removeAlphaChannel remove alpha channel
1148 * @return success
1149 */
1150 bool makeScreenshot(const string& pathName, const string& fileName, bool removeAlphaChannel = true);
1151
1152 /**
1153 * Creates a PNG file from current screen into a data vector
1154 * This does not seem to work with GLES2 and offscreen engines
1155 * @param pngData png data
1156 * @return success
1157 */
1158 bool makeScreenshot(vector<uint8_t>& pngData);
1159
1160 /**
1161 * Clear post processing programs
1162 */
1164
1165 /**
1166 * Add post processing program
1167 * @param programId program id
1168 */
1169 void addPostProcessingProgram(const string& programId);
1170
1171 /**
1172 * @return renderer statistics
1173 */
1174 inline Renderer::Renderer_Statistics getRendererStatistics() {
1175 return renderer->getStatistics();
1176 }
1177
1178 /**
1179 * Print registered shaders and it default parameters to console
1180 */
1181 void dumpShaders();
1182
1183 /**
1184 * Add action to action queue to be executed before next engine update
1185 * @param action action
1186 */
1187 inline void enqueueAction(Action* action) {
1188 actions.push_back(action);
1189 }
1190
1191private:
1192 /**
1193 * Retrieves entity by mouse position
1194 * @param decomposedEntities decomposed entities
1195 * @param forcePicking override picking to be always enabled
1196 * @param mouseX mouse x
1197 * @param mouseY mouse y
1198 * @param filter filter
1199 * @param object3DNode pointer to store node of Object3D to if appliable
1200 * @param particleSystemEntity pointer to store sub particle system entity if having a particle system group
1201 * @return entity or nullptr
1202 */
1204 DecomposedEntities& decomposedEntities,
1205 bool forcePicking,
1206 int32_t mouseX,
1207 int32_t mouseY,
1208 EntityPickingFilter* filter = nullptr,
1209 Node** object3DNode = nullptr,
1210 ParticleSystemEntity** particleSystemEntity = nullptr
1211 );
1212
1213 /**
1214 * Does a ray casting of visible 3d object based entities
1215 * @param decomposedEntities decomposed entities
1216 * @param forcePicking override picking to be always enabled
1217 * @param startPoint start point
1218 * @param endPoint end point
1219 * @param contactPoint world coordinate of contact point
1220 * @param filter filter
1221 * @return entity or nullptr
1222 */
1224 DecomposedEntities& decomposedEntities,
1225 bool forcePicking,
1226 const Vector3& startPoint,
1227 const Vector3& endPoint,
1228 Vector3& contactPoint,
1229 EntityPickingFilter* filter = nullptr
1230 );
1231
1232 /**
1233 * Removes a entity from internal lists, those entities can also be sub entities from entity hierarchy or particle system groups and such
1234 * @param entity entity
1235 */
1236 void deregisterEntity(Entity* entity);
1237
1238 /**
1239 * Adds a entity to internal lists, those entities can also be sub entities from entity hierarchy or particle system groups and such
1240 * @param entity entity
1241 */
1242 void registerEntity(Entity* entity);
1243
1244 /**
1245 * Do post processing
1246 * @param renderPass render pass
1247 * @param postProcessingFrameBuffers frame buffers to swap, input needs to live in postProcessingFrameBuffers[0]
1248 * @param targetFrameBuffer target frame buffer
1249 */
1250 void doPostProcessing(PostProcessingProgram::RenderPass renderPass, const array<FrameBuffer*, 2> postProcessingFrameBuffers, FrameBuffer* targetFrameBuffer);
1251
1252 /**
1253 * Do a render/effect pass
1254 * @param renderFrameBuffer render frame buffer
1255 * @param renderGeometryBuffer render geometry buffer
1256 * @param visibleDecomposedEntities visible decomposed entities
1257 * @param effectPass effect pass
1258 * @param renderPassMask render pass mask
1259 * @param shaderPrefix shader prefix
1260 * @param useEZR if to use early Z rejection
1261 * @param applyShadowMapping if to apply shadow mapping
1262 * @param applyPostProcessing if to apply post processing
1263 * @param doRenderLightSource do render light source
1264 * @param doRenderParticleSystems if to render particle systems
1265 * @param renderTypes render types
1266 */
1267 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);
1268
1269 /**
1270 * Render light sources
1271 * @param width render target width
1272 * @param height render target height
1273 * @return if light source is visible
1274 */
1275 bool renderLightSources(int width, int height);
1276
1277 /**
1278 * Remove entity from decomposed entities
1279 * @param decomposedEntities decomposed entities
1280 * @param entity entity
1281 */
1282 void removeFromDecomposedEntities(DecomposedEntities& decomposedEntities, Entity* entity);
1283
1284 /**
1285 * Remove entity
1286 * @param entity entity
1287 */
1288 void removeEntityFromLists(Entity* entity);
1289
1290};
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
EngineThreadQueueElement * instantiate() override
Instantiate a transparent render face.
Definition: Engine.h:373
volatile int getProcessedElements()
Definition: Engine.h:348
TransparentRenderFacesPool * transparentRenderFacesPool
Definition: Engine.h:321
Queue< EngineThreadQueueElement > * queue
Definition: Engine.h:320
unordered_map< uint8_t, unordered_map< Model *, vector< Object3D * > > > objectsByShadersAndModels
Definition: Engine.h:322
void resetProcessedElements()
Reset processed element count.
Definition: Engine.h:355
TransparentRenderFacesPool * getTransparentRenderFacesPool()
Definition: Engine.h:341
EngineThread(int idx, Queue< EngineThreadQueueElement > *queue)
Constructor.
Definition: Engine.cpp:202
Engine main class.
Definition: Engine.h:122
static void setShadowMapRenderLookUps(int32_t shadowMapRenderLookUps)
Set shadowmap look ups for each pixel when rendering.
Definition: Engine.h:671
static STATIC_DLL_IMPEXT Engine * currentEngine
Definition: Engine.h:180
Timing * timing
Definition: Engine.h:252
bool isInitialized()
Definition: Engine.h:858
bool renderLightSources(int width, int height)
Render light sources.
Definition: Engine.cpp:2417
static FrameBufferRenderShader * getFrameBufferRenderShader()
Definition: Engine.h:449
void dumpShaders()
Print registered shaders and it default parameters to console.
Definition: Engine.cpp:2437
bool removeEntity(const string &id)
Removes an entity.
Definition: Engine.cpp:451
static STATIC_DLL_IMPEXT MeshManager * meshManager
Definition: Engine.h:188
Timing * getTiming()
Definition: Engine.h:900
FrameBuffer * getFrameBuffer()
Definition: Engine.h:927
unordered_set< Entity * > needsPreRenderEntities
Definition: Engine.h:273
Renderer::RendererType getGraphicsRendererType()
Definition: Engine.h:851
bool renderingComputedTransformations
Definition: Engine.h:283
static STATIC_DLL_IMPEXT Renderer * renderer
Definition: Engine.h:184
map< string, map< string, ShaderParameter > > shaderParameters
Definition: Engine.h:291
static STATIC_DLL_IMPEXT EZRShader * ezrShader
Definition: Engine.h:193
static STATIC_DLL_IMPEXT int32_t environmentMappingWidth
Definition: Engine.h:212
static STATIC_DLL_IMPEXT TextureManager * textureManager
Definition: Engine.h:186
static STATIC_DLL_IMPEXT Queue< EngineThreadQueueElement > * engineThreadsQueue
Definition: Engine.h:380
void initRendering()
Initiates the rendering process updates timing, updates camera.
Definition: Engine.cpp:990
static STATIC_DLL_IMPEXT int32_t shadowMapHeight
Definition: Engine.h:210
void doPostProcessing(PostProcessingProgram::RenderPass renderPass, const array< FrameBuffer *, 2 > postProcessingFrameBuffers, FrameBuffer *targetFrameBuffer)
Do post processing.
Definition: Engine.cpp:2047
void reshape(int32_t width, int32_t height)
Reshape.
Definition: Engine.cpp:885
int32_t getLightCount()
Definition: Engine.h:941
void display()
Renders the scene.
Definition: Engine.cpp:1269
static GUIShader * getGUIShader()
Definition: Engine.h:442
static STATIC_DLL_IMPEXT LightingShader * lightingShader
Definition: Engine.h:196
static STATIC_DLL_IMPEXT vector< EngineThread * > engineThreads
Definition: Engine.h:379
Partition * getPartition()
Definition: Engine.h:914
static SkinningShader * getSkinningShader()
Definition: Engine.h:435
void initialize()
Initialize render engine.
Definition: Engine.cpp:668
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.
Definition: Engine.cpp:1971
static ShadowMapRenderShader * getShadowMapRenderShader()
Definition: Engine.h:407
static MeshManager * getMeshManager()
Definition: Engine.h:386
static STATIC_DLL_IMPEXT int32_t shadowMapRenderLookUps
Definition: Engine.h:211
static STATIC_DLL_IMPEXT int threadCount
Definition: Engine.h:206
static const vector< string > getRegisteredShader(ShaderType type)
Returns registered shaders for given type.
Definition: Engine.cpp:2111
static void setEnvironmentMappingSize(int32_t width, int32_t height)
Set environment mapping size.
Definition: Engine.h:694
void computeTransformationsFunction(vector< Object3D * > &objects, int threadIdx)
Computes visibility and transformations.
Definition: Engine.cpp:1006
array< Light, LIGHTS_MAX > lights
Definition: Engine.h:257
GeometryBuffer * geometryBuffer
Definition: Engine.h:259
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
Definition: Engine.h:950
int32_t getWidth()
Definition: Engine.h:865
~Engine()
Destructor.
Definition: Engine.cpp:276
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.
Definition: Engine.cpp:2143
void setShaderParameter(const string &shaderId, const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given shader id and parameter name.
Definition: Engine.h:812
static STATIC_DLL_IMPEXT float transformationsComputingReduction2Distance
Definition: Engine.h:215
void enqueueAction(Action *action)
Add action to action queue to be executed before next engine update.
Definition: Engine.h:1187
static STATIC_DLL_IMPEXT bool skinningShaderEnabled
Definition: Engine.h:280
unordered_set< Entity * > noFrustumCullingEntities
Definition: Engine.h:272
void decomposeEntityTypes(const vector< Entity * > &entities, DecomposedEntities &decomposedEntities, bool decomposeAllEntities=false)
Decompose entity types.
Definition: Engine.cpp:1136
Vector3 computeWorldCoordinateByMousePosition(int32_t mouseX, int32_t mouseY, float z)
Compute world coordinate from mouse position and z value.
Definition: Engine.cpp:1469
static STATIC_DLL_IMPEXT int32_t environmentMappingHeight
Definition: Engine.h:213
void setPartition(Partition *partition)
Set partition.
Definition: Engine.cpp:358
static STATIC_DLL_IMPEXT float transformationsComputingReduction1Distance
Definition: Engine.h:214
void addPostProcessingProgram(const string &programId)
Add post processing program.
Definition: Engine.cpp:2042
Entity * getEntityContactPointByMousePosition(int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter)
Retrieves object by mouse position.
static STATIC_DLL_IMPEXT AnimationProcessingTarget animationProcessingTarget
Definition: Engine.h:191
static float getTransformationsComputingReduction2Distance()
Definition: Engine.h:717
void doneGUIMode()
Set up GUI mode rendering.
Definition: Engine.cpp:1962
void initGUIMode()
Set up GUI mode rendering.
Definition: Engine.cpp:1950
static void setAnimationBlendingTime(float animationBlendingTime)
Set animation blending time.
Definition: Engine.h:617
void decomposeEntityType(Entity *entity, DecomposedEntities &decomposedEntities, bool decomposeAllEntities=false)
Decompose entity type.
Definition: Engine.cpp:1010
Renderer::Renderer_Statistics getRendererStatistics()
Definition: Engine.h:1174
static STATIC_DLL_IMPEXT ShadowMapRenderShader * shadowMappingShaderRender
Definition: Engine.h:195
static void registerShader(ShaderType type, const string &shaderId, const map< string, ShaderParameter > &parameterDefaults={})
Register shader.
Definition: Engine.cpp:2122
FrameBuffer * postProcessingFrameBuffer1
Definition: Engine.h:261
bool renderingInitiated
Definition: Engine.h:282
static STATIC_DLL_IMPEXT LinesShader * linesShader
Definition: Engine.h:198
void removeFromDecomposedEntities(DecomposedEntities &decomposedEntities, Entity *entity)
Remove entity from decomposed entities.
Definition: Engine.cpp:483
ShadowMapping * getShadowMapping()
Definition: Engine.h:393
static STATIC_DLL_IMPEXT GUIShader * guiShader
Definition: Engine.h:200
static STATIC_DLL_IMPEXT ParticlesShader * particlesShader
Definition: Engine.h:197
@ EFFECTPASS_LIGHTSCATTERING
Definition: Engine.h:172
static Engine * createOffScreenInstance(int32_t width, int32_t height, bool enableShadowMapping, bool enableDepthBuffer, bool enableGeometryBuffer)
Creates an offscreen rendering instance Note:
Definition: Engine.cpp:310
int32_t getHeight()
Definition: Engine.h:872
Entity * getEntityByMousePosition(int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter=nullptr, Node **object3DNode=nullptr, ParticleSystemEntity **particleSystemEntity=nullptr)
Retrieves entity by mouse position.
Definition: Engine.h:1068
FrameBuffer * postProcessingTemporaryFrameBuffer
Definition: Engine.h:263
static STATIC_DLL_IMPEXT PostProcessingShader * postProcessingShader
Definition: Engine.h:204
void scale(int32_t width, int32_t height)
Scale which applies to main engine only.
Definition: Engine.cpp:943
static STATIC_DLL_IMPEXT unordered_map< string, uint8_t > uniqueShaderIds
Definition: Engine.h:245
static STATIC_DLL_IMPEXT Texture2DRenderShader * texture2DRenderShader
Definition: Engine.h:205
static constexpr int ENGINETHREADSQUEUE_COMPUTE_DISPATCH_COUNT
Definition: Engine.h:177
static TextureManager * getTextureManager()
Definition: Engine.h:564
bool shadowMappingEnabled
Definition: Engine.h:281
static int32_t getShadowMapWidth()
Definition: Engine.h:639
static const map< string, ShaderParameter > getShaderParameterDefaults(const string &shaderId)
Returns parameter defaults of shader with given id.
Definition: Engine.cpp:2134
static STATIC_DLL_IMPEXT map< string, Shader > shaders
Definition: Engine.h:223
static void setTransformationsComputingReduction2Distance(float transformationsComputingReduction2Distance)
Set distance of animated object including skinned objects from camera which animation computation wil...
Definition: Engine.h:725
int32_t getEntityCount()
Definition: Engine.h:972
Engine()
Private constructor.
Definition: Engine.cpp:252
static ShadowMapCreationShader * getShadowMapCreationShader()
Definition: Engine.h:400
static LightingShader * getLightingShader()
Definition: Engine.h:414
void renderToScreen()
Render scaled main engine to screen.
Definition: Engine.cpp:966
static STATIC_DLL_IMPEXT DeferredLightingRenderShader * deferredLightingRenderShader
Definition: Engine.h:202
void setShadowMapLightEyeDistanceScale(float shadowMapLightEyeDistanceScale)
Set shadow map light eye distance scale.
Definition: Engine.h:632
static STATIC_DLL_IMPEXT PostProcessing * postProcessing
Definition: Engine.h:203
const string getGraphicsRenderer()
Definition: Engine.cpp:354
array< bool, EFFECTPASS_COUNT - 1 > effectPassSkip
Definition: Engine.h:265
EntityRenderer * entityRenderer
Definition: Engine.h:278
ShadowMapping * shadowMapping
Definition: Engine.h:266
static int32_t getShadowMapHeight()
Definition: Engine.h:646
static void setThreadCount(int threadCount)
Set engine thread count.
Definition: Engine.h:587
unordered_map< string, Entity * > entitiesById
Definition: Engine.h:269
void addEntity(Entity *entity)
Adds an entity by id.
Definition: Engine.cpp:364
static void setTransformationsComputingReduction1Distance(float transformationsComputingReduction1Distance)
Set distance of animated object including skinned objects from camera which animation computation wil...
Definition: Engine.h:710
const ShaderParameter getShaderParameter(const string &shaderId, const string &parameterName)
Returns shader parameter for given shader id and parameter name, if the value does not exist,...
Definition: Engine.h:792
bool computeScreenCoordinateByWorldCoordinate(const Vector3 &worldCoordinate, Vector2 &screenCoordinate, int width=-1, int height=-1)
Convert screen coordinate by world coordinate.
Definition: Engine.cpp:1894
static STATIC_DLL_IMPEXT SkinningShader * skinningShader
Definition: Engine.h:199
static STATIC_DLL_IMPEXT Engine * instance
Definition: Engine.h:183
static LinesShader * getLinesShader()
Definition: Engine.h:428
vector< string > postProcessingPrograms
Definition: Engine.h:285
static const ShaderParameter getDefaultShaderParameter(const string &shaderId, const string &parameterName)
Returns shader parameter default value for given shader id and parameter name.
Definition: Engine.h:770
void resetPostProcessingPrograms()
Clear post processing programs.
Definition: Engine.cpp:2038
void deregisterEntity(Entity *entity)
Removes a entity from internal lists, those entities can also be sub entities from entity hierarchy o...
Definition: Engine.cpp:392
void dispose()
Shutdown the engine.
Definition: Engine.cpp:1907
void preRenderFunction(vector< Object3D * > &objects, int threadIdx)
Update vertex buffers and such before rendering.
Definition: Engine.cpp:1002
static STATIC_DLL_IMPEXT EngineThreadQueueElementPool engineThreadQueueElementPool
Definition: Engine.h:381
EntityRenderer * getEntityRenderer()
Definition: Engine.h:470
static int32_t getShadowMapRenderLookUps()
Definition: Engine.h:653
static STATIC_DLL_IMPEXT FrameBufferRenderShader * frameBufferRenderShader
Definition: Engine.h:201
static int getThreadCount()
Definition: Engine.h:579
static void set4K(bool have4K)
Set if having 4k.
Definition: Engine.h:602
float shadowMapLightEyeDistanceScale
Definition: Engine.h:267
float getShadowMapLightEyeDistanceScale()
Definition: Engine.h:624
static STATIC_DLL_IMPEXT float animationBlendingTime
Definition: Engine.h:208
Entity * getEntity(const string &id)
Returns a entity by given id.
Definition: Engine.h:981
const string getGraphicsVendor()
Definition: Engine.cpp:350
static STATIC_DLL_IMPEXT ShadowMapCreationShader * shadowMappingShaderPre
Definition: Engine.h:194
static PostProcessingShader * getPostProcessingShader()
Definition: Engine.h:463
static STATIC_DLL_IMPEXT bool have4K
Definition: Engine.h:207
const Color4 & getSceneColor() const
Definition: Engine.h:957
void unscale()
Disable scaling, which applies to main engine only.
Definition: Engine.cpp:957
static void setShadowMapSize(int32_t width, int32_t height)
Set shadow map size.
Definition: Engine.h:662
unordered_set< Entity * > autoEmitParticleSystemEntities
Definition: Engine.h:271
static constexpr int LIGHTS_MAX
Definition: Engine.h:173
void reset()
Removes all entities and caches.
Definition: Engine.cpp:652
FrameBuffer * postProcessingFrameBuffer2
Definition: Engine.h:262
static float getAnimationBlendingTime()
Definition: Engine.h:609
int32_t getScaledWidth()
Definition: Engine.h:879
static int32_t getEnvironmentMappingWidth()
Definition: Engine.h:678
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
static float getTransformationsComputingReduction1Distance()
Definition: Engine.h:702
static STATIC_DLL_IMPEXT VBOManager * vboManager
Definition: Engine.h:187
static constexpr int ENGINETHREADSQUEUE_PRERENDER_DISPATCH_COUNT
Definition: Engine.h:176
vector< Action * > actions
Definition: Engine.h:293
static bool is4K()
Definition: Engine.h:594
Camera * getCamera()
Definition: Engine.h:907
GeometryBuffer * getGeometryBuffer()
Definition: Engine.h:934
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
static STATIC_DLL_IMPEXT int32_t shadowMapWidth
Definition: Engine.h:209
void computeTransformations(Camera *camera, DecomposedEntities &decomposedEntites, bool autoEmit, bool computeTransformations)
Computes visibility and transformations.
Definition: Engine.cpp:1142
static ParticlesShader * getParticlesShader()
Definition: Engine.h:421
static DeferredLightingRenderShader * getDeferredLightingRenderShader()
Definition: Engine.h:456
static int32_t getEnvironmentMappingHeight()
Definition: Engine.h:685
static STATIC_DLL_IMPEXT GUIRenderer * guiRenderer
Definition: Engine.h:189
FrameBuffer * frameBuffer
Definition: Engine.h:260
int32_t scaledWidth
Definition: Engine.h:249
void removeEntityFromLists(Entity *entity)
Remove entity.
Definition: Engine.cpp:615
unordered_set< Entity * > needsComputeTransformationsEntities
Definition: Engine.h:274
static VBOManager * getVBOManager()
Definition: Engine.h:572
bool isUsingPostProcessingTemporaryFrameBuffer
Definition: Engine.h:289
DecomposedEntities visibleDecomposedEntities
Definition: Engine.h:276
void resetLists(DecomposedEntities &decomposedEntites)
Reset lists.
Definition: Engine.cpp:970
static uint8_t getUniqueShaderId(const string &shaderId)
Definition: Engine.h:732
int32_t scaledHeight
Definition: Engine.h:250
void registerEntity(Entity *entity)
Adds a entity to internal lists, those entities can also be sub entities from entity hierarchy or par...
Definition: Engine.cpp:406
Entity * doRayCasting(const Vector3 &startPoint, const Vector3 &endPoint, Vector3 &contactPoint, EntityPickingFilter *filter=nullptr)
Does a ray casting of visible 3d object based entities.
Definition: Engine.h:1101
Camera * camera
Definition: Engine.h:253
int32_t getScaledHeight()
Definition: Engine.h:886
static constexpr int ENGINETHREADSQUEUE_RENDER_DISPATCH_COUNT
Definition: Engine.h:175
array< FrameBuffer *, EFFECTPASS_COUNT - 1 > effectPassFrameBuffers
Definition: Engine.h:264
Partition * partition
Definition: Engine.h:255
Entity hierarchy to be used with engine class.
TDME engine entity.
Definition: Entity.h:31
Environment mapping entity.
Fog particle system entity to be used with engine class.
Frame buffer class.
Definition: FrameBuffer.h:21
Geometry buffer class.
Imposter object 3d to be used with engine class.
LOD object 3D + imposter to be used with engine class.
LOD object 3D to be used with engine class.
Definition: LODObject3D.h:47
Light representation.
Definition: Light.h:32
Object 3D to be used with engine class.
Definition: LinesObject3D.h:39
Object 3D render group for static objects that might be animated by shaders.
Object 3D to be used with engine class.
Definition: Object3D.h:60
Object particle system entity to be used with engine class.
Particle system group, which combines several particle systems into a group, to be used with engine c...
Point particle system entity to be used with engine class.
Shader parameter model class.
Timing class.
Definition: Timing.h:17
Color 4 definition.
Definition: Color4.h:20
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
Interface to lighting shader program.
Engine connector of GL2 renderer to other engine functionality.
Engine connector of GL3 renderer to other engine functionality.
Engine connector of GLES2 renderer to other engine functionality.
Engine connector of VK renderer to other engine functionality.
virtual const Renderer_Statistics getStatistics()=0
Object 3D node mesh specifically for rendering.
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
Buffers used to transfer data between main memory to graphics board memory.
Definition: ObjectBuffer.h:23
Interface to compute shader skinning shader program.
GUI module class.
Definition: GUI.h:66
GUI node base class.
Definition: GUINode.h:63
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
Definition: GUIFont.h:48
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
4x4 3D Matrix class
Definition: Matrix4x4.h:24
2D vector 2 class
Definition: Vector2.h:19
3D vector 3 class
Definition: Vector3.h:22
Consumer/producer queue.
Definition: Queue.h:24
Base class for threads.
Definition: Thread.h:26
Console class.
Definition: Console.h:26
Pool template class.
Definition: Pool.h:22
vector< Object3D * > needsComputeTransformationsEntities
Definition: Engine.h:242
vector< LODObject3D * > lodObjects
Definition: Engine.h:231
vector< Object3D * > objectsPostPostProcessing
Definition: Engine.h:229
vector< EntityHierarchy * > entityHierarchies
Definition: Engine.h:238
vector< LODObject3DImposter * > lodObjectsImposter
Definition: Engine.h:232
vector< LinesObject3D * > linesObjects
Definition: Engine.h:236
vector< Object3D * > objectsForwardShading
Definition: Engine.h:228
vector< EnvironmentMapping * > environmentMappingEntities
Definition: Engine.h:239
vector< ParticleSystemGroup * > psgs
Definition: Engine.h:235
vector< Object3D * > ezrObjects
Definition: Engine.h:240
vector< ObjectParticleSystem * > opses
Definition: Engine.h:233
vector< Object3DRenderGroup * > objectRenderGroups
Definition: Engine.h:237
vector< Object3D * > needsPreRenderEntities
Definition: Engine.h:241
vector< Entity * > noFrustumCullingEntities
Definition: Engine.h:226
vector< Object3D * > objectsNoDepthTest
Definition: Engine.h:230
struct tdme::engine::Engine::EngineThreadQueueElement::@0 transformations
struct tdme::engine::Engine::EngineThreadQueueElement::@1 rendering
map< string, ShaderParameter > parameterDefaults
Definition: Engine.h:220
Particle system entity interface.
Partition interface.
Definition: Partition.h:19
Action Interface.
Definition: Action.h:12
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11