diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-23 07:53:59 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-23 07:53:59 -0400 |
commit | 16836bb93bf57f01f416d3a0a55d0716dcf50c94 (patch) | |
tree | 907aa7768130e954502efb8db0c3bec828b83790 /src/world.cpp | |
parent | 2e67f6d04f79a3b9338466d289df0074cf4c454e (diff) |
arrows die, do damage
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/world.cpp b/src/world.cpp index 9a47576..c41ab2a 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -14,6 +14,7 @@ using namespace std::literals::chrono_literals; using namespace tinyxml2; // game headers +#include <attack.hpp> #include <common.hpp> #include <components.hpp> #include <debug.hpp> @@ -1140,6 +1141,11 @@ void WorldSystem::detect(entityx::TimeDelta dt) } else { loc.y = data[line].groundHeight - 0.001f * dt; vel.y = 0; + if (e.has_component<Hit>()) { + game::events.emit<AttackEvent>(vec2(loc.x, loc.y), + AttackType::ShortSlash, e.component<Hit>()->damage); + e.destroy(); + } if (!vel.grounded) { vel.grounded = true; game::engine.getSystem<ParticleSystem>()->addMultiple(20, ParticleType::SmallPoof, |