| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  navigation_server_2d.cpp                                              */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | #include "navigation_server_2d.h"
 | 
					
						
							| 
									
										
										
										
											2024-11-29 18:22:26 +01:00
										 |  |  | #include "navigation_server_2d.compat.inc"
 | 
					
						
							| 
									
										
										
										
											2022-01-04 20:26:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | #include "core/config/project_settings.h"
 | 
					
						
							|  |  |  | #include "scene/main/node.h"
 | 
					
						
							|  |  |  | #include "servers/navigation/navigation_globals.h"
 | 
					
						
							| 
									
										
										
										
											2024-12-28 01:33:40 +01:00
										 |  |  | #include "servers/navigation_server_2d_dummy.h"
 | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | NavigationServer2D *NavigationServer2D::singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-28 01:33:40 +01:00
										 |  |  | RWLock NavigationServer2D::geometry_parser_rwlock; | 
					
						
							|  |  |  | RID_Owner<NavMeshGeometryParser2D> NavigationServer2D::geometry_parser_owner; | 
					
						
							|  |  |  | LocalVector<NavMeshGeometryParser2D *> NavigationServer2D::generator_parsers; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | void NavigationServer2D::_bind_methods() { | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_maps"), &NavigationServer2D::get_maps); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_create"), &NavigationServer2D::map_create); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_set_active", "map", "active"), &NavigationServer2D::map_set_active); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_is_active", "map"), &NavigationServer2D::map_is_active); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_set_cell_size", "map", "cell_size"), &NavigationServer2D::map_set_cell_size); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_cell_size", "map"), &NavigationServer2D::map_get_cell_size); | 
					
						
							| 
									
										
										
										
											2025-06-21 02:42:10 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_set_merge_rasterizer_cell_scale", "map", "scale"), &NavigationServer2D::map_set_merge_rasterizer_cell_scale); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_merge_rasterizer_cell_scale", "map"), &NavigationServer2D::map_get_merge_rasterizer_cell_scale); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_set_use_edge_connections", "map", "enabled"), &NavigationServer2D::map_set_use_edge_connections); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_use_edge_connections", "map"), &NavigationServer2D::map_get_use_edge_connections); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_set_edge_connection_margin", "map", "margin"), &NavigationServer2D::map_set_edge_connection_margin); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_edge_connection_margin", "map"), &NavigationServer2D::map_get_edge_connection_margin); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_set_link_connection_radius", "map", "radius"), &NavigationServer2D::map_set_link_connection_radius); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_link_connection_radius", "map"), &NavigationServer2D::map_get_link_connection_radius); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_path", "map", "origin", "destination", "optimize", "navigation_layers"), &NavigationServer2D::map_get_path, DEFVAL(1)); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_closest_point", "map", "to_point"), &NavigationServer2D::map_get_closest_point); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_closest_point_owner", "map", "to_point"), &NavigationServer2D::map_get_closest_point_owner); | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_get_links", "map"), &NavigationServer2D::map_get_links); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_regions", "map"), &NavigationServer2D::map_get_regions); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_agents", "map"), &NavigationServer2D::map_get_agents); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_obstacles", "map"), &NavigationServer2D::map_get_obstacles); | 
					
						
							| 
									
										
										
										
											2022-12-21 14:21:43 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_force_update", "map"), &NavigationServer2D::map_force_update); | 
					
						
							| 
									
										
										
										
											2023-11-01 03:02:59 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_get_iteration_id", "map"), &NavigationServer2D::map_get_iteration_id); | 
					
						
							| 
									
										
										
										
											2024-12-15 20:31:13 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_set_use_async_iterations", "map", "enabled"), &NavigationServer2D::map_set_use_async_iterations); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("map_get_use_async_iterations", "map"), &NavigationServer2D::map_get_use_async_iterations); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 18:16:05 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_get_random_point", "map", "navigation_layers", "uniformly"), &NavigationServer2D::map_get_random_point); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-29 18:22:26 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("query_path", "parameters", "result", "callback"), &NavigationServer2D::query_path, DEFVAL(Callable())); | 
					
						
							| 
									
										
										
										
											2020-02-18 17:08:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_create"), &NavigationServer2D::region_create); | 
					
						
							| 
									
										
										
										
											2025-04-15 19:17:20 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_get_iteration_id", "region"), &NavigationServer2D::region_get_iteration_id); | 
					
						
							| 
									
										
										
										
											2025-06-11 00:40:36 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_set_use_async_iterations", "region", "enabled"), &NavigationServer2D::region_set_use_async_iterations); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_use_async_iterations", "region"), &NavigationServer2D::region_get_use_async_iterations); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_set_enabled", "region", "enabled"), &NavigationServer2D::region_set_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_enabled", "region"), &NavigationServer2D::region_get_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_set_use_edge_connections", "region", "enabled"), &NavigationServer2D::region_set_use_edge_connections); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_use_edge_connections", "region"), &NavigationServer2D::region_get_use_edge_connections); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_set_enter_cost", "region", "enter_cost"), &NavigationServer2D::region_set_enter_cost); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_enter_cost", "region"), &NavigationServer2D::region_get_enter_cost); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_set_travel_cost", "region", "travel_cost"), &NavigationServer2D::region_set_travel_cost); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_travel_cost", "region"), &NavigationServer2D::region_get_travel_cost); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_set_owner_id", "region", "owner_id"), &NavigationServer2D::region_set_owner_id); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_owner_id", "region"), &NavigationServer2D::region_get_owner_id); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_owns_point", "region", "point"), &NavigationServer2D::region_owns_point); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_set_map", "region", "map"), &NavigationServer2D::region_set_map); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_map", "region"), &NavigationServer2D::region_get_map); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_set_navigation_layers", "region", "navigation_layers"), &NavigationServer2D::region_set_navigation_layers); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_navigation_layers", "region"), &NavigationServer2D::region_get_navigation_layers); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_set_transform", "region", "transform"), &NavigationServer2D::region_set_transform); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_get_transform", "region"), &NavigationServer2D::region_get_transform); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_set_navigation_polygon", "region", "navigation_polygon"), &NavigationServer2D::region_set_navigation_polygon); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_connections_count", "region"), &NavigationServer2D::region_get_connections_count); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_connection_pathway_start", "region", "connection"), &NavigationServer2D::region_get_connection_pathway_start); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_get_connection_pathway_end", "region", "connection"), &NavigationServer2D::region_get_connection_pathway_end); | 
					
						
							| 
									
										
										
										
											2024-08-25 22:59:13 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_get_closest_point", "region", "to_point"), &NavigationServer2D::region_get_closest_point); | 
					
						
							| 
									
										
										
										
											2023-10-23 18:16:05 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_get_random_point", "region", "navigation_layers", "uniformly"), &NavigationServer2D::region_get_random_point); | 
					
						
							| 
									
										
										
										
											2025-01-11 02:16:53 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_get_bounds", "region"), &NavigationServer2D::region_get_bounds); | 
					
						
							| 
									
										
										
										
											2021-03-08 20:56:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("link_create"), &NavigationServer2D::link_create); | 
					
						
							| 
									
										
										
										
											2025-04-25 20:48:25 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("link_get_iteration_id", "link"), &NavigationServer2D::link_get_iteration_id); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("link_set_map", "link", "map"), &NavigationServer2D::link_set_map); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_map", "link"), &NavigationServer2D::link_get_map); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_enabled", "link", "enabled"), &NavigationServer2D::link_set_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_enabled", "link"), &NavigationServer2D::link_get_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_bidirectional", "link", "bidirectional"), &NavigationServer2D::link_set_bidirectional); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_is_bidirectional", "link"), &NavigationServer2D::link_is_bidirectional); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_navigation_layers", "link", "navigation_layers"), &NavigationServer2D::link_set_navigation_layers); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_navigation_layers", "link"), &NavigationServer2D::link_get_navigation_layers); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_start_position", "link", "position"), &NavigationServer2D::link_set_start_position); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_start_position", "link"), &NavigationServer2D::link_get_start_position); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_end_position", "link", "position"), &NavigationServer2D::link_set_end_position); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_end_position", "link"), &NavigationServer2D::link_get_end_position); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_enter_cost", "link", "enter_cost"), &NavigationServer2D::link_set_enter_cost); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_enter_cost", "link"), &NavigationServer2D::link_get_enter_cost); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_travel_cost", "link", "travel_cost"), &NavigationServer2D::link_set_travel_cost); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_travel_cost", "link"), &NavigationServer2D::link_get_travel_cost); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_owner_id", "link", "owner_id"), &NavigationServer2D::link_set_owner_id); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_owner_id", "link"), &NavigationServer2D::link_get_owner_id); | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_create"), &NavigationServer2D::agent_create); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_avoidance_enabled", "agent", "enabled"), &NavigationServer2D::agent_set_avoidance_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_avoidance_enabled", "agent"), &NavigationServer2D::agent_get_avoidance_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_map", "agent", "map"), &NavigationServer2D::agent_set_map); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_map", "agent"), &NavigationServer2D::agent_get_map); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_paused", "agent", "paused"), &NavigationServer2D::agent_set_paused); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_paused", "agent"), &NavigationServer2D::agent_get_paused); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_neighbor_distance", "agent", "distance"), &NavigationServer2D::agent_set_neighbor_distance); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_neighbor_distance", "agent"), &NavigationServer2D::agent_get_neighbor_distance); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_max_neighbors", "agent", "count"), &NavigationServer2D::agent_set_max_neighbors); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_max_neighbors", "agent"), &NavigationServer2D::agent_get_max_neighbors); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_time_horizon_agents", "agent", "time_horizon"), &NavigationServer2D::agent_set_time_horizon_agents); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_time_horizon_agents", "agent"), &NavigationServer2D::agent_get_time_horizon_agents); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_time_horizon_obstacles", "agent", "time_horizon"), &NavigationServer2D::agent_set_time_horizon_obstacles); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_time_horizon_obstacles", "agent"), &NavigationServer2D::agent_get_time_horizon_obstacles); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_radius", "agent", "radius"), &NavigationServer2D::agent_set_radius); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_radius", "agent"), &NavigationServer2D::agent_get_radius); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_max_speed", "agent", "max_speed"), &NavigationServer2D::agent_set_max_speed); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_max_speed", "agent"), &NavigationServer2D::agent_get_max_speed); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_velocity_forced", "agent", "velocity"), &NavigationServer2D::agent_set_velocity_forced); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_velocity", "agent", "velocity"), &NavigationServer2D::agent_set_velocity); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_velocity", "agent"), &NavigationServer2D::agent_get_velocity); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_position", "agent", "position"), &NavigationServer2D::agent_set_position); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_position", "agent"), &NavigationServer2D::agent_get_position); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_is_map_changed", "agent"), &NavigationServer2D::agent_is_map_changed); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_avoidance_callback", "agent", "callback"), &NavigationServer2D::agent_set_avoidance_callback); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_has_avoidance_callback", "agent"), &NavigationServer2D::agent_has_avoidance_callback); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_avoidance_layers", "agent", "layers"), &NavigationServer2D::agent_set_avoidance_layers); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_avoidance_layers", "agent"), &NavigationServer2D::agent_get_avoidance_layers); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_avoidance_mask", "agent", "mask"), &NavigationServer2D::agent_set_avoidance_mask); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_avoidance_mask", "agent"), &NavigationServer2D::agent_get_avoidance_mask); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_avoidance_priority", "agent", "priority"), &NavigationServer2D::agent_set_avoidance_priority); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_avoidance_priority", "agent"), &NavigationServer2D::agent_get_avoidance_priority); | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_create"), &NavigationServer2D::obstacle_create); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_set_avoidance_enabled", "obstacle", "enabled"), &NavigationServer2D::obstacle_set_avoidance_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_get_avoidance_enabled", "obstacle"), &NavigationServer2D::obstacle_get_avoidance_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_set_map", "obstacle", "map"), &NavigationServer2D::obstacle_set_map); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_get_map", "obstacle"), &NavigationServer2D::obstacle_get_map); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_set_paused", "obstacle", "paused"), &NavigationServer2D::obstacle_set_paused); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_get_paused", "obstacle"), &NavigationServer2D::obstacle_get_paused); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_set_radius", "obstacle", "radius"), &NavigationServer2D::obstacle_set_radius); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_get_radius", "obstacle"), &NavigationServer2D::obstacle_get_radius); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_set_velocity", "obstacle", "velocity"), &NavigationServer2D::obstacle_set_velocity); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_get_velocity", "obstacle"), &NavigationServer2D::obstacle_get_velocity); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_set_position", "obstacle", "position"), &NavigationServer2D::obstacle_set_position); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_get_position", "obstacle"), &NavigationServer2D::obstacle_get_position); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_set_vertices", "obstacle", "vertices"), &NavigationServer2D::obstacle_set_vertices); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_get_vertices", "obstacle"), &NavigationServer2D::obstacle_get_vertices); | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_set_avoidance_layers", "obstacle", "layers"), &NavigationServer2D::obstacle_set_avoidance_layers); | 
					
						
							| 
									
										
										
										
											2023-12-19 19:51:49 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("obstacle_get_avoidance_layers", "obstacle"), &NavigationServer2D::obstacle_get_avoidance_layers); | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("parse_source_geometry_data", "navigation_polygon", "source_geometry_data", "root_node", "callback"), &NavigationServer2D::parse_source_geometry_data, DEFVAL(Callable())); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("bake_from_source_geometry_data", "navigation_polygon", "source_geometry_data", "callback"), &NavigationServer2D::bake_from_source_geometry_data, DEFVAL(Callable())); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("bake_from_source_geometry_data_async", "navigation_polygon", "source_geometry_data", "callback"), &NavigationServer2D::bake_from_source_geometry_data_async, DEFVAL(Callable())); | 
					
						
							| 
									
										
										
										
											2024-01-29 22:28:01 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("is_baking_navigation_polygon", "navigation_polygon"), &NavigationServer2D::is_baking_navigation_polygon); | 
					
						
							| 
									
										
										
										
											2021-03-08 20:56:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-18 22:47:28 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("source_geometry_parser_create"), &NavigationServer2D::source_geometry_parser_create); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("source_geometry_parser_set_callback", "parser", "callback"), &NavigationServer2D::source_geometry_parser_set_callback); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-09 04:27:54 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("simplify_path", "path", "epsilon"), &NavigationServer2D::simplify_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("free_rid", "rid"), &NavigationServer2D::free); | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_active", "active"), &NavigationServer2D::set_active); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_debug_enabled", "enabled"), &NavigationServer2D::set_debug_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_debug_enabled"), &NavigationServer2D::get_debug_enabled); | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("map_changed", PropertyInfo(Variant::RID, "map"))); | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("navigation_debug_changed")); | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("avoidance_debug_changed")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_process_info", "process_info"), &NavigationServer2D::get_process_info); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_ACTIVE_MAPS); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_REGION_COUNT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_AGENT_COUNT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_LINK_COUNT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_POLYGON_COUNT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_EDGE_COUNT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_EDGE_MERGE_COUNT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_EDGE_CONNECTION_COUNT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_EDGE_FREE_COUNT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(INFO_OBSTACLE_COUNT); | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | NavigationServer2D *NavigationServer2D::get_singleton() { | 
					
						
							|  |  |  | 	return singleton; | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | NavigationServer2D::NavigationServer2D() { | 
					
						
							|  |  |  | 	ERR_FAIL_COND(singleton != nullptr); | 
					
						
							|  |  |  | 	singleton = this; | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-24 09:04:50 -07:00
										 |  |  | 	GLOBAL_DEF_BASIC(PropertyInfo(Variant::FLOAT, "navigation/2d/default_cell_size", PROPERTY_HINT_RANGE, NavigationDefaults2D::NAV_MESH_CELL_SIZE_HINT), NavigationDefaults2D::NAV_MESH_CELL_SIZE); | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	GLOBAL_DEF("navigation/2d/use_edge_connections", true); | 
					
						
							| 
									
										
										
										
											2025-06-21 02:42:10 +02:00
										 |  |  | 	GLOBAL_DEF(PropertyInfo(Variant::FLOAT, "navigation/2d/merge_rasterizer_cell_scale", PROPERTY_HINT_RANGE, "0.001,1,0.001,or_greater"), 1.0); | 
					
						
							| 
									
										
										
										
											2025-04-24 09:04:50 -07:00
										 |  |  | 	GLOBAL_DEF_BASIC(PropertyInfo(Variant::FLOAT, "navigation/2d/default_edge_connection_margin", PROPERTY_HINT_RANGE, "0.01,10,0.001,or_greater"), NavigationDefaults2D::EDGE_CONNECTION_MARGIN); | 
					
						
							|  |  |  | 	GLOBAL_DEF_BASIC(PropertyInfo(Variant::FLOAT, "navigation/2d/default_link_connection_radius", PROPERTY_HINT_RANGE, "0.01,10,0.001,or_greater"), NavigationDefaults2D::LINK_CONNECTION_RADIUS); | 
					
						
							| 
									
										
										
										
											2022-09-30 23:49:39 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_edge_connection_color = GLOBAL_DEF("debug/shapes/navigation/2d/edge_connection_color", Color(1.0, 0.0, 1.0, 1.0)); | 
					
						
							|  |  |  | 	debug_navigation_geometry_edge_color = GLOBAL_DEF("debug/shapes/navigation/2d/geometry_edge_color", Color(0.5, 1.0, 1.0, 1.0)); | 
					
						
							|  |  |  | 	debug_navigation_geometry_face_color = GLOBAL_DEF("debug/shapes/navigation/2d/geometry_face_color", Color(0.5, 1.0, 1.0, 0.4)); | 
					
						
							|  |  |  | 	debug_navigation_geometry_edge_disabled_color = GLOBAL_DEF("debug/shapes/navigation/2d/geometry_edge_disabled_color", Color(0.5, 0.5, 0.5, 1.0)); | 
					
						
							|  |  |  | 	debug_navigation_geometry_face_disabled_color = GLOBAL_DEF("debug/shapes/navigation/2d/geometry_face_disabled_color", Color(0.5, 0.5, 0.5, 0.4)); | 
					
						
							|  |  |  | 	debug_navigation_link_connection_color = GLOBAL_DEF("debug/shapes/navigation/2d/link_connection_color", Color(1.0, 0.5, 1.0, 1.0)); | 
					
						
							|  |  |  | 	debug_navigation_link_connection_disabled_color = GLOBAL_DEF("debug/shapes/navigation/2d/link_connection_disabled_color", Color(0.5, 0.5, 0.5, 1.0)); | 
					
						
							|  |  |  | 	debug_navigation_agent_path_color = GLOBAL_DEF("debug/shapes/navigation/2d/agent_path_color", Color(1.0, 0.0, 0.0, 1.0)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	debug_navigation_enable_edge_connections = GLOBAL_DEF("debug/shapes/navigation/2d/enable_edge_connections", true); | 
					
						
							|  |  |  | 	debug_navigation_enable_edge_lines = GLOBAL_DEF("debug/shapes/navigation/2d/enable_edge_lines", true); | 
					
						
							|  |  |  | 	debug_navigation_enable_geometry_face_random_color = GLOBAL_DEF("debug/shapes/navigation/2d/enable_geometry_face_random_color", true); | 
					
						
							|  |  |  | 	debug_navigation_enable_link_connections = GLOBAL_DEF("debug/shapes/navigation/2d/enable_link_connections", true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	debug_navigation_enable_agent_paths = GLOBAL_DEF("debug/shapes/navigation/2d/enable_agent_paths", true); | 
					
						
							|  |  |  | 	debug_navigation_agent_path_point_size = GLOBAL_DEF(PropertyInfo(Variant::FLOAT, "debug/shapes/navigation/2d/agent_path_point_size", PROPERTY_HINT_RANGE, "0.01,10,0.001,or_greater"), 4.0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	debug_navigation_avoidance_agents_radius_color = GLOBAL_DEF("debug/shapes/avoidance/2d/agents_radius_color", Color(1.0, 1.0, 0.0, 0.25)); | 
					
						
							|  |  |  | 	debug_navigation_avoidance_obstacles_radius_color = GLOBAL_DEF("debug/shapes/avoidance/2d/obstacles_radius_color", Color(1.0, 0.5, 0.0, 0.25)); | 
					
						
							|  |  |  | 	debug_navigation_avoidance_static_obstacle_pushin_face_color = GLOBAL_DEF("debug/shapes/avoidance/2d/obstacles_static_face_pushin_color", Color(1.0, 0.0, 0.0, 0.0)); | 
					
						
							|  |  |  | 	debug_navigation_avoidance_static_obstacle_pushin_edge_color = GLOBAL_DEF("debug/shapes/avoidance/2d/obstacles_static_edge_pushin_color", Color(1.0, 0.0, 0.0, 1.0)); | 
					
						
							|  |  |  | 	debug_navigation_avoidance_static_obstacle_pushout_face_color = GLOBAL_DEF("debug/shapes/avoidance/2d/obstacles_static_face_pushout_color", Color(1.0, 1.0, 0.0, 0.5)); | 
					
						
							|  |  |  | 	debug_navigation_avoidance_static_obstacle_pushout_edge_color = GLOBAL_DEF("debug/shapes/avoidance/2d/obstacles_static_edge_pushout_color", Color(1.0, 1.0, 0.0, 1.0)); | 
					
						
							|  |  |  | 	debug_navigation_avoidance_enable_agents_radius = GLOBAL_DEF("debug/shapes/avoidance/2d/enable_agents_radius", true); | 
					
						
							|  |  |  | 	debug_navigation_avoidance_enable_obstacles_radius = GLOBAL_DEF("debug/shapes/avoidance/2d/enable_obstacles_radius", true); | 
					
						
							|  |  |  | 	debug_navigation_avoidance_enable_obstacles_static = GLOBAL_DEF("debug/shapes/avoidance/2d/enable_obstacles_static", true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (Engine::get_singleton()->is_editor_hint()) { | 
					
						
							|  |  |  | 		// enable NavigationServer3D when in Editor or else navigation mesh edge connections are invisible
 | 
					
						
							|  |  |  | 		// on runtime tests SceneTree has "Visible Navigation" set and main iteration takes care of this.
 | 
					
						
							|  |  |  | 		set_debug_enabled(true); | 
					
						
							|  |  |  | 		set_debug_navigation_enabled(true); | 
					
						
							|  |  |  | 		set_debug_avoidance_enabled(true); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | #endif // DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-01-27 20:15:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | NavigationServer2D::~NavigationServer2D() { | 
					
						
							|  |  |  | 	singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2024-12-28 01:33:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RWLockWrite write_lock(geometry_parser_rwlock); | 
					
						
							|  |  |  | 	for (NavMeshGeometryParser2D *parser : generator_parsers) { | 
					
						
							|  |  |  | 		geometry_parser_owner.free(parser->self); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	generator_parsers.clear(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RID NavigationServer2D::source_geometry_parser_create() { | 
					
						
							|  |  |  | 	RWLockWrite write_lock(geometry_parser_rwlock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RID rid = geometry_parser_owner.make_rid(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NavMeshGeometryParser2D *parser = geometry_parser_owner.get_or_null(rid); | 
					
						
							|  |  |  | 	parser->self = rid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	generator_parsers.push_back(parser); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return rid; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::free(RID p_object) { | 
					
						
							|  |  |  | 	if (!geometry_parser_owner.owns(p_object)) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	RWLockWrite write_lock(geometry_parser_rwlock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NavMeshGeometryParser2D *parser = geometry_parser_owner.get_or_null(p_object); | 
					
						
							|  |  |  | 	ERR_FAIL_NULL(parser); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	generator_parsers.erase(parser); | 
					
						
							|  |  |  | 	geometry_parser_owner.free(parser->self); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::source_geometry_parser_set_callback(RID p_parser, const Callable &p_callback) { | 
					
						
							|  |  |  | 	RWLockWrite write_lock(geometry_parser_rwlock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NavMeshGeometryParser2D *parser = geometry_parser_owner.get_or_null(p_parser); | 
					
						
							|  |  |  | 	ERR_FAIL_NULL(parser); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	parser->callback = p_callback; | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | void NavigationServer2D::set_debug_enabled(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							|  |  |  | 	if (debug_enabled != p_enabled) { | 
					
						
							|  |  |  | 		debug_dirty = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	debug_enabled = p_enabled; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (debug_dirty) { | 
					
						
							|  |  |  | 		navigation_debug_dirty = true; | 
					
						
							|  |  |  | 		callable_mp(this, &NavigationServer2D::_emit_navigation_debug_changed_signal).call_deferred(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		avoidance_debug_dirty = true; | 
					
						
							|  |  |  | 		callable_mp(this, &NavigationServer2D::_emit_avoidance_debug_changed_signal).call_deferred(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif // DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-02-13 12:17:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | bool NavigationServer2D::get_debug_enabled() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							|  |  |  | void NavigationServer2D::_emit_navigation_debug_changed_signal() { | 
					
						
							|  |  |  | 	if (navigation_debug_dirty) { | 
					
						
							|  |  |  | 		navigation_debug_dirty = false; | 
					
						
							|  |  |  | 		emit_signal(SNAME("navigation_debug_changed")); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | void NavigationServer2D::_emit_avoidance_debug_changed_signal() { | 
					
						
							|  |  |  | 	if (avoidance_debug_dirty) { | 
					
						
							|  |  |  | 		avoidance_debug_dirty = false; | 
					
						
							|  |  |  | 		emit_signal(SNAME("avoidance_debug_changed")); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif // DEBUG_ENABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-13 12:17:24 +01:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | void NavigationServer2D::set_debug_navigation_enabled(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_enabled = p_enabled; | 
					
						
							|  |  |  | 	navigation_debug_dirty = true; | 
					
						
							|  |  |  | 	callable_mp(this, &NavigationServer2D::_emit_navigation_debug_changed_signal).call_deferred(); | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_enabled() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_enabled; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_avoidance_enabled(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_avoidance_enabled = p_enabled; | 
					
						
							|  |  |  | 	avoidance_debug_dirty = true; | 
					
						
							|  |  |  | 	callable_mp(this, &NavigationServer2D::_emit_avoidance_debug_changed_signal).call_deferred(); | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_avoidance_enabled() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_avoidance_enabled; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | void NavigationServer2D::set_debug_navigation_edge_connection_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_edge_connection_color = p_color; | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_edge_connection_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_edge_connection_color; | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_geometry_face_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_geometry_face_color = p_color; | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_geometry_face_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_geometry_face_color; | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_geometry_face_disabled_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_geometry_face_disabled_color = p_color; | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_geometry_face_disabled_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_geometry_face_disabled_color; | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | void NavigationServer2D::set_debug_navigation_link_connection_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_link_connection_color = p_color; | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_link_connection_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_link_connection_color; | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_link_connection_disabled_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_link_connection_disabled_color = p_color; | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_link_connection_disabled_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_link_connection_disabled_color; | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | void NavigationServer2D::set_debug_navigation_geometry_edge_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_geometry_edge_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_geometry_edge_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_geometry_edge_color; | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_geometry_edge_disabled_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_geometry_edge_disabled_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_geometry_edge_disabled_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_geometry_edge_disabled_color; | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | void NavigationServer2D::set_debug_navigation_enable_edge_connections(const bool p_value) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_enable_edge_connections = p_value; | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_enable_edge_connections() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_enable_edge_connections; | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-01-16 17:45:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | void NavigationServer2D::set_debug_navigation_enable_geometry_face_random_color(const bool p_value) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_enable_geometry_face_random_color = p_value; | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_enable_geometry_face_random_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_enable_geometry_face_random_color; | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_enable_edge_lines(const bool p_value) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_enable_edge_lines = p_value; | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_enable_edge_lines() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_enable_edge_lines; | 
					
						
							| 
									
										
										
										
											2023-02-13 04:35:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-16 17:45:03 +01:00
										 |  |  | void NavigationServer2D::set_debug_navigation_agent_path_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_agent_path_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-01-16 17:45:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_agent_path_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_agent_path_color; | 
					
						
							| 
									
										
										
										
											2023-01-16 17:45:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_enable_agent_paths(const bool p_value) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_enable_agent_paths = p_value; | 
					
						
							| 
									
										
										
										
											2023-01-16 17:45:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_enable_agent_paths() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_enable_agent_paths; | 
					
						
							| 
									
										
										
										
											2023-01-16 17:45:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-07 15:16:07 +01:00
										 |  |  | void NavigationServer2D::set_debug_navigation_agent_path_point_size(real_t p_point_size) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_agent_path_point_size = p_point_size; | 
					
						
							| 
									
										
										
										
											2023-01-16 17:45:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-07 15:16:07 +01:00
										 |  |  | real_t NavigationServer2D::get_debug_navigation_agent_path_point_size() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_agent_path_point_size; | 
					
						
							| 
									
										
										
										
											2023-01-16 17:45:03 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_enable_agents_radius(const bool p_value) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_enable_agents_radius = p_value; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_avoidance_enable_agents_radius() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_enable_agents_radius; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_enable_obstacles_radius(const bool p_value) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_enable_obstacles_radius = p_value; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_avoidance_enable_obstacles_radius() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_enable_obstacles_radius; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_agents_radius_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_agents_radius_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_avoidance_agents_radius_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_agents_radius_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_obstacles_radius_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_obstacles_radius_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_avoidance_obstacles_radius_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_obstacles_radius_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_static_obstacle_pushin_face_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_static_obstacle_pushin_face_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_avoidance_static_obstacle_pushin_face_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_static_obstacle_pushin_face_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_static_obstacle_pushout_face_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_static_obstacle_pushout_face_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_avoidance_static_obstacle_pushout_face_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_static_obstacle_pushout_face_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_static_obstacle_pushin_edge_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_static_obstacle_pushin_edge_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_avoidance_static_obstacle_pushin_edge_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_static_obstacle_pushin_edge_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_static_obstacle_pushout_edge_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_static_obstacle_pushout_edge_color = p_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_avoidance_static_obstacle_pushout_edge_color() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_static_obstacle_pushout_edge_color; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_avoidance_enable_obstacles_static(const bool p_value) { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	debug_navigation_avoidance_enable_obstacles_static = p_value; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_avoidance_enable_obstacles_static() const { | 
					
						
							| 
									
										
										
										
											2025-02-26 11:48:13 +01:00
										 |  |  | 	return debug_navigation_avoidance_enable_obstacles_static; | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | #endif // DEBUG_ENABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | ///////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2022-06-22 15:33:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-28 01:33:40 +01:00
										 |  |  | static NavigationServer2D *navigation_server_2d = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | NavigationServer2DCallback NavigationServer2DManager::create_callback = nullptr; | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | void NavigationServer2DManager::set_default_server(NavigationServer2DCallback p_callback) { | 
					
						
							|  |  |  | 	create_callback = p_callback; | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | NavigationServer2D *NavigationServer2DManager::new_default_server() { | 
					
						
							|  |  |  | 	if (create_callback == nullptr) { | 
					
						
							|  |  |  | 		return nullptr; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-17 18:32:30 +02:00
										 |  |  | 	return create_callback(); | 
					
						
							| 
									
										
										
										
											2022-06-26 12:43:01 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2024-12-28 01:33:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2DManager::initialize_server() { | 
					
						
							|  |  |  | 	ERR_FAIL_COND(navigation_server_2d != nullptr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Init 2D Navigation Server
 | 
					
						
							|  |  |  | 	navigation_server_2d = NavigationServer2DManager::new_default_server(); | 
					
						
							|  |  |  | 	if (!navigation_server_2d) { | 
					
						
							|  |  |  | 		WARN_VERBOSE("Failed to initialize NavigationServer2D. Fall back to dummy server."); | 
					
						
							|  |  |  | 		navigation_server_2d = memnew(NavigationServer2DDummy); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ERR_FAIL_NULL_MSG(navigation_server_2d, "Failed to initialize NavigationServer2D."); | 
					
						
							|  |  |  | 	navigation_server_2d->init(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2DManager::finalize_server() { | 
					
						
							|  |  |  | 	ERR_FAIL_NULL(navigation_server_2d); | 
					
						
							|  |  |  | 	navigation_server_2d->finish(); | 
					
						
							|  |  |  | 	memdelete(navigation_server_2d); | 
					
						
							|  |  |  | 	navigation_server_2d = nullptr; | 
					
						
							|  |  |  | } |