diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-01 14:45:42 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-01 14:45:42 -0400 |
commit | 3004bca85c245c2ec77c4c1bd9343c96191c7ccf (patch) | |
tree | 2c007f9f270a658b13f6c3cefe358415b3d16025 /src/player.cpp | |
parent | e7fee98e0ee15665b40b383baf925356bb81f20d (diff) |
made all formatting match
Diffstat (limited to 'src/player.cpp')
-rw-r--r-- | src/player.cpp | 57 |
1 files changed, 29 insertions, 28 deletions
diff --git a/src/player.cpp b/src/player.cpp index 22bd0ef..7d1653e 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -23,53 +23,54 @@ #include "components/Velocity.hpp" void PlayerSystem::configure([[maybe_unused]] entityx::EntityManager& entities, - entityx::EventManager& events) + entityx::EventManager& events) { - events.subscribe<entityx::ComponentAddedEvent<Player>>(*this); - events.subscribe<entityx::ComponentRemovedEvent<Player>>(*this); - events.subscribe<KeyUpEvent>(*this); - events.subscribe<KeyDownEvent>(*this); + events.subscribe<entityx::ComponentAddedEvent<Player>>(*this); + events.subscribe<entityx::ComponentRemovedEvent<Player>>(*this); + events.subscribe<KeyUpEvent>(*this); + events.subscribe<KeyDownEvent>(*this); } void PlayerSystem::update([[maybe_unused]] entityx::EntityManager& entites, - [[maybe_unused]] entityx::EventManager& events, - [[maybe_unused]] entityx::TimeDelta dt) + [[maybe_unused]] entityx::EventManager& events, + [[maybe_unused]] entityx::TimeDelta dt) { } void PlayerSystem::receive(const entityx::ComponentAddedEvent<Player>& cae) { - player = cae.entity; + player = cae.entity; } void PlayerSystem::receive(const entityx::ComponentRemovedEvent<Player>& cre) { - if (player == cre.entity) - player.invalidate(); + if (player == cre.entity) + player.invalidate(); } void PlayerSystem::receive(const KeyDownEvent& kue) { - if (player.valid()) { - if (kue.sym == SDLK_a) { - if (auto vel = player.component<Velocity>(); vel) - vel->x += GROUND_VELOCITY; - } else if (kue.sym == SDLK_d) { - if (auto vel = player.component<Velocity>(); vel) - vel->x -= GROUND_VELOCITY; - } - } + if (player.valid()) { + if (kue.sym == SDLK_a) { + if (auto vel = player.component<Velocity>(); vel) + vel->x += GROUND_VELOCITY; + } else if (kue.sym == SDLK_d) { + if (auto vel = player.component<Velocity>(); vel) + vel->x -= GROUND_VELOCITY; + } + } } void PlayerSystem::receive(const KeyUpEvent& kue) { - if (player.valid()) { - if (kue.sym == SDLK_a) { - if (auto vel = player.component<Velocity>(); vel) - vel->x -= GROUND_VELOCITY; - } else if (kue.sym == SDLK_d) { - if (auto vel = player.component<Velocity>(); vel) - vel->x += GROUND_VELOCITY; - } - } + if (player.valid()) { + if (kue.sym == SDLK_a) { + if (auto vel = player.component<Velocity>(); vel) + vel->x -= GROUND_VELOCITY; + } else if (kue.sym == SDLK_d) { + if (auto vel = player.component<Velocity>(); vel) + vel->x += GROUND_VELOCITY; + } + } } + |