TDME2 1.9.121
BatchRendererPoints.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
12
13using std::to_string;
14using std::vector;
15
22
23/**
24 * Batch renderer for points
25 * @author andreas.drewke
26 * @version $Id$
27 */
29{
30 friend class EntityRenderer;
31
32private:
33 static constexpr int32_t POINT_COUNT { 65535 };
34 Renderer* renderer { nullptr };
35 vector<int32_t>* vboIds { nullptr };
36 int32_t id;
52
57
58 /**
59 * Public constructor
60 */
62
63 /**
64 * Destructor
65 */
67
68 /**
69 * Render
70 * @param contextIdx context index
71 */
72 void render(int contextIdx);
73
74 /**
75 * Clears this batch vbo renderer
76 */
77 void clear();
78
79 /**
80 * Adds a transparent render point to this transparent render points
81 * @param point transparent render point
82 */
83 inline void addPoint(const TransparentRenderPoint* point, int textureIndex, float pointSize, const Color4& effectColorMul, const Color4& effectColorAdd, int textureHorizontalSprites, int textureVerticalSprites) {
84 fbVertices.put(point->point.getArray());
85 sbTextureSpriteIndices.put(textureIndex);
87 fbColors.put(point->color.getArray());
88 fbPointSizes.put(pointSize);
89 sbSpriteSheetDimension.put(textureHorizontalSprites);
90 sbSpriteSheetDimension.put(textureVerticalSprites);
91 fbEffectColorMul.put(effectColorMul.getArray());
92 fbEffectColorAdd.put(effectColorAdd.getArray());
93 }
94
95 /**
96 * Adds a transparent render point to this transparent render points
97 * @param point transparent render point
98 */
99 inline void addPointNoInteger(const TransparentRenderPoint* point, int textureIndex, float pointSize, const Color4& effectColorMul, const Color4& effectColorAdd, int textureHorizontalSprites, int textureVerticalSprites) {
100 fbVertices.put(point->point.getArray());
101 fbTextureSpriteIndices.put(static_cast<float>(textureIndex + 0.1f));
102 fbTextureSpriteIndices.put(static_cast<float>(point->spriteIndex + 0.1f));
103 fbColors.put(point->color.getArray());
104 fbPointSizes.put(pointSize);
105 fbSpriteSheetDimension.put(static_cast<float>(textureHorizontalSprites + 0.1f));
106 fbSpriteSheetDimension.put(static_cast<float>(textureVerticalSprites + 0.1f));
107 fbEffectColorMul.put(effectColorMul.getArray());
108 fbEffectColorAdd.put(effectColorAdd.getArray());
109 }
110
111 /**
112 * @return has points
113 */
114 inline bool hasPoints() {
115 return fbVertices.getPosition() > 0;
116 }
117
118 inline int getPointCount() {
119 return fbVertices.getPosition() / 3;
120 }
121
122public:
123
124 /**
125 * @return acquired
126 */
127 inline bool isAcquired() {
128 return acquired;
129 }
130
131 /**
132 * Acquire
133 */
134 inline bool acquire() {
135 if (acquired == true) return false;
136 acquired = true;
137 return true;
138 }
139
140 /**
141 * Release
142 */
143 inline void release() {
144 acquired = false;
145 }
146
147 /**
148 * Init
149 */
150 void initialize();
151
152 /**
153 * Dispose
154 */
155 void dispose();
156};
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
Color 4 definition.
Definition: Color4.h:20
BatchRendererPoints(Renderer *renderer, int32_t id)
Public constructor.
void addPoint(const TransparentRenderPoint *point, int textureIndex, float pointSize, const Color4 &effectColorMul, const Color4 &effectColorAdd, int textureHorizontalSprites, int textureVerticalSprites)
Adds a transparent render point to this transparent render points.
void addPointNoInteger(const TransparentRenderPoint *point, int textureIndex, float pointSize, const Color4 &effectColorMul, const Color4 &effectColorAdd, int textureHorizontalSprites, int textureVerticalSprites)
Adds a transparent render point to this transparent render points.
array< float, 3 > & getArray() const
Definition: Vector3.h:171
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
Short buffer class.
Definition: ShortBuffer.h:14
ShortBuffer * put(int16_t value)
Put a value into current position.
Definition: ShortBuffer.h:58