TDME2 1.9.121
|
Object 3D. More...
#include <tdme/engine/subsystems/rendering/Object3DInternal.h>
Public Member Functions | |
Object3DInternal (const string &id, Model *model, int instances) | |
Public constructor. More... | |
virtual | ~Object3DInternal () |
Destructor. More... | |
const string & | getId () |
bool | isEnabled () |
void | setEnabled (bool enabled) |
Enable/disable rendering. More... | |
bool | isPickable () |
void | setPickable (bool pickable) |
Set this object pickable. More... | |
bool | isContributesShadows () |
void | setContributesShadows (bool contributesShadows) |
Enable/disable contributes shadows. More... | |
bool | isReceivesShadows () |
void | setReceivesShadows (bool receivesShadows) |
Enable/disable receives shadows. More... | |
const Color4 & | getEffectColorMul () const |
The effect color will be multiplied with fragment color. More... | |
void | setEffectColorMul (const Color4 &effectColorMul) |
The effect color that will be multiplied with fragment color. More... | |
const Color4 & | getEffectColorAdd () const |
The effect color will be added to fragment color. More... | |
void | setEffectColorAdd (const Color4 &effectColorAdd) |
The effect color will be added to fragment color. More... | |
BoundingBox * | getBoundingBox () |
BoundingBox * | getBoundingBoxTransformed () |
Retrieves bounding sphere with transformations applied. More... | |
void | bindDiffuseTexture (int32_t textureId, const string &nodeId=string(), const string &facesEntityId=string()) |
Bind a texture to a node and faces entity. More... | |
void | bindDiffuseTexture (FrameBuffer *frameBuffer, const string &nodeId=string(), const string &facesEntityId=string()) |
Bind frame buffer color texture to a node and faces entity of this object. More... | |
void | unbindDiffuseTexture (const string &nodeId=string(), const string &facesEntityId=string()) |
Unbind dynamic texture to a node and faces entity of this object. More... | |
void | setTextureMatrix (const Matrix2D3x3 &textureMatrix, const string &nodeId=string(), const string &facesEntityId=string()) |
Set texture matrix. More... | |
void | initialize () override |
Initiates this object3d. More... | |
void | dispose () override |
Disposes this object3d. More... | |
void | fromTransformations (const Transformations &transformations) |
void | update () |
void | setNodeTransformationsMatrix (const string &id, const Matrix4x4 &matrix) |
void | unsetNodeTransformationsMatrix (const string &id) |
![]() | |
Model * | getModel () |
virtual void | computeTransformations (int contextIdx, int64_t lastFrameAtTime, int64_t currentFrameAtTime) |
Pre render step, computes transformations. More... | |
int | getNodeCount () const |
void | getTriangles (vector< Triangle > &triangles, int nodeIdx=-1) |
Retrieves list of triangles of all or given nodes. More... | |
Object3DBase_TransformedFacesIterator * | getTransformedFacesIterator () |
Object3DNodeMesh * | getMesh (const string &nodeId) |
Returns object3d node mesh object. More... | |
virtual void | initialize () |
Initiates this object3d. More... | |
virtual void | dispose () |
Disposes this object3d. More... | |
int | getInstances () |
int | getCurrentInstance () |
void | setCurrentInstance (int currentInstance) |
Set current instance. More... | |
bool | getInstanceEnabled () |
void | setInstanceEnabled (bool enabled) |
Set current instance enabled. More... | |
void | setAnimation (const string &id, float speed=1.0f) |
Sets up a base animation to play. More... | |
void | setAnimationSpeed (float speed) |
Set up animation speed. More... | |
void | addOverlayAnimation (const string &id) |
Overlays a animation above the base animation. More... | |
void | removeOverlayAnimation (const string &id) |
Removes a overlay animation. More... | |
void | removeOverlayAnimationsFinished () |
Removes all finished overlay animations. More... | |
void | removeOverlayAnimations () |
Removes all overlay animations. More... | |
const string | getAnimation () |
float | getAnimationTime () |
Returns current base animation time. More... | |
bool | hasOverlayAnimation (const string &id) |
Returns if there is currently running a overlay animation with given id. More... | |
float | getOverlayAnimationTime (const string &id) |
Returns current overlay animation time. More... | |
const Matrix4x4 | getNodeTransformationsMatrix (const string &id) |
Returns transformation matrix for given node. More... | |
void | setNodeTransformationsMatrix (const string &id, const Matrix4x4 &matrix) |
Set transformation matrix for given node. More... | |
void | unsetNodeTransformationsMatrix (const string &id) |
Unset transformation matrix for given node. More... | |
const Matrix4x4 & | getTransformationsMatrix () const |
Protected Member Functions | |
void | updateBoundingBox () |
Update bounding volume. More... | |
![]() | |
Object3DBase (Model *model, bool useManagers, Engine::AnimationProcessingTarget animationProcessingTarget, int instances) | |
Private constructor. More... | |
virtual | ~Object3DBase () |
Destructor. More... | |
Protected Attributes | |
string | id |
bool | enabled |
bool | pickable |
bool | contributesShadows |
bool | receivesShadows |
Color4 | effectColorMul |
Color4 | effectColorAdd |
BoundingBox | boundingBox |
BoundingBox | boundingBoxTransformed |
![]() | |
Model * | model |
vector< Object3DNode * > | object3dNodes |
bool | usesManagers |
int | instances |
int | enabledInstances |
vector< Object3DAnimation * > | instanceAnimations |
vector< bool > | instanceEnabled |
vector< Transformations > | instanceTransformations |
int | currentInstance |
Engine::AnimationProcessingTarget | animationProcessingTarget |
Friends | |
class | EntityRenderer |
Object3DInternal | ( | const string & | id, |
Model * | model, | ||
int | instances | ||
) |
Public constructor.
id | id |
model | model |
instances | instances to compute and render by duplication |
Definition at line 35 of file Object3DInternal.cpp.
|
virtual |
Destructor.
Definition at line 48 of file Object3DInternal.cpp.
void bindDiffuseTexture | ( | FrameBuffer * | frameBuffer, |
const string & | nodeId = string() , |
||
const string & | facesEntityId = string() |
||
) |
Bind frame buffer color texture to a node and faces entity of this object.
frameBuffer | frame buffer |
nodeId | node id or empty string for all |
facesEntityId | faces entity id or empty string for all |
Definition at line 51 of file Object3DInternal.cpp.
void bindDiffuseTexture | ( | int32_t | textureId, |
const string & | nodeId = string() , |
||
const string & | facesEntityId = string() |
||
) |
Bind a texture to a node and faces entity.
textureId | texture id |
nodeId | node id or empty if texture should be bound to all nodes |
facesEntityId | faces entity id or empty if texture should be bound to all faces entities |
Definition at line 61 of file Object3DInternal.cpp.
|
inlineoverridevirtual |
Disposes this object3d.
Reimplemented from Object3DBase.
Definition at line 215 of file Object3DInternal.h.
void fromTransformations | ( | const Transformations & | transformations | ) |
Definition at line 122 of file Object3DInternal.cpp.
|
inline |
Definition at line 168 of file Object3DInternal.h.
|
inline |
Retrieves bounding sphere with transformations applied.
Definition at line 176 of file Object3DInternal.h.
|
inline |
The effect color will be added to fragment color.
Definition at line 153 of file Object3DInternal.h.
|
inline |
The effect color will be multiplied with fragment color.
Definition at line 137 of file Object3DInternal.h.
|
inline |
Definition at line 69 of file Object3DInternal.h.
|
inlineoverridevirtual |
Initiates this object3d.
Reimplemented from Object3DBase.
Definition at line 212 of file Object3DInternal.h.
|
inline |
Definition at line 106 of file Object3DInternal.h.
|
inline |
Definition at line 76 of file Object3DInternal.h.
|
inline |
Definition at line 91 of file Object3DInternal.h.
|
inline |
Definition at line 121 of file Object3DInternal.h.
|
inline |
Enable/disable contributes shadows.
contributesShadows | contributes shadows |
Definition at line 114 of file Object3DInternal.h.
|
inline |
The effect color will be added to fragment color.
Definition at line 161 of file Object3DInternal.h.
|
inline |
The effect color that will be multiplied with fragment color.
effectColorMul | effect color |
Definition at line 145 of file Object3DInternal.h.
|
inline |
Enable/disable rendering.
enabled | enabled |
Definition at line 84 of file Object3DInternal.h.
void setNodeTransformationsMatrix | ( | const string & | id, |
const Matrix4x4 & | matrix | ||
) |
Definition at line 100 of file Object3DInternal.cpp.
|
inline |
Set this object pickable.
pickable | pickable |
Definition at line 99 of file Object3DInternal.h.
|
inline |
Enable/disable receives shadows.
receivesShadows | receives shadows |
Definition at line 129 of file Object3DInternal.h.
void setTextureMatrix | ( | const Matrix2D3x3 & | textureMatrix, |
const string & | nodeId = string() , |
||
const string & | facesEntityId = string() |
||
) |
Set texture matrix.
textureMatrix | texture matrix |
nodeId | node id or empty string for all |
facesEntityId | faces entity id or empty string for all |
Definition at line 81 of file Object3DInternal.cpp.
void unbindDiffuseTexture | ( | const string & | nodeId = string() , |
const string & | facesEntityId = string() |
||
) |
Unbind dynamic texture to a node and faces entity of this object.
nodeId | node id or empty string for all |
facesEntityId | faces entity id orempty string for all |
Definition at line 56 of file Object3DInternal.cpp.
void unsetNodeTransformationsMatrix | ( | const string & | id | ) |
Definition at line 111 of file Object3DInternal.cpp.
void update | ( | ) |
Definition at line 128 of file Object3DInternal.cpp.
|
protected |
Update bounding volume.
Definition at line 134 of file Object3DInternal.cpp.
|
friend |
Definition at line 34 of file Object3DInternal.h.
|
protected |
Definition at line 44 of file Object3DInternal.h.
|
protected |
Definition at line 45 of file Object3DInternal.h.
|
protected |
Definition at line 40 of file Object3DInternal.h.
|
protected |
Definition at line 43 of file Object3DInternal.h.
|
protected |
Definition at line 42 of file Object3DInternal.h.
|
protected |
Definition at line 38 of file Object3DInternal.h.
|
protected |
Definition at line 37 of file Object3DInternal.h.
|
protected |
Definition at line 39 of file Object3DInternal.h.
|
protected |
Definition at line 41 of file Object3DInternal.h.