2
0

physics_server_2d.cpp 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. /*************************************************************************/
  2. /* physics_server_2d.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  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 "physics_server_2d.h"
  31. #include "core/config/project_settings.h"
  32. #include "core/string/print_string.h"
  33. PhysicsServer2D *PhysicsServer2D::singleton = nullptr;
  34. void PhysicsDirectBodyState2D::integrate_forces() {
  35. real_t step = get_step();
  36. Vector2 lv = get_linear_velocity();
  37. lv += get_total_gravity() * step;
  38. real_t av = get_angular_velocity();
  39. real_t damp = 1.0 - step * get_total_linear_damp();
  40. if (damp < 0) { // reached zero in the given time
  41. damp = 0;
  42. }
  43. lv *= damp;
  44. damp = 1.0 - step * get_total_angular_damp();
  45. if (damp < 0) { // reached zero in the given time
  46. damp = 0;
  47. }
  48. av *= damp;
  49. set_linear_velocity(lv);
  50. set_angular_velocity(av);
  51. }
  52. Object *PhysicsDirectBodyState2D::get_contact_collider_object(int p_contact_idx) const {
  53. ObjectID objid = get_contact_collider_id(p_contact_idx);
  54. Object *obj = ObjectDB::get_instance(objid);
  55. return obj;
  56. }
  57. PhysicsServer2D *PhysicsServer2D::get_singleton() {
  58. return singleton;
  59. }
  60. void PhysicsDirectBodyState2D::_bind_methods() {
  61. ClassDB::bind_method(D_METHOD("get_total_gravity"), &PhysicsDirectBodyState2D::get_total_gravity);
  62. ClassDB::bind_method(D_METHOD("get_total_linear_damp"), &PhysicsDirectBodyState2D::get_total_linear_damp);
  63. ClassDB::bind_method(D_METHOD("get_total_angular_damp"), &PhysicsDirectBodyState2D::get_total_angular_damp);
  64. ClassDB::bind_method(D_METHOD("get_center_of_mass"), &PhysicsDirectBodyState2D::get_center_of_mass);
  65. ClassDB::bind_method(D_METHOD("get_inverse_mass"), &PhysicsDirectBodyState2D::get_inverse_mass);
  66. ClassDB::bind_method(D_METHOD("get_inverse_inertia"), &PhysicsDirectBodyState2D::get_inverse_inertia);
  67. ClassDB::bind_method(D_METHOD("set_linear_velocity", "velocity"), &PhysicsDirectBodyState2D::set_linear_velocity);
  68. ClassDB::bind_method(D_METHOD("get_linear_velocity"), &PhysicsDirectBodyState2D::get_linear_velocity);
  69. ClassDB::bind_method(D_METHOD("set_angular_velocity", "velocity"), &PhysicsDirectBodyState2D::set_angular_velocity);
  70. ClassDB::bind_method(D_METHOD("get_angular_velocity"), &PhysicsDirectBodyState2D::get_angular_velocity);
  71. ClassDB::bind_method(D_METHOD("set_transform", "transform"), &PhysicsDirectBodyState2D::set_transform);
  72. ClassDB::bind_method(D_METHOD("get_transform"), &PhysicsDirectBodyState2D::get_transform);
  73. ClassDB::bind_method(D_METHOD("get_velocity_at_local_position", "local_position"), &PhysicsDirectBodyState2D::get_velocity_at_local_position);
  74. ClassDB::bind_method(D_METHOD("add_central_force", "force"), &PhysicsDirectBodyState2D::add_central_force);
  75. ClassDB::bind_method(D_METHOD("add_force", "force", "position"), &PhysicsDirectBodyState2D::add_force, Vector2());
  76. ClassDB::bind_method(D_METHOD("add_torque", "torque"), &PhysicsDirectBodyState2D::add_torque);
  77. ClassDB::bind_method(D_METHOD("apply_central_impulse", "impulse"), &PhysicsDirectBodyState2D::apply_central_impulse);
  78. ClassDB::bind_method(D_METHOD("apply_torque_impulse", "impulse"), &PhysicsDirectBodyState2D::apply_torque_impulse);
  79. ClassDB::bind_method(D_METHOD("apply_impulse", "impulse", "position"), &PhysicsDirectBodyState2D::apply_impulse, Vector2());
  80. ClassDB::bind_method(D_METHOD("set_sleep_state", "enabled"), &PhysicsDirectBodyState2D::set_sleep_state);
  81. ClassDB::bind_method(D_METHOD("is_sleeping"), &PhysicsDirectBodyState2D::is_sleeping);
  82. ClassDB::bind_method(D_METHOD("get_contact_count"), &PhysicsDirectBodyState2D::get_contact_count);
  83. ClassDB::bind_method(D_METHOD("get_contact_local_position", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_local_position);
  84. ClassDB::bind_method(D_METHOD("get_contact_local_normal", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_local_normal);
  85. ClassDB::bind_method(D_METHOD("get_contact_local_shape", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_local_shape);
  86. ClassDB::bind_method(D_METHOD("get_contact_collider", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_collider);
  87. ClassDB::bind_method(D_METHOD("get_contact_collider_position", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_collider_position);
  88. ClassDB::bind_method(D_METHOD("get_contact_collider_id", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_collider_id);
  89. ClassDB::bind_method(D_METHOD("get_contact_collider_object", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_collider_object);
  90. ClassDB::bind_method(D_METHOD("get_contact_collider_shape", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_collider_shape);
  91. ClassDB::bind_method(D_METHOD("get_contact_collider_velocity_at_position", "contact_idx"), &PhysicsDirectBodyState2D::get_contact_collider_velocity_at_position);
  92. ClassDB::bind_method(D_METHOD("get_step"), &PhysicsDirectBodyState2D::get_step);
  93. ClassDB::bind_method(D_METHOD("integrate_forces"), &PhysicsDirectBodyState2D::integrate_forces);
  94. ClassDB::bind_method(D_METHOD("get_space_state"), &PhysicsDirectBodyState2D::get_space_state);
  95. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "step"), "", "get_step");
  96. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "inverse_mass"), "", "get_inverse_mass");
  97. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "inverse_inertia"), "", "get_inverse_inertia");
  98. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "total_angular_damp"), "", "get_total_angular_damp");
  99. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "total_linear_damp"), "", "get_total_linear_damp");
  100. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "total_gravity"), "", "get_total_gravity");
  101. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "center_of_mass"), "", "get_center_of_mass");
  102. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "angular_velocity"), "set_angular_velocity", "get_angular_velocity");
  103. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "linear_velocity"), "set_linear_velocity", "get_linear_velocity");
  104. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "sleeping"), "set_sleep_state", "is_sleeping");
  105. ADD_PROPERTY(PropertyInfo(Variant::TRANSFORM2D, "transform"), "set_transform", "get_transform");
  106. }
  107. PhysicsDirectBodyState2D::PhysicsDirectBodyState2D() {}
  108. ///////////////////////////////////////////////////////
  109. void PhysicsRayQueryParameters2D::set_exclude(const Vector<RID> &p_exclude) {
  110. parameters.exclude.clear();
  111. for (int i = 0; i < p_exclude.size(); i++) {
  112. parameters.exclude.insert(p_exclude[i]);
  113. }
  114. }
  115. Vector<RID> PhysicsRayQueryParameters2D::get_exclude() const {
  116. Vector<RID> ret;
  117. ret.resize(parameters.exclude.size());
  118. int idx = 0;
  119. for (Set<RID>::Element *E = parameters.exclude.front(); E; E = E->next()) {
  120. ret.write[idx++] = E->get();
  121. }
  122. return ret;
  123. }
  124. void PhysicsRayQueryParameters2D::_bind_methods() {
  125. ClassDB::bind_method(D_METHOD("set_from", "from"), &PhysicsRayQueryParameters2D::set_from);
  126. ClassDB::bind_method(D_METHOD("get_from"), &PhysicsRayQueryParameters2D::get_from);
  127. ClassDB::bind_method(D_METHOD("set_to", "to"), &PhysicsRayQueryParameters2D::set_to);
  128. ClassDB::bind_method(D_METHOD("get_to"), &PhysicsRayQueryParameters2D::get_to);
  129. ClassDB::bind_method(D_METHOD("set_collision_mask", "collision_mask"), &PhysicsRayQueryParameters2D::set_collision_mask);
  130. ClassDB::bind_method(D_METHOD("get_collision_mask"), &PhysicsRayQueryParameters2D::get_collision_mask);
  131. ClassDB::bind_method(D_METHOD("set_exclude", "exclude"), &PhysicsRayQueryParameters2D::set_exclude);
  132. ClassDB::bind_method(D_METHOD("get_exclude"), &PhysicsRayQueryParameters2D::get_exclude);
  133. ClassDB::bind_method(D_METHOD("set_collide_with_bodies", "enable"), &PhysicsRayQueryParameters2D::set_collide_with_bodies);
  134. ClassDB::bind_method(D_METHOD("is_collide_with_bodies_enabled"), &PhysicsRayQueryParameters2D::is_collide_with_bodies_enabled);
  135. ClassDB::bind_method(D_METHOD("set_collide_with_areas", "enable"), &PhysicsRayQueryParameters2D::set_collide_with_areas);
  136. ClassDB::bind_method(D_METHOD("is_collide_with_areas_enabled"), &PhysicsRayQueryParameters2D::is_collide_with_areas_enabled);
  137. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "from"), "set_from", "get_from");
  138. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "to"), "set_to", "get_to");
  139. ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_mask", PROPERTY_HINT_LAYERS_2D_PHYSICS), "set_collision_mask", "get_collision_mask");
  140. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "exclude", PROPERTY_HINT_ARRAY_TYPE, "RID"), "set_exclude", "get_exclude");
  141. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "collide_with_bodies"), "set_collide_with_bodies", "is_collide_with_bodies_enabled");
  142. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "collide_with_areas"), "set_collide_with_areas", "is_collide_with_areas_enabled");
  143. }
  144. ///////////////////////////////////////////////////////
  145. void PhysicsPointQueryParameters2D::set_exclude(const Vector<RID> &p_exclude) {
  146. parameters.exclude.clear();
  147. for (int i = 0; i < p_exclude.size(); i++) {
  148. parameters.exclude.insert(p_exclude[i]);
  149. }
  150. }
  151. Vector<RID> PhysicsPointQueryParameters2D::get_exclude() const {
  152. Vector<RID> ret;
  153. ret.resize(parameters.exclude.size());
  154. int idx = 0;
  155. for (Set<RID>::Element *E = parameters.exclude.front(); E; E = E->next()) {
  156. ret.write[idx++] = E->get();
  157. }
  158. return ret;
  159. }
  160. void PhysicsPointQueryParameters2D::_bind_methods() {
  161. ClassDB::bind_method(D_METHOD("set_position", "position"), &PhysicsPointQueryParameters2D::set_position);
  162. ClassDB::bind_method(D_METHOD("get_position"), &PhysicsPointQueryParameters2D::get_position);
  163. ClassDB::bind_method(D_METHOD("set_canvas_instance_id", "canvas_instance_id"), &PhysicsPointQueryParameters2D::set_canvas_instance_id);
  164. ClassDB::bind_method(D_METHOD("get_canvas_instance_id"), &PhysicsPointQueryParameters2D::get_canvas_instance_id);
  165. ClassDB::bind_method(D_METHOD("set_collision_mask", "collision_mask"), &PhysicsPointQueryParameters2D::set_collision_mask);
  166. ClassDB::bind_method(D_METHOD("get_collision_mask"), &PhysicsPointQueryParameters2D::get_collision_mask);
  167. ClassDB::bind_method(D_METHOD("set_exclude", "exclude"), &PhysicsPointQueryParameters2D::set_exclude);
  168. ClassDB::bind_method(D_METHOD("get_exclude"), &PhysicsPointQueryParameters2D::get_exclude);
  169. ClassDB::bind_method(D_METHOD("set_collide_with_bodies", "enable"), &PhysicsPointQueryParameters2D::set_collide_with_bodies);
  170. ClassDB::bind_method(D_METHOD("is_collide_with_bodies_enabled"), &PhysicsPointQueryParameters2D::is_collide_with_bodies_enabled);
  171. ClassDB::bind_method(D_METHOD("set_collide_with_areas", "enable"), &PhysicsPointQueryParameters2D::set_collide_with_areas);
  172. ClassDB::bind_method(D_METHOD("is_collide_with_areas_enabled"), &PhysicsPointQueryParameters2D::is_collide_with_areas_enabled);
  173. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "position"), "set_position", "get_position");
  174. ADD_PROPERTY(PropertyInfo(Variant::INT, "canvas_instance_id", PROPERTY_HINT_OBJECT_ID), "set_canvas_instance_id", "get_canvas_instance_id");
  175. ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_mask", PROPERTY_HINT_LAYERS_2D_PHYSICS), "set_collision_mask", "get_collision_mask");
  176. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "exclude", PROPERTY_HINT_ARRAY_TYPE, "RID"), "set_exclude", "get_exclude");
  177. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "collide_with_bodies"), "set_collide_with_bodies", "is_collide_with_bodies_enabled");
  178. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "collide_with_areas"), "set_collide_with_areas", "is_collide_with_areas_enabled");
  179. }
  180. ///////////////////////////////////////////////////////
  181. void PhysicsShapeQueryParameters2D::set_shape(const RES &p_shape_ref) {
  182. ERR_FAIL_COND(p_shape_ref.is_null());
  183. shape_ref = p_shape_ref;
  184. parameters.shape_rid = p_shape_ref->get_rid();
  185. }
  186. void PhysicsShapeQueryParameters2D::set_shape_rid(const RID &p_shape) {
  187. if (parameters.shape_rid != p_shape) {
  188. shape_ref = RES();
  189. parameters.shape_rid = p_shape;
  190. }
  191. }
  192. void PhysicsShapeQueryParameters2D::set_exclude(const Vector<RID> &p_exclude) {
  193. parameters.exclude.clear();
  194. for (int i = 0; i < p_exclude.size(); i++) {
  195. parameters.exclude.insert(p_exclude[i]);
  196. }
  197. }
  198. Vector<RID> PhysicsShapeQueryParameters2D::get_exclude() const {
  199. Vector<RID> ret;
  200. ret.resize(parameters.exclude.size());
  201. int idx = 0;
  202. for (Set<RID>::Element *E = parameters.exclude.front(); E; E = E->next()) {
  203. ret.write[idx++] = E->get();
  204. }
  205. return ret;
  206. }
  207. void PhysicsShapeQueryParameters2D::_bind_methods() {
  208. ClassDB::bind_method(D_METHOD("set_shape", "shape"), &PhysicsShapeQueryParameters2D::set_shape);
  209. ClassDB::bind_method(D_METHOD("get_shape"), &PhysicsShapeQueryParameters2D::get_shape);
  210. ClassDB::bind_method(D_METHOD("set_shape_rid", "shape"), &PhysicsShapeQueryParameters2D::set_shape_rid);
  211. ClassDB::bind_method(D_METHOD("get_shape_rid"), &PhysicsShapeQueryParameters2D::get_shape_rid);
  212. ClassDB::bind_method(D_METHOD("set_transform", "transform"), &PhysicsShapeQueryParameters2D::set_transform);
  213. ClassDB::bind_method(D_METHOD("get_transform"), &PhysicsShapeQueryParameters2D::get_transform);
  214. ClassDB::bind_method(D_METHOD("set_motion", "motion"), &PhysicsShapeQueryParameters2D::set_motion);
  215. ClassDB::bind_method(D_METHOD("get_motion"), &PhysicsShapeQueryParameters2D::get_motion);
  216. ClassDB::bind_method(D_METHOD("set_margin", "margin"), &PhysicsShapeQueryParameters2D::set_margin);
  217. ClassDB::bind_method(D_METHOD("get_margin"), &PhysicsShapeQueryParameters2D::get_margin);
  218. ClassDB::bind_method(D_METHOD("set_collision_mask", "collision_mask"), &PhysicsShapeQueryParameters2D::set_collision_mask);
  219. ClassDB::bind_method(D_METHOD("get_collision_mask"), &PhysicsShapeQueryParameters2D::get_collision_mask);
  220. ClassDB::bind_method(D_METHOD("set_exclude", "exclude"), &PhysicsShapeQueryParameters2D::set_exclude);
  221. ClassDB::bind_method(D_METHOD("get_exclude"), &PhysicsShapeQueryParameters2D::get_exclude);
  222. ClassDB::bind_method(D_METHOD("set_collide_with_bodies", "enable"), &PhysicsShapeQueryParameters2D::set_collide_with_bodies);
  223. ClassDB::bind_method(D_METHOD("is_collide_with_bodies_enabled"), &PhysicsShapeQueryParameters2D::is_collide_with_bodies_enabled);
  224. ClassDB::bind_method(D_METHOD("set_collide_with_areas", "enable"), &PhysicsShapeQueryParameters2D::set_collide_with_areas);
  225. ClassDB::bind_method(D_METHOD("is_collide_with_areas_enabled"), &PhysicsShapeQueryParameters2D::is_collide_with_areas_enabled);
  226. ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_mask", PROPERTY_HINT_LAYERS_2D_PHYSICS), "set_collision_mask", "get_collision_mask");
  227. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "exclude", PROPERTY_HINT_ARRAY_TYPE, "RID"), "set_exclude", "get_exclude");
  228. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "margin", PROPERTY_HINT_RANGE, "0,100,0.01"), "set_margin", "get_margin");
  229. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "motion"), "set_motion", "get_motion");
  230. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "shape", PROPERTY_HINT_RESOURCE_TYPE, "Shape2D"), "set_shape", "get_shape");
  231. ADD_PROPERTY(PropertyInfo(Variant::RID, "shape_rid"), "set_shape_rid", "get_shape_rid");
  232. ADD_PROPERTY(PropertyInfo(Variant::TRANSFORM2D, "transform"), "set_transform", "get_transform");
  233. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "collide_with_bodies"), "set_collide_with_bodies", "is_collide_with_bodies_enabled");
  234. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "collide_with_areas"), "set_collide_with_areas", "is_collide_with_areas_enabled");
  235. }
  236. ///////////////////////////////////////////////////////
  237. Dictionary PhysicsDirectSpaceState2D::_intersect_ray(const Ref<PhysicsRayQueryParameters2D> &p_ray_query) {
  238. ERR_FAIL_COND_V(!p_ray_query.is_valid(), Dictionary());
  239. RayResult result;
  240. bool res = intersect_ray(p_ray_query->get_parameters(), result);
  241. if (!res) {
  242. return Dictionary();
  243. }
  244. Dictionary d;
  245. d["position"] = result.position;
  246. d["normal"] = result.normal;
  247. d["collider_id"] = result.collider_id;
  248. d["collider"] = result.collider;
  249. d["shape"] = result.shape;
  250. d["rid"] = result.rid;
  251. return d;
  252. }
  253. Array PhysicsDirectSpaceState2D::_intersect_point(const Ref<PhysicsPointQueryParameters2D> &p_point_query, int p_max_results) {
  254. Vector<ShapeResult> ret;
  255. ret.resize(p_max_results);
  256. int rc = intersect_point(p_point_query->get_parameters(), ret.ptrw(), ret.size());
  257. if (rc == 0) {
  258. return Array();
  259. }
  260. Array r;
  261. r.resize(rc);
  262. for (int i = 0; i < rc; i++) {
  263. Dictionary d;
  264. d["rid"] = ret[i].rid;
  265. d["collider_id"] = ret[i].collider_id;
  266. d["collider"] = ret[i].collider;
  267. d["shape"] = ret[i].shape;
  268. r[i] = d;
  269. }
  270. return r;
  271. }
  272. Array PhysicsDirectSpaceState2D::_intersect_shape(const Ref<PhysicsShapeQueryParameters2D> &p_shape_query, int p_max_results) {
  273. ERR_FAIL_COND_V(!p_shape_query.is_valid(), Array());
  274. Vector<ShapeResult> sr;
  275. sr.resize(p_max_results);
  276. int rc = intersect_shape(p_shape_query->get_parameters(), sr.ptrw(), sr.size());
  277. Array ret;
  278. ret.resize(rc);
  279. for (int i = 0; i < rc; i++) {
  280. Dictionary d;
  281. d["rid"] = sr[i].rid;
  282. d["collider_id"] = sr[i].collider_id;
  283. d["collider"] = sr[i].collider;
  284. d["shape"] = sr[i].shape;
  285. ret[i] = d;
  286. }
  287. return ret;
  288. }
  289. Array PhysicsDirectSpaceState2D::_cast_motion(const Ref<PhysicsShapeQueryParameters2D> &p_shape_query) {
  290. ERR_FAIL_COND_V(!p_shape_query.is_valid(), Array());
  291. real_t closest_safe, closest_unsafe;
  292. bool res = cast_motion(p_shape_query->get_parameters(), closest_safe, closest_unsafe);
  293. if (!res) {
  294. return Array();
  295. }
  296. Array ret;
  297. ret.resize(2);
  298. ret[0] = closest_safe;
  299. ret[1] = closest_unsafe;
  300. return ret;
  301. }
  302. Array PhysicsDirectSpaceState2D::_collide_shape(const Ref<PhysicsShapeQueryParameters2D> &p_shape_query, int p_max_results) {
  303. ERR_FAIL_COND_V(!p_shape_query.is_valid(), Array());
  304. Vector<Vector2> ret;
  305. ret.resize(p_max_results * 2);
  306. int rc = 0;
  307. bool res = collide_shape(p_shape_query->get_parameters(), ret.ptrw(), p_max_results, rc);
  308. if (!res) {
  309. return Array();
  310. }
  311. Array r;
  312. r.resize(rc * 2);
  313. for (int i = 0; i < rc * 2; i++) {
  314. r[i] = ret[i];
  315. }
  316. return r;
  317. }
  318. Dictionary PhysicsDirectSpaceState2D::_get_rest_info(const Ref<PhysicsShapeQueryParameters2D> &p_shape_query) {
  319. ERR_FAIL_COND_V(!p_shape_query.is_valid(), Dictionary());
  320. ShapeRestInfo sri;
  321. bool res = rest_info(p_shape_query->get_parameters(), &sri);
  322. Dictionary r;
  323. if (!res) {
  324. return r;
  325. }
  326. r["point"] = sri.point;
  327. r["normal"] = sri.normal;
  328. r["rid"] = sri.rid;
  329. r["collider_id"] = sri.collider_id;
  330. r["shape"] = sri.shape;
  331. r["linear_velocity"] = sri.linear_velocity;
  332. return r;
  333. }
  334. PhysicsDirectSpaceState2D::PhysicsDirectSpaceState2D() {
  335. }
  336. void PhysicsDirectSpaceState2D::_bind_methods() {
  337. ClassDB::bind_method(D_METHOD("intersect_point", "parameters", "max_results"), &PhysicsDirectSpaceState2D::_intersect_point, DEFVAL(32));
  338. ClassDB::bind_method(D_METHOD("intersect_ray", "parameters"), &PhysicsDirectSpaceState2D::_intersect_ray);
  339. ClassDB::bind_method(D_METHOD("intersect_shape", "parameters", "max_results"), &PhysicsDirectSpaceState2D::_intersect_shape, DEFVAL(32));
  340. ClassDB::bind_method(D_METHOD("cast_motion", "parameters"), &PhysicsDirectSpaceState2D::_cast_motion);
  341. ClassDB::bind_method(D_METHOD("collide_shape", "parameters", "max_results"), &PhysicsDirectSpaceState2D::_collide_shape, DEFVAL(32));
  342. ClassDB::bind_method(D_METHOD("get_rest_info", "parameters"), &PhysicsDirectSpaceState2D::_get_rest_info);
  343. }
  344. ///////////////////////////////
  345. Vector<RID> PhysicsTestMotionParameters2D::get_exclude_bodies() const {
  346. Vector<RID> exclude;
  347. exclude.resize(parameters.exclude_bodies.size());
  348. int body_index = 0;
  349. for (RID body : parameters.exclude_bodies) {
  350. exclude.write[body_index++] = body;
  351. }
  352. return exclude;
  353. }
  354. void PhysicsTestMotionParameters2D::set_exclude_bodies(const Vector<RID> &p_exclude) {
  355. for (RID body : p_exclude) {
  356. parameters.exclude_bodies.insert(body);
  357. }
  358. }
  359. Array PhysicsTestMotionParameters2D::get_exclude_objects() const {
  360. Array exclude;
  361. exclude.resize(parameters.exclude_objects.size());
  362. int object_index = 0;
  363. for (ObjectID object_id : parameters.exclude_objects) {
  364. exclude[object_index++] = object_id;
  365. }
  366. return exclude;
  367. }
  368. void PhysicsTestMotionParameters2D::set_exclude_objects(const Array &p_exclude) {
  369. for (int i = 0; i < p_exclude.size(); ++i) {
  370. ObjectID object_id = p_exclude[i];
  371. ERR_CONTINUE(object_id.is_null());
  372. parameters.exclude_objects.insert(object_id);
  373. }
  374. }
  375. void PhysicsTestMotionParameters2D::_bind_methods() {
  376. ClassDB::bind_method(D_METHOD("get_from"), &PhysicsTestMotionParameters2D::get_from);
  377. ClassDB::bind_method(D_METHOD("set_from", "from"), &PhysicsTestMotionParameters2D::set_from);
  378. ClassDB::bind_method(D_METHOD("get_motion"), &PhysicsTestMotionParameters2D::get_motion);
  379. ClassDB::bind_method(D_METHOD("set_motion", "motion"), &PhysicsTestMotionParameters2D::set_motion);
  380. ClassDB::bind_method(D_METHOD("get_margin"), &PhysicsTestMotionParameters2D::get_margin);
  381. ClassDB::bind_method(D_METHOD("set_margin", "margin"), &PhysicsTestMotionParameters2D::set_margin);
  382. ClassDB::bind_method(D_METHOD("is_collide_separation_ray_enabled"), &PhysicsTestMotionParameters2D::is_collide_separation_ray_enabled);
  383. ClassDB::bind_method(D_METHOD("set_collide_separation_ray_enabled", "enabled"), &PhysicsTestMotionParameters2D::set_collide_separation_ray_enabled);
  384. ClassDB::bind_method(D_METHOD("get_exclude_bodies"), &PhysicsTestMotionParameters2D::get_exclude_bodies);
  385. ClassDB::bind_method(D_METHOD("set_exclude_bodies", "exclude_list"), &PhysicsTestMotionParameters2D::set_exclude_bodies);
  386. ClassDB::bind_method(D_METHOD("get_exclude_objects"), &PhysicsTestMotionParameters2D::get_exclude_objects);
  387. ClassDB::bind_method(D_METHOD("set_exclude_objects", "exclude_list"), &PhysicsTestMotionParameters2D::set_exclude_objects);
  388. ADD_PROPERTY(PropertyInfo(Variant::TRANSFORM2D, "from"), "set_from", "get_from");
  389. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "motion"), "set_motion", "get_motion");
  390. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "margin"), "set_margin", "get_margin");
  391. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "collide_separation_ray"), "set_collide_separation_ray_enabled", "is_collide_separation_ray_enabled");
  392. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "exclude_bodies", PROPERTY_HINT_ARRAY_TYPE, "RID"), "set_exclude_bodies", "get_exclude_bodies");
  393. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "exclude_objects"), "set_exclude_objects", "get_exclude_objects");
  394. }
  395. ///////////////////////////////
  396. Vector2 PhysicsTestMotionResult2D::get_travel() const {
  397. return result.travel;
  398. }
  399. Vector2 PhysicsTestMotionResult2D::get_remainder() const {
  400. return result.remainder;
  401. }
  402. Vector2 PhysicsTestMotionResult2D::get_collision_point() const {
  403. return result.collision_point;
  404. }
  405. Vector2 PhysicsTestMotionResult2D::get_collision_normal() const {
  406. return result.collision_normal;
  407. }
  408. Vector2 PhysicsTestMotionResult2D::get_collider_velocity() const {
  409. return result.collider_velocity;
  410. }
  411. ObjectID PhysicsTestMotionResult2D::get_collider_id() const {
  412. return result.collider_id;
  413. }
  414. RID PhysicsTestMotionResult2D::get_collider_rid() const {
  415. return result.collider;
  416. }
  417. Object *PhysicsTestMotionResult2D::get_collider() const {
  418. return ObjectDB::get_instance(result.collider_id);
  419. }
  420. int PhysicsTestMotionResult2D::get_collider_shape() const {
  421. return result.collider_shape;
  422. }
  423. int PhysicsTestMotionResult2D::get_collision_local_shape() const {
  424. return result.collision_local_shape;
  425. }
  426. real_t PhysicsTestMotionResult2D::get_collision_depth() const {
  427. return result.collision_depth;
  428. }
  429. real_t PhysicsTestMotionResult2D::get_collision_safe_fraction() const {
  430. return result.collision_safe_fraction;
  431. }
  432. real_t PhysicsTestMotionResult2D::get_collision_unsafe_fraction() const {
  433. return result.collision_unsafe_fraction;
  434. }
  435. void PhysicsTestMotionResult2D::_bind_methods() {
  436. ClassDB::bind_method(D_METHOD("get_travel"), &PhysicsTestMotionResult2D::get_travel);
  437. ClassDB::bind_method(D_METHOD("get_remainder"), &PhysicsTestMotionResult2D::get_remainder);
  438. ClassDB::bind_method(D_METHOD("get_collision_point"), &PhysicsTestMotionResult2D::get_collision_point);
  439. ClassDB::bind_method(D_METHOD("get_collision_normal"), &PhysicsTestMotionResult2D::get_collision_normal);
  440. ClassDB::bind_method(D_METHOD("get_collider_velocity"), &PhysicsTestMotionResult2D::get_collider_velocity);
  441. ClassDB::bind_method(D_METHOD("get_collider_id"), &PhysicsTestMotionResult2D::get_collider_id);
  442. ClassDB::bind_method(D_METHOD("get_collider_rid"), &PhysicsTestMotionResult2D::get_collider_rid);
  443. ClassDB::bind_method(D_METHOD("get_collider"), &PhysicsTestMotionResult2D::get_collider);
  444. ClassDB::bind_method(D_METHOD("get_collider_shape"), &PhysicsTestMotionResult2D::get_collider_shape);
  445. ClassDB::bind_method(D_METHOD("get_collision_local_shape"), &PhysicsTestMotionResult2D::get_collision_local_shape);
  446. ClassDB::bind_method(D_METHOD("get_collision_depth"), &PhysicsTestMotionResult2D::get_collision_depth);
  447. ClassDB::bind_method(D_METHOD("get_collision_safe_fraction"), &PhysicsTestMotionResult2D::get_collision_safe_fraction);
  448. ClassDB::bind_method(D_METHOD("get_collision_unsafe_fraction"), &PhysicsTestMotionResult2D::get_collision_unsafe_fraction);
  449. }
  450. ///////////////////////////////////////
  451. bool PhysicsServer2D::_body_test_motion(RID p_body, const Ref<PhysicsTestMotionParameters2D> &p_parameters, const Ref<PhysicsTestMotionResult2D> &p_result) {
  452. ERR_FAIL_COND_V(!p_parameters.is_valid(), false);
  453. MotionResult *result_ptr = nullptr;
  454. if (p_result.is_valid()) {
  455. result_ptr = p_result->get_result_ptr();
  456. }
  457. return body_test_motion(p_body, p_parameters->get_parameters(), result_ptr);
  458. }
  459. void PhysicsServer2D::_bind_methods() {
  460. ClassDB::bind_method(D_METHOD("world_boundary_shape_create"), &PhysicsServer2D::world_boundary_shape_create);
  461. ClassDB::bind_method(D_METHOD("separation_ray_shape_create"), &PhysicsServer2D::separation_ray_shape_create);
  462. ClassDB::bind_method(D_METHOD("segment_shape_create"), &PhysicsServer2D::segment_shape_create);
  463. ClassDB::bind_method(D_METHOD("circle_shape_create"), &PhysicsServer2D::circle_shape_create);
  464. ClassDB::bind_method(D_METHOD("rectangle_shape_create"), &PhysicsServer2D::rectangle_shape_create);
  465. ClassDB::bind_method(D_METHOD("capsule_shape_create"), &PhysicsServer2D::capsule_shape_create);
  466. ClassDB::bind_method(D_METHOD("convex_polygon_shape_create"), &PhysicsServer2D::convex_polygon_shape_create);
  467. ClassDB::bind_method(D_METHOD("concave_polygon_shape_create"), &PhysicsServer2D::concave_polygon_shape_create);
  468. ClassDB::bind_method(D_METHOD("shape_set_data", "shape", "data"), &PhysicsServer2D::shape_set_data);
  469. ClassDB::bind_method(D_METHOD("shape_get_type", "shape"), &PhysicsServer2D::shape_get_type);
  470. ClassDB::bind_method(D_METHOD("shape_get_data", "shape"), &PhysicsServer2D::shape_get_data);
  471. ClassDB::bind_method(D_METHOD("space_create"), &PhysicsServer2D::space_create);
  472. ClassDB::bind_method(D_METHOD("space_set_active", "space", "active"), &PhysicsServer2D::space_set_active);
  473. ClassDB::bind_method(D_METHOD("space_is_active", "space"), &PhysicsServer2D::space_is_active);
  474. ClassDB::bind_method(D_METHOD("space_set_param", "space", "param", "value"), &PhysicsServer2D::space_set_param);
  475. ClassDB::bind_method(D_METHOD("space_get_param", "space", "param"), &PhysicsServer2D::space_get_param);
  476. ClassDB::bind_method(D_METHOD("space_get_direct_state", "space"), &PhysicsServer2D::space_get_direct_state);
  477. ClassDB::bind_method(D_METHOD("area_create"), &PhysicsServer2D::area_create);
  478. ClassDB::bind_method(D_METHOD("area_set_space", "area", "space"), &PhysicsServer2D::area_set_space);
  479. ClassDB::bind_method(D_METHOD("area_get_space", "area"), &PhysicsServer2D::area_get_space);
  480. ClassDB::bind_method(D_METHOD("area_set_space_override_mode", "area", "mode"), &PhysicsServer2D::area_set_space_override_mode);
  481. ClassDB::bind_method(D_METHOD("area_get_space_override_mode", "area"), &PhysicsServer2D::area_get_space_override_mode);
  482. ClassDB::bind_method(D_METHOD("area_add_shape", "area", "shape", "transform", "disabled"), &PhysicsServer2D::area_add_shape, DEFVAL(Transform2D()), DEFVAL(false));
  483. ClassDB::bind_method(D_METHOD("area_set_shape", "area", "shape_idx", "shape"), &PhysicsServer2D::area_set_shape);
  484. ClassDB::bind_method(D_METHOD("area_set_shape_transform", "area", "shape_idx", "transform"), &PhysicsServer2D::area_set_shape_transform);
  485. ClassDB::bind_method(D_METHOD("area_set_shape_disabled", "area", "shape_idx", "disabled"), &PhysicsServer2D::area_set_shape_disabled);
  486. ClassDB::bind_method(D_METHOD("area_get_shape_count", "area"), &PhysicsServer2D::area_get_shape_count);
  487. ClassDB::bind_method(D_METHOD("area_get_shape", "area", "shape_idx"), &PhysicsServer2D::area_get_shape);
  488. ClassDB::bind_method(D_METHOD("area_get_shape_transform", "area", "shape_idx"), &PhysicsServer2D::area_get_shape_transform);
  489. ClassDB::bind_method(D_METHOD("area_remove_shape", "area", "shape_idx"), &PhysicsServer2D::area_remove_shape);
  490. ClassDB::bind_method(D_METHOD("area_clear_shapes", "area"), &PhysicsServer2D::area_clear_shapes);
  491. ClassDB::bind_method(D_METHOD("area_set_collision_layer", "area", "layer"), &PhysicsServer2D::area_set_collision_layer);
  492. ClassDB::bind_method(D_METHOD("area_set_collision_mask", "area", "mask"), &PhysicsServer2D::area_set_collision_mask);
  493. ClassDB::bind_method(D_METHOD("area_set_param", "area", "param", "value"), &PhysicsServer2D::area_set_param);
  494. ClassDB::bind_method(D_METHOD("area_set_transform", "area", "transform"), &PhysicsServer2D::area_set_transform);
  495. ClassDB::bind_method(D_METHOD("area_get_param", "area", "param"), &PhysicsServer2D::area_get_param);
  496. ClassDB::bind_method(D_METHOD("area_get_transform", "area"), &PhysicsServer2D::area_get_transform);
  497. ClassDB::bind_method(D_METHOD("area_attach_object_instance_id", "area", "id"), &PhysicsServer2D::area_attach_object_instance_id);
  498. ClassDB::bind_method(D_METHOD("area_get_object_instance_id", "area"), &PhysicsServer2D::area_get_object_instance_id);
  499. ClassDB::bind_method(D_METHOD("area_attach_canvas_instance_id", "area", "id"), &PhysicsServer2D::area_attach_canvas_instance_id);
  500. ClassDB::bind_method(D_METHOD("area_get_canvas_instance_id", "area"), &PhysicsServer2D::area_get_canvas_instance_id);
  501. ClassDB::bind_method(D_METHOD("area_set_monitor_callback", "area", "callback"), &PhysicsServer2D::area_set_monitor_callback);
  502. ClassDB::bind_method(D_METHOD("area_set_area_monitor_callback", "area", "callback"), &PhysicsServer2D::area_set_area_monitor_callback);
  503. ClassDB::bind_method(D_METHOD("area_set_monitorable", "area", "monitorable"), &PhysicsServer2D::area_set_monitorable);
  504. ClassDB::bind_method(D_METHOD("body_create"), &PhysicsServer2D::body_create);
  505. ClassDB::bind_method(D_METHOD("body_set_space", "body", "space"), &PhysicsServer2D::body_set_space);
  506. ClassDB::bind_method(D_METHOD("body_get_space", "body"), &PhysicsServer2D::body_get_space);
  507. ClassDB::bind_method(D_METHOD("body_set_mode", "body", "mode"), &PhysicsServer2D::body_set_mode);
  508. ClassDB::bind_method(D_METHOD("body_get_mode", "body"), &PhysicsServer2D::body_get_mode);
  509. ClassDB::bind_method(D_METHOD("body_add_shape", "body", "shape", "transform", "disabled"), &PhysicsServer2D::body_add_shape, DEFVAL(Transform2D()), DEFVAL(false));
  510. ClassDB::bind_method(D_METHOD("body_set_shape", "body", "shape_idx", "shape"), &PhysicsServer2D::body_set_shape);
  511. ClassDB::bind_method(D_METHOD("body_set_shape_transform", "body", "shape_idx", "transform"), &PhysicsServer2D::body_set_shape_transform);
  512. ClassDB::bind_method(D_METHOD("body_get_shape_count", "body"), &PhysicsServer2D::body_get_shape_count);
  513. ClassDB::bind_method(D_METHOD("body_get_shape", "body", "shape_idx"), &PhysicsServer2D::body_get_shape);
  514. ClassDB::bind_method(D_METHOD("body_get_shape_transform", "body", "shape_idx"), &PhysicsServer2D::body_get_shape_transform);
  515. ClassDB::bind_method(D_METHOD("body_remove_shape", "body", "shape_idx"), &PhysicsServer2D::body_remove_shape);
  516. ClassDB::bind_method(D_METHOD("body_clear_shapes", "body"), &PhysicsServer2D::body_clear_shapes);
  517. ClassDB::bind_method(D_METHOD("body_set_shape_disabled", "body", "shape_idx", "disabled"), &PhysicsServer2D::body_set_shape_disabled);
  518. ClassDB::bind_method(D_METHOD("body_set_shape_as_one_way_collision", "body", "shape_idx", "enable", "margin"), &PhysicsServer2D::body_set_shape_as_one_way_collision);
  519. ClassDB::bind_method(D_METHOD("body_attach_object_instance_id", "body", "id"), &PhysicsServer2D::body_attach_object_instance_id);
  520. ClassDB::bind_method(D_METHOD("body_get_object_instance_id", "body"), &PhysicsServer2D::body_get_object_instance_id);
  521. ClassDB::bind_method(D_METHOD("body_attach_canvas_instance_id", "body", "id"), &PhysicsServer2D::body_attach_canvas_instance_id);
  522. ClassDB::bind_method(D_METHOD("body_get_canvas_instance_id", "body"), &PhysicsServer2D::body_get_canvas_instance_id);
  523. ClassDB::bind_method(D_METHOD("body_set_continuous_collision_detection_mode", "body", "mode"), &PhysicsServer2D::body_set_continuous_collision_detection_mode);
  524. ClassDB::bind_method(D_METHOD("body_get_continuous_collision_detection_mode", "body"), &PhysicsServer2D::body_get_continuous_collision_detection_mode);
  525. ClassDB::bind_method(D_METHOD("body_set_collision_layer", "body", "layer"), &PhysicsServer2D::body_set_collision_layer);
  526. ClassDB::bind_method(D_METHOD("body_get_collision_layer", "body"), &PhysicsServer2D::body_get_collision_layer);
  527. ClassDB::bind_method(D_METHOD("body_set_collision_mask", "body", "mask"), &PhysicsServer2D::body_set_collision_mask);
  528. ClassDB::bind_method(D_METHOD("body_get_collision_mask", "body"), &PhysicsServer2D::body_get_collision_mask);
  529. ClassDB::bind_method(D_METHOD("body_set_param", "body", "param", "value"), &PhysicsServer2D::body_set_param);
  530. ClassDB::bind_method(D_METHOD("body_get_param", "body", "param"), &PhysicsServer2D::body_get_param);
  531. ClassDB::bind_method(D_METHOD("body_reset_mass_properties", "body"), &PhysicsServer2D::body_reset_mass_properties);
  532. ClassDB::bind_method(D_METHOD("body_set_state", "body", "state", "value"), &PhysicsServer2D::body_set_state);
  533. ClassDB::bind_method(D_METHOD("body_get_state", "body", "state"), &PhysicsServer2D::body_get_state);
  534. ClassDB::bind_method(D_METHOD("body_apply_central_impulse", "body", "impulse"), &PhysicsServer2D::body_apply_central_impulse);
  535. ClassDB::bind_method(D_METHOD("body_apply_torque_impulse", "body", "impulse"), &PhysicsServer2D::body_apply_torque_impulse);
  536. ClassDB::bind_method(D_METHOD("body_apply_impulse", "body", "impulse", "position"), &PhysicsServer2D::body_apply_impulse, Vector2());
  537. ClassDB::bind_method(D_METHOD("body_add_central_force", "body", "force"), &PhysicsServer2D::body_add_central_force);
  538. ClassDB::bind_method(D_METHOD("body_add_force", "body", "force", "position"), &PhysicsServer2D::body_add_force, Vector2());
  539. ClassDB::bind_method(D_METHOD("body_add_torque", "body", "torque"), &PhysicsServer2D::body_add_torque);
  540. ClassDB::bind_method(D_METHOD("body_set_axis_velocity", "body", "axis_velocity"), &PhysicsServer2D::body_set_axis_velocity);
  541. ClassDB::bind_method(D_METHOD("body_add_collision_exception", "body", "excepted_body"), &PhysicsServer2D::body_add_collision_exception);
  542. ClassDB::bind_method(D_METHOD("body_remove_collision_exception", "body", "excepted_body"), &PhysicsServer2D::body_remove_collision_exception);
  543. ClassDB::bind_method(D_METHOD("body_set_max_contacts_reported", "body", "amount"), &PhysicsServer2D::body_set_max_contacts_reported);
  544. ClassDB::bind_method(D_METHOD("body_get_max_contacts_reported", "body"), &PhysicsServer2D::body_get_max_contacts_reported);
  545. ClassDB::bind_method(D_METHOD("body_set_omit_force_integration", "body", "enable"), &PhysicsServer2D::body_set_omit_force_integration);
  546. ClassDB::bind_method(D_METHOD("body_is_omitting_force_integration", "body"), &PhysicsServer2D::body_is_omitting_force_integration);
  547. ClassDB::bind_method(D_METHOD("body_set_force_integration_callback", "body", "callable", "userdata"), &PhysicsServer2D::body_set_force_integration_callback, DEFVAL(Variant()));
  548. ClassDB::bind_method(D_METHOD("body_test_motion", "body", "parameters", "result"), &PhysicsServer2D::_body_test_motion, DEFVAL(Variant()));
  549. ClassDB::bind_method(D_METHOD("body_get_direct_state", "body"), &PhysicsServer2D::body_get_direct_state);
  550. /* JOINT API */
  551. ClassDB::bind_method(D_METHOD("joint_create"), &PhysicsServer2D::joint_create);
  552. ClassDB::bind_method(D_METHOD("joint_clear", "joint"), &PhysicsServer2D::joint_clear);
  553. ClassDB::bind_method(D_METHOD("joint_set_param", "joint", "param", "value"), &PhysicsServer2D::joint_set_param);
  554. ClassDB::bind_method(D_METHOD("joint_get_param", "joint", "param"), &PhysicsServer2D::joint_get_param);
  555. ClassDB::bind_method(D_METHOD("joint_make_pin", "joint", "anchor", "body_a", "body_b"), &PhysicsServer2D::joint_make_pin, DEFVAL(RID()));
  556. ClassDB::bind_method(D_METHOD("joint_make_groove", "joint", "groove1_a", "groove2_a", "anchor_b", "body_a", "body_b"), &PhysicsServer2D::joint_make_groove, DEFVAL(RID()), DEFVAL(RID()));
  557. ClassDB::bind_method(D_METHOD("joint_make_damped_spring", "joint", "anchor_a", "anchor_b", "body_a", "body_b"), &PhysicsServer2D::joint_make_damped_spring, DEFVAL(RID()));
  558. ClassDB::bind_method(D_METHOD("damped_spring_joint_set_param", "joint", "param", "value"), &PhysicsServer2D::damped_spring_joint_set_param);
  559. ClassDB::bind_method(D_METHOD("damped_spring_joint_get_param", "joint", "param"), &PhysicsServer2D::damped_spring_joint_get_param);
  560. ClassDB::bind_method(D_METHOD("joint_get_type", "joint"), &PhysicsServer2D::joint_get_type);
  561. ClassDB::bind_method(D_METHOD("free_rid", "rid"), &PhysicsServer2D::free);
  562. ClassDB::bind_method(D_METHOD("set_active", "active"), &PhysicsServer2D::set_active);
  563. ClassDB::bind_method(D_METHOD("set_collision_iterations", "iterations"), &PhysicsServer2D::set_collision_iterations);
  564. ClassDB::bind_method(D_METHOD("get_process_info", "process_info"), &PhysicsServer2D::get_process_info);
  565. BIND_ENUM_CONSTANT(SPACE_PARAM_CONTACT_RECYCLE_RADIUS);
  566. BIND_ENUM_CONSTANT(SPACE_PARAM_CONTACT_MAX_SEPARATION);
  567. BIND_ENUM_CONSTANT(SPACE_PARAM_BODY_MAX_ALLOWED_PENETRATION);
  568. BIND_ENUM_CONSTANT(SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD);
  569. BIND_ENUM_CONSTANT(SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD);
  570. BIND_ENUM_CONSTANT(SPACE_PARAM_BODY_TIME_TO_SLEEP);
  571. BIND_ENUM_CONSTANT(SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS);
  572. BIND_ENUM_CONSTANT(SHAPE_WORLD_BOUNDARY);
  573. BIND_ENUM_CONSTANT(SHAPE_SEPARATION_RAY);
  574. BIND_ENUM_CONSTANT(SHAPE_SEGMENT);
  575. BIND_ENUM_CONSTANT(SHAPE_CIRCLE);
  576. BIND_ENUM_CONSTANT(SHAPE_RECTANGLE);
  577. BIND_ENUM_CONSTANT(SHAPE_CAPSULE);
  578. BIND_ENUM_CONSTANT(SHAPE_CONVEX_POLYGON);
  579. BIND_ENUM_CONSTANT(SHAPE_CONCAVE_POLYGON);
  580. BIND_ENUM_CONSTANT(SHAPE_CUSTOM);
  581. BIND_ENUM_CONSTANT(AREA_PARAM_GRAVITY);
  582. BIND_ENUM_CONSTANT(AREA_PARAM_GRAVITY_VECTOR);
  583. BIND_ENUM_CONSTANT(AREA_PARAM_GRAVITY_IS_POINT);
  584. BIND_ENUM_CONSTANT(AREA_PARAM_GRAVITY_DISTANCE_SCALE);
  585. BIND_ENUM_CONSTANT(AREA_PARAM_GRAVITY_POINT_ATTENUATION);
  586. BIND_ENUM_CONSTANT(AREA_PARAM_LINEAR_DAMP);
  587. BIND_ENUM_CONSTANT(AREA_PARAM_ANGULAR_DAMP);
  588. BIND_ENUM_CONSTANT(AREA_PARAM_PRIORITY);
  589. BIND_ENUM_CONSTANT(AREA_SPACE_OVERRIDE_DISABLED);
  590. BIND_ENUM_CONSTANT(AREA_SPACE_OVERRIDE_COMBINE);
  591. BIND_ENUM_CONSTANT(AREA_SPACE_OVERRIDE_COMBINE_REPLACE);
  592. BIND_ENUM_CONSTANT(AREA_SPACE_OVERRIDE_REPLACE);
  593. BIND_ENUM_CONSTANT(AREA_SPACE_OVERRIDE_REPLACE_COMBINE);
  594. BIND_ENUM_CONSTANT(BODY_MODE_STATIC);
  595. BIND_ENUM_CONSTANT(BODY_MODE_KINEMATIC);
  596. BIND_ENUM_CONSTANT(BODY_MODE_DYNAMIC);
  597. BIND_ENUM_CONSTANT(BODY_MODE_DYNAMIC_LINEAR);
  598. BIND_ENUM_CONSTANT(BODY_PARAM_BOUNCE);
  599. BIND_ENUM_CONSTANT(BODY_PARAM_FRICTION);
  600. BIND_ENUM_CONSTANT(BODY_PARAM_MASS);
  601. BIND_ENUM_CONSTANT(BODY_PARAM_INERTIA);
  602. BIND_ENUM_CONSTANT(BODY_PARAM_CENTER_OF_MASS);
  603. BIND_ENUM_CONSTANT(BODY_PARAM_GRAVITY_SCALE);
  604. BIND_ENUM_CONSTANT(BODY_PARAM_LINEAR_DAMP_MODE);
  605. BIND_ENUM_CONSTANT(BODY_PARAM_ANGULAR_DAMP_MODE);
  606. BIND_ENUM_CONSTANT(BODY_PARAM_LINEAR_DAMP);
  607. BIND_ENUM_CONSTANT(BODY_PARAM_ANGULAR_DAMP);
  608. BIND_ENUM_CONSTANT(BODY_PARAM_MAX);
  609. BIND_ENUM_CONSTANT(BODY_DAMP_MODE_COMBINE);
  610. BIND_ENUM_CONSTANT(BODY_DAMP_MODE_REPLACE);
  611. BIND_ENUM_CONSTANT(BODY_STATE_TRANSFORM);
  612. BIND_ENUM_CONSTANT(BODY_STATE_LINEAR_VELOCITY);
  613. BIND_ENUM_CONSTANT(BODY_STATE_ANGULAR_VELOCITY);
  614. BIND_ENUM_CONSTANT(BODY_STATE_SLEEPING);
  615. BIND_ENUM_CONSTANT(BODY_STATE_CAN_SLEEP);
  616. BIND_ENUM_CONSTANT(JOINT_TYPE_PIN);
  617. BIND_ENUM_CONSTANT(JOINT_TYPE_GROOVE);
  618. BIND_ENUM_CONSTANT(JOINT_TYPE_DAMPED_SPRING);
  619. BIND_ENUM_CONSTANT(JOINT_TYPE_MAX);
  620. BIND_ENUM_CONSTANT(JOINT_PARAM_BIAS);
  621. BIND_ENUM_CONSTANT(JOINT_PARAM_MAX_BIAS);
  622. BIND_ENUM_CONSTANT(JOINT_PARAM_MAX_FORCE);
  623. BIND_ENUM_CONSTANT(DAMPED_SPRING_REST_LENGTH);
  624. BIND_ENUM_CONSTANT(DAMPED_SPRING_STIFFNESS);
  625. BIND_ENUM_CONSTANT(DAMPED_SPRING_DAMPING);
  626. BIND_ENUM_CONSTANT(CCD_MODE_DISABLED);
  627. BIND_ENUM_CONSTANT(CCD_MODE_CAST_RAY);
  628. BIND_ENUM_CONSTANT(CCD_MODE_CAST_SHAPE);
  629. BIND_ENUM_CONSTANT(AREA_BODY_ADDED);
  630. BIND_ENUM_CONSTANT(AREA_BODY_REMOVED);
  631. BIND_ENUM_CONSTANT(INFO_ACTIVE_OBJECTS);
  632. BIND_ENUM_CONSTANT(INFO_COLLISION_PAIRS);
  633. BIND_ENUM_CONSTANT(INFO_ISLAND_COUNT);
  634. }
  635. PhysicsServer2D::PhysicsServer2D() {
  636. singleton = this;
  637. }
  638. PhysicsServer2D::~PhysicsServer2D() {
  639. singleton = nullptr;
  640. }
  641. Vector<PhysicsServer2DManager::ClassInfo> PhysicsServer2DManager::physics_2d_servers;
  642. int PhysicsServer2DManager::default_server_id = -1;
  643. int PhysicsServer2DManager::default_server_priority = -1;
  644. const String PhysicsServer2DManager::setting_property_name("physics/2d/physics_engine");
  645. void PhysicsServer2DManager::on_servers_changed() {
  646. String physics_servers("DEFAULT");
  647. for (int i = get_servers_count() - 1; 0 <= i; --i) {
  648. physics_servers += "," + get_server_name(i);
  649. }
  650. ProjectSettings::get_singleton()->set_custom_property_info(setting_property_name, PropertyInfo(Variant::STRING, setting_property_name, PROPERTY_HINT_ENUM, physics_servers));
  651. }
  652. void PhysicsServer2DManager::register_server(const String &p_name, CreatePhysicsServer2DCallback p_creat_callback) {
  653. ERR_FAIL_COND(!p_creat_callback);
  654. ERR_FAIL_COND(find_server_id(p_name) != -1);
  655. physics_2d_servers.push_back(ClassInfo(p_name, p_creat_callback));
  656. on_servers_changed();
  657. }
  658. void PhysicsServer2DManager::set_default_server(const String &p_name, int p_priority) {
  659. const int id = find_server_id(p_name);
  660. ERR_FAIL_COND(id == -1); // Not found
  661. if (default_server_priority < p_priority) {
  662. default_server_id = id;
  663. default_server_priority = p_priority;
  664. }
  665. }
  666. int PhysicsServer2DManager::find_server_id(const String &p_name) {
  667. for (int i = physics_2d_servers.size() - 1; 0 <= i; --i) {
  668. if (p_name == physics_2d_servers[i].name) {
  669. return i;
  670. }
  671. }
  672. return -1;
  673. }
  674. int PhysicsServer2DManager::get_servers_count() {
  675. return physics_2d_servers.size();
  676. }
  677. String PhysicsServer2DManager::get_server_name(int p_id) {
  678. ERR_FAIL_INDEX_V(p_id, get_servers_count(), "");
  679. return physics_2d_servers[p_id].name;
  680. }
  681. PhysicsServer2D *PhysicsServer2DManager::new_default_server() {
  682. ERR_FAIL_COND_V(default_server_id == -1, nullptr);
  683. return physics_2d_servers[default_server_id].create_callback();
  684. }
  685. PhysicsServer2D *PhysicsServer2DManager::new_server(const String &p_name) {
  686. int id = find_server_id(p_name);
  687. if (id == -1) {
  688. return nullptr;
  689. } else {
  690. return physics_2d_servers[id].create_callback();
  691. }
  692. }