| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-03-28 13:19:05 +01:00
										 |  |  | /*  navigation_server_2d.cpp                                             */ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-03 21:27:34 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* 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-03-27 15:21:27 -03:00
										 |  |  | #include "servers/navigation_server_2d.h"
 | 
					
						
							| 
									
										
										
										
											2022-01-04 20:26:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | #include "core/math/transform_2d.h"
 | 
					
						
							| 
									
										
										
										
											2021-02-26 23:26:56 -05:00
										 |  |  | #include "core/math/transform_3d.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #include "servers/navigation_server_3d.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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define FORWARD_0_C(FUNC_NAME)                                   \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME()                              \ | 
					
						
							|  |  |  | 			const {                                              \ | 
					
						
							|  |  |  | 		return NavigationServer3D::get_singleton()->FUNC_NAME(); \ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define FORWARD_1(FUNC_NAME, T_0, D_0, CONV_0)                                  \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0) {                                    \ | 
					
						
							|  |  |  | 		return NavigationServer3D::get_singleton_mut()->FUNC_NAME(CONV_0(D_0)); \ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define FORWARD_1_C(FUNC_NAME, T_0, D_0, CONV_0)                            \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0)                                  \ | 
					
						
							|  |  |  | 			const {                                                         \ | 
					
						
							|  |  |  | 		return NavigationServer3D::get_singleton()->FUNC_NAME(CONV_0(D_0)); \ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | #define FORWARD_1_R_C(CONV_R, FUNC_NAME, T_0, D_0, CONV_0)                          \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0)                                          \ | 
					
						
							|  |  |  | 			const {                                                                 \ | 
					
						
							|  |  |  | 		return CONV_R(NavigationServer3D::get_singleton()->FUNC_NAME(CONV_0(D_0))); \ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define FORWARD_2_C(FUNC_NAME, T_0, D_0, T_1, D_1, CONV_0, CONV_1)                       \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0, T_1 D_1)                                      \ | 
					
						
							|  |  |  | 			const {                                                                      \ | 
					
						
							|  |  |  | 		return NavigationServer3D::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1)); \ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define FORWARD_2_R_C(CONV_R, FUNC_NAME, T_0, D_0, T_1, D_1, CONV_0, CONV_1)                     \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0, T_1 D_1)                                              \ | 
					
						
							|  |  |  | 			const {                                                                              \ | 
					
						
							|  |  |  | 		return CONV_R(NavigationServer3D::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1))); \ | 
					
						
							| 
									
										
										
										
											2020-02-18 17:08:34 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define FORWARD_4_R_C(CONV_R, FUNC_NAME, T_0, D_0, T_1, D_1, T_2, D_2, T_3, D_3, CONV_0, CONV_1, CONV_2, CONV_3)           \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2, T_3 D_3)                                                      \ | 
					
						
							|  |  |  | 			const {                                                                                                        \ | 
					
						
							|  |  |  | 		return CONV_R(NavigationServer3D::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2), CONV_3(D_3))); \ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define FORWARD_4_C(FUNC_NAME, T_0, D_0, T_1, D_1, T_2, D_2, T_3, D_3, CONV_0, CONV_1, CONV_2, CONV_3)             \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2, T_3 D_3)                                              \ | 
					
						
							|  |  |  | 			const {                                                                                                \ | 
					
						
							|  |  |  | 		return NavigationServer3D::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2), CONV_3(D_3)); \ | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-08 20:56:33 +01:00
										 |  |  | #define FORWARD_5_R_C(CONV_R, FUNC_NAME, T_0, D_0, T_1, D_1, T_2, D_2, T_3, D_3, T_4, D_4, CONV_0, CONV_1, CONV_2, CONV_3, CONV_4)      \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2, T_3 D_3, T_4 D_4)                                                          \ | 
					
						
							|  |  |  | 			const {                                                                                                                     \ | 
					
						
							|  |  |  | 		return CONV_R(NavigationServer3D::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2), CONV_3(D_3), CONV_4(D_4))); \ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define FORWARD_5_C(FUNC_NAME, T_0, D_0, T_1, D_1, T_2, D_2, T_3, D_3, T_4, D_4, CONV_0, CONV_1, CONV_2, CONV_3, CONV_4)        \
 | 
					
						
							|  |  |  | 	NavigationServer2D::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2, T_3 D_3, T_4 D_4)                                                  \ | 
					
						
							|  |  |  | 			const {                                                                                                             \ | 
					
						
							|  |  |  | 		return NavigationServer3D::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2), CONV_3(D_3), CONV_4(D_4)); \ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | static RID rid_to_rid(const RID d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return d; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | static bool bool_to_bool(const bool d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return d; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | static int int_to_int(const int d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return d; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-08 20:56:33 +01:00
										 |  |  | static uint32_t uint32_to_uint32(const uint32_t d) { | 
					
						
							|  |  |  | 	return d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | static real_t real_to_real(const real_t d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return d; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | static Vector3 v2_to_v3(const Vector2 d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return Vector3(d.x, 0.0, d.y); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | static Vector2 v3_to_v2(const Vector3 &d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return Vector2(d.x, d.z); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | static Vector<Vector2> vector_v3_to_v2(const Vector<Vector3> &d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	Vector<Vector2> nd; | 
					
						
							|  |  |  | 	nd.resize(d.size()); | 
					
						
							|  |  |  | 	for (int i(0); i < nd.size(); i++) { | 
					
						
							|  |  |  | 		nd.write[i] = v3_to_v2(d[i]); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nd; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-17 01:08:21 -04:00
										 |  |  | static Transform3D trf2_to_trf3(const Transform2D &d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	Vector3 o(v2_to_v3(d.get_origin())); | 
					
						
							|  |  |  | 	Basis b; | 
					
						
							| 
									
										
										
										
											2021-03-18 15:01:30 +01:00
										 |  |  | 	b.rotate(Vector3(0, -1, 0), d.get_rotation()); | 
					
						
							|  |  |  | 	b.scale(v2_to_v3(d.get_scale())); | 
					
						
							| 
									
										
										
										
											2020-10-17 01:08:21 -04:00
										 |  |  | 	return Transform3D(b, o); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 11:35:39 +02:00
										 |  |  | static StringName sn_to_sn(const StringName &d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return d; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 11:35:39 +02:00
										 |  |  | static Variant var_to_var(const Variant &d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return d; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-30 23:49:39 -06:00
										 |  |  | static ObjectID id_to_id(const ObjectID &id) { | 
					
						
							|  |  |  | 	return id; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | static Ref<NavigationMesh> poly_to_mesh(Ref<NavigationPolygon> d) { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	if (d.is_valid()) { | 
					
						
							|  |  |  | 		return d->get_mesh(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return Ref<NavigationMesh>(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-15 12:45:28 +01:00
										 |  |  | void NavigationServer2D::_emit_map_changed(RID p_map) { | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 	emit_signal(SNAME("map_changed"), p_map); | 
					
						
							| 
									
										
										
										
											2021-03-15 12:45:28 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_enabled(bool p_enabled) { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton_mut()->set_debug_enabled(p_enabled); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_enabled() const { | 
					
						
							|  |  |  | 	return NavigationServer3D::get_singleton()->get_debug_enabled(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_edge_connection_color(const Color &p_color) { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton_mut()->set_debug_navigation_edge_connection_color(p_color); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_edge_connection_color() const { | 
					
						
							|  |  |  | 	return NavigationServer3D::get_singleton()->get_debug_navigation_edge_connection_color(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_geometry_face_color(const Color &p_color) { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton_mut()->set_debug_navigation_geometry_face_color(p_color); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_geometry_face_color() const { | 
					
						
							|  |  |  | 	return NavigationServer3D::get_singleton()->get_debug_navigation_geometry_face_color(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_geometry_face_disabled_color(const Color &p_color) { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton_mut()->set_debug_navigation_geometry_face_disabled_color(p_color); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_geometry_face_disabled_color() const { | 
					
						
							|  |  |  | 	return NavigationServer3D::get_singleton()->get_debug_navigation_geometry_face_disabled_color(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | void NavigationServer2D::set_debug_navigation_link_connection_color(const Color &p_color) { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton_mut()->set_debug_navigation_link_connection_color(p_color); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_link_connection_color() const { | 
					
						
							|  |  |  | 	return NavigationServer3D::get_singleton()->get_debug_navigation_link_connection_color(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::set_debug_navigation_link_connection_disabled_color(const Color &p_color) { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton_mut()->set_debug_navigation_link_connection_disabled_color(p_color); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color NavigationServer2D::get_debug_navigation_link_connection_disabled_color() const { | 
					
						
							|  |  |  | 	return NavigationServer3D::get_singleton()->get_debug_navigation_link_connection_disabled_color(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-09 12:21:45 +02:00
										 |  |  | void NavigationServer2D::set_debug_navigation_enable_edge_connections(const bool p_value) { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton_mut()->set_debug_navigation_enable_edge_connections(p_value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool NavigationServer2D::get_debug_navigation_enable_edge_connections() const { | 
					
						
							|  |  |  | 	return NavigationServer3D::get_singleton()->get_debug_navigation_enable_edge_connections(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif // DEBUG_ENABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | void NavigationServer2D::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2022-06-22 15:33:40 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_maps"), &NavigationServer2D::get_maps); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03: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); | 
					
						
							| 
									
										
										
										
											2022-08-17 17:05:46 +03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_is_active", "map"), &NavigationServer2D::map_is_active); | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	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); | 
					
						
							|  |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2022-06-14 23:34:43 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_get_path", "map", "origin", "destination", "optimize", "navigation_layers"), &NavigationServer2D::map_get_path, DEFVAL(1)); | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	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
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_get_links", "map"), &NavigationServer2D::map_get_links); | 
					
						
							| 
									
										
										
										
											2022-05-12 02:52:48 +02:00
										 |  |  | 	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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-22 10:16:38 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("map_force_update", "map"), &NavigationServer2D::map_force_update); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-26 12:43:01 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("query_path", "parameters", "result"), &NavigationServer2D::query_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_create"), &NavigationServer2D::region_create); | 
					
						
							| 
									
										
										
										
											2022-06-06 05:24:11 +02:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2022-09-30 23:49:39 -06:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2022-06-23 19:16:47 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_owns_point", "region", "point"), &NavigationServer2D::region_owns_point); | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_set_map", "region", "map"), &NavigationServer2D::region_set_map); | 
					
						
							| 
									
										
										
										
											2022-05-12 02:52:48 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_get_map", "region"), &NavigationServer2D::region_get_map); | 
					
						
							| 
									
										
										
										
											2022-06-14 23:34:43 +02:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("region_set_transform", "region", "transform"), &NavigationServer2D::region_set_transform); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("region_set_navpoly", "region", "nav_poly"), &NavigationServer2D::region_set_navpoly); | 
					
						
							| 
									
										
										
										
											2021-03-15 12:45:28 +01:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("link_create"), &NavigationServer2D::link_create); | 
					
						
							|  |  |  | 	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_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_location", "link", "location"), &NavigationServer2D::link_set_start_location); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_start_location", "link"), &NavigationServer2D::link_get_start_location); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_set_end_location", "link", "location"), &NavigationServer2D::link_set_end_location); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("link_get_end_location", "link"), &NavigationServer2D::link_get_end_location); | 
					
						
							|  |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2022-09-30 23:49:39 -06:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_create"), &NavigationServer2D::agent_create); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_map", "agent", "map"), &NavigationServer2D::agent_set_map); | 
					
						
							| 
									
										
										
										
											2022-05-12 02:52:48 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_get_map", "agent"), &NavigationServer2D::agent_get_map); | 
					
						
							| 
									
										
										
										
											2022-08-13 12:26:13 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_neighbor_distance", "agent", "distance"), &NavigationServer2D::agent_set_neighbor_distance); | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_max_neighbors", "agent", "count"), &NavigationServer2D::agent_set_max_neighbors); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_time_horizon", "agent", "time"), &NavigationServer2D::agent_set_time_horizon); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_radius", "agent", "radius"), &NavigationServer2D::agent_set_radius); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_max_speed", "agent", "max_speed"), &NavigationServer2D::agent_set_max_speed); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_velocity", "agent", "velocity"), &NavigationServer2D::agent_set_velocity); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_target_velocity", "agent", "target_velocity"), &NavigationServer2D::agent_set_target_velocity); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_position", "agent", "position"), &NavigationServer2D::agent_set_position); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("agent_is_map_changed", "agent"), &NavigationServer2D::agent_is_map_changed); | 
					
						
							| 
									
										
										
										
											2022-12-05 23:05:56 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("agent_set_callback", "agent", "object_id", "method", "userdata"), &NavigationServer2D::agent_set_callback, DEFVAL(Variant())); | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-08 17:39:17 +08:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("free_rid", "rid"), &NavigationServer2D::free); | 
					
						
							| 
									
										
										
										
											2021-03-15 12:45:28 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("map_changed", PropertyInfo(Variant::RID, "map"))); | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | NavigationServer2D::NavigationServer2D() { | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	singleton = this; | 
					
						
							| 
									
										
										
										
											2021-03-15 12:45:28 +01:00
										 |  |  | 	ERR_FAIL_COND_MSG(!NavigationServer3D::get_singleton(), "The Navigation3D singleton should be initialized before the 2D one."); | 
					
						
							| 
									
										
										
										
											2022-01-05 15:34:47 +01:00
										 |  |  | 	NavigationServer3D::get_singleton_mut()->connect("map_changed", callable_mp(this, &NavigationServer2D::_emit_map_changed)); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | NavigationServer2D::~NavigationServer2D() { | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-05 20:35:08 +02:00
										 |  |  | TypedArray<RID> FORWARD_0_C(get_maps); | 
					
						
							| 
									
										
										
										
											2022-06-22 15:33:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | TypedArray<RID> FORWARD_1_C(map_get_links, RID, p_map, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-05 20:35:08 +02:00
										 |  |  | TypedArray<RID> FORWARD_1_C(map_get_regions, RID, p_map, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2022-05-12 02:52:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-05 20:35:08 +02:00
										 |  |  | TypedArray<RID> FORWARD_1_C(map_get_agents, RID, p_map, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2022-05-12 02:52:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | RID FORWARD_1_C(region_get_map, RID, p_region, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RID FORWARD_1_C(agent_get_map, RID, p_agent, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | RID FORWARD_0_C(map_create); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(map_set_active, RID, p_map, bool, p_active, rid_to_rid, bool_to_bool); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool FORWARD_1_C(map_is_active, RID, p_map, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-22 10:16:38 +02:00
										 |  |  | void NavigationServer2D::map_force_update(RID p_map) { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton_mut()->map_force_update(p_map); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | void FORWARD_2_C(map_set_cell_size, RID, p_map, real_t, p_cell_size, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | real_t FORWARD_1_C(map_get_cell_size, RID, p_map, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(map_set_edge_connection_margin, RID, p_map, real_t, p_connection_margin, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | real_t FORWARD_1_C(map_get_edge_connection_margin, RID, p_map, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | void FORWARD_2_C(map_set_link_connection_radius, RID, p_map, real_t, p_connection_radius, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | real_t FORWARD_1_C(map_get_link_connection_radius, RID, p_map, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-08 20:56:33 +01:00
										 |  |  | Vector<Vector2> FORWARD_5_R_C(vector_v3_to_v2, map_get_path, RID, p_map, Vector2, p_origin, Vector2, p_destination, bool, p_optimize, uint32_t, p_layers, rid_to_rid, v2_to_v3, v2_to_v3, bool_to_bool, uint32_to_uint32); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-18 17:08:34 +01:00
										 |  |  | Vector2 FORWARD_2_R_C(v3_to_v2, map_get_closest_point, RID, p_map, const Vector2 &, p_point, rid_to_rid, v2_to_v3); | 
					
						
							|  |  |  | RID FORWARD_2_C(map_get_closest_point_owner, RID, p_map, const Vector2 &, p_point, rid_to_rid, v2_to_v3); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | RID FORWARD_0_C(region_create); | 
					
						
							| 
									
										
										
										
											2022-06-06 05:24:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(region_set_enter_cost, RID, p_region, real_t, p_enter_cost, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | real_t FORWARD_1_C(region_get_enter_cost, RID, p_region, rid_to_rid); | 
					
						
							|  |  |  | void FORWARD_2_C(region_set_travel_cost, RID, p_region, real_t, p_travel_cost, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | real_t FORWARD_1_C(region_get_travel_cost, RID, p_region, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2022-09-30 23:49:39 -06:00
										 |  |  | void FORWARD_2_C(region_set_owner_id, RID, p_region, ObjectID, p_owner_id, rid_to_rid, id_to_id); | 
					
						
							|  |  |  | ObjectID FORWARD_1_C(region_get_owner_id, RID, p_region, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2022-06-23 19:16:47 +02:00
										 |  |  | bool FORWARD_2_C(region_owns_point, RID, p_region, const Vector2 &, p_point, rid_to_rid, v2_to_v3); | 
					
						
							| 
									
										
										
										
											2022-06-06 05:24:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | void FORWARD_2_C(region_set_map, RID, p_region, RID, p_map, rid_to_rid, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2022-06-14 23:34:43 +02:00
										 |  |  | void FORWARD_2_C(region_set_navigation_layers, RID, p_region, uint32_t, p_navigation_layers, rid_to_rid, uint32_to_uint32); | 
					
						
							|  |  |  | uint32_t FORWARD_1_C(region_get_navigation_layers, RID, p_region, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | void FORWARD_2_C(region_set_transform, RID, p_region, Transform2D, p_transform, rid_to_rid, trf2_to_trf3); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | void NavigationServer2D::region_set_navpoly(RID p_region, Ref<NavigationPolygon> p_nav_mesh) const { | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton()->region_set_navmesh(p_region, poly_to_mesh(p_nav_mesh)); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-15 12:45:28 +01:00
										 |  |  | int FORWARD_1_C(region_get_connections_count, RID, p_region, rid_to_rid); | 
					
						
							|  |  |  | Vector2 FORWARD_2_R_C(v3_to_v2, region_get_connection_pathway_start, RID, p_region, int, p_connection_id, rid_to_rid, int_to_int); | 
					
						
							|  |  |  | Vector2 FORWARD_2_R_C(v3_to_v2, region_get_connection_pathway_end, RID, p_region, int, p_connection_id, rid_to_rid, int_to_int); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | RID FORWARD_0_C(link_create); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(link_set_map, RID, p_link, RID, p_map, rid_to_rid, rid_to_rid); | 
					
						
							|  |  |  | RID FORWARD_1_C(link_get_map, RID, p_link, rid_to_rid); | 
					
						
							|  |  |  | void FORWARD_2_C(link_set_bidirectional, RID, p_link, bool, p_bidirectional, rid_to_rid, bool_to_bool); | 
					
						
							|  |  |  | bool FORWARD_1_C(link_is_bidirectional, RID, p_link, rid_to_rid); | 
					
						
							|  |  |  | void FORWARD_2_C(link_set_navigation_layers, RID, p_link, uint32_t, p_navigation_layers, rid_to_rid, uint32_to_uint32); | 
					
						
							|  |  |  | uint32_t FORWARD_1_C(link_get_navigation_layers, RID, p_link, rid_to_rid); | 
					
						
							|  |  |  | void FORWARD_2_C(link_set_start_location, RID, p_link, Vector2, p_location, rid_to_rid, v2_to_v3); | 
					
						
							|  |  |  | Vector2 FORWARD_1_R_C(v3_to_v2, link_get_start_location, RID, p_link, rid_to_rid); | 
					
						
							|  |  |  | void FORWARD_2_C(link_set_end_location, RID, p_link, Vector2, p_location, rid_to_rid, v2_to_v3); | 
					
						
							|  |  |  | Vector2 FORWARD_1_R_C(v3_to_v2, link_get_end_location, RID, p_link, rid_to_rid); | 
					
						
							|  |  |  | void FORWARD_2_C(link_set_enter_cost, RID, p_link, real_t, p_enter_cost, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | real_t FORWARD_1_C(link_get_enter_cost, RID, p_link, rid_to_rid); | 
					
						
							|  |  |  | void FORWARD_2_C(link_set_travel_cost, RID, p_link, real_t, p_travel_cost, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | real_t FORWARD_1_C(link_get_travel_cost, RID, p_link, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2022-09-30 23:49:39 -06:00
										 |  |  | void FORWARD_2_C(link_set_owner_id, RID, p_link, ObjectID, p_owner_id, rid_to_rid, id_to_id); | 
					
						
							|  |  |  | ObjectID FORWARD_1_C(link_get_owner_id, RID, p_link, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2022-01-30 15:39:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | RID NavigationServer2D::agent_create() const { | 
					
						
							|  |  |  | 	RID agent = NavigationServer3D::get_singleton()->agent_create(); | 
					
						
							|  |  |  | 	NavigationServer3D::get_singleton()->agent_set_ignore_y(agent, true); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 	return agent; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_map, RID, p_agent, RID, p_map, rid_to_rid, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-13 12:26:13 +02:00
										 |  |  | void FORWARD_2_C(agent_set_neighbor_distance, RID, p_agent, real_t, p_dist, rid_to_rid, real_to_real); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_max_neighbors, RID, p_agent, int, p_count, rid_to_rid, int_to_int); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_time_horizon, RID, p_agent, real_t, p_time, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_radius, RID, p_agent, real_t, p_radius, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_max_speed, RID, p_agent, real_t, p_max_speed, rid_to_rid, real_to_real); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_velocity, RID, p_agent, Vector2, p_velocity, rid_to_rid, v2_to_v3); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_target_velocity, RID, p_agent, Vector2, p_velocity, rid_to_rid, v2_to_v3); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_position, RID, p_agent, Vector2, p_position, rid_to_rid, v2_to_v3); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_2_C(agent_set_ignore_y, RID, p_agent, bool, p_ignore, rid_to_rid, bool_to_bool); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool FORWARD_1_C(agent_is_map_changed, RID, p_agent, rid_to_rid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-05 23:05:56 +01:00
										 |  |  | void FORWARD_4_C(agent_set_callback, RID, p_agent, ObjectID, p_object_id, StringName, p_method, Variant, p_udata, rid_to_rid, id_to_id, sn_to_sn, var_to_var); | 
					
						
							| 
									
										
										
										
											2020-01-10 12:22:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void FORWARD_1_C(free, RID, p_object, rid_to_rid); | 
					
						
							| 
									
										
										
										
											2022-06-26 12:43:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | void NavigationServer2D::query_path(const Ref<NavigationPathQueryParameters2D> &p_query_parameters, Ref<NavigationPathQueryResult2D> p_query_result) const { | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!p_query_parameters.is_valid()); | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!p_query_result.is_valid()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const NavigationUtilities::PathQueryResult _query_result = NavigationServer3D::get_singleton()->_query_path(p_query_parameters->get_parameters()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p_query_result->set_path(vector_v3_to_v2(_query_result.path)); | 
					
						
							|  |  |  | } |