TDME2 1.9.121
Public Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | Static Private Attributes | Friends | List of all members
Object3DNode Class Referencefinal

Object 3d node specifically for rendering. More...

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

Collaboration diagram for Object3DNode:
Collaboration graph

Public Member Functions

 Object3DNode ()
 Public constructor. More...
 
 ~Object3DNode ()
 Destructor. More...
 

Private Member Functions

void dispose ()
 Dispose. More...
 

Static Private Member Functions

static void createNodes (Object3DBase *object, bool useManagers, Engine::AnimationProcessingTarget animationProcessingTarget, vector< Object3DNode * > &object3DNodes)
 Creates object 3d nodes from given object3d base object. More...
 
static void computeTransformations (int contextIdx, vector< Object3DNode * > &object3DNodes)
 Applies transformations to meshes for given object 3d nodes. More...
 
static void setupTextures (Renderer *renderer, int contextIdx, Object3DNode *object3DNode, int32_t facesEntityIdx)
 Set up textures for given object3d node and faces entity. More...
 
static void createNodes (Object3DBase *object3D, const map< string, Node * > &nodes, bool animated, bool useManagers, Engine::AnimationProcessingTarget animationProcessingTarget, vector< Object3DNode * > &object3DNodes)
 Creates a object 3d nodes recursively for given node and it sub nodes. More...
 

Private Attributes

string id
 
Object3DBaseobject { nullptr }
 
Nodenode { nullptr }
 
bool animated { false }
 
vector< Matrix2D3x3textureMatricesByEntities
 
vector< int32_t > specularMaterialDiffuseTextureIdsByEntities
 
vector< int32_t > specularMaterialDynamicDiffuseTextureIdsByEntities
 
vector< int32_t > specularMaterialSpecularTextureIdsByEntities
 
vector< int32_t > specularMaterialNormalTextureIdsByEntities
 
vector< int32_t > pbrMaterialBaseColorTextureIdsByEntities
 
vector< int32_t > pbrMaterialMetallicRoughnessTextureIdsByEntities
 
vector< int32_t > pbrMaterialNormalTextureIdsByEntities
 
Object3DNodeRendererrenderer { nullptr }
 
Object3DNodeMeshmesh { nullptr }
 
Matrix4x4nodeTransformationsMatrix { nullptr }
 

Static Private Attributes

static STATIC_DLL_IMPEXT int64_t counter = 0
 
static constexpr int32_t TEXTUREID_NONE { -1 }
 
static constexpr int32_t TEXTUREID_NOTUSED { 0 }
 

Friends

class tdme::engine::Object3D
 
class ModelUtilitiesInternal
 
class Object3DBase
 
class Object3DBase_TransformedFacesIterator
 
class Object3DNodeMesh
 
class Object3DNodeRenderer
 
class Object3DInternal
 
class EntityRenderer
 
class TransparentRenderFacesPool
 
class TransparentRenderFacesGroup
 
class tdme::engine::subsystems::skinning::SkinningShader
 

Detailed Description

Object 3d node specifically for rendering.

Author
Andreas Drewke
Version
$Id$

Definition at line 38 of file Object3DNode.h.

Constructor & Destructor Documentation

◆ Object3DNode()

Public constructor.

Definition at line 56 of file Object3DNode.cpp.

◆ ~Object3DNode()

Destructor.

Definition at line 60 of file Object3DNode.cpp.

Member Function Documentation

◆ computeTransformations()

void computeTransformations ( int  contextIdx,
vector< Object3DNode * > &  object3DNodes 
)
staticprivate

Applies transformations to meshes for given object 3d nodes.

Parameters
contextIdxcontext index
object3DNodesnode render data list

Definition at line 169 of file Object3DNode.cpp.

◆ createNodes() [1/2]

void createNodes ( Object3DBase object,
bool  useManagers,
Engine::AnimationProcessingTarget  animationProcessingTarget,
vector< Object3DNode * > &  object3DNodes 
)
staticprivate

Creates object 3d nodes from given object3d base object.

Parameters
objectobject 3d base
useManagersuse mesh and object 3d renderer node managers
animationProcessingTargetanimation processing target
object3DNodesobject 3d nodes array
Returns
object 3d node

Definition at line 65 of file Object3DNode.cpp.

◆ createNodes() [2/2]

void createNodes ( Object3DBase object3D,
const map< string, Node * > &  nodes,
bool  animated,
bool  useManagers,
Engine::AnimationProcessingTarget  animationProcessingTarget,
vector< Object3DNode * > &  object3DNodes 
)
staticprivate

Creates a object 3d nodes recursively for given node and it sub nodes.

Parameters
object3Dobject 3D base
nodesnodes
animatedanimated
useManagersuse mesh and object 3d render node managers
animationProcessingTargetanimation processing target
object3DNodesobject 3D nodes

