aboutsummaryrefslogtreecommitdiffstats
path: root/src/systems
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-07-23 10:47:10 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-07-23 10:47:10 -0400
commit9e540db7d6492168cadcafddbf145ffdd7b21981 (patch)
tree8019a7a67e66a5ec87ad7872278e8ee92431251a /src/systems
parent215e5ee6ce089c3e0d5be28fd816bc7031b6acab (diff)
source cleanup; beginning of custom attacks
Diffstat (limited to 'src/systems')
-rw-r--r--src/systems/dialog.cpp4
-rw-r--r--src/systems/movement.cpp5
2 files changed, 4 insertions, 5 deletions
diff --git a/src/systems/dialog.cpp b/src/systems/dialog.cpp
index 76c0f93..87327ca 100644
--- a/src/systems/dialog.cpp
+++ b/src/systems/dialog.cpp
@@ -51,7 +51,7 @@ void DialogSystem::receive(const MouseClickEvent &mce)
d.talking = true;
if (d.index == 9999) {
- UISystem::dialogBox(name.name, /*"", false,*/ randomDialog[d.rindex % randomDialog.size()]);
+ UISystem::dialogBox(name.name, randomDialog[d.rindex % randomDialog.size()]);
UISystem::waitForDialog();
} else if (exml != nullptr) {
while (exml->StrAttribute("name") != name.name)
@@ -96,7 +96,7 @@ void DialogSystem::receive(const MouseClickEvent &mce)
if (qname != nullptr && QuestSystem::finish(qname) == 0) {
d.index = 9999;
} else {
- UISystem::dialogBox(name.name, /*"", false,*/ "Finish my quest u nug");
+ UISystem::dialogBox(name.name, "Finish my quest u nug");
UISystem::waitForDialog();
return;
}
diff --git a/src/systems/movement.cpp b/src/systems/movement.cpp
index 00baa40..7ff9966 100644
--- a/src/systems/movement.cpp
+++ b/src/systems/movement.cpp
@@ -46,9 +46,8 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e
auto ppos = PlayerSystem::getPosition();
if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width) {
if (entity.has_component<Aggro>()) {
- auto dim = entity.component<Solid>();
- ev.emit<AttackEvent>(vec2(position.x + dim->width, position.y + dim->height),
- AttackType::ShortSlash, false);
+ //auto dim = entity.component<Solid>();
+ //ev.emit<AttackEvent>(vec2(position.x + dim->width, position.y + dim->height), ATTACKKKKKK, false);
/*auto& h = entity.component<Health>()->health;
if (h > 0) {
fight = true;