diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-03-25 01:07:16 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-03-25 01:21:04 +0100 |
commit | a254f3f1859302e00e43b58a7c78090c5b016359 (patch) | |
tree | a908e8f81cb0885fa2ddd067220b98ebd7d8ccb4 | |
parent | 6b7dac777cf7e0bb5d8546bdb51dcd6f04deca0b (diff) | |
download | manaplus-ActorManager_findNearestLivingBeing.tar.gz manaplus-ActorManager_findNearestLivingBeing.tar.bz2 manaplus-ActorManager_findNearestLivingBeing.tar.xz manaplus-ActorManager_findNearestLivingBeing.zip |
findNearestLivingBeing: do cheap bb check before set lookups or pathfinderActorManager_findNearestLivingBeing
bb= bounding box
-rw-r--r-- | src/actormanager.cpp | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/src/actormanager.cpp b/src/actormanager.cpp index 2b542fede..2e1079487 100644 --- a/src/actormanager.cpp +++ b/src/actormanager.cpp @@ -1311,6 +1311,22 @@ Being *ActorManager::findNearestLivingBeing(const Being *const aroundBeing, continue; } + // Cheap bounding box check, first, before engaging the pathfinder + // (in validateBeing call). Target is _at minimum_ distSq away + const int dx = being->getTileX() - x; + const int dy = being->getTileY() - y; + int distSq = dx*dx + dy*dy; + if (distSq > maxDistSq) + continue; + + // Check if target is too close + if (specialDistance + && (distSq <= 2*2) + && (being->getType() == type)) + { + continue; + } + int priority = defaultPriorityIndex; if (filtered) { @@ -1340,21 +1356,11 @@ Being *ActorManager::findNearestLivingBeing(const Being *const aroundBeing, if (!validateBeing(aroundBeing, being, type, excluded, 50)) continue; - int distSq = being->getDistance(); - distSq = distSq * distSq; - - if (being->getType() != ActorType::Monster - || !mTargetOnlyReachable) - { // if distance not calculated, use old distance - const int dx = being->getTileX() - x; - const int dy = being->getTileY() - y; - distSq = dx*dx + dy*dy; - } - - if (specialDistance && being->getDistance() <= 2 - && being->getType() == type) + // see validateBeing for when real distance is valid + if (mTargetOnlyReachable && being->getType() == ActorType::Monster) { - continue; + const int d = being->getDistance(); + distSq = d*d; } //logger->log("being prio:%3d, dist^2:%3d, name: '%s'", |