Definition at line 71 of file Object3DNode.cpp.

◆ dispose()

void dispose ( )
private

Dispose.

Definition at line 239 of file Object3DNode.cpp.

◆ setupTextures()

void setupTextures ( Renderer renderer,
int  contextIdx,
Object3DNode object3DNode,
int32_t  facesEntityIdx 
)
staticprivate

Set up textures for given object3d node and faces entity.

Parameters
rendererrenderer
contextIdxcontext index
object3DNodeobject 3D node
facesEntityIdxfaces entity idx

Definition at line 176 of file Object3DNode.cpp.

Friends And Related Function Documentation

◆ EntityRenderer

friend class EntityRenderer
friend

Definition at line 47 of file Object3DNode.h.

◆ ModelUtilitiesInternal

friend class ModelUtilitiesInternal
friend

Definition at line 41 of file Object3DNode.h.

◆ Object3DBase

friend class Object3DBase
friend

Definition at line 42 of file Object3DNode.h.

◆ Object3DBase_TransformedFacesIterator

Definition at line 43 of file Object3DNode.h.

◆ Object3DInternal

friend class Object3DInternal
friend

Definition at line 46 of file Object3DNode.h.

◆ Object3DNodeMesh

friend class Object3DNodeMesh
friend

Definition at line 44 of file Object3DNode.h.

◆ Object3DNodeRenderer

friend class Object3DNodeRenderer
friend

Definition at line 45 of file Object3DNode.h.

◆ tdme::engine::Object3D

friend class tdme::engine::Object3D
friend

Definition at line 40 of file Object3DNode.h.

◆ tdme::engine::subsystems::skinning::SkinningShader

Definition at line 50 of file Object3DNode.h.

◆ TransparentRenderFacesGroup

friend class TransparentRenderFacesGroup
friend

Definition at line 49 of file Object3DNode.h.

◆ TransparentRenderFacesPool

friend class TransparentRenderFacesPool
friend

Definition at line 48 of file Object3DNode.h.

Member Data Documentation

◆ animated

bool animated { false }
private

Definition at line 61 of file Object3DNode.h.

◆ counter

int64_t counter = 0
staticprivate

Definition at line 53 of file Object3DNode.h.

◆ id

string id
private

Definition at line 58 of file Object3DNode.h.

◆ mesh

Object3DNodeMesh* mesh { nullptr }
private

Definition at line 71 of file Object3DNode.h.

◆ node

Node* node { nullptr }
private

Definition at line 60 of file Object3DNode.h.

◆ nodeTransformationsMatrix

Matrix4x4* nodeTransformationsMatrix { nullptr }
private

Definition at line 72 of file Object3DNode.h.

◆ object

Object3DBase* object { nullptr }
private

Definition at line 59 of file Object3DNode.h.

◆ pbrMaterialBaseColorTextureIdsByEntities

vector<int32_t> pbrMaterialBaseColorTextureIdsByEntities
private

Definition at line 67 of file Object3DNode.h.

◆ pbrMaterialMetallicRoughnessTextureIdsByEntities

vector<int32_t> pbrMaterialMetallicRoughnessTextureIdsByEntities
private

Definition at line 68 of file Object3DNode.h.

◆ pbrMaterialNormalTextureIdsByEntities

vector<int32_t> pbrMaterialNormalTextureIdsByEntities
private

Definition at line 69 of file Object3DNode.h.

◆ renderer

Object3DNodeRenderer* renderer { nullptr }
private

Definition at line 70 of file Object3DNode.h.

◆ specularMaterialDiffuseTextureIdsByEntities

vector<int32_t> specularMaterialDiffuseTextureIdsByEntities
private

Definition at line 63 of file Object3DNode.h.

◆ specularMaterialDynamicDiffuseTextureIdsByEntities

vector<int32_t> specularMaterialDynamicDiffuseTextureIdsByEntities
private

Definition at line 64 of file Object3DNode.h.

◆ specularMaterialNormalTextureIdsByEntities

vector<int32_t> specularMaterialNormalTextureIdsByEntities
private

Definition at line 66 of file Object3DNode.h.

◆ specularMaterialSpecularTextureIdsByEntities

vector<int32_t> specularMaterialSpecularTextureIdsByEntities
private

Definition at line 65 of file Object3DNode.h.

◆ TEXTUREID_NONE

constexpr int32_t TEXTUREID_NONE { -1 }
staticconstexprprivate

Definition at line 55 of file Object3DNode.h.

◆ TEXTUREID_NOTUSED

constexpr int32_t TEXTUREID_NOTUSED { 0 }
staticconstexprprivate

Definition at line 56 of file Object3DNode.h.

◆ textureMatricesByEntities

vector<Matrix2D3x3> textureMatricesByEntities
private

Definition at line 62 of file Object3DNode.h.


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