KlassischeKeplerKriege/game/renderer_polygon_3d/particle_batch.cpp

212 lines
6.2 KiB
C++
Raw Normal View History

#include "particle_batch.hpp"
#include <iostream>
2016-09-28 22:50:14 +00:00
// TODO: use VAO's as soon as this is working
int getDivisorForIndex(int index)
{
2016-09-30 18:19:10 +00:00
// 0 or 1?
return (index == 0) ? 0 : 3;
2016-09-28 22:50:14 +00:00
}
namespace endofthejedi {
ParticleBatch::ParticleBatch(size_t id, size_t numParticles, float particleSize, float halfAge)
2016-09-30 18:19:10 +00:00
: m_id(id)
, m_numParticles(numParticles)
, m_particleRadius(particleSize)
, m_halfAge(halfAge)
2016-09-29 06:28:56 +00:00
, m_age(0.0)
, m_maxVelocity(1.0)
, m_center(glm::vec3(0.0f, 0.0f, 0.0f))
2016-09-28 22:50:14 +00:00
// 2d quad drawn as a triangle fan
, m_data_quad({
1.0f, -1.0f,
1.0f, 1.0f,
-1.0f, 1.0f,
-1.0f, -1.0f})
{
2016-09-29 07:05:35 +00:00
//std::cout<<"[ParticleBatch] create for " << numParticles << " num particles" << std::endl;
2016-09-28 22:50:14 +00:00
m_data_position.resize(m_numParticles);
m_data_velocity.resize(m_numParticles);
m_data_kind.resize(m_numParticles);
m_data_max_age.resize(m_numParticles);
2016-09-29 10:28:35 +00:00
std::string vss_particles = "../data/shader/particle.vert";
std::string fss_particles = "../data/shader/particle.frag";
m_shader.init();
2016-09-29 10:28:35 +00:00
m_shader.loadFile(vss_particles, GL_VERTEX_SHADER);
m_shader.loadFile(fss_particles, GL_FRAGMENT_SHADER);
2016-09-30 18:19:10 +00:00
const char *names[] = {
"in_vertex",
"in_position",
"in_velocity",
"XXXunusedXXX",
"XXXunusedXXX"
};
for (int i=0; i<5; i++) {
const char *name = names[i];
GLint loc = glGetAttribLocation(m_shader.program(), name);
m_attr_locations[i] = loc;
//std::cout<<"attr location " << i << " " << loc << " " << name << std::endl;
}
}
ParticleBatch::~ParticleBatch()
{
// TODO: find out if stuff must be deallocated
2016-09-30 18:19:10 +00:00
glDeleteBuffers(5, m_data_vbos);
}
void ParticleBatch::setCenter(const glm::vec3 &center)
{
m_center = center;
}
void ParticleBatch::setMaxVelocity(float maxVelocity)
{
m_maxVelocity = maxVelocity;
}
void ParticleBatch::setParticle(size_t index, const glm::vec3 &p, const glm::vec3 &v)
{
if (index >= m_numParticles) {
return;
}
//std::cout<<"[ParticleBatch] setParticle " << index << std::endl;
2016-09-28 22:50:14 +00:00
m_data_position[index] = p;
m_data_velocity[index] = v;
m_data_kind[index] = 0.0;
m_data_max_age[index] = 0.0;
}
void ParticleBatch::bind()
{
//std::cout<<"[ParticleBatch] bind" << std::endl;
2016-09-28 22:50:14 +00:00
for (size_t i=0; i<5; i++) {
//std::cout<<"vbo #" << i << ": " << m_data_vbos[i] << std::endl;
2016-09-30 18:19:10 +00:00
glEnableVertexAttribArray(m_attr_locations[i]);
glBindBuffer(GL_ARRAY_BUFFER, m_data_vbos[i]);
2016-09-30 18:19:10 +00:00
glVertexAttribDivisor(m_attr_locations[i], getDivisorForIndex(i));
2016-09-28 22:50:14 +00:00
// TODO: i or index? at first argument?
glVertexAttribPointer(
2016-09-30 18:19:10 +00:00
m_attr_locations[i],
dataSizeForIndex(i),
GL_FLOAT, // Data is floating point type
GL_FALSE, // No fixed point scaling
0, // stride: no
NULL); // No offset
}
}
void ParticleBatch::upload()
{
2016-09-29 07:05:35 +00:00
//std::cout<<"[ParticleBatch] upload to vbo's " << std::endl;
2016-09-30 18:19:10 +00:00
glGenBuffers(5, m_data_vbos); // Generate buffer
2016-09-30 18:19:10 +00:00
for (size_t i=0; i<5; i++) {
2016-09-28 22:50:14 +00:00
size_t bufferDataSize = dataSizeForIndex(i) * m_numParticles * sizeof(float);
glEnableVertexAttribArray(i);
glBindBuffer(GL_ARRAY_BUFFER, m_data_vbos[i]);
// fill buffer with the loaded mesh position data
glBufferData(
2016-09-28 22:50:14 +00:00
GL_ARRAY_BUFFER, // Buffer target
bufferDataSize, // Buffer data size
dataSourceForIndex(i), // Buffer data pointer
GL_STATIC_DRAW); // Usage - Data never changes;
}
}
void ParticleBatch::render()
{
//std::cout<<"[ParticleBatch] render " << std::endl;
m_shader.bind();
glUniform1f(m_shader.location("age"), m_age);
glUniform1f(m_shader.location("maxVelocity"), m_maxVelocity);
2016-09-30 20:04:14 +00:00
glUniform1f(m_shader.location("halfAge"), m_halfAge);
glUniform1f(m_shader.location("size"), m_particleRadius);
2016-09-30 20:04:14 +00:00
glUniform3f(m_shader.location("explCenter"), m_center.x, m_center.y, m_center.z);
bind();
2016-09-28 22:50:14 +00:00
//glDrawArrays(GL_TRIANGLE_FAN, 0, 4*m_numParticles);
//glDrawArraysInstanced( GLenum mode, GLint first, GLsizei count, GLsizei primcount);
2016-09-30 18:19:10 +00:00
// XXX the 3 is a magical number.
// I dont know why this works
// without it, it will render 1/3 of the particles
glDrawArraysInstanced(GL_TRIANGLE_FAN, 0, 4, 3*m_numParticles);
#if 0
glBegin(GL_QUADS);
for (size_t index=0; index<m_numParticles; index++) {
for (int i=0; i<4; i++) {
glm::vec2 p = m_data_position[index] + triangles[i];
//glColor3f(1.0, 0.0, 0.0);
glVertex2f(p.x, p.y);
}
}
glEnd();
#endif
}
size_t ParticleBatch::dataSizeForIndex(int i)
{
switch(i) {
case 0:
return 2;
case 1:
2016-09-28 22:50:14 +00:00
case 2:
return 3;
case 3:
2016-09-28 22:50:14 +00:00
case 4:
return 1;
default:
std::cerr << "bad" << std::endl;
2016-09-28 22:50:14 +00:00
exit(-1);
}
}
void *ParticleBatch::dataSourceForIndex(int i)
{
switch(i) {
2016-09-28 22:50:14 +00:00
case 0: return (void *) m_data_quad.data();
case 1: return (void *) m_data_position.data();
case 2: return (void *) m_data_velocity.data();
case 3: return (void *) m_data_kind.data();
case 4: return (void *) m_data_max_age.data();
default:
std::cerr << "bad" << std::endl;
2016-09-28 22:50:14 +00:00
exit(-1);
}
}
2016-09-29 06:28:56 +00:00
void ParticleBatch::tick(float dt)
{
m_age += dt;
}
bool ParticleBatch::done() const
{
return m_age >= 5.0*m_halfAge;
2016-09-29 06:28:56 +00:00
}
}