diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-22 18:51:45 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-22 18:51:45 -0400 |
commit | b32c68a5a4bfb06f321a1d78357c65458b24e760 (patch) | |
tree | 63256abc33da526a955c9f1460f98dc475c68774 /src | |
parent | 149f255760e56447400d80532c99d481bc93644a (diff) | |
parent | 4b1bee70774aae35c302636c8632e75bd6e23e5e (diff) |
merge fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/components.cpp | 14 | ||||
-rw-r--r-- | src/player.cpp | 5 |
2 files changed, 10 insertions, 9 deletions
diff --git a/src/components.cpp b/src/components.cpp index a1e3e45..32d0f79 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -13,17 +13,17 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e (void)entity; position.x += direction.x * dt; position.y += direction.y * dt; - }); + }); } void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) { (void)ev; Render::worldShader.use(); - + en.each<Visible, Sprite, Position>([dt](entityx::Entity entity, Visible &visible, Sprite &sprite, Position &pos) { (void)entity; - // Verticies and shit + // Verticies and shit GLfloat tex_coord[] = {0.0, 0.0, 1.0, 0.0, 1.0, 1.0, @@ -43,7 +43,7 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, for (auto &S : sprite.sprite) { float width = S.first.size.x; float height = S.first.size.y; - + vec2 loc = vec2(pos.x + S.first.offset.x, pos.y + S.first.offset.y); GLfloat coords[] = {loc.x, loc.y, visible.z, @@ -53,8 +53,8 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, loc.x + width, loc.y + height, visible.z, loc.x, loc.y + height, visible.z, loc.x, loc.y, visible.z}; - - + + // make the entity hit flash red // TODO /*if (maxHitDuration-hitDuration) { @@ -66,7 +66,7 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, Render::worldShader.enable(); glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, coords); - if (false) + if (sprite.faceLeft) glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0 ,tex_coordL); else glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0 ,tex_coord); diff --git a/src/player.cpp b/src/player.cpp index fcbff1c..82de470 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -63,6 +63,7 @@ void PlayerSystem::receive(const KeyDownEvent &kde) { auto kc = kde.keycode; auto& loc = *game::entities.get(pid).component<Position>().get(); + auto& faceLeft = game::entities.get(pid).component<Sprite>().get()->faceLeft; /*auto worldSwitch = [&](const WorldSwitchInfo& wsi){ player->canMove = false; @@ -99,14 +100,14 @@ void PlayerSystem::receive(const KeyDownEvent &kde) }*/ } else if (kc == getControl(1)) { if (!ui::fadeEnable) { - moveLeft = true; + moveLeft = faceLeft = true; moveRight = false; game::engine.getSystem<WorldSystem>()->goWorldLeft(loc); } } else if (kc == getControl(2)) { if (!ui::fadeEnable) { - moveLeft = false; + moveLeft = faceLeft = false; moveRight = true; game::engine.getSystem<WorldSystem>()->goWorldRight(loc); |