collision_shape_2d.cpp 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /*************************************************************************/
  2. /* collision_shape_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 "collision_shape_2d.h"
  31. #include "collision_object_2d.h"
  32. #include "core/engine.h"
  33. #include "scene/resources/capsule_shape_2d.h"
  34. #include "scene/resources/circle_shape_2d.h"
  35. #include "scene/resources/concave_polygon_shape_2d.h"
  36. #include "scene/resources/convex_polygon_shape_2d.h"
  37. #include "scene/resources/line_shape_2d.h"
  38. #include "scene/resources/rectangle_shape_2d.h"
  39. #include "scene/resources/segment_shape_2d.h"
  40. void CollisionShape2D::_shape_changed() {
  41. update();
  42. }
  43. void CollisionShape2D::_update_in_shape_owner(bool p_xform_only) {
  44. parent->shape_owner_set_transform(owner_id, get_transform());
  45. if (p_xform_only)
  46. return;
  47. parent->shape_owner_set_disabled(owner_id, disabled);
  48. parent->shape_owner_set_one_way_collision(owner_id, one_way_collision);
  49. parent->shape_owner_set_one_way_collision_margin(owner_id, one_way_collision_margin);
  50. }
  51. void CollisionShape2D::_notification(int p_what) {
  52. switch (p_what) {
  53. case NOTIFICATION_PARENTED: {
  54. parent = Object::cast_to<CollisionObject2D>(get_parent());
  55. if (parent) {
  56. owner_id = parent->create_shape_owner(this);
  57. if (shape.is_valid()) {
  58. parent->shape_owner_add_shape(owner_id, shape);
  59. }
  60. _update_in_shape_owner();
  61. }
  62. /*if (Engine::get_singleton()->is_editor_hint()) {
  63. //display above all else
  64. set_z_as_relative(false);
  65. set_z_index(VS::CANVAS_ITEM_Z_MAX - 1);
  66. }*/
  67. } break;
  68. case NOTIFICATION_ENTER_TREE: {
  69. if (parent) {
  70. _update_in_shape_owner();
  71. }
  72. } break;
  73. case NOTIFICATION_LOCAL_TRANSFORM_CHANGED: {
  74. if (parent) {
  75. _update_in_shape_owner(true);
  76. }
  77. } break;
  78. case NOTIFICATION_UNPARENTED: {
  79. if (parent) {
  80. parent->remove_shape_owner(owner_id);
  81. }
  82. owner_id = 0;
  83. parent = NULL;
  84. } break;
  85. case NOTIFICATION_DRAW: {
  86. if (!Engine::get_singleton()->is_editor_hint() && !get_tree()->is_debugging_collisions_hint()) {
  87. break;
  88. }
  89. if (!shape.is_valid()) {
  90. break;
  91. }
  92. rect = Rect2();
  93. Color draw_col = get_tree()->get_debug_collisions_color();
  94. if (disabled) {
  95. float g = draw_col.get_v();
  96. draw_col.r = g;
  97. draw_col.g = g;
  98. draw_col.b = g;
  99. draw_col.a *= 0.5;
  100. }
  101. shape->draw(get_canvas_item(), draw_col);
  102. rect = shape->get_rect();
  103. rect = rect.grow(3);
  104. if (one_way_collision) {
  105. // Draw an arrow indicating the one-way collision direction
  106. draw_col = get_tree()->get_debug_collisions_color().inverted();
  107. if (disabled) {
  108. draw_col = draw_col.darkened(0.25);
  109. }
  110. Vector2 line_to(0, 20);
  111. draw_line(Vector2(), line_to, draw_col, 2, true);
  112. Vector<Vector2> pts;
  113. float tsize = 8;
  114. pts.push_back(line_to + (Vector2(0, tsize)));
  115. pts.push_back(line_to + (Vector2(Math_SQRT12 * tsize, 0)));
  116. pts.push_back(line_to + (Vector2(-Math_SQRT12 * tsize, 0)));
  117. Vector<Color> cols;
  118. for (int i = 0; i < 3; i++)
  119. cols.push_back(draw_col);
  120. draw_primitive(pts, cols, Vector<Vector2>());
  121. }
  122. } break;
  123. }
  124. }
  125. void CollisionShape2D::set_shape(const Ref<Shape2D> &p_shape) {
  126. if (p_shape == shape) {
  127. return;
  128. }
  129. if (shape.is_valid())
  130. shape->disconnect("changed", this, "_shape_changed");
  131. shape = p_shape;
  132. update();
  133. if (parent) {
  134. parent->shape_owner_clear_shapes(owner_id);
  135. if (shape.is_valid()) {
  136. parent->shape_owner_add_shape(owner_id, shape);
  137. }
  138. _update_in_shape_owner();
  139. }
  140. if (shape.is_valid())
  141. shape->connect("changed", this, "_shape_changed");
  142. update_configuration_warning();
  143. }
  144. Ref<Shape2D> CollisionShape2D::get_shape() const {
  145. return shape;
  146. }
  147. bool CollisionShape2D::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const {
  148. if (!shape.is_valid())
  149. return false;
  150. return shape->_edit_is_selected_on_click(p_point, p_tolerance);
  151. }
  152. String CollisionShape2D::get_configuration_warning() const {
  153. String warning = Node2D::get_configuration_warning();
  154. if (!Object::cast_to<CollisionObject2D>(get_parent())) {
  155. if (warning != String()) {
  156. warning += "\n\n";
  157. }
  158. warning += TTR("CollisionShape2D only serves to provide a collision shape to a CollisionObject2D derived node. Please only use it as a child of Area2D, StaticBody2D, RigidBody2D, KinematicBody2D, etc. to give them a shape.");
  159. }
  160. if (!shape.is_valid()) {
  161. if (warning != String()) {
  162. warning += "\n\n";
  163. }
  164. warning += TTR("A shape must be provided for CollisionShape2D to function. Please create a shape resource for it!");
  165. } else {
  166. Ref<ConvexPolygonShape2D> convex = shape;
  167. Ref<ConcavePolygonShape2D> concave = shape;
  168. if (convex.is_valid() || concave.is_valid()) {
  169. if (warning != String()) {
  170. warning += "\n\n";
  171. }
  172. warning += TTR("Polygon-based shapes are not meant be used nor edited directly through the CollisionShape2D node. Please use the CollisionPolygon2D node instead.");
  173. }
  174. }
  175. return warning;
  176. }
  177. void CollisionShape2D::set_disabled(bool p_disabled) {
  178. disabled = p_disabled;
  179. update();
  180. if (parent) {
  181. parent->shape_owner_set_disabled(owner_id, p_disabled);
  182. }
  183. }
  184. bool CollisionShape2D::is_disabled() const {
  185. return disabled;
  186. }
  187. void CollisionShape2D::set_one_way_collision(bool p_enable) {
  188. one_way_collision = p_enable;
  189. update();
  190. if (parent) {
  191. parent->shape_owner_set_one_way_collision(owner_id, p_enable);
  192. }
  193. }
  194. bool CollisionShape2D::is_one_way_collision_enabled() const {
  195. return one_way_collision;
  196. }
  197. void CollisionShape2D::set_one_way_collision_margin(float p_margin) {
  198. one_way_collision_margin = p_margin;
  199. if (parent) {
  200. parent->shape_owner_set_one_way_collision_margin(owner_id, one_way_collision_margin);
  201. }
  202. }
  203. float CollisionShape2D::get_one_way_collision_margin() const {
  204. return one_way_collision_margin;
  205. }
  206. void CollisionShape2D::_bind_methods() {
  207. ClassDB::bind_method(D_METHOD("set_shape", "shape"), &CollisionShape2D::set_shape);
  208. ClassDB::bind_method(D_METHOD("get_shape"), &CollisionShape2D::get_shape);
  209. ClassDB::bind_method(D_METHOD("set_disabled", "disabled"), &CollisionShape2D::set_disabled);
  210. ClassDB::bind_method(D_METHOD("is_disabled"), &CollisionShape2D::is_disabled);
  211. ClassDB::bind_method(D_METHOD("set_one_way_collision", "enabled"), &CollisionShape2D::set_one_way_collision);
  212. ClassDB::bind_method(D_METHOD("is_one_way_collision_enabled"), &CollisionShape2D::is_one_way_collision_enabled);
  213. ClassDB::bind_method(D_METHOD("set_one_way_collision_margin", "margin"), &CollisionShape2D::set_one_way_collision_margin);
  214. ClassDB::bind_method(D_METHOD("get_one_way_collision_margin"), &CollisionShape2D::get_one_way_collision_margin);
  215. ClassDB::bind_method(D_METHOD("_shape_changed"), &CollisionShape2D::_shape_changed);
  216. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "shape", PROPERTY_HINT_RESOURCE_TYPE, "Shape2D"), "set_shape", "get_shape");
  217. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "disabled"), "set_disabled", "is_disabled");
  218. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "one_way_collision"), "set_one_way_collision", "is_one_way_collision_enabled");
  219. ADD_PROPERTY(PropertyInfo(Variant::REAL, "one_way_collision_margin", PROPERTY_HINT_RANGE, "0,128,0.1"), "set_one_way_collision_margin", "get_one_way_collision_margin");
  220. }
  221. CollisionShape2D::CollisionShape2D() {
  222. rect = Rect2(-Point2(10, 10), Point2(20, 20));
  223. set_notify_local_transform(true);
  224. owner_id = 0;
  225. parent = NULL;
  226. disabled = false;
  227. one_way_collision = false;
  228. one_way_collision_margin = 1.0;
  229. }