54int64_t Object3DNode::counter = 0;
56Object3DNode::Object3DNode()
67 auto model =
object->getModel();
68 createNodes(
object, model->getSubNodes(), model->hasAnimations(), useManagers, animationProcessingTarget, object3DNodes);
73 for (
auto it: nodes) {
86 object3DNodes.push_back(object3DNode);
93 to_string(animationProcessingTarget) +
96 if (
node->
getSkinning() !=
nullptr || (animationProcessingTarget == Engine::AnimationProcessingTarget::CPU_NORENDERING)) {
102 object3DNode->object = object3D;
103 object3DNode->node =
node;
106 vector<map<string, Matrix4x4*>*> instancesTransformationsMatrices;
107 vector<map<string, Matrix4x4*>*> instancesSkinningNodesMatrices;
109 instancesTransformationsMatrices.push_back(&animation->transformationsMatrices[0]);
110 instancesSkinningNodesMatrices.push_back(animation->getSkinningNodesMatrices(object3DNode->node));
112 if (useManagers ==
true) {
114 object3DNode->mesh = meshManager->
getMesh(object3DNode->id);
115 if (object3DNode->mesh ==
nullptr) {
117 object3DNode->renderer,
118 animationProcessingTarget,
120 instancesTransformationsMatrices,
121 instancesSkinningNodesMatrices,
124 meshManager->addMesh(object3DNode->id, object3DNode->mesh);
128 object3DNode->renderer,
129 animationProcessingTarget,
131 instancesTransformationsMatrices,
132 instancesSkinningNodesMatrices,
139 if (material !=
nullptr) {
140 object3DNode->textureMatricesByEntities[j].set(material->getTextureMatrix());
142 object3DNode->textureMatricesByEntities[j].identity();
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());
150 object3DNode->pbrMaterialMetallicRoughnessTextureIdsByEntities.resize(
node->
getFacesEntities().size());
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;
171 for (
auto object3DNode : object3DNodes) {
172 object3DNode->mesh->computeTransformations(contextIdx, object3DNode->object);
179 auto material = facesEntities[facesEntityIdx].getMaterial();
181 if (material ==
nullptr) material = Material::getDefaultMaterial();
182 auto specularMaterialProperties = material->getSpecularMaterialProperties();
183 if (specularMaterialProperties !=
nullptr) {
186 if (specularMaterialProperties->getDiffuseTexture() !=
nullptr) {
194 if (specularMaterialProperties->getSpecularTexture() !=
nullptr) {
202 if (specularMaterialProperties->getNormalTexture() !=
nullptr) {
210 auto pbrMaterialProperties = material->getPBRMaterialProperties();
211 if (pbrMaterialProperties !=
nullptr &&
renderer->isPBRAvailable() ==
true) {
214 if (pbrMaterialProperties->getBaseColorTexture() !=
nullptr) {
222 if (pbrMaterialProperties->getMetallicRoughnessTexture() !=
nullptr) {
230 if (pbrMaterialProperties->getNormalTexture() !=
nullptr) {
242 auto textureManager = engine->getTextureManager();
245 for (
auto j = 0; j < facesEntities.size(); j++) {
247 auto material = facesEntities[j].getMaterial();
249 auto specularMaterialProperties = material !=
nullptr?material->getSpecularMaterialProperties():
nullptr;
250 if (specularMaterialProperties !=
nullptr) {
255 if (specularMaterialProperties->getDiffuseTexture() !=
nullptr)
256 textureManager->removeTexture(specularMaterialProperties->getDiffuseTexture()->getId());
264 if (specularMaterialProperties->getSpecularTexture() !=
nullptr)
265 textureManager->removeTexture(specularMaterialProperties->getSpecularTexture()->getId());
273 if (specularMaterialProperties->getNormalTexture() !=
nullptr)
274 textureManager->removeTexture(specularMaterialProperties->getNormalTexture()->getId());
280 auto pbrMaterialProperties = material !=
nullptr?material->getPBRMaterialProperties():
nullptr;
281 if (pbrMaterialProperties !=
nullptr) {
286 if (pbrMaterialProperties->getBaseColorTexture() !=
nullptr)
287 textureManager->removeTexture(pbrMaterialProperties->getBaseColorTexture()->getId());
294 if (pbrMaterialProperties->getMetallicRoughnessTexture() !=
nullptr)
295 textureManager->removeTexture(pbrMaterialProperties->getMetallicRoughnessTexture()->getId());
303 if (pbrMaterialProperties->getNormalTexture() !=
nullptr)
304 textureManager->removeTexture(pbrMaterialProperties->getNormalTexture()->getId());
static MeshManager * getMeshManager()
static TextureManager * getTextureManager()
AnimationProcessingTarget
static Engine * getInstance()
Returns engine instance.
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Node faces entity A node can have multiple entities containing faces and a applied material.
Representation of a 3d model.
int32_t getFaceCount() const
const string & getId()
Returns id.
const vector< FacesEntity > & getFacesEntities() const
map< string, Node * > & getSubNodes()
Represents specular material properties.
Skinning definition for nodes.
Represents specular material properties.
Object3DNodeMesh * getMesh(const string &meshId)
Get mesh from managed meshes.
TextureManager_TextureManaged * addTexture(const string &id, bool &created)
Adds a texture to manager.
vector< Object3DAnimation * > instanceAnimations
Object 3D node mesh specifically for rendering.
Object 3D node VBO renderer.
Object 3d node specifically for rendering.
static constexpr int32_t TEXTUREID_NOTUSED
vector< int32_t > pbrMaterialBaseColorTextureIdsByEntities
Object3DNodeRenderer * renderer
vector< int32_t > specularMaterialDiffuseTextureIdsByEntities
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
~Object3DNode()
Destructor.
vector< int32_t > specularMaterialNormalTextureIdsByEntities
vector< int32_t > specularMaterialSpecularTextureIdsByEntities
friend class Object3DNodeRenderer
vector< int32_t > pbrMaterialNormalTextureIdsByEntities
static STATIC_DLL_IMPEXT int64_t counter
static constexpr int32_t TEXTUREID_NONE
static void computeTransformations(int contextIdx, vector< Object3DNode * > &object3DNodes)
Applies transformations to meshes for given object 3d nodes.
friend class Object3DNodeMesh
Object3DNode()
Public constructor.