aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/components.hpp12
-rw-r--r--main.cpp2
-rw-r--r--src/player.cpp1
-rw-r--r--src/world.cpp6
4 files changed, 20 insertions, 1 deletions
diff --git a/include/components.hpp b/include/components.hpp
index 3f06867..fe56a88 100644
--- a/include/components.hpp
+++ b/include/components.hpp
@@ -610,6 +610,18 @@ struct Aggro : public Component {
}
};
+struct Hit : public Component {
+ Hit(int d)
+ : damage(d) {}
+
+ int damage;
+
+ void fromXML(XMLElement* imp, XMLElement* def) final {
+ (void)imp;
+ (void)def;
+ }
+};
+
/**
* SYSTEMS
*/
diff --git a/main.cpp b/main.cpp
index a46af33..8fb97c1 100644
--- a/main.cpp
+++ b/main.cpp
@@ -119,7 +119,7 @@ int main(int argc, char *argv[])
game::engine.getSystem<InventorySystem>()->add("Wood Sword", 1);
game::engine.getSystem<InventorySystem>()->add("Hunters Bow", 1);
- game::engine.getSystem<InventorySystem>()->add("Arrow", 40);
+ game::engine.getSystem<InventorySystem>()->add("Arrow", 198);
std::list<SDL_Event> eventQueue;
diff --git a/src/player.cpp b/src/player.cpp
index 2fb7c44..1908af4 100644
--- a/src/player.cpp
+++ b/src/player.cpp
@@ -238,6 +238,7 @@ void PlayerSystem::receive(const UseItemEvent& uie)
sprite->addSpriteSegment(SpriteData(tex.sprite), 0);
auto dim = HLINES(sprite->getSpriteSize());
e.assign<Solid>(dim.x, dim.y);
+ e.assign<Hit>(10);
}
}
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,