diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-08 17:42:07 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-08 17:42:07 -0500 |
commit | eb6f6d035f0b4324d881f5057639474095a02858 (patch) | |
tree | bfacf7413fa86e24f6c5d1a6948075813bc09048 | |
parent | c62c4eef57b78a8d5bf18cb3b2e8acfbc6cc30b6 (diff) |
particle textures fixed
-rw-r--r-- | include/particle.hpp | 4 | ||||
-rw-r--r-- | include/texture.hpp | 2 | ||||
-rw-r--r-- | src/particle.cpp | 63 | ||||
-rw-r--r-- | src/texture.cpp | 4 | ||||
-rw-r--r-- | xml/!town.xml | 2 |
5 files changed, 33 insertions, 42 deletions
diff --git a/include/particle.hpp b/include/particle.hpp index a022583..63f23e3 100644 --- a/include/particle.hpp +++ b/include/particle.hpp @@ -19,8 +19,10 @@ struct Particle { ParticleType type; int timeLeft; + //const Texture& color; // TODO + Particle(vec2 p, ParticleType t = ParticleType::Drop, int tl = 3000) - : location(p), type(t), timeLeft(tl) {} // TODO times + : location(p), type(t), timeLeft(tl) {} } __attribute__ ((packed)); class ParticleSystem : public entityx::System<ParticleSystem> { diff --git a/include/texture.hpp b/include/texture.hpp index 878955e..3cb8d1f 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -19,7 +19,7 @@ * Handles a single texture, loaded from the given file. */ class Texture { -private: +protected: std::string name; /**< The name (path) of the loaded file. */ GLuint tex; /**< The GLuint for the loaded texture. */ vec2 dim; /**< The dimensions of the loaded texture. */ diff --git a/src/particle.cpp b/src/particle.cpp index 1cab0e9..c9c79c7 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -28,71 +28,60 @@ void ParticleSystem::addMultiple(const int& count, const ParticleType& type, std void ParticleSystem::render(void) { - static GLuint particleVBO = 9999, texVBO = 0; + static GLuint particleVBO = 9999; + // six vertices, 3d coord + 2d tex coord = 5 + constexpr auto entrySize = (6 * 5) * sizeof(GLfloat); if (particleVBO == 9999) { + // generate VBO glGenBuffers(1, &particleVBO); glBindBuffer(GL_ARRAY_BUFFER, particleVBO); - glBufferData(GL_ARRAY_BUFFER, parts.capacity() * 18 * sizeof(GLfloat), nullptr, + glBufferData(GL_ARRAY_BUFFER, parts.capacity() * entrySize, 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); - // clear dead particles parts.erase(std::remove_if(parts.begin(), parts.end(), [](const Particle& p) { return p.timeLeft <= 0; }), parts.end()); // copy data into VBO + glBindBuffer(GL_ARRAY_BUFFER, particleVBO); + 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 + static const auto hl = game::HLINE; + GLfloat coords[30] = { + p.location.x, p.location.y, -1, 0, 0, + p.location.x, p.location.y + hl, -1, 0, 1, + p.location.x + hl, p.location.y + hl, -1, 1, 1, + p.location.x + hl, p.location.y + hl, -1, 1, 1, + p.location.x + hl, p.location.y, -1, 0, 1, + p.location.x, p.location.y, -1, 0, 0 }; - glBufferSubData(GL_ARRAY_BUFFER, offset, 18 * sizeof(GLfloat), coords); - offset += 18 * sizeof(GLfloat); + glBufferSubData(GL_ARRAY_BUFFER, offset, entrySize, coords); + offset += entrySize; } + // begin actual rendering 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); + Colors::white.use(); + // set coords 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); + glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, + 5 * sizeof(GLfloat), 0); + // set tex coords + glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, + 5 * sizeof(GLfloat), reinterpret_cast<void*>(3 * sizeof(GLfloat))); glDrawArrays(GL_TRIANGLES, 0, parts.size() * 6); - glDisableClientState(GL_VERTEX_ARRAY); - + glBindBuffer(GL_ARRAY_BUFFER, 0); 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) diff --git a/src/texture.cpp b/src/texture.cpp index da39ec0..b47c3c7 100644 --- a/src/texture.cpp +++ b/src/texture.cpp @@ -52,12 +52,12 @@ ColorTex::ColorTex(const Color& color) }; GLuint object; - glActiveTexture(GL_TEXTURE0); glGenTextures(1, &object); // Turns "object" into a texture glBindTexture(GL_TEXTURE_2D, object); // Binds "object" to the top of the stack glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, data); - Texture("", object, vec2()); + tex = object; + dim = vec2(1, 1); } static std::vector<Texture> loadedTextures; diff --git a/xml/!town.xml b/xml/!town.xml index 230cbdc..0a28124 100644 --- a/xml/!town.xml +++ b/xml/!town.xml @@ -4,7 +4,7 @@ <World> <style background="0" bgm="assets/music/embark.wav" folder="assets/style/classic/"/> <generation width="320"/> - <weather>Sunny</weather> + <weather>Snowy</weather> <time>6000</time> <link right="!town2.xml"/> <spawnx>-300</spawnx> |