TDME2 1.9.121
TransparentRenderFacesGroup.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
13#include <tdme/math/fwd-tdme.h>
14#include <tdme/math/Matrix4x4.h>
15#include <tdme/math/Vector2.h>
16#include <tdme/math/Vector3.h>
19
20using std::string;
21using std::vector;
22
35
36/**
37 * Transparent render faces group
38 * @author andreas.drewke
39 * @version $Id$
40 */
42{
43 friend class Object3DNodeMesh;
44 friend class EntityRenderer;
46
47private:
49 vector<BatchRendererTriangles*> batchRenderers;
50 Model* model { nullptr };
53
56
57 const Material* material { nullptr };
59
60 string shader;
61
62 /**
63 * Public constructor
64 */
66
67 /**
68 * Set transparent render faces group
69 * @param object3DRenderer object3D renderer
70 * @param model model
71 * @param object3DNode object 3D node
72 * @param facesEntityIdx faces entity idx
73 * @param effectColorAdd effect color add
74 * @param effectColorMul effect color mul
75 * @param material material
76 * @param textureCoordinates texture coordinates
77 * @param shader shader
78 */
80
81 /**
82 * Creates a key for given transparent render faces group attributes
83 * @param model model
84 * @param object3DNode object 3D node
85 * @param facesEntityIdx faces entity idx
86 * @param effectColorAdd effect color add
87 * @param effectColorMul effect color mul
88 * @param material material
89 * @param textureCoordinates texture coordinates
90 * @param shader shader
91 * @return
92 */
93 static const string createKey(Model* model, Object3DNode* object3DNode, int32_t facesEntityIdx, const Color4& effectColorAdd, const Color4& effectColorMul, const Material* material, bool textureCoordinates, const string& shader);
94
95 /**
96 * Adds a vertex to this transparent render faces group
97 * @param vertex vertex
98 * @param normal normal
99 * @param textureCoordinate texture coordinate
100 */
101 inline void addVertex(const Vector3& vertex, const Vector3& normal, const Vector2& textureCoordinate) {
102 // check if we have a batch renderer already?
103 if (batchRenderers.size() == 0) {
104 // nope, add first one
105 auto batchRendererTriangles = object3DRenderer->acquireTrianglesBatchRenderer();
106 if (batchRendererTriangles == nullptr) {
107 Console::println(string("TransparentRenderFacesGroup::addVertex(): could not acquire triangles batch renderer"));
108 return;
109 }
110 batchRenderers.push_back(batchRendererTriangles);
111 }
112 // try to add vertex
113 auto batchRendererTriangles = batchRenderers[batchRenderers.size() - 1];
114 if (batchRendererTriangles->addVertex(vertex, normal, textureCoordinate) == true)
115 return;
116 // failed, acquire additionally one
117 batchRendererTriangles = object3DRenderer->acquireTrianglesBatchRenderer();
118 if (batchRendererTriangles == nullptr) {
119 Console::println(string("TransparentRenderFacesGroup::addVertex(): could not acquire triangles batch renderer"));
120 return;
121 }
122 // add it
123 batchRenderers.push_back(batchRendererTriangles);
124 // add vertex
125 batchRendererTriangles->addVertex(vertex, normal, textureCoordinate);
126 }
127
128 /**
129 * Render this transparent render faces node
130 * @param engine engine
131 * @param renderer renderer
132 * @param contextIdx context index
133 */
134 void render(Engine* engine, Renderer* renderer, int contextIdx);
135
136};
Engine main class.
Definition: Engine.h:122
Color 4 definition.
Definition: Color4.h:20
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
Class representing texture UV coordinates data.
Object 3D node mesh specifically for rendering.
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
void addVertex(const Vector3 &vertex, const Vector3 &normal, const Vector2 &textureCoordinate)
Adds a vertex to this transparent render faces group.
static const string createKey(Model *model, Object3DNode *object3DNode, int32_t facesEntityIdx, const Color4 &effectColorAdd, const Color4 &effectColorMul, const Material *material, bool textureCoordinates, const string &shader)
Creates a key for given transparent render faces group attributes.
void set(EntityRenderer *object3DRenderer, Model *model, Object3DNode *object3DNode, int32_t facesEntityIdx, const Color4 &effectColorAdd, const Color4 &effectColorMul, const Material *material, bool textureCoordinates, const string &shader)
Set transparent render faces group.
void render(Engine *engine, Renderer *renderer, int contextIdx)
Render this transparent render faces node.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
2D vector 2 class
Definition: Vector2.h:19
3D vector 3 class
Definition: Vector3.h:22
Console class.
Definition: Console.h:26