summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedja Beader <fedja@protonmail.ch>2025-03-10 17:56:45 +0000
committerFedja Beader <fedja@protonmail.ch>2025-03-10 17:56:45 +0000
commit69121bb79ec2a4440bed686d2c22e73cc0f12497 (patch)
treeb21960df9d3b8fa12e2dbdf98cbcdfbccdf44b87
parent436b8580ba7e200ea04707c380f2a69c03e64052 (diff)
downloadmv-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.cpp17
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;
}
}