TDME2 1.9.121
BatchRendererTriangles.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
11#include <tdme/engine/Engine.h>
12#include <tdme/math/Vector3.h>
15
16using std::string;
17using std::to_string;
18
29
30constexpr int32_t BatchRendererTriangles::VERTEX_COUNT;
31
32BatchRendererTriangles::BatchRendererTriangles(Renderer* renderer, int32_t id)
33{
34 this->id = id;
35 this->renderer = renderer;
36 this->acquired = false;
37 this->vertices = 0;
38 this->fbVertices = (fbVerticesByteBuffer = ByteBuffer::allocate(VERTEX_COUNT * 3 * sizeof(float)))->asFloatBuffer();
39 this->fbNormals = (fbNormalsByteBuffer = ByteBuffer::allocate(VERTEX_COUNT * 3 * sizeof(float)))->asFloatBuffer();
40 this->fbTextureCoordinates = (fbTextureCoordinatesByteBuffer = ByteBuffer::allocate(VERTEX_COUNT * 2 * sizeof(float)))->asFloatBuffer();
41 this->fbModelMatrices = (fbModelMatricesByteBuffer = ByteBuffer::allocate(1 * 16 * sizeof(float)))->asFloatBuffer();
43 this->fbEffectColorMuls = (fbEffectColorMulsByteBuffer = ByteBuffer::allocate(1 * 4 * sizeof(float)))->asFloatBuffer();
44 this->fbEffectColorMuls.put(Color4(1.0f, 1.0f, 1.0f, 1.0f).getArray());
45 this->fbEffectColorAdds = (fbEffectColorAddsByteBuffer = ByteBuffer::allocate(1 * 4 * sizeof(float)))->asFloatBuffer();
46 this->fbEffectColorAdds.put(Color4(0.0f, 0.0f, 0.0f, 0.0f).getArray());
47}
48
50{
57}
58
60{
61 return acquired;
62}
63
65{
66 if (acquired == true)
67 return false;
68
69 acquired = true;
70 return true;
71}
72
74{
75 acquired = false;
76}
77
79{
80 // initialize if not yet done
81 if (vboIds == nullptr) {
82 auto created = false;
83 auto vboManaged = Engine::getInstance()->getVBOManager()->addVBO("tdme.batchvborenderertriangles." + to_string(id), 6, false, false, created);
84 vboIds = vboManaged->getVBOIds();
85 }
86}
87
89{
90 // skip if no vertex data exists
91 if (fbVertices.getPosition() == 0 || fbNormals.getPosition() == 0 || fbTextureCoordinates.getPosition() == 0) return;
92 // use default context
93 auto contextIdx = renderer->CONTEXTINDEX_DEFAULT;
94 // determine triangles count
95 auto triangles = fbVertices.getPosition() / 3 /*vertices*/ / 3 /*vector components*/;
96 // upload vertices
97 renderer->uploadBufferObject(contextIdx, (*vboIds)[0], fbVertices.getPosition() * sizeof(float), &fbVertices);
98 // upload normals
99 renderer->uploadBufferObject(contextIdx, (*vboIds)[1], fbNormals.getPosition() * sizeof(float), &fbNormals);
100 // upload texture coordinates
102 // bind vertices
103 renderer->bindVerticesBufferObject(contextIdx, (*vboIds)[0]);
104 // bind normals
105 renderer->bindNormalsBufferObject(contextIdx, (*vboIds)[1]);
106 // bind texture coordinates
108 // handle instanced rendering
109 // TODO: check if to move somewhere else
115 renderer->uploadBufferObject(contextIdx, (*vboIds)[3], fbModelMatrices.getPosition() * sizeof(float), &fbModelMatrices);
117 renderer->uploadBufferObject(contextIdx, (*vboIds)[4], fbEffectColorMuls.getPosition() * sizeof(float), &fbEffectColorMuls);
118 renderer->bindEffectColorMulsBufferObject(contextIdx, (*vboIds)[4], 1);
119 renderer->uploadBufferObject(contextIdx, (*vboIds)[5], fbEffectColorAdds.getPosition() * sizeof(float), &fbEffectColorAdds);
120 renderer->bindEffectColorAddsBufferObject(contextIdx, (*vboIds)[5], 1);
121
122 // draw
123 renderer->drawInstancedTrianglesFromBufferObjects(contextIdx, triangles, 0, 1);
124 } else {
125 // draw
126 renderer->drawTrianglesFromBufferObjects(contextIdx, triangles, 0);
127 }
128}
129
131{
132 if (vboIds != nullptr) {
133 Engine::getInstance()->getVBOManager()->removeVBO("tdme.batchvborenderertriangles." + to_string(id));
134 vboIds = nullptr;
135 }
136}
137
139{
140 vertices = 0;
144}
Engine main class.
Definition: Engine.h:122
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
static VBOManager * getVBOManager()
Definition: Engine.h:572
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
Color 4 definition.
Definition: Color4.h:20
Class representing texture UV coordinates data.
VBOManager_VBOManaged * addVBO(const string &vboId, int32_t ids, bool useGPUMemory, bool shared, bool &created)
Adds a VBO to manager or retrieve VBO if existing.
Definition: VBOManager.cpp:31
void removeVBO(const string &vboId)
Removes a VBO from manager.
Definition: VBOManager.cpp:73
virtual void drawInstancedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances)=0
Draw instanced triangles from buffer objects.
virtual void bindEffectColorMulsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor)=0
Bind effect color muls buffer object.
array< float, 4 > & getEffectColorMul(int contextIdx)
Get effect color mul.
Definition: Renderer.h:1116
virtual void bindModelMatricesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind model matrices buffer object.
virtual bool isInstancedRenderingAvailable()=0
Checks if instanced rendering is available.
virtual void drawTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)=0
Draw triangles from buffer objects.
virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0
Uploads buffer data to buffer object.
virtual void bindTextureCoordinatesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind texture coordinates buffer object.
array< float, 4 > & getEffectColorAdd(int contextIdx)
Get effect color add.
Definition: Renderer.h:1126
virtual void bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind vertices buffer object.
virtual void bindEffectColorAddsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor)=0
Bind effect color adds buffer object.
virtual void bindNormalsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind normals buffer object.
Buffers used to transfer data between main memory to graphics board memory.
Definition: ObjectBuffer.h:23
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Matrix4x4 & identity()
Setup identity matrix.
Definition: Matrix4x4.h:326
array< float, 16 > & getArray() const
Returns array data.
Definition: Matrix4x4.h:616
3D vector 3 class
Definition: Vector3.h:22
Buffer * clear()
Clear.
Definition: Buffer.h:69
Byte buffer class.
Definition: ByteBuffer.h:24
Float buffer class.
Definition: FloatBuffer.h:18
virtual int32_t getPosition()
Definition: FloatBuffer.h:30
FloatBuffer * put(float value)
Put a float value into float buffer.
Definition: FloatBuffer.h:52