navigation_2d_server.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. /**************************************************************************/
  2. /* navigation_2d_server.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "servers/navigation_2d_server.h"
  31. #include "core/math/transform.h"
  32. #include "core/math/transform_2d.h"
  33. #include "servers/navigation_server.h"
  34. Navigation2DServer *Navigation2DServer::singleton = nullptr;
  35. #define FORWARD_0_C(FUNC_NAME) \
  36. Navigation2DServer::FUNC_NAME() \
  37. const { \
  38. return NavigationServer::get_singleton()->FUNC_NAME(); \
  39. }
  40. #define FORWARD_1(FUNC_NAME, T_0, D_0, CONV_0) \
  41. Navigation2DServer::FUNC_NAME(T_0 D_0) { \
  42. return NavigationServer::get_singleton_mut()->FUNC_NAME(CONV_0(D_0)); \
  43. }
  44. #define FORWARD_1_C(FUNC_NAME, T_0, D_0, CONV_0) \
  45. Navigation2DServer::FUNC_NAME(T_0 D_0) \
  46. const { \
  47. return NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0)); \
  48. }
  49. #define FORWARD_2_C(FUNC_NAME, T_0, D_0, T_1, D_1, CONV_0, CONV_1) \
  50. Navigation2DServer::FUNC_NAME(T_0 D_0, T_1 D_1) \
  51. const { \
  52. return NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1)); \
  53. }
  54. #define FORWARD_2_R_C(CONV_R, FUNC_NAME, T_0, D_0, T_1, D_1, CONV_0, CONV_1) \
  55. Navigation2DServer::FUNC_NAME(T_0 D_0, T_1 D_1) \
  56. const { \
  57. return CONV_R(NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1))); \
  58. }
  59. #define FORWARD_3_R_C(CONV_R, FUNC_NAME, T_0, D_0, T_1, D_1, T_2, D_2, CONV_0, CONV_1, CONV_2) \
  60. Navigation2DServer::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2) \
  61. const { \
  62. return CONV_R(NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2))); \
  63. }
  64. #define FORWARD_3_C(FUNC_NAME, T_0, D_0, T_1, D_1, T_2, D_2, CONV_0, CONV_1, CONV_2) \
  65. Navigation2DServer::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2) \
  66. const { \
  67. return NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2)); \
  68. }
  69. #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) \
  70. Navigation2DServer::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2, T_3 D_3) \
  71. const { \
  72. return CONV_R(NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2), CONV_3(D_3))); \
  73. }
  74. #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) \
  75. Navigation2DServer::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2, T_3 D_3) \
  76. const { \
  77. return NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2), CONV_3(D_3)); \
  78. }
  79. #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) \
  80. Navigation2DServer::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2, T_3 D_3, T_4 D_4) \
  81. const { \
  82. return CONV_R(NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2), CONV_3(D_3), CONV_4(D_4))); \
  83. }
  84. #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) \
  85. Navigation2DServer::FUNC_NAME(T_0 D_0, T_1 D_1, T_2 D_2, T_3 D_3, T_4 D_4) \
  86. const { \
  87. return NavigationServer::get_singleton()->FUNC_NAME(CONV_0(D_0), CONV_1(D_1), CONV_2(D_2), CONV_3(D_3), CONV_4(D_4)); \
  88. }
  89. RID rid_to_rid(const RID d) {
  90. return d;
  91. }
  92. bool bool_to_bool(const bool d) {
  93. return d;
  94. }
  95. int int_to_int(const int d) {
  96. return d;
  97. }
  98. uint32_t uint32_to_uint32(const uint32_t d) {
  99. return d;
  100. }
  101. real_t real_to_real(const real_t d) {
  102. return d;
  103. }
  104. Vector3 v2_to_v3(const Vector2 d) {
  105. return Vector3(d.x, 0.0, d.y);
  106. }
  107. Vector2 v3_to_v2(const Vector3 &d) {
  108. return Vector2(d.x, d.z);
  109. }
  110. Vector<Vector2> vector_v3_to_v2(const Vector<Vector3> &d) {
  111. Vector<Vector2> nd;
  112. nd.resize(d.size());
  113. for (int i(0); i < nd.size(); i++) {
  114. nd.write[i] = v3_to_v2(d[i]);
  115. }
  116. return nd;
  117. }
  118. Transform trf2_to_trf3(const Transform2D &d) {
  119. Vector3 o(v2_to_v3(d.get_origin()));
  120. Basis b;
  121. b.rotate(Vector3(0, -1, 0), d.get_rotation());
  122. b.scale(v2_to_v3(d.get_scale()));
  123. return Transform(b, o);
  124. }
  125. Object *obj_to_obj(Object *d) {
  126. return d;
  127. }
  128. StringName sn_to_sn(StringName &d) {
  129. return d;
  130. }
  131. Variant var_to_var(Variant &d) {
  132. return d;
  133. }
  134. Ref<NavigationMesh> poly_to_mesh(Ref<NavigationPolygon> d) {
  135. if (d.is_valid()) {
  136. return d->get_mesh();
  137. } else {
  138. return Ref<NavigationMesh>();
  139. }
  140. }
  141. void Navigation2DServer::_emit_map_changed(RID p_map) {
  142. emit_signal("map_changed", p_map);
  143. }
  144. void Navigation2DServer::_bind_methods() {
  145. ClassDB::bind_method(D_METHOD("get_maps"), &Navigation2DServer::get_maps);
  146. ClassDB::bind_method(D_METHOD("map_create"), &Navigation2DServer::map_create);
  147. ClassDB::bind_method(D_METHOD("map_set_active", "map", "active"), &Navigation2DServer::map_set_active);
  148. ClassDB::bind_method(D_METHOD("map_is_active", "map"), &Navigation2DServer::map_is_active);
  149. ClassDB::bind_method(D_METHOD("map_set_cell_size", "map", "cell_size"), &Navigation2DServer::map_set_cell_size);
  150. ClassDB::bind_method(D_METHOD("map_get_cell_size", "map"), &Navigation2DServer::map_get_cell_size);
  151. ClassDB::bind_method(D_METHOD("map_set_cell_height", "map", "cell_height"), &Navigation2DServer::map_set_cell_size);
  152. ClassDB::bind_method(D_METHOD("map_get_cell_height", "map"), &Navigation2DServer::map_get_cell_size);
  153. ClassDB::bind_method(D_METHOD("map_set_edge_connection_margin", "map", "margin"), &Navigation2DServer::map_set_edge_connection_margin);
  154. ClassDB::bind_method(D_METHOD("map_get_edge_connection_margin", "map"), &Navigation2DServer::map_get_edge_connection_margin);
  155. ClassDB::bind_method(D_METHOD("map_get_path", "map", "origin", "destination", "optimize", "navigation_layers"), &Navigation2DServer::map_get_path, DEFVAL(1));
  156. ClassDB::bind_method(D_METHOD("map_get_closest_point", "map", "to_point"), &Navigation2DServer::map_get_closest_point);
  157. ClassDB::bind_method(D_METHOD("map_get_closest_point_owner", "map", "to_point"), &Navigation2DServer::map_get_closest_point_owner);
  158. ClassDB::bind_method(D_METHOD("map_get_regions", "map"), &Navigation2DServer::map_get_regions);
  159. ClassDB::bind_method(D_METHOD("map_get_agents", "map"), &Navigation2DServer::map_get_agents);
  160. ClassDB::bind_method(D_METHOD("map_force_update", "map"), &Navigation2DServer::map_force_update);
  161. ClassDB::bind_method(D_METHOD("region_create"), &Navigation2DServer::region_create);
  162. ClassDB::bind_method(D_METHOD("region_set_enter_cost", "region", "enter_cost"), &Navigation2DServer::region_set_enter_cost);
  163. ClassDB::bind_method(D_METHOD("region_get_enter_cost", "region"), &Navigation2DServer::region_get_enter_cost);
  164. ClassDB::bind_method(D_METHOD("region_set_travel_cost", "region", "travel_cost"), &Navigation2DServer::region_set_travel_cost);
  165. ClassDB::bind_method(D_METHOD("region_get_travel_cost", "region"), &Navigation2DServer::region_get_travel_cost);
  166. ClassDB::bind_method(D_METHOD("region_owns_point", "region", "point"), &Navigation2DServer::region_owns_point);
  167. ClassDB::bind_method(D_METHOD("region_set_map", "region", "map"), &Navigation2DServer::region_set_map);
  168. ClassDB::bind_method(D_METHOD("region_get_map", "region"), &Navigation2DServer::region_get_map);
  169. ClassDB::bind_method(D_METHOD("region_set_navigation_layers", "region", "navigation_layers"), &Navigation2DServer::region_set_navigation_layers);
  170. ClassDB::bind_method(D_METHOD("region_get_navigation_layers", "region"), &Navigation2DServer::region_get_navigation_layers);
  171. ClassDB::bind_method(D_METHOD("region_set_transform", "region", "transform"), &Navigation2DServer::region_set_transform);
  172. ClassDB::bind_method(D_METHOD("region_set_navpoly", "region", "nav_poly"), &Navigation2DServer::region_set_navpoly);
  173. ClassDB::bind_method(D_METHOD("region_get_connections_count", "region"), &Navigation2DServer::region_get_connections_count);
  174. ClassDB::bind_method(D_METHOD("region_get_connection_pathway_start", "region", "connection"), &Navigation2DServer::region_get_connection_pathway_start);
  175. ClassDB::bind_method(D_METHOD("region_get_connection_pathway_end", "region", "connection"), &Navigation2DServer::region_get_connection_pathway_end);
  176. ClassDB::bind_method(D_METHOD("agent_create"), &Navigation2DServer::agent_create);
  177. ClassDB::bind_method(D_METHOD("agent_set_map", "agent", "map"), &Navigation2DServer::agent_set_map);
  178. ClassDB::bind_method(D_METHOD("agent_get_map", "agent"), &Navigation2DServer::agent_get_map);
  179. ClassDB::bind_method(D_METHOD("agent_set_neighbor_dist", "agent", "dist"), &Navigation2DServer::agent_set_neighbor_dist);
  180. ClassDB::bind_method(D_METHOD("agent_set_max_neighbors", "agent", "count"), &Navigation2DServer::agent_set_max_neighbors);
  181. ClassDB::bind_method(D_METHOD("agent_set_time_horizon", "agent", "time"), &Navigation2DServer::agent_set_time_horizon);
  182. ClassDB::bind_method(D_METHOD("agent_set_radius", "agent", "radius"), &Navigation2DServer::agent_set_radius);
  183. ClassDB::bind_method(D_METHOD("agent_set_max_speed", "agent", "max_speed"), &Navigation2DServer::agent_set_max_speed);
  184. ClassDB::bind_method(D_METHOD("agent_set_velocity", "agent", "velocity"), &Navigation2DServer::agent_set_velocity);
  185. ClassDB::bind_method(D_METHOD("agent_set_target_velocity", "agent", "target_velocity"), &Navigation2DServer::agent_set_target_velocity);
  186. ClassDB::bind_method(D_METHOD("agent_set_position", "agent", "position"), &Navigation2DServer::agent_set_position);
  187. ClassDB::bind_method(D_METHOD("agent_is_map_changed", "agent"), &Navigation2DServer::agent_is_map_changed);
  188. ClassDB::bind_method(D_METHOD("agent_set_callback", "agent", "receiver", "method", "userdata"), &Navigation2DServer::agent_set_callback, DEFVAL(Variant()));
  189. ClassDB::bind_method(D_METHOD("free_rid", "rid"), &Navigation2DServer::free);
  190. ClassDB::bind_method(D_METHOD("_emit_map_changed"), &Navigation2DServer::_emit_map_changed);
  191. ADD_SIGNAL(MethodInfo("map_changed", PropertyInfo(Variant::_RID, "map")));
  192. }
  193. Navigation2DServer::Navigation2DServer() {
  194. singleton = this;
  195. ERR_FAIL_COND_MSG(!NavigationServer::get_singleton(), "The NavigationServer singleton should be initialized before the Navigation2DServer one.");
  196. NavigationServer::get_singleton_mut()->connect("map_changed", this, "_emit_map_changed");
  197. }
  198. Navigation2DServer::~Navigation2DServer() {
  199. singleton = nullptr;
  200. }
  201. Array FORWARD_0_C(get_maps);
  202. Array FORWARD_1_C(map_get_regions, RID, p_map, rid_to_rid);
  203. Array FORWARD_1_C(map_get_agents, RID, p_map, rid_to_rid);
  204. RID FORWARD_1_C(region_get_map, RID, p_region, rid_to_rid);
  205. RID FORWARD_1_C(agent_get_map, RID, p_agent, rid_to_rid);
  206. RID FORWARD_0_C(map_create);
  207. void FORWARD_2_C(map_set_active, RID, p_map, bool, p_active, rid_to_rid, bool_to_bool);
  208. bool FORWARD_1_C(map_is_active, RID, p_map, rid_to_rid);
  209. void Navigation2DServer::map_force_update(RID p_map) {
  210. NavigationServer::get_singleton_mut()->map_force_update(p_map);
  211. }
  212. void FORWARD_2_C(map_set_cell_size, RID, p_map, real_t, p_cell_size, rid_to_rid, real_to_real);
  213. real_t FORWARD_1_C(map_get_cell_size, RID, p_map, rid_to_rid);
  214. void FORWARD_2_C(map_set_cell_height, RID, p_map, real_t, p_cell_height, rid_to_rid, real_to_real);
  215. real_t FORWARD_1_C(map_get_cell_height, RID, p_map, rid_to_rid);
  216. void FORWARD_2_C(map_set_edge_connection_margin, RID, p_map, real_t, p_connection_margin, rid_to_rid, real_to_real);
  217. real_t FORWARD_1_C(map_get_edge_connection_margin, RID, p_map, rid_to_rid);
  218. 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_navigation_layers, rid_to_rid, v2_to_v3, v2_to_v3, bool_to_bool, uint32_to_uint32);
  219. 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);
  220. RID FORWARD_2_C(map_get_closest_point_owner, RID, p_map, const Vector2 &, p_point, rid_to_rid, v2_to_v3);
  221. RID FORWARD_0_C(region_create);
  222. void FORWARD_2_C(region_set_enter_cost, RID, p_region, real_t, p_enter_cost, rid_to_rid, real_to_real);
  223. real_t FORWARD_1_C(region_get_enter_cost, RID, p_region, rid_to_rid);
  224. void FORWARD_2_C(region_set_travel_cost, RID, p_region, real_t, p_travel_cost, rid_to_rid, real_to_real);
  225. real_t FORWARD_1_C(region_get_travel_cost, RID, p_region, rid_to_rid);
  226. bool FORWARD_2_C(region_owns_point, RID, p_region, const Vector2 &, p_point, rid_to_rid, v2_to_v3);
  227. void FORWARD_2_C(region_set_map, RID, p_region, RID, p_map, rid_to_rid, rid_to_rid);
  228. void FORWARD_2_C(region_set_navigation_layers, RID, p_region, uint32_t, p_navigation_layers, rid_to_rid, uint32_to_uint32);
  229. uint32_t FORWARD_1_C(region_get_navigation_layers, RID, p_region, rid_to_rid);
  230. void FORWARD_2_C(region_set_transform, RID, p_region, Transform2D, p_transform, rid_to_rid, trf2_to_trf3);
  231. void Navigation2DServer::region_set_navpoly(RID p_region, Ref<NavigationPolygon> p_nav_mesh) const {
  232. NavigationServer::get_singleton()->region_set_navmesh(p_region, poly_to_mesh(p_nav_mesh));
  233. }
  234. int FORWARD_1_C(region_get_connections_count, RID, p_region, rid_to_rid);
  235. 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);
  236. 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);
  237. RID Navigation2DServer::agent_create() const {
  238. RID agent = NavigationServer::get_singleton()->agent_create();
  239. NavigationServer::get_singleton()->agent_set_ignore_y(agent, true);
  240. return agent;
  241. }
  242. void FORWARD_2_C(agent_set_map, RID, p_agent, RID, p_map, rid_to_rid, rid_to_rid);
  243. void FORWARD_2_C(agent_set_neighbor_dist, RID, p_agent, real_t, p_dist, rid_to_rid, real_to_real);
  244. void FORWARD_2_C(agent_set_max_neighbors, RID, p_agent, int, p_count, rid_to_rid, int_to_int);
  245. void FORWARD_2_C(agent_set_time_horizon, RID, p_agent, real_t, p_time, rid_to_rid, real_to_real);
  246. void FORWARD_2_C(agent_set_radius, RID, p_agent, real_t, p_radius, rid_to_rid, real_to_real);
  247. void FORWARD_2_C(agent_set_max_speed, RID, p_agent, real_t, p_max_speed, rid_to_rid, real_to_real);
  248. void FORWARD_2_C(agent_set_velocity, RID, p_agent, Vector2, p_velocity, rid_to_rid, v2_to_v3);
  249. void FORWARD_2_C(agent_set_target_velocity, RID, p_agent, Vector2, p_velocity, rid_to_rid, v2_to_v3);
  250. void FORWARD_2_C(agent_set_position, RID, p_agent, Vector2, p_position, rid_to_rid, v2_to_v3);
  251. void FORWARD_2_C(agent_set_ignore_y, RID, p_agent, bool, p_ignore, rid_to_rid, bool_to_bool);
  252. bool FORWARD_1_C(agent_is_map_changed, RID, p_agent, rid_to_rid);
  253. void FORWARD_4_C(agent_set_callback, RID, p_agent, Object *, p_receiver, StringName, p_method, Variant, p_udata, rid_to_rid, obj_to_obj, sn_to_sn, var_to_var);
  254. void FORWARD_1_C(free, RID, p_object, rid_to_rid);