diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-20 07:44:49 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-20 07:44:49 -0400 |
commit | 3d5820da8b91f676a6b5663ff19ccc68c30905ff (patch) | |
tree | 26b3a25290c80aab707c5b0b07382f27f0668488 | |
parent | 72941038ae15ed524e2a878d087d98bc97e946b4 (diff) |
bug fixessss
-rw-r--r-- | brice.dat | 4 | ||||
-rw-r--r-- | include/entities.hpp | 2 | ||||
-rw-r--r-- | main.cpp | 4 | ||||
-rw-r--r-- | src/entities.cpp | 4 | ||||
-rw-r--r-- | src/mob.cpp | 1 | ||||
-rw-r--r-- | src/world.cpp | 4 |
6 files changed, 10 insertions, 9 deletions
@@ -1,5 +1,5 @@ 2 -canJump -0 canSprint 0 +canJump +0 diff --git a/include/entities.hpp b/include/entities.hpp index 93c1caa..a06a8bb 100644 --- a/include/entities.hpp +++ b/include/entities.hpp @@ -283,7 +283,7 @@ public: bool isHit(void) const; // returns true if this entity is near the one provided - bool isNear(Entity e); + bool isNear(const Entity *e); // returns true if the coordinate is within the entity bool isInside(vec2 coord) const; @@ -551,7 +551,7 @@ void logic(){ } } - if(e->isInside(ui::mouse) && player->isNear(*e)) { + if(e->isInside(ui::mouse) && player->isNear(e)) { e->near = true; if (e->type == OBJECTT) ObjectSelected = true; @@ -569,7 +569,7 @@ void logic(){ e->near = false; } } else if (e->type == MOBT) { - e->near = player->isNear(*e); + e->near = player->isNear(e); e->wander(); } } diff --git a/src/entities.cpp b/src/entities.cpp index b9acc20..9949c1f 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -329,8 +329,8 @@ void Object::reloadTexture(void) height = getItemHeight(iname); } -bool Entity::isNear(Entity e) { - return pow(e.loc.x - loc.x, 2) + pow(e.loc.y - loc.y, 2) <= pow(HLINES(40), 2); +bool Entity::isNear(const Entity *e) { + return pow(e->loc.x - loc.x, 2) + pow(e->loc.y - loc.y, 2) <= pow(HLINES(40), 2); } void NPC::drawThingy(void) const diff --git a/src/mob.cpp b/src/mob.cpp index 1f998f7..d6df3fd 100644 --- a/src/mob.cpp +++ b/src/mob.cpp @@ -11,6 +11,7 @@ Mob::Mob(void) inv = nullptr; rider = nullptr; canMove = true; + loc = 0; } Page::Page(void) : Mob() diff --git a/src/world.cpp b/src/world.cpp index f6df7d6..2931f81 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -1010,7 +1010,7 @@ getNearInteractable(Entity &e) { auto n = std::find_if(std::begin(entity), std::end(entity), [&](Entity *&a) { return ((a->type == MOBT) || (a->type == NPCT) || a->type == MERCHT) && - e.isNear(*a) && (e.left ? (a->loc.x < e.loc.x) : (a->loc.x > e.loc.x)); + e.isNear(a) && (e.left ? (a->loc.x < e.loc.x) : (a->loc.x > e.loc.x)); }); return n == std::end(entity) ? nullptr : *n; @@ -1020,7 +1020,7 @@ Mob *World:: getNearMob(Entity &e) { auto n = std::find_if(std::begin(mob), std::end(mob), [&](Mob *&a) { - return e.isNear(*a) && (e.left ? (a->loc.x < e.loc.x + e.width / 2) : (a->loc.x > e.loc.x + e.width / 2)); + return e.isNear(a) && (e.left ? (a->loc.x < e.loc.x + e.width / 2) : (a->loc.x > e.loc.x + e.width / 2)); }); return n == std::end(mob) ? nullptr : *n; |