collision_shape_2d.cpp 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 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/rectangle_shape_2d.h"
  38. #include "scene/resources/segment_shape_2d.h"
  39. #include "scene/resources/shape_line_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. }
  50. void CollisionShape2D::_notification(int p_what) {
  51. switch (p_what) {
  52. case NOTIFICATION_PARENTED: {
  53. parent = Object::cast_to<CollisionObject2D>(get_parent());
  54. if (parent) {
  55. owner_id = parent->create_shape_owner(this);
  56. if (shape.is_valid()) {
  57. parent->shape_owner_add_shape(owner_id, shape);
  58. }
  59. _update_in_shape_owner();
  60. }
  61. /*if (Engine::get_singleton()->is_editor_hint()) {
  62. //display above all else
  63. set_z_as_relative(false);
  64. set_z_index(VS::CANVAS_ITEM_Z_MAX - 1);
  65. }*/
  66. } break;
  67. case NOTIFICATION_ENTER_TREE: {
  68. if (parent) {
  69. _update_in_shape_owner();
  70. }
  71. } break;
  72. case NOTIFICATION_LOCAL_TRANSFORM_CHANGED: {
  73. if (parent) {
  74. _update_in_shape_owner(true);
  75. }
  76. } break;
  77. case NOTIFICATION_UNPARENTED: {
  78. if (parent) {
  79. parent->remove_shape_owner(owner_id);
  80. }
  81. owner_id = 0;
  82. parent = NULL;
  83. } break;
  84. /*
  85. case NOTIFICATION_TRANSFORM_CHANGED: {
  86. if (!is_inside_scene())
  87. break;
  88. _update_parent();
  89. } break;*/
  90. case NOTIFICATION_DRAW: {
  91. if (!Engine::get_singleton()->is_editor_hint() && !get_tree()->is_debugging_collisions_hint()) {
  92. break;
  93. }
  94. if (!shape.is_valid()) {
  95. break;
  96. }
  97. rect = Rect2();
  98. Color draw_col = get_tree()->get_debug_collisions_color();
  99. if (disabled) {
  100. float g = draw_col.get_v();
  101. draw_col.r = g;
  102. draw_col.g = g;
  103. draw_col.b = g;
  104. }
  105. shape->draw(get_canvas_item(), draw_col);
  106. rect = shape->get_rect();
  107. rect = rect.grow(3);
  108. if (one_way_collision) {
  109. Color dcol = get_tree()->get_debug_collisions_color(); //0.9,0.2,0.2,0.4);
  110. dcol.a = 1.0;
  111. Vector2 line_to(0, 20);
  112. draw_line(Vector2(), line_to, dcol, 3);
  113. Vector<Vector2> pts;
  114. float tsize = 8;
  115. pts.push_back(line_to + (Vector2(0, tsize)));
  116. pts.push_back(line_to + (Vector2(0.707 * tsize, 0)));
  117. pts.push_back(line_to + (Vector2(-0.707 * tsize, 0)));
  118. Vector<Color> cols;
  119. for (int i = 0; i < 3; i++)
  120. cols.push_back(dcol);
  121. draw_primitive(pts, cols, Vector<Vector2>()); //small arrow
  122. }
  123. } break;
  124. }
  125. }
  126. void CollisionShape2D::set_shape(const Ref<Shape2D> &p_shape) {
  127. if (shape.is_valid())
  128. shape->disconnect("changed", this, "_shape_changed");
  129. shape = p_shape;
  130. update();
  131. if (parent) {
  132. parent->shape_owner_clear_shapes(owner_id);
  133. if (shape.is_valid()) {
  134. parent->shape_owner_add_shape(owner_id, shape);
  135. }
  136. }
  137. if (shape.is_valid())
  138. shape->connect("changed", this, "_shape_changed");
  139. update_configuration_warning();
  140. }
  141. Ref<Shape2D> CollisionShape2D::get_shape() const {
  142. return shape;
  143. }
  144. bool CollisionShape2D::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const {
  145. if (!shape.is_valid())
  146. return false;
  147. return shape->_edit_is_selected_on_click(p_point, p_tolerance);
  148. }
  149. String CollisionShape2D::get_configuration_warning() const {
  150. if (!Object::cast_to<CollisionObject2D>(get_parent())) {
  151. return 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.");
  152. }
  153. if (!shape.is_valid()) {
  154. return TTR("A shape must be provided for CollisionShape2D to function. Please create a shape resource for it!");
  155. }
  156. return String();
  157. }
  158. void CollisionShape2D::set_disabled(bool p_disabled) {
  159. disabled = p_disabled;
  160. update();
  161. if (parent) {
  162. parent->shape_owner_set_disabled(owner_id, p_disabled);
  163. }
  164. }
  165. bool CollisionShape2D::is_disabled() const {
  166. return disabled;
  167. }
  168. void CollisionShape2D::set_one_way_collision(bool p_enable) {
  169. one_way_collision = p_enable;
  170. update();
  171. if (parent) {
  172. parent->shape_owner_set_one_way_collision(owner_id, p_enable);
  173. }
  174. }
  175. bool CollisionShape2D::is_one_way_collision_enabled() const {
  176. return one_way_collision;
  177. }
  178. void CollisionShape2D::_bind_methods() {
  179. ClassDB::bind_method(D_METHOD("set_shape", "shape"), &CollisionShape2D::set_shape);
  180. ClassDB::bind_method(D_METHOD("get_shape"), &CollisionShape2D::get_shape);
  181. ClassDB::bind_method(D_METHOD("set_disabled", "disabled"), &CollisionShape2D::set_disabled);
  182. ClassDB::bind_method(D_METHOD("is_disabled"), &CollisionShape2D::is_disabled);
  183. ClassDB::bind_method(D_METHOD("set_one_way_collision", "enabled"), &CollisionShape2D::set_one_way_collision);
  184. ClassDB::bind_method(D_METHOD("is_one_way_collision_enabled"), &CollisionShape2D::is_one_way_collision_enabled);
  185. ClassDB::bind_method(D_METHOD("_shape_changed"), &CollisionShape2D::_shape_changed);
  186. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "shape", PROPERTY_HINT_RESOURCE_TYPE, "Shape2D"), "set_shape", "get_shape");
  187. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "disabled"), "set_disabled", "is_disabled");
  188. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "one_way_collision"), "set_one_way_collision", "is_one_way_collision_enabled");
  189. }
  190. CollisionShape2D::CollisionShape2D() {
  191. rect = Rect2(-Point2(10, 10), Point2(20, 20));
  192. set_notify_local_transform(true);
  193. owner_id = 0;
  194. parent = NULL;
  195. disabled = false;
  196. one_way_collision = false;
  197. }