aboutsummaryrefslogtreecommitdiffstats
path: root/src/components.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-02-13 16:57:19 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-02-13 16:57:19 -0500
commit183331ccf1aa3f4142697e9e37528f084fae7466 (patch)
treec3c2f2a26b4b85df9ec809f40443dce0d115b0b8 /src/components.cpp
parent3eccd38e989012ff35ee5376670aabc338c52008 (diff)
rip skirl
Diffstat (limited to 'src/components.cpp')
-rw-r--r--src/components.cpp32
1 files changed, 28 insertions, 4 deletions
diff --git a/src/components.cpp b/src/components.cpp
index 3b38a53..a66a1db 100644
--- a/src/components.cpp
+++ b/src/components.cpp
@@ -51,9 +51,13 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e
// TODO initialX and range?
if (entity.has_component<Aggro>()) {
auto ppos = game::engine.getSystem<PlayerSystem>()->getPosition();
- if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width)
- arena = entity.component<Aggro>()->arena;
- else
+ if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width) {
+ auto& h = entity.component<Health>()->health;
+ if (h > 0) {
+ arena = entity.component<Aggro>()->arena;
+ h = 0;
+ }
+ } else
direction.x = (ppos.x > position.x) ? .05 : -.05;
} else if (entity.has_component<Wander>()) {
auto& countdown = entity.component<Wander>()->countdown;
@@ -164,7 +168,7 @@ void RenderSystem::render(void)
glUniform1i(Render::worldShader.uniform[WU_texture], 0);
glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, coords);
- glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0 ,tex_coord);
+ glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex_coord);
glDrawArrays(GL_TRIANGLES, 0, 6);
//glUniform4f(Render::worldShader.uniform[WU_tex_color], 1.0, 1.0, 1.0, 1.0);
@@ -172,6 +176,26 @@ void RenderSystem::render(void)
its-=.01;
}
glUniformMatrix4fv(Render::worldShader.uniform[WU_transform], 1, GL_FALSE, glm::value_ptr(glm::mat4(1.0f)));
+
+ if (entity.has_component<Health>()) {
+ float width = entity.component<Solid>()->width;
+ auto& health = *entity.component<Health>();
+ width /= health.health / health.maxHealth;
+
+ GLfloat health_coord[] = {
+ pos.x, pos.y, -9, 0, 0,
+ pos.x + width, pos.y, -9, 0, 0,
+ pos.x + width, pos.y - 5, -9, 0, 0,
+ pos.x + width, pos.y - 5, -9, 0, 0,
+ pos.x, pos.y - 5, -9, 0, 0,
+ pos.x, pos.y, -9, 0, 0,
+ };
+
+ Colors::red.use();
+ glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), health_coord);
+ glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), health_coord + 3);
+ glDrawArrays(GL_TRIANGLES, 0, 6);
+ }
});
Render::worldShader.disable();