TDME2 1.9.121
Public Member Functions | Protected Member Functions | Protected Attributes | Friends | List of all members
Object3DInternal Class Reference

Object 3D. More...

#include <tdme/engine/subsystems/rendering/Object3DInternal.h>

Inheritance diagram for Object3DInternal:
Inheritance graph
Collaboration diagram for Object3DInternal:
Collaboration graph

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 Color4getEffectColorMul () 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 Color4getEffectColorAdd () 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...
 
BoundingBoxgetBoundingBox ()
 
BoundingBoxgetBoundingBoxTransformed ()
 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)
 
- Public Member Functions inherited from Object3DBase
ModelgetModel ()
 
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_TransformedFacesIteratorgetTransformedFacesIterator ()
 
Object3DNodeMeshgetMesh (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 Matrix4x4getTransformationsMatrix () const
 

Protected Member Functions

void updateBoundingBox ()
 Update bounding volume. More...
 
- Protected Member Functions inherited from Object3DBase
 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
 
- Protected Attributes inherited from Object3DBase
Modelmodel
 
vector< Object3DNode * > object3dNodes
 
bool usesManagers
 
int instances
 
int enabledInstances
 
vector< Object3DAnimation * > instanceAnimations
 
vector< bool > instanceEnabled
 
vector< TransformationsinstanceTransformations
 
int currentInstance
 
Engine::AnimationProcessingTarget animationProcessingTarget
 

Friends

class EntityRenderer
 

Detailed Description

Object 3D.

Author
Andreas Drewke
Version
$Id$

Definition at line 31 of file Object3DInternal.h.

Constructor & Destructor Documentation

◆ Object3DInternal()

Object3DInternal ( const string &  id,
Model model,
int  instances 
)

Public constructor.

Parameters
idid
modelmodel
instancesinstances to compute and render by duplication

Definition at line 35 of file Object3DInternal.cpp.

◆ ~Object3DInternal()

~Object3DInternal ( )
virtual

Destructor.

Definition at line 48 of file Object3DInternal.cpp.

Member Function Documentation

◆ bindDiffuseTexture() [1/2]

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.

Parameters
frameBufferframe buffer
nodeIdnode id or empty string for all
facesEntityIdfaces entity id or empty string for all

Definition at line 51 of file Object3DInternal.cpp.

◆ bindDiffuseTexture() [2/2]

void bindDiffuseTexture ( int32_t  textureId,
const string &  nodeId = string(),
const string &  facesEntityId = string() 
)

Bind a texture to a node and faces entity.

Parameters
textureIdtexture id
nodeIdnode id or empty if texture should be bound to all nodes
facesEntityIdfaces entity id or empty if texture should be bound to all faces entities

Definition at line 61 of file Object3DInternal.cpp.

◆ dispose()

void dispose ( )
inlineoverridevirtual

Disposes this object3d.

Reimplemented from Object3DBase.

Definition at line 215 of file Object3DInternal.h.

◆ fromTransformations()

void fromTransformations ( const Transformations transformations)

Definition at line 122 of file Object3DInternal.cpp.

◆ getBoundingBox()

BoundingBox * getBoundingBox ( )
inline
Returns
bounding box

Definition at line 168 of file Object3DInternal.h.

◆ getBoundingBoxTransformed()

BoundingBox * getBoundingBoxTransformed ( )
inline

Retrieves bounding sphere with transformations applied.

Returns
bounding sphere

Definition at line 176 of file Object3DInternal.h.

◆ getEffectColorAdd()

const Color4 & getEffectColorAdd ( ) const
inline

The effect color will be added to fragment color.

Returns
effect color

Definition at line 153 of file Object3DInternal.h.

◆ getEffectColorMul()

const Color4 & getEffectColorMul ( ) const
inline

The effect color will be multiplied with fragment color.

Returns
effect color

Definition at line 137 of file Object3DInternal.h.

◆ getId()

const string & getId ( )
inline
Returns
object id

Definition at line 69 of file Object3DInternal.h.

◆ initialize()

void initialize ( )
inlineoverridevirtual

Initiates this object3d.

Reimplemented from Object3DBase.

Definition at line 212 of file Object3DInternal.h.

◆ isContributesShadows()

bool isContributesShadows ( )
inline
Returns
if entity contributes to shadows

Definition at line 106 of file Object3DInternal.h.

◆ isEnabled()

bool isEnabled ( )
inline
Returns
true if enabled to be rendered

Definition at line 76 of file Object3DInternal.h.

◆ isPickable()

bool isPickable ( )
inline
Returns
if object is pickable

Definition at line 91 of file Object3DInternal.h.

◆ isReceivesShadows()

bool isReceivesShadows ( )
inline
Returns
if entity receives shadows

Definition at line 121 of file Object3DInternal.h.

◆ setContributesShadows()

void setContributesShadows ( bool  contributesShadows)
inline

Enable/disable contributes shadows.

Parameters
contributesShadowscontributes shadows

Definition at line 114 of file Object3DInternal.h.

◆ setEffectColorAdd()

void setEffectColorAdd ( const Color4 effectColorAdd)
inline

The effect color will be added to fragment color.

Returns
effect color

Definition at line 161 of file Object3DInternal.h.

◆ setEffectColorMul()

void setEffectColorMul ( const Color4 effectColorMul)
inline

The effect color that will be multiplied with fragment color.

Parameters
effectColorMuleffect color

Definition at line 145 of file Object3DInternal.h.

◆ setEnabled()

void setEnabled ( bool  enabled)
inline

Enable/disable rendering.

Parameters
enabledenabled

Definition at line 84 of file Object3DInternal.h.

◆ setNodeTransformationsMatrix()

void setNodeTransformationsMatrix ( const string &  id,
const Matrix4x4 matrix 
)

Definition at line 100 of file Object3DInternal.cpp.

◆ setPickable()

void setPickable ( bool  pickable)
inline

Set this object pickable.

Parameters
pickablepickable

Definition at line 99 of file Object3DInternal.h.

◆ setReceivesShadows()

void setReceivesShadows ( bool  receivesShadows)
inline

Enable/disable receives shadows.

Parameters
receivesShadowsreceives shadows

Definition at line 129 of file Object3DInternal.h.

◆ setTextureMatrix()

void setTextureMatrix ( const Matrix2D3x3 textureMatrix,
const string &  nodeId = string(),
const string &  facesEntityId = string() 
)

Set texture matrix.

Parameters
textureMatrixtexture matrix
nodeIdnode id or empty string for all
facesEntityIdfaces entity id or empty string for all

Definition at line 81 of file Object3DInternal.cpp.

◆ unbindDiffuseTexture()

void unbindDiffuseTexture ( const string &  nodeId = string(),
const string &  facesEntityId = string() 
)

Unbind dynamic texture to a node and faces entity of this object.

Parameters
nodeIdnode id or empty string for all
facesEntityIdfaces entity id orempty string for all

Definition at line 56 of file Object3DInternal.cpp.

◆ unsetNodeTransformationsMatrix()

void unsetNodeTransformationsMatrix ( const string &  id)

Definition at line 111 of file Object3DInternal.cpp.

◆ update()

void update ( )

Definition at line 128 of file Object3DInternal.cpp.

◆ updateBoundingBox()

void updateBoundingBox ( )
protected

Update bounding volume.

Definition at line 134 of file Object3DInternal.cpp.

Friends And Related Function Documentation

◆ EntityRenderer

friend class EntityRenderer
friend

Definition at line 34 of file Object3DInternal.h.

Member Data Documentation

◆ boundingBox

BoundingBox boundingBox
protected

Definition at line 44 of file Object3DInternal.h.

◆ boundingBoxTransformed

BoundingBox boundingBoxTransformed
protected

Definition at line 45 of file Object3DInternal.h.

◆ contributesShadows

bool contributesShadows
protected

Definition at line 40 of file Object3DInternal.h.

◆ effectColorAdd

Color4 effectColorAdd
protected

Definition at line 43 of file Object3DInternal.h.

◆ effectColorMul

Color4 effectColorMul
protected

Definition at line 42 of file Object3DInternal.h.

◆ enabled

bool enabled
protected

Definition at line 38 of file Object3DInternal.h.

◆ id

string id
protected

Definition at line 37 of file Object3DInternal.h.

◆ pickable

bool pickable
protected

Definition at line 39 of file Object3DInternal.h.

◆ receivesShadows

bool receivesShadows
protected

Definition at line 41 of file Object3DInternal.h.


The documentation for this class was generated from the following files: