TDME2 1.9.121
Object3DNode.cpp
Go to the documentation of this file.
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
24#include <tdme/engine/Engine.h>
26#include <tdme/math/Matrix4x4.h>
27
28using std::map;
29using std::string;
30using std::to_string;
31using std::vector;
32
53
54int64_t Object3DNode::counter = 0;
55
56Object3DNode::Object3DNode()
57{
58}
59
61{
62 delete renderer;
63}
64
65void Object3DNode::createNodes(Object3DBase* object, bool useManagers, Engine::AnimationProcessingTarget animationProcessingTarget, vector<Object3DNode*>& object3DNodes)
66{
67 auto model = object->getModel();
68 createNodes(object, model->getSubNodes(), model->hasAnimations(), useManagers, animationProcessingTarget, object3DNodes);
69}
70
71void Object3DNode::createNodes(Object3DBase* object3D, const map<string, Node*>& nodes, bool animated, bool useManagers, Engine::AnimationProcessingTarget animationProcessingTarget, vector<Object3DNode*>& object3DNodes)
72{
73 for (auto it: nodes) {
74 Node* node = it.second;
75 // skip on joints
76 if (node->isJoint() == true) {
77 continue;
78 }
79 // determine face count
80 auto faceCount = node->getFaceCount();
81 // skip on nodes without faces
82 if (faceCount > 0) {
83 // create node render data
84 auto object3DNode = new Object3DNode();
85 // add it to node render data list
86 object3DNodes.push_back(object3DNode);
87 // determine mesh id
88 object3DNode->id =
89 node->getModel()->getId() +
90 ":" +
91 node->getId() +
92 ":" +
93 to_string(animationProcessingTarget) +
94 ":" +
95 to_string(object3D->instances);
96 if (node->getSkinning() != nullptr || (animationProcessingTarget == Engine::AnimationProcessingTarget::CPU_NORENDERING)) {
97 object3DNode->id =
98 object3DNode->id +
99 ":" +
100 to_string(counter++);
101 }
102 object3DNode->object = object3D;
103 object3DNode->node = node;
104 object3DNode->animated = animated;
105 object3DNode->renderer = new Object3DNodeRenderer(object3DNode);
106 vector<map<string, Matrix4x4*>*> instancesTransformationsMatrices;
107 vector<map<string, Matrix4x4*>*> instancesSkinningNodesMatrices;
108 for (auto animation: object3D->instanceAnimations) {
109 instancesTransformationsMatrices.push_back(&animation->transformationsMatrices[0]);
110 instancesSkinningNodesMatrices.push_back(animation->getSkinningNodesMatrices(object3DNode->node));
111 }
112 if (useManagers == true) {
113 auto meshManager = Engine::getInstance()->getMeshManager();
114 object3DNode->mesh = meshManager->getMesh(object3DNode->id);
115 if (object3DNode->mesh == nullptr) {
116 object3DNode->mesh = new Object3DNodeMesh(
117 object3DNode->renderer,
118 animationProcessingTarget,
119 node,
120 instancesTransformationsMatrices,
121 instancesSkinningNodesMatrices,
122 object3D->instances
123 );
124 meshManager->addMesh(object3DNode->id, object3DNode->mesh);
125 }
126 } else {
127 object3DNode->mesh = new Object3DNodeMesh(
128 object3DNode->renderer,
129 animationProcessingTarget,
130 node,
131 instancesTransformationsMatrices,
132 instancesSkinningNodesMatrices,
133 object3D->instances
134 );
135 }
136 object3DNode->textureMatricesByEntities.resize(node->getFacesEntities().size());
137 for (auto j = 0; j < node->getFacesEntities().size(); j++) {
138 auto material = node->getFacesEntities()[j].getMaterial();
139 if (material != nullptr) {
140 object3DNode->textureMatricesByEntities[j].set(material->getTextureMatrix());
141 } else {
142 object3DNode->textureMatricesByEntities[j].identity();
143 }
144 }
145 object3DNode->specularMaterialDiffuseTextureIdsByEntities.resize(node->getFacesEntities().size());
146 object3DNode->specularMaterialDynamicDiffuseTextureIdsByEntities.resize(node->getFacesEntities().size());
147 object3DNode->specularMaterialSpecularTextureIdsByEntities.resize(node->getFacesEntities().size());
148 object3DNode->specularMaterialNormalTextureIdsByEntities.resize(node->getFacesEntities().size());
149 object3DNode->pbrMaterialBaseColorTextureIdsByEntities.resize(node->getFacesEntities().size());
150 object3DNode->pbrMaterialMetallicRoughnessTextureIdsByEntities.resize(node->getFacesEntities().size());
151 object3DNode->pbrMaterialNormalTextureIdsByEntities.resize(node->getFacesEntities().size());
152 for (auto j = 0; j < node->getFacesEntities().size(); j++) {
153 object3DNode->specularMaterialDiffuseTextureIdsByEntities[j] = TEXTUREID_NONE;
154 object3DNode->specularMaterialDynamicDiffuseTextureIdsByEntities[j] = TEXTUREID_NONE;
155 object3DNode->specularMaterialSpecularTextureIdsByEntities[j] = TEXTUREID_NONE;
156 object3DNode->specularMaterialNormalTextureIdsByEntities[j] = TEXTUREID_NONE;
157 object3DNode->pbrMaterialBaseColorTextureIdsByEntities[j] = TEXTUREID_NONE;
158 object3DNode->pbrMaterialMetallicRoughnessTextureIdsByEntities[j] = TEXTUREID_NONE;
159 object3DNode->pbrMaterialNormalTextureIdsByEntities[j] = TEXTUREID_NONE;
160 }
161 // determine node transformations matrix
162 object3DNode->nodeTransformationsMatrix = object3D->instanceAnimations[0]->transformationsMatrices[0].find(node->getId())->second;
163 }
164 // but still check sub nodes
165 createNodes(object3D, node->getSubNodes(), animated, useManagers, animationProcessingTarget, object3DNodes);
166 }
167}
168
169void Object3DNode::computeTransformations(int contextIdx, vector<Object3DNode*>& object3DNodes)
170{
171 for (auto object3DNode : object3DNodes) {
172 object3DNode->mesh->computeTransformations(contextIdx, object3DNode->object);
173 }
174}
175
176void Object3DNode::setupTextures(Renderer* renderer, int contextIdx, Object3DNode* object3DNode, int32_t facesEntityIdx)
177{
178 auto& facesEntities = object3DNode->node->getFacesEntities();
179 auto material = facesEntities[facesEntityIdx].getMaterial();
180 // get material or use default
181 if (material == nullptr) material = Material::getDefaultMaterial();
182 auto specularMaterialProperties = material->getSpecularMaterialProperties();
183 if (specularMaterialProperties != nullptr) {
184 // load specular diffuse texture
185 if (object3DNode->specularMaterialDiffuseTextureIdsByEntities[facesEntityIdx] == TEXTUREID_NONE) {
186 if (specularMaterialProperties->getDiffuseTexture() != nullptr) {
187 object3DNode->specularMaterialDiffuseTextureIdsByEntities[facesEntityIdx] = Engine::getInstance()->getTextureManager()->addTexture(specularMaterialProperties->getDiffuseTexture(), contextIdx);
188 } else {
190 }
191 }
192 // load specular specular texture
193 if (renderer->isSpecularMappingAvailable() == true && object3DNode->specularMaterialSpecularTextureIdsByEntities[facesEntityIdx] == TEXTUREID_NONE) {
194 if (specularMaterialProperties->getSpecularTexture() != nullptr) {
195 object3DNode->specularMaterialSpecularTextureIdsByEntities[facesEntityIdx] = Engine::getInstance()->getTextureManager()->addTexture(specularMaterialProperties->getSpecularTexture(), contextIdx);
196 } else {
198 }
199 }
200 // load specular normal texture
201 if (renderer->isNormalMappingAvailable() == true && object3DNode->specularMaterialNormalTextureIdsByEntities[facesEntityIdx] == TEXTUREID_NONE) {
202 if (specularMaterialProperties->getNormalTexture() != nullptr) {
203 object3DNode->specularMaterialNormalTextureIdsByEntities[facesEntityIdx] = Engine::getInstance()->getTextureManager()->addTexture(specularMaterialProperties->getNormalTexture(), contextIdx);
204 } else {
206 }
207 }
208 }
209 // load PBR textures
210 auto pbrMaterialProperties = material->getPBRMaterialProperties();
211 if (pbrMaterialProperties != nullptr && renderer->isPBRAvailable() == true) {
212 // load PBR base color texture
213 if (object3DNode->pbrMaterialBaseColorTextureIdsByEntities[facesEntityIdx] == TEXTUREID_NONE) {
214 if (pbrMaterialProperties->getBaseColorTexture() != nullptr) {
215 object3DNode->pbrMaterialBaseColorTextureIdsByEntities[facesEntityIdx] = Engine::getInstance()->getTextureManager()->addTexture(pbrMaterialProperties->getBaseColorTexture(), contextIdx);
216 } else {
217 object3DNode->pbrMaterialBaseColorTextureIdsByEntities[facesEntityIdx] = TEXTUREID_NOTUSED;
218 }
219 }
220 // load PBR metallic roughness texture
221 if (object3DNode->pbrMaterialMetallicRoughnessTextureIdsByEntities[facesEntityIdx] == TEXTUREID_NONE) {
222 if (pbrMaterialProperties->getMetallicRoughnessTexture() != nullptr) {
223 object3DNode->pbrMaterialMetallicRoughnessTextureIdsByEntities[facesEntityIdx] = Engine::getInstance()->getTextureManager()->addTexture(pbrMaterialProperties->getMetallicRoughnessTexture(), contextIdx);
224 } else {
226 }
227 }
228 // load PBR normal texture
229 if (object3DNode->pbrMaterialNormalTextureIdsByEntities[facesEntityIdx] == TEXTUREID_NONE) {
230 if (pbrMaterialProperties->getNormalTexture() != nullptr) {
231 object3DNode->pbrMaterialNormalTextureIdsByEntities[facesEntityIdx] = Engine::getInstance()->getTextureManager()->addTexture(pbrMaterialProperties->getNormalTexture(), contextIdx);
232 } else {
233 object3DNode->pbrMaterialNormalTextureIdsByEntities[facesEntityIdx] = TEXTUREID_NOTUSED;
234 }
235 }
236 }
237}
238
240{
241 auto engine = Engine::getInstance();
242 auto textureManager = engine->getTextureManager();
243 auto& facesEntities = node->getFacesEntities();
244 // dispose textures
245 for (auto j = 0; j < facesEntities.size(); j++) {
246 // get entity's material
247 auto material = facesEntities[j].getMaterial();
248 // skip if no material was set up
249 auto specularMaterialProperties = material != nullptr?material->getSpecularMaterialProperties():nullptr;
250 if (specularMaterialProperties != nullptr) {
251 // specular diffuse texture
252 auto specularDiffuseTextureId = specularMaterialDiffuseTextureIdsByEntities[j];
253 if (specularDiffuseTextureId != Object3DNode::TEXTUREID_NONE && specularDiffuseTextureId != Object3DNode::TEXTUREID_NOTUSED) {
254 // remove texture from texture manager
255 if (specularMaterialProperties->getDiffuseTexture() != nullptr)
256 textureManager->removeTexture(specularMaterialProperties->getDiffuseTexture()->getId());
257 // mark as removed
259 }
260 // specular specular texture
261 auto specularSpecularTextureId = specularMaterialSpecularTextureIdsByEntities[j];
262 if (specularSpecularTextureId != Object3DNode::TEXTUREID_NONE && specularSpecularTextureId != Object3DNode::TEXTUREID_NOTUSED) {
263 // remove texture from texture manager
264 if (specularMaterialProperties->getSpecularTexture() != nullptr)
265 textureManager->removeTexture(specularMaterialProperties->getSpecularTexture()->getId());
266 // mark as removed
268 }
269 // specular normal texture
270 auto specularNormalTextureId = specularMaterialNormalTextureIdsByEntities[j];
271 if (specularNormalTextureId != Object3DNode::TEXTUREID_NONE && specularNormalTextureId != Object3DNode::TEXTUREID_NOTUSED) {
272 // remove texture from texture manager
273 if (specularMaterialProperties->getNormalTexture() != nullptr)
274 textureManager->removeTexture(specularMaterialProperties->getNormalTexture()->getId());
275 // mark as removed
277 }
278 }
279 // PBR textures
280 auto pbrMaterialProperties = material != nullptr?material->getPBRMaterialProperties():nullptr;
281 if (pbrMaterialProperties != nullptr) {
282 // PBR base color texture
283 auto pbrBaseColorTextureId = pbrMaterialBaseColorTextureIdsByEntities[j];
284 if (pbrBaseColorTextureId != Object3DNode::TEXTUREID_NONE && pbrBaseColorTextureId != Object3DNode::TEXTUREID_NOTUSED) {
285 // remove texture from texture manager
286 if (pbrMaterialProperties->getBaseColorTexture() != nullptr)
287 textureManager->removeTexture(pbrMaterialProperties->getBaseColorTexture()->getId());
288 // mark as removed
290 }
291 auto pbrMetallicRoughnessTextureId = pbrMaterialMetallicRoughnessTextureIdsByEntities[j];
292 if (pbrMetallicRoughnessTextureId != Object3DNode::TEXTUREID_NONE && pbrMetallicRoughnessTextureId != Object3DNode::TEXTUREID_NOTUSED) {
293 // remove texture from texture manager
294 if (pbrMaterialProperties->getMetallicRoughnessTexture() != nullptr)
295 textureManager->removeTexture(pbrMaterialProperties->getMetallicRoughnessTexture()->getId());
296 // mark as removed
298 }
299 // PBR normal texture
300 auto pbrNormalTextureId = pbrMaterialNormalTextureIdsByEntities[j];
301 if (pbrNormalTextureId != Object3DNode::TEXTUREID_NONE && pbrNormalTextureId != Object3DNode::TEXTUREID_NOTUSED) {
302 // remove texture from texture manager
303 if (pbrMaterialProperties->getNormalTexture() != nullptr)
304 textureManager->removeTexture(pbrMaterialProperties->getNormalTexture()->getId());
305 // mark as removed
307 }
308 }
309 }
310}
Engine main class.
Definition: Engine.h:122
static MeshManager * getMeshManager()
Definition: Engine.h:386
static TextureManager * getTextureManager()
Definition: Engine.h:564
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Definition: Face.h:19
Node faces entity A node can have multiple entities containing faces and a applied material.
Definition: FacesEntity.h:28
Joint / Bone.
Definition: Joint.h:19
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
const string & getId()
Definition: Model.h:119
Model node.
Definition: Node.h:31
int32_t getFaceCount() const
Definition: Node.cpp:109
Model * getModel()
Definition: Node.h:70
Skinning * getSkinning()
Definition: Node.h:238
bool isJoint() const
Definition: Node.h:106
const string & getId()
Returns id.
Definition: Node.h:85
const vector< FacesEntity > & getFacesEntities() const
Definition: Node.h:256
map< string, Node * > & getSubNodes()
Definition: Node.h:289
Represents specular material properties.
Skinning definition for nodes.
Definition: Skinning.h:27
Represents specular material properties.
Object3DNodeMesh * getMesh(const string &meshId)
Get mesh from managed meshes.
Definition: MeshManager.cpp:29
TextureManager_TextureManaged * addTexture(const string &id, bool &created)
Adds a texture to manager.
vector< Object3DAnimation * > instanceAnimations
Definition: Object3DBase.h:54
Object 3D node mesh specifically for rendering.
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
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.
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
4x4 3D Matrix class
Definition: Matrix4x4.h:24