TDME2 1.9.121
BatchRendererPoints.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>
16
17using std::string;
18using std::to_string;
19
21
31
32constexpr int32_t BatchRendererPoints::POINT_COUNT;
33
34BatchRendererPoints::BatchRendererPoints(Renderer* renderer, int32_t id)
35{
36 this->id = id;
37 this->renderer = renderer;
38 this->acquired = false;
39 fbVertices = (fbVerticesByteBuffer = ByteBuffer::allocate(POINT_COUNT * 3 * sizeof(float)))->asFloatBuffer();
40 fbColors = (fbColorsByteBuffer = ByteBuffer::allocate(POINT_COUNT * 4 * sizeof(float)))->asFloatBuffer();
41 fbPointSizes = (fbPointSizesByteBuffer = ByteBuffer::allocate(POINT_COUNT * sizeof(float)))->asFloatBuffer();
42 fbEffectColorMul = (fbEffectColorMulByteBuffer = ByteBuffer::allocate(POINT_COUNT * 4 * sizeof(float)))->asFloatBuffer();
43 fbEffectColorAdd = (fbEffectColorAddByteBuffer = ByteBuffer::allocate(POINT_COUNT * 4 * sizeof(float)))->asFloatBuffer();
45 sbTextureSpriteIndices = (sbTextureSpriteIndicesByteBuffer = ByteBuffer::allocate(POINT_COUNT * 2 * sizeof(uint16_t)))->asShortBuffer();
46 sbSpriteSheetDimension = (sbSpriteSheetDimensionByteBuffer = ByteBuffer::allocate(POINT_COUNT * 2 * sizeof(uint16_t)))->asShortBuffer();
47 } else {
48 fbTextureSpriteIndices = (fbTextureSpriteIndicesByteBuffer = ByteBuffer::allocate(POINT_COUNT * 2 * sizeof(float)))->asFloatBuffer();
49 fbSpriteSheetDimension = (fbSpriteSheetDimensionByteBuffer = ByteBuffer::allocate(POINT_COUNT * 2 * sizeof(float)))->asFloatBuffer();
50 }
51}
52
54{
56 delete fbColorsByteBuffer;
63 } else {
66 }
67}
68
70{
71 // initialize if not yet done
72 if (vboIds == nullptr) {
73 auto created = false;
74 auto vboManaged = Engine::getInstance()->getVBOManager()->addVBO("tdme.batchvborendererpoints." + to_string(id), 7, false, false, created);
75 vboIds = vboManaged->getVBOIds();
76 }
77}
78
79void BatchRendererPoints::render(int contextIdx)
80{
81 // skip if no vertex data exists
82 if (fbVertices.getPosition() == 0)
83 return;
84
85 // determine point count
86 auto points = fbVertices.getPosition() / 3;
87 // upload
88 renderer->uploadBufferObject(contextIdx, (*vboIds)[0], fbVertices.getPosition() * sizeof(float), &fbVertices);
89 renderer->uploadBufferObject(contextIdx, (*vboIds)[2], fbColors.getPosition() * sizeof(float), &fbColors);
90 renderer->uploadBufferObject(contextIdx, (*vboIds)[4], fbPointSizes.getPosition() * sizeof(float), &fbPointSizes);
91 renderer->uploadBufferObject(contextIdx, (*vboIds)[5], fbEffectColorMul.getPosition() * sizeof(float), &fbEffectColorMul);
92 renderer->uploadBufferObject(contextIdx, (*vboIds)[6], fbEffectColorAdd.getPosition() * sizeof(float), &fbEffectColorAdd);
96 } else {
99 }
100 // bind vertices
101 renderer->bindVerticesBufferObject(contextIdx, (*vboIds)[0]);
102 // bind texture and sprite indices
104 // bind colors
105 renderer->bindColorsBufferObject(contextIdx, (*vboIds)[2]);
106 // bind sprite sheet dimension
108 // bind point sizes
109 renderer->bindPointSizesBufferObject(contextIdx, (*vboIds)[4]);
110 // bind effect color mul
111 renderer->bindEffectColorMulsBufferObject(contextIdx, (*vboIds)[5], 0);
112 // bind effect color add
113 renderer->bindEffectColorAddsBufferObject(contextIdx, (*vboIds)[6], 0);
114 // draw
115 renderer->drawPointsFromBufferObjects(contextIdx, points, 0);
116}
117
119{
120 if (vboIds != nullptr) {
121 Engine::getInstance()->getVBOManager()->removeVBO("tdme.batchvborendererpoints." + to_string(id));
122 vboIds = nullptr;
123 }
124}
125
127{
129 fbColors.clear();
136 } else {
139 }
140}
Engine main class.
Definition: Engine.h:122
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
static VBOManager * getVBOManager()
Definition: Engine.h:572
Color 4 definition.
Definition: Color4.h:20
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 bindEffectColorMulsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor)=0
Bind effect color muls buffer object.
virtual void bindSpriteSheetDimensionBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind sprite sheet dimension buffer object.
virtual void drawPointsFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset)=0
Draw points 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 bindPointSizesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind point sizes buffer object.
virtual void bindColorsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind colors buffer object.
virtual void bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind vertices buffer object.
virtual void bindTextureSpriteIndicesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind texture and sprite indices buffer object.
virtual void bindEffectColorAddsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor)=0
Bind effect color adds buffer object.
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
virtual int32_t getPosition()
Definition: ShortBuffer.h:39