35Object3DInternal::Object3DInternal(
const string&
id,
Model* model,
int instances) :
66 if (nodeId !=
"" && nodeId != object3DNode->node->getId())
69 auto& facesEntities = object3DNode->node->getFacesEntities();
70 for (
auto facesEntityIdx = 0; facesEntityIdx < facesEntities.size(); facesEntityIdx++) {
71 auto& facesEntity = facesEntities[facesEntityIdx];
73 if (facesEntityId !=
"" && facesEntityId != facesEntity.getId())
76 object3DNode->specularMaterialDynamicDiffuseTextureIdsByEntities[facesEntityIdx] = textureId;
85 if (nodeId !=
"" && nodeId != object3DNode->node->getId())
88 auto& facesEntities = object3DNode->node->getFacesEntities();
89 for (
auto facesEntityIdx = 0; facesEntityIdx < facesEntities.size(); facesEntityIdx++) {
90 auto& facesEntity = facesEntities[facesEntityIdx];
92 if (facesEntityId !=
"" && facesEntityId != facesEntity.getId())
95 object3DNode->textureMatricesByEntities[facesEntityIdx].set(textureMatrix);
102 map<string, Matrix4x4*> _overriddenTransformationsMatrices;
104 _overriddenTransformationsMatrices[overriddenTransformationsMatrixIt.first] =
new Matrix4x4(*overriddenTransformationsMatrixIt.second);
108 delete newBoundingBox;
113 map<string, Matrix4x4*> _overriddenTransformationsMatrices;
115 _overriddenTransformationsMatrices[overriddenTransformationsMatrixIt.first] =
new Matrix4x4(*overriddenTransformationsMatrixIt.second);
119 delete newBoundingBox;
int32_t getColorBufferTextureId()
void set(const array< float, 4 > &color)
Set up color.
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.
BoundingBox * getBoundingBox()
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
void fromBoundingVolume(BoundingBox *original)
Set up this bounding volume from given bounding volume.
void extend(BoundingBox *boundingBox)
Extend bounding box with given bounding box.
Bounding volume interface.
static BoundingBox * createBoundingBox(Model *model, const map< string, Matrix4x4 * > overriddenNodeTransformationsMatrices=map< string, Matrix4x4 * >())
Creates a bounding box from given model.
vector< Object3DNode * > object3dNodes
void unsetNodeTransformationsMatrix(const string &id)
Unset transformation matrix for given node.
vector< Transformations > instanceTransformations
vector< Object3DAnimation * > instanceAnimations
void setNodeTransformationsMatrix(const string &id, const Matrix4x4 &matrix)
Set transformation matrix for given node.
BoundingBox boundingBoxTransformed
void setTextureMatrix(const Matrix2D3x3 &textureMatrix, const string &nodeId=string(), const string &facesEntityId=string())
Set texture matrix.
void unsetNodeTransformationsMatrix(const string &id)
void unbindDiffuseTexture(const string &nodeId=string(), const string &facesEntityId=string())
Unbind dynamic texture to a node and faces entity of this object.
void bindDiffuseTexture(int32_t textureId, const string &nodeId=string(), const string &facesEntityId=string())
Bind a texture to a node and faces entity.
void updateBoundingBox()
Update bounding volume.
void setNodeTransformationsMatrix(const string &id, const Matrix4x4 &matrix)
void fromTransformations(const Transformations &transformations)
virtual ~Object3DInternal()
Destructor.
Object 3d node specifically for rendering.
static constexpr int32_t TEXTUREID_NONE