TDME2 1.9.121
Object3DNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
13#include <tdme/engine/Engine.h>
14#include <tdme/math/fwd-tdme.h>
17
18using std::map;
19using std::string;
20using std::vector;
21
32
33/**
34 * Object 3d node specifically for rendering
35 * @author Andreas Drewke
36 * @version $Id$
37 */
39{
42 friend class Object3DBase;
44 friend class Object3DNodeMesh;
46 friend class Object3DInternal;
47 friend class EntityRenderer;
51
52private:
53 STATIC_DLL_IMPEXT static int64_t counter;
54
55 static constexpr int32_t TEXTUREID_NONE { -1 };
56 static constexpr int32_t TEXTUREID_NOTUSED { 0 };
57
58 string id;
59 Object3DBase* object { nullptr };
60 Node* node { nullptr };
61 bool animated { false };
62 vector<Matrix2D3x3> textureMatricesByEntities;
71 Object3DNodeMesh* mesh { nullptr };
73
74 /**
75 * Creates object 3d nodes from given object3d base object
76 * @param object object 3d base
77 * @param useManagers use mesh and object 3d renderer node managers
78 * @param animationProcessingTarget animation processing target
79 * @param object3DNodes object 3d nodes array
80 * @return object 3d node
81 */
82 static void createNodes(Object3DBase* object, bool useManagers, Engine::AnimationProcessingTarget animationProcessingTarget, vector<Object3DNode*>& object3DNodes);
83
84 /**
85 * Applies transformations to meshes for given object 3d nodes
86 * @param contextIdx context index
87 * @param object3DNodes node render data list
88 */
89 static void computeTransformations(int contextIdx, vector<Object3DNode*>& object3DNodes);
90
91 /**
92 * Set up textures for given object3d node and faces entity
93 * @param renderer renderer
94 * @param contextIdx context index
95 * @param object3DNode object 3D node
96 * @param facesEntityIdx faces entity idx
97 */
98 static void setupTextures(Renderer* renderer, int contextIdx, Object3DNode* object3DNode, int32_t facesEntityIdx);
99
100 /**
101 * Creates a object 3d nodes recursively for given node and it sub nodes
102 * @param object3D object 3D base
103 * @param nodes nodes
104 * @param animated animated
105 * @param useManagers use mesh and object 3d render node managers
106 * @param animationProcessingTarget animation processing target
107 * @param object3DNodes object 3D nodes
108 */
109 static void createNodes(Object3DBase* object3D, const map<string, Node*>& nodes, bool animated, bool useManagers, Engine::AnimationProcessingTarget animationProcessingTarget, vector<Object3DNode*>& object3DNodes);
110
111 /**
112 * Dispose
113 */
114 void dispose();
115
116public:
117 /**
118 * Public constructor
119 */
120 Object3DNode();
121
122 /**
123 * Destructor
124 */
126};
Engine main class.
Definition: Engine.h:122
Object 3D to be used with engine class.
Definition: Object3D.h:60
Model node.
Definition: Node.h:31
Object 3D node mesh specifically for rendering.
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
vector< int32_t > specularMaterialDynamicDiffuseTextureIdsByEntities
Definition: Object3DNode.h:64
static void createNodes(Object3DBase *object, bool useManagers, Engine::AnimationProcessingTarget animationProcessingTarget, vector< Object3DNode * > &object3DNodes)
Creates object 3d nodes from given object3d base object.
static void setupTextures(Renderer *renderer, int contextIdx, Object3DNode *object3DNode, int32_t facesEntityIdx)
Set up textures for given object3d node and faces entity.
vector< int32_t > pbrMaterialMetallicRoughnessTextureIdsByEntities
Definition: Object3DNode.h:68
static STATIC_DLL_IMPEXT int64_t counter
Definition: Object3DNode.h:53
static void computeTransformations(int contextIdx, vector< Object3DNode * > &object3DNodes)
Applies transformations to meshes for given object 3d nodes.
Interface to compute shader skinning shader program.
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
4x4 3D Matrix class
Definition: Matrix4x4.h:24
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11