navigation_obstacle_3d.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /**************************************************************************/
  2. /* navigation_obstacle_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 NAVIGATION_OBSTACLE_3D_H
  31. #define NAVIGATION_OBSTACLE_3D_H
  32. #include "scene/3d/node_3d.h"
  33. class NavigationObstacle3D : public Node3D {
  34. GDCLASS(NavigationObstacle3D, Node3D);
  35. RID obstacle;
  36. RID map_before_pause;
  37. RID map_override;
  38. RID map_current;
  39. real_t height = 1.0;
  40. real_t radius = 0.0;
  41. Vector<Vector3> vertices;
  42. bool avoidance_enabled = true;
  43. uint32_t avoidance_layers = 1;
  44. bool use_3d_avoidance = false;
  45. Vector3 velocity;
  46. Vector3 previous_velocity;
  47. bool velocity_submitted = false;
  48. bool affect_navigation_mesh = false;
  49. bool carve_navigation_mesh = false;
  50. #ifdef DEBUG_ENABLED
  51. RID fake_agent_radius_debug_instance_rid;
  52. RID fake_agent_radius_debug_mesh_rid;
  53. RID static_obstacle_debug_instance_rid;
  54. RID static_obstacle_debug_mesh_rid;
  55. private:
  56. void _update_debug();
  57. void _update_fake_agent_radius_debug();
  58. void _update_static_obstacle_debug();
  59. #endif // DEBUG_ENABLED
  60. protected:
  61. static void _bind_methods();
  62. void _notification(int p_what);
  63. public:
  64. NavigationObstacle3D();
  65. virtual ~NavigationObstacle3D();
  66. RID get_rid() const { return obstacle; }
  67. void set_avoidance_enabled(bool p_enabled);
  68. bool get_avoidance_enabled() const;
  69. void set_navigation_map(RID p_navigation_map);
  70. RID get_navigation_map() const;
  71. void set_radius(real_t p_radius);
  72. real_t get_radius() const { return radius; }
  73. void set_height(real_t p_height);
  74. real_t get_height() const { return height; }
  75. void set_vertices(const Vector<Vector3> &p_vertices);
  76. const Vector<Vector3> &get_vertices() const { return vertices; }
  77. void set_avoidance_layers(uint32_t p_layers);
  78. uint32_t get_avoidance_layers() const;
  79. void set_avoidance_layer_value(int p_layer_number, bool p_value);
  80. bool get_avoidance_layer_value(int p_layer_number) const;
  81. void set_use_3d_avoidance(bool p_use_3d_avoidance);
  82. bool get_use_3d_avoidance() const { return use_3d_avoidance; }
  83. void set_velocity(const Vector3 p_velocity);
  84. Vector3 get_velocity() const { return velocity; }
  85. void _avoidance_done(Vector3 p_new_velocity); // Dummy
  86. void set_affect_navigation_mesh(bool p_enabled);
  87. bool get_affect_navigation_mesh() const;
  88. void set_carve_navigation_mesh(bool p_enabled);
  89. bool get_carve_navigation_mesh() const;
  90. PackedStringArray get_configuration_warnings() const override;
  91. private:
  92. void _update_map(RID p_map);
  93. void _update_position(const Vector3 p_position);
  94. void _update_transform();
  95. void _update_use_3d_avoidance(bool p_use_3d_avoidance);
  96. };
  97. #endif // NAVIGATION_OBSTACLE_3D_H