shape_cast_3d.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /**************************************************************************/
  2. /* shape_cast_3d.h */
  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. #ifndef SHAPE_CAST_3D_H
  31. #define SHAPE_CAST_3D_H
  32. #include "scene/3d/node_3d.h"
  33. #include "scene/resources/3d/shape_3d.h"
  34. class CollisionObject3D;
  35. class ShapeCast3D : public Node3D {
  36. GDCLASS(ShapeCast3D, Node3D);
  37. bool enabled = true;
  38. #ifndef DISABLE_DEPRECATED
  39. void resource_changed(Ref<Resource> p_res);
  40. #endif
  41. Ref<Shape3D> shape;
  42. RID shape_rid;
  43. Vector3 target_position = Vector3(0, -1, 0);
  44. HashSet<RID> exclude;
  45. real_t margin = 0.0;
  46. uint32_t collision_mask = 1;
  47. bool exclude_parent_body = true;
  48. bool collide_with_areas = false;
  49. bool collide_with_bodies = true;
  50. Ref<Material> debug_material;
  51. Color debug_shape_custom_color = Color(0.0, 0.0, 0.0);
  52. Vector<Vector3> debug_shape_vertices;
  53. Vector<Vector3> debug_line_vertices;
  54. void _create_debug_shape();
  55. void _update_debug_shape();
  56. void _update_debug_shape_material(bool p_check_collision = false);
  57. void _update_debug_shape_vertices();
  58. void _clear_debug_shape();
  59. // Result
  60. int max_results = 32;
  61. Vector<PhysicsDirectSpaceState3D::ShapeRestInfo> result;
  62. bool collided = false;
  63. real_t collision_safe_fraction = 1.0;
  64. real_t collision_unsafe_fraction = 1.0;
  65. RID debug_instance;
  66. Ref<ArrayMesh> debug_mesh;
  67. protected:
  68. void _notification(int p_what);
  69. void _update_shapecast_state();
  70. void _shape_changed();
  71. static void _bind_methods();
  72. public:
  73. void set_collide_with_areas(bool p_clip);
  74. bool is_collide_with_areas_enabled() const;
  75. void set_collide_with_bodies(bool p_clip);
  76. bool is_collide_with_bodies_enabled() const;
  77. void set_enabled(bool p_enabled);
  78. bool is_enabled() const;
  79. void set_shape(const Ref<Shape3D> &p_shape);
  80. Ref<Shape3D> get_shape() const;
  81. void set_target_position(const Vector3 &p_point);
  82. Vector3 get_target_position() const;
  83. void set_margin(real_t p_margin);
  84. real_t get_margin() const;
  85. void set_max_results(int p_max_results);
  86. int get_max_results() const;
  87. void set_collision_mask(uint32_t p_mask);
  88. uint32_t get_collision_mask() const;
  89. void set_collision_mask_value(int p_layer_number, bool p_value);
  90. bool get_collision_mask_value(int p_layer_number) const;
  91. void set_exclude_parent_body(bool p_exclude_parent_body);
  92. bool get_exclude_parent_body() const;
  93. const Color &get_debug_shape_custom_color() const;
  94. void set_debug_shape_custom_color(const Color &p_color);
  95. const Vector<Vector3> &get_debug_shape_vertices() const;
  96. const Vector<Vector3> &get_debug_line_vertices() const;
  97. Ref<StandardMaterial3D> get_debug_material();
  98. Array get_collision_result() const;
  99. int get_collision_count() const;
  100. Object *get_collider(int p_idx) const;
  101. RID get_collider_rid(int p_idx) const;
  102. int get_collider_shape(int p_idx) const;
  103. Vector3 get_collision_point(int p_idx) const;
  104. Vector3 get_collision_normal(int p_idx) const;
  105. real_t get_closest_collision_safe_fraction() const;
  106. real_t get_closest_collision_unsafe_fraction() const;
  107. void force_shapecast_update();
  108. bool is_colliding() const;
  109. void add_exception_rid(const RID &p_rid);
  110. void add_exception(const CollisionObject3D *p_node);
  111. void remove_exception_rid(const RID &p_rid);
  112. void remove_exception(const CollisionObject3D *p_node);
  113. void clear_exceptions();
  114. virtual PackedStringArray get_configuration_warnings() const override;
  115. };
  116. #endif // SHAPE_CAST_3D_H