navigation_agent_2d.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. /**************************************************************************/
  2. /* navigation_agent_2d.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "navigation_agent_2d.h"
  31. #include "core/engine.h"
  32. #include "scene/2d/navigation_2d.h"
  33. #include "servers/navigation_2d_server.h"
  34. void NavigationAgent2D::_bind_methods() {
  35. ClassDB::bind_method(D_METHOD("get_rid"), &NavigationAgent2D::get_rid);
  36. ClassDB::bind_method(D_METHOD("set_avoidance_enabled", "enabled"), &NavigationAgent2D::set_avoidance_enabled);
  37. ClassDB::bind_method(D_METHOD("get_avoidance_enabled"), &NavigationAgent2D::get_avoidance_enabled);
  38. ClassDB::bind_method(D_METHOD("set_path_desired_distance", "desired_distance"), &NavigationAgent2D::set_path_desired_distance);
  39. ClassDB::bind_method(D_METHOD("get_path_desired_distance"), &NavigationAgent2D::get_path_desired_distance);
  40. ClassDB::bind_method(D_METHOD("set_target_desired_distance", "desired_distance"), &NavigationAgent2D::set_target_desired_distance);
  41. ClassDB::bind_method(D_METHOD("get_target_desired_distance"), &NavigationAgent2D::get_target_desired_distance);
  42. ClassDB::bind_method(D_METHOD("set_radius", "radius"), &NavigationAgent2D::set_radius);
  43. ClassDB::bind_method(D_METHOD("get_radius"), &NavigationAgent2D::get_radius);
  44. ClassDB::bind_method(D_METHOD("set_navigation", "navigation"), &NavigationAgent2D::set_navigation_node);
  45. ClassDB::bind_method(D_METHOD("get_navigation"), &NavigationAgent2D::get_navigation_node);
  46. ClassDB::bind_method(D_METHOD("set_neighbor_dist", "neighbor_dist"), &NavigationAgent2D::set_neighbor_dist);
  47. ClassDB::bind_method(D_METHOD("get_neighbor_dist"), &NavigationAgent2D::get_neighbor_dist);
  48. ClassDB::bind_method(D_METHOD("set_max_neighbors", "max_neighbors"), &NavigationAgent2D::set_max_neighbors);
  49. ClassDB::bind_method(D_METHOD("get_max_neighbors"), &NavigationAgent2D::get_max_neighbors);
  50. ClassDB::bind_method(D_METHOD("set_time_horizon", "time_horizon"), &NavigationAgent2D::set_time_horizon);
  51. ClassDB::bind_method(D_METHOD("get_time_horizon"), &NavigationAgent2D::get_time_horizon);
  52. ClassDB::bind_method(D_METHOD("set_max_speed", "max_speed"), &NavigationAgent2D::set_max_speed);
  53. ClassDB::bind_method(D_METHOD("get_max_speed"), &NavigationAgent2D::get_max_speed);
  54. ClassDB::bind_method(D_METHOD("set_path_max_distance", "max_speed"), &NavigationAgent2D::set_path_max_distance);
  55. ClassDB::bind_method(D_METHOD("get_path_max_distance"), &NavigationAgent2D::get_path_max_distance);
  56. ClassDB::bind_method(D_METHOD("set_navigation_layers", "navigation_layers"), &NavigationAgent2D::set_navigation_layers);
  57. ClassDB::bind_method(D_METHOD("get_navigation_layers"), &NavigationAgent2D::get_navigation_layers);
  58. ClassDB::bind_method(D_METHOD("set_navigation_map", "navigation_map"), &NavigationAgent2D::set_navigation_map);
  59. ClassDB::bind_method(D_METHOD("get_navigation_map"), &NavigationAgent2D::get_navigation_map);
  60. ClassDB::bind_method(D_METHOD("set_target_location", "location"), &NavigationAgent2D::set_target_location);
  61. ClassDB::bind_method(D_METHOD("get_target_location"), &NavigationAgent2D::get_target_location);
  62. ClassDB::bind_method(D_METHOD("get_next_location"), &NavigationAgent2D::get_next_location);
  63. ClassDB::bind_method(D_METHOD("distance_to_target"), &NavigationAgent2D::distance_to_target);
  64. ClassDB::bind_method(D_METHOD("set_velocity", "velocity"), &NavigationAgent2D::set_velocity);
  65. ClassDB::bind_method(D_METHOD("get_nav_path"), &NavigationAgent2D::get_nav_path);
  66. ClassDB::bind_method(D_METHOD("get_nav_path_index"), &NavigationAgent2D::get_nav_path_index);
  67. ClassDB::bind_method(D_METHOD("is_target_reached"), &NavigationAgent2D::is_target_reached);
  68. ClassDB::bind_method(D_METHOD("is_target_reachable"), &NavigationAgent2D::is_target_reachable);
  69. ClassDB::bind_method(D_METHOD("is_navigation_finished"), &NavigationAgent2D::is_navigation_finished);
  70. ClassDB::bind_method(D_METHOD("get_final_location"), &NavigationAgent2D::get_final_location);
  71. ClassDB::bind_method(D_METHOD("_avoidance_done", "new_velocity"), &NavigationAgent2D::_avoidance_done);
  72. ADD_GROUP("Pathfinding", "");
  73. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "target_location", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR), "set_target_location", "get_target_location");
  74. ADD_PROPERTY(PropertyInfo(Variant::REAL, "path_desired_distance", PROPERTY_HINT_RANGE, "0.1,100,0.01"), "set_path_desired_distance", "get_path_desired_distance");
  75. ADD_PROPERTY(PropertyInfo(Variant::REAL, "target_desired_distance", PROPERTY_HINT_RANGE, "0.1,100,0.01"), "set_target_desired_distance", "get_target_desired_distance");
  76. ADD_PROPERTY(PropertyInfo(Variant::REAL, "path_max_distance", PROPERTY_HINT_RANGE, "10,100,1"), "set_path_max_distance", "get_path_max_distance");
  77. ADD_PROPERTY(PropertyInfo(Variant::INT, "navigation_layers", PROPERTY_HINT_LAYERS_2D_NAVIGATION), "set_navigation_layers", "get_navigation_layers");
  78. ADD_GROUP("Avoidance", "");
  79. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "avoidance_enabled"), "set_avoidance_enabled", "get_avoidance_enabled");
  80. ADD_PROPERTY(PropertyInfo(Variant::REAL, "radius", PROPERTY_HINT_RANGE, "0.1,500,0.01"), "set_radius", "get_radius");
  81. ADD_PROPERTY(PropertyInfo(Variant::REAL, "neighbor_dist", PROPERTY_HINT_RANGE, "0.1,100000,0.01"), "set_neighbor_dist", "get_neighbor_dist");
  82. ADD_PROPERTY(PropertyInfo(Variant::INT, "max_neighbors", PROPERTY_HINT_RANGE, "1,10000,1"), "set_max_neighbors", "get_max_neighbors");
  83. ADD_PROPERTY(PropertyInfo(Variant::REAL, "time_horizon", PROPERTY_HINT_RANGE, "0.1,10000,0.01"), "set_time_horizon", "get_time_horizon");
  84. ADD_PROPERTY(PropertyInfo(Variant::REAL, "max_speed", PROPERTY_HINT_RANGE, "0.1,100000,0.01"), "set_max_speed", "get_max_speed");
  85. ADD_SIGNAL(MethodInfo("path_changed"));
  86. ADD_SIGNAL(MethodInfo("target_reached"));
  87. ADD_SIGNAL(MethodInfo("navigation_finished"));
  88. ADD_SIGNAL(MethodInfo("velocity_computed", PropertyInfo(Variant::VECTOR2, "safe_velocity")));
  89. }
  90. void NavigationAgent2D::_notification(int p_what) {
  91. switch (p_what) {
  92. case NOTIFICATION_POST_ENTER_TREE: {
  93. // Search the navigation node and set it
  94. {
  95. Navigation2D *nav = nullptr;
  96. Node *p = get_parent();
  97. while (p != nullptr) {
  98. nav = Object::cast_to<Navigation2D>(p);
  99. if (nav != nullptr) {
  100. p = nullptr;
  101. } else {
  102. p = p->get_parent();
  103. }
  104. }
  105. set_navigation(nav);
  106. }
  107. // need to use POST_ENTER_TREE cause with normal ENTER_TREE not all required Nodes are ready.
  108. // cannot use READY as ready does not get called if Node is readded to SceneTree
  109. set_agent_parent(get_parent());
  110. set_physics_process_internal(true);
  111. } break;
  112. case NOTIFICATION_PARENTED: {
  113. if (is_inside_tree() && (get_parent() != agent_parent)) {
  114. // only react to PARENTED notifications when already inside_tree and parent changed, e.g. users switch nodes around
  115. // PARENTED notification fires also when Node is added in scripts to a parent
  116. // this would spam transforms fails and world fails while Node is outside SceneTree
  117. // when node gets reparented when joining the tree POST_ENTER_TREE takes care of this
  118. set_agent_parent(get_parent());
  119. set_physics_process_internal(true);
  120. }
  121. } break;
  122. case NOTIFICATION_UNPARENTED: {
  123. // if agent has no parent no point in processing it until reparented
  124. set_agent_parent(nullptr);
  125. set_physics_process_internal(false);
  126. } break;
  127. case NOTIFICATION_PAUSED: {
  128. if (agent_parent && !agent_parent->can_process()) {
  129. map_before_pause = Navigation2DServer::get_singleton()->agent_get_map(get_rid());
  130. Navigation2DServer::get_singleton()->agent_set_map(get_rid(), RID());
  131. } else if (agent_parent && agent_parent->can_process() && !(map_before_pause == RID())) {
  132. Navigation2DServer::get_singleton()->agent_set_map(get_rid(), map_before_pause);
  133. map_before_pause = RID();
  134. }
  135. } break;
  136. case NOTIFICATION_UNPAUSED: {
  137. if (agent_parent && !agent_parent->can_process()) {
  138. map_before_pause = Navigation2DServer::get_singleton()->agent_get_map(get_rid());
  139. Navigation2DServer::get_singleton()->agent_set_map(get_rid(), RID());
  140. } else if (agent_parent && agent_parent->can_process() && !(map_before_pause == RID())) {
  141. Navigation2DServer::get_singleton()->agent_set_map(get_rid(), map_before_pause);
  142. map_before_pause = RID();
  143. }
  144. } break;
  145. case NOTIFICATION_EXIT_TREE: {
  146. set_agent_parent(nullptr);
  147. set_navigation(nullptr);
  148. set_physics_process_internal(false);
  149. } break;
  150. case NOTIFICATION_INTERNAL_PHYSICS_PROCESS: {
  151. if (agent_parent) {
  152. if (avoidance_enabled) {
  153. // agent_position on NavigationServer is avoidance only and has nothing to do with pathfinding
  154. // no point in flooding NavigationServer queue with agent position updates that get send to the void if avoidance is not used
  155. Navigation2DServer::get_singleton()->agent_set_position(agent, agent_parent->get_global_position());
  156. }
  157. _check_distance_to_target();
  158. }
  159. } break;
  160. }
  161. }
  162. NavigationAgent2D::NavigationAgent2D() :
  163. agent_parent(nullptr),
  164. navigation(nullptr),
  165. agent(RID()),
  166. avoidance_enabled(false),
  167. target_desired_distance(1.0),
  168. path_max_distance(3.0),
  169. velocity_submitted(false),
  170. target_reached(false),
  171. navigation_finished(true) {
  172. agent = Navigation2DServer::get_singleton()->agent_create();
  173. set_neighbor_dist(500.0);
  174. set_max_neighbors(10);
  175. set_time_horizon(20.0);
  176. set_radius(10.0);
  177. set_max_speed(200.0);
  178. }
  179. NavigationAgent2D::~NavigationAgent2D() {
  180. Navigation2DServer::get_singleton()->free(agent);
  181. agent = RID(); // Pointless
  182. }
  183. void NavigationAgent2D::set_avoidance_enabled(bool p_enabled) {
  184. avoidance_enabled = p_enabled;
  185. if (avoidance_enabled) {
  186. Navigation2DServer::get_singleton()->agent_set_callback(agent, get_instance_id(), "_avoidance_done");
  187. } else {
  188. Navigation2DServer::get_singleton()->agent_set_callback(agent, ObjectID(), "_avoidance_done");
  189. }
  190. }
  191. bool NavigationAgent2D::get_avoidance_enabled() const {
  192. return avoidance_enabled;
  193. }
  194. void NavigationAgent2D::set_agent_parent(Node *p_agent_parent) {
  195. // remove agent from any avoidance map before changing parent or there will be leftovers on the RVO map
  196. Navigation2DServer::get_singleton()->agent_set_callback(agent, ObjectID(), "_avoidance_done");
  197. if (Object::cast_to<Node2D>(p_agent_parent) != nullptr) {
  198. // place agent on navigation map first or else the RVO agent callback creation fails silently later
  199. agent_parent = Object::cast_to<Node2D>(p_agent_parent);
  200. if (map_override.is_valid()) {
  201. Navigation2DServer::get_singleton()->agent_set_map(get_rid(), map_override);
  202. } else if (navigation != nullptr) {
  203. Navigation2DServer::get_singleton()->agent_set_map(get_rid(), navigation->get_rid());
  204. } else {
  205. // no navigation node found in parent nodes, use default navigation map from world resource
  206. Navigation2DServer::get_singleton()->agent_set_map(get_rid(), agent_parent->get_world_2d()->get_navigation_map());
  207. }
  208. // create new avoidance callback if enabled
  209. set_avoidance_enabled(avoidance_enabled);
  210. } else {
  211. agent_parent = nullptr;
  212. Navigation2DServer::get_singleton()->agent_set_map(get_rid(), RID());
  213. }
  214. }
  215. void NavigationAgent2D::set_navigation(Navigation2D *p_nav) {
  216. if (navigation == p_nav) {
  217. return; // Pointless
  218. }
  219. navigation = p_nav;
  220. Navigation2DServer::get_singleton()->agent_set_map(agent, navigation == nullptr ? RID() : navigation->get_rid());
  221. }
  222. void NavigationAgent2D::set_navigation_node(Node *p_nav) {
  223. Navigation2D *nav = Object::cast_to<Navigation2D>(p_nav);
  224. ERR_FAIL_NULL(nav);
  225. set_navigation(nav);
  226. }
  227. Node *NavigationAgent2D::get_navigation_node() const {
  228. return Object::cast_to<Node>(navigation);
  229. }
  230. void NavigationAgent2D::set_navigation_layers(uint32_t p_navigation_layers) {
  231. bool _navigation_layers_changed = navigation_layers != p_navigation_layers;
  232. navigation_layers = p_navigation_layers;
  233. if (_navigation_layers_changed) {
  234. _request_repath();
  235. }
  236. }
  237. uint32_t NavigationAgent2D::get_navigation_layers() const {
  238. return navigation_layers;
  239. }
  240. void NavigationAgent2D::set_navigation_map(RID p_navigation_map) {
  241. map_override = p_navigation_map;
  242. Navigation2DServer::get_singleton()->agent_set_map(agent, map_override);
  243. _request_repath();
  244. }
  245. RID NavigationAgent2D::get_navigation_map() const {
  246. if (map_override.is_valid()) {
  247. return map_override;
  248. } else if (navigation != nullptr) {
  249. return navigation->get_rid();
  250. } else if (agent_parent != nullptr) {
  251. return agent_parent->get_world_2d()->get_navigation_map();
  252. }
  253. return RID();
  254. }
  255. void NavigationAgent2D::set_path_desired_distance(real_t p_dd) {
  256. path_desired_distance = p_dd;
  257. }
  258. void NavigationAgent2D::set_target_desired_distance(real_t p_dd) {
  259. target_desired_distance = p_dd;
  260. }
  261. void NavigationAgent2D::set_radius(real_t p_radius) {
  262. radius = p_radius;
  263. Navigation2DServer::get_singleton()->agent_set_radius(agent, radius);
  264. }
  265. void NavigationAgent2D::set_neighbor_dist(real_t p_dist) {
  266. neighbor_dist = p_dist;
  267. Navigation2DServer::get_singleton()->agent_set_neighbor_dist(agent, neighbor_dist);
  268. }
  269. void NavigationAgent2D::set_max_neighbors(int p_count) {
  270. max_neighbors = p_count;
  271. Navigation2DServer::get_singleton()->agent_set_max_neighbors(agent, max_neighbors);
  272. }
  273. void NavigationAgent2D::set_time_horizon(real_t p_time) {
  274. time_horizon = p_time;
  275. Navigation2DServer::get_singleton()->agent_set_time_horizon(agent, time_horizon);
  276. }
  277. void NavigationAgent2D::set_max_speed(real_t p_max_speed) {
  278. max_speed = p_max_speed;
  279. Navigation2DServer::get_singleton()->agent_set_max_speed(agent, max_speed);
  280. }
  281. void NavigationAgent2D::set_path_max_distance(real_t p_pmd) {
  282. path_max_distance = p_pmd;
  283. }
  284. real_t NavigationAgent2D::get_path_max_distance() {
  285. return path_max_distance;
  286. }
  287. void NavigationAgent2D::set_target_location(Vector2 p_location) {
  288. target_location = p_location;
  289. _request_repath();
  290. }
  291. Vector2 NavigationAgent2D::get_target_location() const {
  292. return target_location;
  293. }
  294. Vector2 NavigationAgent2D::get_next_location() {
  295. update_navigation();
  296. if (navigation_path.size() == 0) {
  297. ERR_FAIL_COND_V(agent_parent == nullptr, Vector2());
  298. return agent_parent->get_global_transform().get_origin();
  299. } else {
  300. return navigation_path[nav_path_index];
  301. }
  302. }
  303. real_t NavigationAgent2D::distance_to_target() const {
  304. ERR_FAIL_COND_V(agent_parent == nullptr, 0.0);
  305. return agent_parent->get_global_transform().get_origin().distance_to(target_location);
  306. }
  307. bool NavigationAgent2D::is_target_reached() const {
  308. return target_reached;
  309. }
  310. bool NavigationAgent2D::is_target_reachable() {
  311. return target_desired_distance >= get_final_location().distance_to(target_location);
  312. }
  313. bool NavigationAgent2D::is_navigation_finished() {
  314. update_navigation();
  315. return navigation_finished;
  316. }
  317. Vector2 NavigationAgent2D::get_final_location() {
  318. update_navigation();
  319. if (navigation_path.size() == 0) {
  320. return Vector2();
  321. }
  322. return navigation_path[navigation_path.size() - 1];
  323. }
  324. void NavigationAgent2D::set_velocity(Vector2 p_velocity) {
  325. target_velocity = p_velocity;
  326. Navigation2DServer::get_singleton()->agent_set_target_velocity(agent, target_velocity);
  327. Navigation2DServer::get_singleton()->agent_set_velocity(agent, prev_safe_velocity);
  328. velocity_submitted = true;
  329. }
  330. void NavigationAgent2D::_avoidance_done(Vector3 p_new_velocity) {
  331. const Vector2 velocity = Vector2(p_new_velocity.x, p_new_velocity.z);
  332. prev_safe_velocity = velocity;
  333. if (!velocity_submitted) {
  334. target_velocity = Vector2();
  335. return;
  336. }
  337. velocity_submitted = false;
  338. emit_signal("velocity_computed", velocity);
  339. }
  340. String NavigationAgent2D::get_configuration_warning() const {
  341. String warning = Node::get_configuration_warning();
  342. if (!Object::cast_to<Node2D>(get_parent())) {
  343. if (warning != String()) {
  344. warning += "\n\n";
  345. }
  346. warning += TTR("The NavigationAgent2D can be used only under a Node2D inheriting parent node.");
  347. }
  348. return warning;
  349. }
  350. void NavigationAgent2D::update_navigation() {
  351. if (agent_parent == nullptr) {
  352. return;
  353. }
  354. if (!agent_parent->is_inside_tree()) {
  355. return;
  356. }
  357. if (update_frame_id == Engine::get_singleton()->get_physics_frames()) {
  358. return;
  359. }
  360. update_frame_id = Engine::get_singleton()->get_physics_frames();
  361. Vector2 o = agent_parent->get_global_transform().get_origin();
  362. bool reload_path = false;
  363. if (Navigation2DServer::get_singleton()->agent_is_map_changed(agent)) {
  364. reload_path = true;
  365. } else if (navigation_path.size() == 0) {
  366. reload_path = true;
  367. } else {
  368. // Check if too far from the navigation path
  369. if (nav_path_index > 0) {
  370. Vector2 segment[2];
  371. segment[0] = navigation_path[nav_path_index - 1];
  372. segment[1] = navigation_path[nav_path_index];
  373. Vector2 p = Geometry::get_closest_point_to_segment_2d(o, segment);
  374. if (o.distance_to(p) >= path_max_distance) {
  375. // To faraway, reload path
  376. reload_path = true;
  377. }
  378. }
  379. }
  380. if (reload_path) {
  381. if (map_override.is_valid()) {
  382. navigation_path = Navigation2DServer::get_singleton()->map_get_path(map_override, o, target_location, true, navigation_layers);
  383. } else if (navigation != nullptr) {
  384. navigation_path = Navigation2DServer::get_singleton()->map_get_path(navigation->get_rid(), o, target_location, true, navigation_layers);
  385. } else {
  386. navigation_path = Navigation2DServer::get_singleton()->map_get_path(agent_parent->get_world_2d()->get_navigation_map(), o, target_location, true, navigation_layers);
  387. }
  388. navigation_finished = false;
  389. nav_path_index = 0;
  390. emit_signal("path_changed");
  391. }
  392. if (navigation_path.size() == 0) {
  393. return;
  394. }
  395. // Check if we can advance the navigation path
  396. if (navigation_finished == false) {
  397. // Advances to the next far away location.
  398. while (o.distance_to(navigation_path[nav_path_index]) < path_desired_distance) {
  399. nav_path_index += 1;
  400. if (nav_path_index == navigation_path.size()) {
  401. _check_distance_to_target();
  402. nav_path_index -= 1;
  403. navigation_finished = true;
  404. emit_signal("navigation_finished");
  405. break;
  406. }
  407. }
  408. }
  409. }
  410. void NavigationAgent2D::_request_repath() {
  411. navigation_path.clear();
  412. target_reached = false;
  413. navigation_finished = false;
  414. update_frame_id = 0;
  415. }
  416. void NavigationAgent2D::_check_distance_to_target() {
  417. if (!target_reached) {
  418. if (distance_to_target() < target_desired_distance) {
  419. target_reached = true;
  420. emit_signal("target_reached");
  421. }
  422. }
  423. }