diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-03-10 17:56:45 +0000 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-03-10 17:56:45 +0000 |
commit | 69121bb79ec2a4440bed686d2c22e73cc0f12497 (patch) | |
tree | b21960df9d3b8fa12e2dbdf98cbcdfbccdf44b87 | |
parent | 436b8580ba7e200ea04707c380f2a69c03e64052 (diff) | |
download | mv-69121bb79ec2a4440bed686d2c22e73cc0f12497.tar.gz mv-69121bb79ec2a4440bed686d2c22e73cc0f12497.tar.bz2 mv-69121bb79ec2a4440bed686d2c22e73cc0f12497.tar.xz mv-69121bb79ec2a4440bed686d2c22e73cc0f12497.zip |
Speedup ActorManager::findNearestByName by testing cheap bounding box distance before (potentially) asking pathfinder.
Pathfinder may get called in the validateBeing() call, can't tell yet.
Squashed with:
* Fix linter
This test and the below static_cast looks like dynamic_cast should've
been used.
****
mana/plus!143
-rw-r--r-- | src/actormanager.cpp | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/actormanager.cpp b/src/actormanager.cpp index 7835d3289..9cedb37b7 100644 --- a/src/actormanager.cpp +++ b/src/actormanager.cpp @@ -909,8 +909,8 @@ Being *ActorManager::findNearestByName(const std::string &name, if (localPlayer == nullptr) return nullptr; - int dist = 0; Being* closestBeing = nullptr; + int closestDistSq = INT_MAX; const int x = localPlayer->getTileX(); const int y = localPlayer->getTileY(); @@ -920,8 +920,8 @@ Being *ActorManager::findNearestByName(const std::string &name, // if (reportTrue(*it == nullptr)) // continue; - if ((*it)->getType() == ActorType::FloorItem - || (*it)->getType() == ActorType::Portal) + if ((*it)->getType() == ActorType::FloorItem || + (*it)->getType() == ActorType::Portal) { continue; } @@ -932,17 +932,16 @@ Being *ActorManager::findNearestByName(const std::string &name, (type == ActorType::Unknown || type == being->getType())) { if (being->getType() == ActorType::Player) - { return being; - } + const int dx = being->getTileX() - x; const int dy = being->getTileY() - y; - const int d = dx*dx + dy*dy; + const int distSq = dx*dx + dy*dy; - if (validateBeing(nullptr, being, type, nullptr, 50) - && (d < dist || closestBeing == nullptr)) + if (distSq < closestDistSq + && validateBeing(nullptr, being, type, nullptr, 50)) { - dist = d; + closestDistSq = distSq; closestBeing = being; } } |