TDME2 1.9.121
BatchRendererTriangles.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
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::array;
21using std::vector;
22
31
32/**
33 * Batch renderer for transparent triangles
34 * @author andreas.drewke
35 * @version $Id$
36 */
38{
40
41private:
42 static constexpr int32_t TRIANGLE_COUNT { 1024 };
43 static constexpr int32_t VERTEX_COUNT { TRIANGLE_COUNT * 3 };
44 Renderer* renderer { nullptr };
45 vector<int32_t>* vboIds { nullptr };
46 int32_t id;
48 int32_t vertices;
61
62 /**
63 * Clears this batch vbo renderer
64 */
65 void clear();
66
67 /**
68 * Render
69 */
70 void render();
71
72 /**
73 * Adds a vertex to this transparent render faces group
74 * @param vertex vertex
75 * @param normal normal
76 * @param textureCoordinate texture coordinate
77 * @return success
78 */
79 inline bool addVertex(const Vector3& vertex, const Vector3& normal, const Vector2& textureCoordinate) {
80 // check if full
81 if (vertices == VERTEX_COUNT) return false;
82
83 // otherwise
84 fbVertices.put(vertex.getArray());
85 fbNormals.put(normal.getArray());
86 fbTextureCoordinates.put(textureCoordinate.getArray());
87
88 //
89 vertices++;
90 return true;
91 }
92
93public:
94 /**
95 * Public constructor
96 * @param renderer renderer
97 * @param id id
98 */
100
101 /**
102 * Destructor
103 */
105
106 /**
107 * @return acquired
108 */
109 bool isAcquired();
110
111 /**
112 * Acquire
113 */
114 bool acquire();
115
116 /**
117 * Release
118 */
119 void release();
120
121 /**
122 * Init
123 */
124 void initialize();
125
126 /**
127 * Dispose
128 */
129 void dispose();
130
131};
Color 4 definition.
Definition: Color4.h:20
Class representing texture UV coordinates data.
bool addVertex(const Vector3 &vertex, const Vector3 &normal, const Vector2 &textureCoordinate)
Adds a vertex to this transparent render faces group.
BatchRendererTriangles(Renderer *renderer, int32_t id)
Public constructor.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
2D vector 2 class
Definition: Vector2.h:19
array< float, 2 > & getArray() const
Definition: Vector2.h:330
3D vector 3 class
Definition: Vector3.h:22
array< float, 3 > & getArray() const
Definition: Vector3.h:171
Byte buffer class.
Definition: ByteBuffer.h:24
Float buffer class.
Definition: FloatBuffer.h:18
FloatBuffer * put(float value)
Put a float value into float buffer.
Definition: FloatBuffer.h:52