TDME2 1.9.121
TransparentRenderFacesPool.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
15#include <tdme/math/fwd-tdme.h>
16#include <tdme/math/Matrix4x4.h>
17#include <tdme/math/Vector3.h>
20#include <tdme/utilities/Pool.h>
21
22using std::string;
23using std::vector;
24
37
38/**
39 * Transparent render faces pool
40 * @author andreas.drewke
41 * @version $Id$
42 */
44{
45 friend class EntityRenderer;
47
48private:
49 static constexpr int32_t FACES_MAX { 16384 };
50 vector<TransparentRenderFace*> transparentRenderFaces;
52
53 /**
54 * Public constructor
55 */
57
58 /**
59 * Creates an array of transparent render faces from
60 * @param modelViewMatrix model view matrix
61 * @param object3DNode object3D node
62 * @param facesEntityIdx faces entity index
63 * @param faceIdx face index
64 */
65 inline void createTransparentRenderFaces(Matrix4x4& modelViewMatrix, Object3DNode* object3DNode, int32_t facesEntityIdx, int32_t faceIdx) {
66 // retrieve objects we need
67 auto& facesEntities = object3DNode->node->getFacesEntities();
68 auto& facesEntity = facesEntities[facesEntityIdx];
69 auto& faces = facesEntity.getFaces();
70 auto nodeTransformedVertices = object3DNode->mesh->vertices;
71 // objects we will use for calculations
72 float distanceFromCamera;
73 Vector3 faceCenter;
74 // create transparent render faces
75 for (auto i = 0; i < faces.size(); i++) {
76 // check for pool overflow
78 Console::println(string("TransparentRenderFacesPool::createTransparentRenderFaces(): Too many transparent render faces"));
79 break;
80 }
81 // set up face
82 auto faceVertexIndices = faces[i].getVertexIndices();
83 faceCenter.set(0.0f, 0.0f, 0.0f);
84 faceCenter.add((*nodeTransformedVertices)[faceVertexIndices[0]]);
85 faceCenter.add((*nodeTransformedVertices)[faceVertexIndices[1]]);
86 faceCenter.add((*nodeTransformedVertices)[faceVertexIndices[2]]);
87 faceCenter.scale(1.0f / 3.0f);
88 faceCenter = modelViewMatrix.multiply(faceCenter);
89 distanceFromCamera = -faceCenter.getZ();
90 // create transparent render face
91 auto transparentRenderFace = transparentRenderFacesPool.allocate();
92 transparentRenderFace->object3DNode = object3DNode;
93 transparentRenderFace->facesEntityIdx = facesEntityIdx;
94 transparentRenderFace->faceIdx = faceIdx;
95 transparentRenderFace->distanceFromCamera = distanceFromCamera;
96 transparentRenderFaces.push_back(transparentRenderFace);
97 faceIdx++;
98 }
99 }
100
101 /**
102 * Merges given transparent render faces pool into this pool
103 * @param srcTransparentRenderFacesPool transparent render faces pool
104 */
105 inline void merge(TransparentRenderFacesPool* srcTransparentRenderFacesPool) {
106 for (auto srcTransparentRenderFace: srcTransparentRenderFacesPool->transparentRenderFaces) {
107 auto transparentRenderFace = transparentRenderFacesPool.allocate();
108 *transparentRenderFace = *srcTransparentRenderFace;
109 transparentRenderFaces.push_back(transparentRenderFace);
110 }
111 }
112
113 /**
114 * Reset
115 */
116 void reset();
117
118 /**
119 * @return transparent render faces vector
120 */
121 vector<TransparentRenderFace*>& getTransparentRenderFaces();
122
123public:
124
125 /**
126 * @return allocated faces
127 */
128 int32_t size();
129};
Engine main class.
Definition: Engine.h:122
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Definition: Face.h:19
Node faces entity A node can have multiple entities containing faces and a applied material.
Definition: FacesEntity.h:28
Model node.
Definition: Node.h:31
const vector< FacesEntity > & getFacesEntities() const
Definition: Node.h:256
Object 3D node mesh specifically for rendering.
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
void createTransparentRenderFaces(Matrix4x4 &modelViewMatrix, Object3DNode *object3DNode, int32_t facesEntityIdx, int32_t faceIdx)
Creates an array of transparent render faces from.
TransparentRenderFacesPool_TransparentRenderFacesPool transparentRenderFacesPool
void merge(TransparentRenderFacesPool *srcTransparentRenderFacesPool)
Merges given transparent render faces pool into this pool.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Definition: Matrix4x4.h:351
3D vector 3 class
Definition: Vector3.h:22
float getZ() const
Definition: Vector3.h:136
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349
Console class.
Definition: Console.h:26
Pool template class.
Definition: Pool.h:22
int32_t size()
Definition: Pool.h:89
T allocate()
Allocate a new element from pool.
Definition: Pool.h:53