TDME2 1.9.121
TransparentRenderPointsPool.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
10#include <tdme/math/fwd-tdme.h>
13
14using std::vector;
15
20
21/**
22 * Transparent render points pool
23 * @author andreas.drewke
24 * @version $Id$
25 */
27{
29
30private:
31 vector<TransparentRenderPoint*> transparentRenderPoints;
32 int32_t poolIdx;
33
34public:
35 /**
36 * Public constructor
37 * @param pointsMax points max
38 */
39 TransparentRenderPointsPool(int32_t pointsMax);
40
41 /**
42 * Destructor
43 */
45
46 /**
47 * Creates an transparent render point entity in pool
48 * @param point point
49 * @param spriteIndex sprite index
50 * @param color color
51 * @param particleSystemType particle system type
52 * @param particleSystem particle system
53 */
54 inline void addPoint(const Vector3& point, uint16_t spriteIndex, const Color4& color, int particleSystemType, void* particleSystem) {
55 // check for pool overflow
56 if (poolIdx >= transparentRenderPoints.size()) {
57 Console::println(string("TransparentRenderPointsPool::createTransparentRenderPoint(): Too many transparent render points"));
58 return;
59 }
60 // create point in pool
61 auto transparentRenderPoint = transparentRenderPoints[poolIdx++];
62 transparentRenderPoint->point = point;
63 transparentRenderPoint->spriteIndex = spriteIndex;
64 transparentRenderPoint->color = color;
65 transparentRenderPoint->particleSystemType = particleSystemType;
66 transparentRenderPoint->particleSystem = particleSystem;
67 }
68
69 /**
70 * Reset
71 */
72 void reset();
73
74 /**
75 * @return transparent render points count
76 */
78 return poolIdx;
79 }
80
81 /**
82 * @return transparent render points vector
83 */
84 inline const vector<TransparentRenderPoint*>& getTransparentRenderPoints() {
86 }
87
88 /**
89 * Sort transparent render points
90 */
91 void sort();
92
93};
Color 4 definition.
Definition: Color4.h:20
void addPoint(const Vector3 &point, uint16_t spriteIndex, const Color4 &color, int particleSystemType, void *particleSystem)
Creates an transparent render point entity in pool.
const vector< TransparentRenderPoint * > & getTransparentRenderPoints()
3D vector 3 class
Definition: Vector3.h:22
Console class.
Definition: Console.h:26