ray_cast_3d.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /**************************************************************************/
  2. /* ray_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 RAY_CAST_3D_H
  31. #define RAY_CAST_3D_H
  32. #include "scene/3d/node_3d.h"
  33. class CollisionObject3D;
  34. class RayCast3D : public Node3D {
  35. GDCLASS(RayCast3D, Node3D);
  36. bool enabled = true;
  37. bool collided = false;
  38. ObjectID against;
  39. RID against_rid;
  40. int against_shape = 0;
  41. Vector3 collision_point;
  42. Vector3 collision_normal;
  43. int collision_face_index = -1;
  44. Vector3 target_position = Vector3(0, -1, 0);
  45. HashSet<RID> exclude;
  46. uint32_t collision_mask = 1;
  47. bool exclude_parent_body = true;
  48. Ref<Material> debug_material;
  49. Color debug_shape_custom_color = Color(0.0, 0.0, 0.0);
  50. int debug_shape_thickness = 2;
  51. Vector<Vector3> debug_shape_vertices;
  52. Vector<Vector3> debug_line_vertices;
  53. void _create_debug_shape();
  54. void _update_debug_shape();
  55. void _update_debug_shape_material(bool p_check_collision = false);
  56. void _update_debug_shape_vertices();
  57. void _clear_debug_shape();
  58. bool collide_with_areas = false;
  59. bool collide_with_bodies = true;
  60. bool hit_from_inside = false;
  61. bool hit_back_faces = true;
  62. RID debug_instance;
  63. Ref<ArrayMesh> debug_mesh;
  64. protected:
  65. void _notification(int p_what);
  66. void _update_raycast_state();
  67. static void _bind_methods();
  68. public:
  69. void set_collide_with_areas(bool p_enabled);
  70. bool is_collide_with_areas_enabled() const;
  71. void set_collide_with_bodies(bool p_enabled);
  72. bool is_collide_with_bodies_enabled() const;
  73. void set_hit_from_inside(bool p_enabled);
  74. bool is_hit_from_inside_enabled() const;
  75. void set_hit_back_faces(bool p_enabled);
  76. bool is_hit_back_faces_enabled() const;
  77. void set_enabled(bool p_enabled);
  78. bool is_enabled() const;
  79. void set_target_position(const Vector3 &p_point);
  80. Vector3 get_target_position() const;
  81. void set_collision_mask(uint32_t p_mask);
  82. uint32_t get_collision_mask() const;
  83. void set_collision_mask_value(int p_layer_number, bool p_value);
  84. bool get_collision_mask_value(int p_layer_number) const;
  85. void set_exclude_parent_body(bool p_exclude_parent_body);
  86. bool get_exclude_parent_body() const;
  87. const Color &get_debug_shape_custom_color() const;
  88. void set_debug_shape_custom_color(const Color &p_color);
  89. const Vector<Vector3> &get_debug_shape_vertices() const;
  90. const Vector<Vector3> &get_debug_line_vertices() const;
  91. Ref<StandardMaterial3D> get_debug_material();
  92. int get_debug_shape_thickness() const;
  93. void set_debug_shape_thickness(const int p_debug_thickness);
  94. void force_raycast_update();
  95. bool is_colliding() const;
  96. Object *get_collider() const;
  97. RID get_collider_rid() const;
  98. int get_collider_shape() const;
  99. Vector3 get_collision_point() const;
  100. Vector3 get_collision_normal() const;
  101. int get_collision_face_index() const;
  102. void add_exception_rid(const RID &p_rid);
  103. void add_exception(const CollisionObject3D *p_node);
  104. void remove_exception_rid(const RID &p_rid);
  105. void remove_exception(const CollisionObject3D *p_node);
  106. void clear_exceptions();
  107. RayCast3D();
  108. };
  109. #endif // RAY_CAST_3D_H