1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
#include <particle.hpp>
#include <engine.hpp>
#include <render.hpp>
#include <world.hpp>
ParticleSystem::ParticleSystem(int count, bool m)
: max(m)
{
parts.reserve(count);
}
void ParticleSystem::add(const vec2& pos, const ParticleType& type, const int& timeleft)
{
// TODO not enforce max
if (/*max &&*/ parts.size() + 1 >= parts.capacity())
return;
parts.emplace_back(pos, type, timeleft);
}
void ParticleSystem::addMultiple(const int& count, const ParticleType& type, std::function<vec2(void)> f, const int& timeleft)
{
int togo = count;
while (togo-- > 0)
parts.emplace_back(f(), type, timeleft);
}
void ParticleSystem::render(void) const
{
static GLuint particleVBO = 9999, texVBO = 0;
if (particleVBO == 9999) {
glGenBuffers(1, &particleVBO);
glBindBuffer(GL_ARRAY_BUFFER, particleVBO);
glBufferData(GL_ARRAY_BUFFER, parts.capacity() * 18 * sizeof(GLfloat), nullptr,
GL_STREAM_DRAW);
glGenBuffers(1, &texVBO);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, texVBO);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, parts.capacity() * 12 * sizeof(GLfloat), nullptr,
GL_STATIC_DRAW);
int top = (parts.capacity() - 1) * 12 * sizeof(GLfloat), i = 0;
unsigned char zero = 0;
while (i < top) {
glBufferSubData(GL_ELEMENT_ARRAY_BUFFER, i, 1, &zero);
i++;
}
}
glBindBuffer(GL_ARRAY_BUFFER, particleVBO);
// copy data into VBO
int offset = 0;
for (const auto& p : parts) {
GLfloat coords[18] = {
p.location.x, p.location.y, -1,
p.location.x, p.location.y + 5, -1,
p.location.x + 5, p.location.y + 5, -1,
p.location.x + 5, p.location.y + 5, -1,
p.location.x + 5, p.location.y, -1,
p.location.x, p.location.y, -1
};
glBufferSubData(GL_ARRAY_BUFFER, offset, 18 * sizeof(GLfloat), coords);
offset += 18 * sizeof(GLfloat);
}
Render::worldShader.use();
Render::worldShader.enable();
Colors::blue.use();
//glUniform4f(Render::worldShader.uniform[WU_tex_color], 0.0f, 0.0f, 1.0f, 1.0f);
glEnableClientState(GL_VERTEX_ARRAY);
glBindBuffer(GL_ARRAY_BUFFER, particleVBO);
glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, 0);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, texVBO);
glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0, 0);
glDrawArrays(GL_TRIANGLES, 0, parts.size() * 6);
glDisableClientState(GL_VERTEX_ARRAY);
Render::worldShader.disable();
Render::worldShader.unuse();
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
}
void ParticleSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
(void)en;
(void)ev;
(void)dt; // TODO use for time to die
auto& worldSystem = *game::engine.getSystem<WorldSystem>();
for (auto part = std::begin(parts); part != std::end(parts); part++) {
auto& p = *part;
// update timers
p.timeLeft -= dt;
if (p.timeLeft <= 0)
parts.erase(part);
// update movement
switch (p.type) {
case ParticleType::Drop:
if (p.velocity.y > -.6)
p.velocity.y -= 0.001f;
break;
case ParticleType::Confetti:
if (p.velocity.x > -0.01 && p.velocity.x < 0.01) {
p.velocity.x = randGet() % 12 / 30.0f - 0.2f;
} else {
p.velocity.x += (p.velocity.x > 0) ? -0.002f : 0.002f;
}
p.velocity.y = -0.15f;
break;
case ParticleType::SmallBlast:
if (p.velocity.x == 0) {
int degree = randGet() % 100;
p.velocity.x = cos(degree) / 4.0f;
p.velocity.y = sin(degree) / 4.0f;
} else {
p.velocity.x += (p.velocity.x > 0) ? -0.001f : 0.001f;
p.velocity.x += (p.velocity.y > 0) ? -0.001f : 0.001f;
if ((p.velocity.x > -0.01 && p.velocity.x < 0.01) &&
(p.velocity.y > -0.01 && p.velocity.y < 0.01)) {
p.timeLeft = 0;
if (p.timeLeft <= 0)
parts.erase(part);
}
}
break;
}
// really update movement
p.location.x += p.velocity.x * dt;
p.location.y += p.velocity.y * dt;
// world collision
auto height = worldSystem.isAboveGround(p.location);
if (height != 0)
p.location.y = height + 5, p.velocity.y = randGet() % 10 / 40.0f;
}
}
int ParticleSystem::getCount(void) const
{
return parts.size();
}
|