Debug Draw 3D (and 2D) 1.4.1
Draw 3D debug graphics and 2D overlays with this add-on.
Loading...
Searching...
No Matches
debug_draw_3d.h
1#pragma once
2
3#include "common/colors.h"
4#include "common/i_scope_storage.h"
5#include "config_scope_3d.h"
6#include "render_instances_enums.h"
7#include "utils/profiler.h"
8
9#include <map>
10#include <memory>
11#include <mutex>
12
13GODOT_WARNING_DISABLE()
14#include <godot_cpp/classes/array_mesh.hpp>
15#include <godot_cpp/classes/node3d.hpp>
16#include <godot_cpp/classes/shader.hpp>
17#include <godot_cpp/classes/shader_material.hpp>
18#include <godot_cpp/classes/sub_viewport.hpp>
19GODOT_WARNING_RESTORE()
20using namespace godot;
21
22class DebugDraw3D;
23class DataGraphManager;
27
28#ifndef DISABLE_DEBUG_RENDERING
29class DebugGeometryContainer;
30struct DelayedRendererLine;
31#endif
32
34enum class MeshMaterialType : char {
35 Wireframe,
36 Billboard,
37 Plane,
38 Extendable,
39 MAX,
40};
41
43enum class MeshMaterialVariant : char {
44 Normal,
45 NoDepth,
46 MAX,
47};
48
49#ifndef DISABLE_DEBUG_RENDERING
51class _DD3D_WorldWatcher : public Node3D {
52 GDCLASS(_DD3D_WorldWatcher, Node3D)
53protected:
54 DebugDraw3D *m_owner = nullptr;
55 uint64_t m_world_id;
56 static void _bind_methods(){};
57
58public:
59 virtual void _process(double p_delta) override;
60 virtual void _notification(int p_what);
61
62 _DD3D_WorldWatcher() :
63 m_world_id() {}
64 _DD3D_WorldWatcher(DebugDraw3D *p_root, uint64_t p_world_id);
65};
66
67#endif
68
116class DebugDraw3D : public Object, public IScopeStorage<DebugDraw3DScopeConfig, DebugDraw3DScopeConfig::Data> {
117 GDCLASS(DebugDraw3D, Object)
118
119 friend DebugDrawManager;
120
121#ifndef DISABLE_DEBUG_RENDERING
122 friend DebugGeometryContainer;
123 friend _DD3D_WorldWatcher;
124#endif
125
126public:
130 enum PointType : int {
131 POINT_TYPE_SQUARE,
132 POINT_TYPE_SPHERE,
133 };
134
135private:
136 static DebugDraw3D *singleton;
137
138 String root_settings_section;
139 const static char *s_use_icosphere;
140 const static char *s_use_icosphere_hd;
141 const static char *s_add_bevel_to_volumetric;
142 const static char *s_default_frustum_scale;
143
144 const static char *s_default_thickness;
145 const static char *s_default_center_brightness;
146 const static char *s_default_hd_spheres;
147 const static char *s_default_plane_size;
148
149 std::vector<SubViewport *> custom_editor_viewports;
150 DebugDrawManager *root_node = nullptr;
151
152 Ref<DebugDraw3DScopeConfig> default_scoped_config;
153
154#ifndef DISABLE_DEBUG_RENDERING
155 ProfiledMutex(std::recursive_mutex, datalock, "3D Geometry lock");
156
157 typedef std::pair<uint64_t, DebugDraw3DScopeConfig *> ScopedPairIdConfig;
158 // stores thread id and array of id's with ptrs
159 std::unordered_map<uint64_t, std::vector<ScopedPairIdConfig> > scoped_configs;
160 // stores thread id and most recent config
161 std::unordered_map<uint64_t, std::shared_ptr<DebugDraw3DScopeConfig::Data> > cached_scoped_configs;
162 uint64_t created_scoped_configs = 0;
163 struct {
164 uint64_t created;
165 uint64_t orphans;
166 } scoped_stats_3d = {};
167
168 // Inherited via IScopeStorage
169 const std::shared_ptr<DebugDraw3DScopeConfig::Data> scoped_config_for_current_thread() override;
170
171 // Meshes
173 std::vector<std::array<Ref<ArrayMesh>, 2> > shared_generated_meshes;
175 std::unordered_map<uint64_t, std::shared_ptr<DebugGeometryContainer>[2]> debug_containers;
176 struct viewportToWorldCache {
177 uint64_t world_id = 0;
178 std::shared_ptr<DebugGeometryContainer> dgcs[2];
179 };
180 std::unordered_map<const Viewport *, viewportToWorldCache> viewport_to_world_cache;
181
182 // Default materials and shaders
183 Ref<ShaderMaterial> mesh_shaders[(int)MeshMaterialType::MAX][(int)MeshMaterialVariant::MAX];
184
185 // Inherited via IScopeStorage
186 void _register_scoped_config(uint64_t p_thread_id, uint64_t p_guard_id, DebugDraw3DScopeConfig *p_cfg) override;
187 void _unregister_scoped_config(uint64_t p_thread_id, uint64_t p_guard_id) override;
188 void _clear_scoped_configs() override;
189
190 std::array<Ref<ArrayMesh>, 2> *get_shared_meshes();
191 std::shared_ptr<DebugGeometryContainer> create_debug_container(bool p_no_depth_test);
192 std::shared_ptr<DebugGeometryContainer> get_debug_container(const DebugDraw3DScopeConfig::DebugContainerDependent &p_dgcd, const bool p_generate_new_container);
193 void _register_viewport_world_deferred(Viewport *p_vp, const uint64_t p_world_id);
194 Viewport *_get_root_world_viewport(Viewport *p_vp);
195 void _remove_debug_container(const uint64_t &p_world_id);
196
197 _FORCE_INLINE_ Vector3 get_up_vector(const Vector3 &p_dir);
198 void add_or_update_line_with_thickness(real_t p_exp_time, std::unique_ptr<Vector3[]> p_lines, const size_t p_line_count, const Color &p_col, const std::function<void(DelayedRendererLine *)> p_custom_upd = nullptr);
199 Node *get_root_node();
200
201 void create_arrow(const Vector3 &p_a, const Vector3 &p_b, const Color &p_color, const real_t &p_arrow_size, const bool &p_is_absolute_size, const real_t &p_duration = 0);
202
203#endif
204
205 void init(DebugDrawManager *p_root);
206
207 void set_custom_editor_viewport(std::vector<SubViewport *> p_viewports);
208 std::vector<SubViewport *> get_custom_editor_viewports();
209
210 Ref<ShaderMaterial> get_material_variant(MeshMaterialType p_type, MeshMaterialVariant p_var);
211
212 void _load_materials();
213 inline bool _is_enabled_override() const;
214
215 void process(double p_delta);
216 void physics_process_start(double p_delta);
217 void physics_process_end(double p_delta);
218
219#pragma region Exposed Parameter Values
220
222 bool debug_enabled = true;
223
224 Ref<DebugDraw3DConfig> config;
225
226#pragma endregion // Exposed Parameter Values
227
228protected:
230 static void _bind_methods();
231
232public:
233 DebugDraw3D();
234 ~DebugDraw3D();
235
240 return singleton;
241 };
242
243#pragma region Configs
251 Ref<DebugDraw3DScopeConfig> new_scoped_config();
257 Ref<DebugDraw3DScopeConfig> scoped_config() override;
258
262 void set_config(Ref<DebugDraw3DConfig> cfg);
266 Ref<DebugDraw3DConfig> get_config() const;
267
268#pragma endregion // Configs
269
270#pragma region Exposed Parameters
272 void set_empty_color(const Color &col){};
276 Color get_empty_color() const;
277
281 void set_debug_enabled(const bool &state);
282 bool is_debug_enabled() const;
283
284#pragma endregion // Exposed Parametes
285
286#pragma region Exposed Draw Methods
287
293 Ref<DebugDraw3DStats> get_render_stats();
294
300 Ref<DebugDraw3DStats> get_render_stats_for_world(Viewport *viewport);
301
302#ifndef DISABLE_DEBUG_RENDERING
303#define FAKE_FUNC_IMPL
304#else
305#define FAKE_FUNC_IMPL \
306 {}
307#endif
308
315
319 void clear_all();
320
321#pragma region Spheres
322
324 void draw_sphere_base(const Transform3D &transform, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
335 void draw_sphere(const Vector3 &position, const real_t &radius = 0.5f, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
345 void draw_sphere_xf(const Transform3D &transform, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
346
347#pragma endregion // Spheres
348
349#pragma region Cylinders
350
360 void draw_cylinder(const Transform3D &transform, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
361
373 void draw_cylinder_ab(const Vector3 &a, const Vector3 &b, const real_t &radius = 0.5f, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
374
375#pragma endregion // Cylinders
376
377#pragma region Boxes
378
393 void draw_box(const Vector3 &position, const Quaternion &rotation, const Vector3 &size, const Color &color = Colors::empty_color, const bool &is_box_centered = false, const real_t &duration = 0) FAKE_FUNC_IMPL;
394
409 void draw_box_ab(const Vector3 &a, const Vector3 &b, const Vector3 &up, const Color &color = Colors::empty_color, const bool &is_ab_diagonal = true, const real_t &duration = 0) FAKE_FUNC_IMPL;
410
419 void draw_box_xf(const Transform3D &transform, const Color &color = Colors::empty_color, const bool &is_box_centered = true, const real_t &duration = 0) FAKE_FUNC_IMPL;
420
428 void draw_aabb(const AABB &aabb, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
429
438 void draw_aabb_ab(const Vector3 &a, const Vector3 &b, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
439
440#pragma endregion // Boxes
441
442#pragma region Lines
443
460 void draw_line_hit(const Vector3 &start, const Vector3 &end, const Vector3 &hit, const bool &is_hit, const real_t &hit_size = 0.25f, const Color &hit_color = Colors::empty_color, const Color &after_hit_color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
461
478 void draw_line_hit_offset(const Vector3 &start, const Vector3 &end, const bool &is_hit, const real_t &unit_offset_of_hit = 0.5f, const real_t &hit_size = 0.25f, const Color &hit_color = Colors::empty_color, const Color &after_hit_color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
479
480#pragma region Normal
481
483 void draw_lines_c(const std::vector<Vector3> &lines, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
494 void draw_line(const Vector3 &a, const Vector3 &b, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
495
507 void draw_ray(const Vector3 &origin, const Vector3 &direction, const real_t &length, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
508
518 void draw_lines(const PackedVector3Array &lines, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
519
531 void draw_line_path(const PackedVector3Array &path, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
532
533#pragma endregion // Normal
534
535#pragma region Arrows
536
544 void draw_arrowhead(const Transform3D &transform, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
545
558 void draw_arrow(const Vector3 &a, const Vector3 &b, const Color &color = Colors::empty_color, const real_t &arrow_size = 0.5f, const bool &is_absolute_size = false, const real_t &duration = 0) FAKE_FUNC_IMPL;
559
571 void draw_arrow_ray(const Vector3 &origin, const Vector3 &direction, const real_t &length, const Color &color = Colors::empty_color, const real_t &arrow_size = 0.5f, const bool &is_absolute_size = false, const real_t &duration = 0) FAKE_FUNC_IMPL;
572
584 void draw_arrow_path(const PackedVector3Array &path, const Color &color = Colors::empty_color, const real_t &arrow_size = 0.75f, const bool &is_absolute_size = true, const real_t &duration = 0) FAKE_FUNC_IMPL;
585
586#pragma endregion // Arrows
587#pragma region Points
588
603 void draw_point_path(const PackedVector3Array &path, const PointType type = PointType::POINT_TYPE_SQUARE, const real_t &size = 0.25f, const Color &points_color = Colors::empty_color, const Color &lines_color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
604
605#pragma endregion // Points
606#pragma endregion // Lines
607
608#pragma region Misc
609
621 void draw_points(const PackedVector3Array &points, const PointType type = PointType::POINT_TYPE_SQUARE, const real_t &size = 0.25f, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
622
631 void draw_square(const Vector3 &position, const real_t &size = 0.2f, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
632
645 void draw_plane(const Plane &plane, const Color &color = Colors::empty_color, const Vector3 &anchor_point = Vector3(INFINITY, INFINITY, INFINITY), const real_t &duration = 0) FAKE_FUNC_IMPL;
646
656 void draw_position(const Transform3D &transform, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
657
670 void draw_gizmo(const Transform3D &transform, const Color &color = Colors::empty_color, const bool &is_centered = false, const real_t &duration = 0) FAKE_FUNC_IMPL;
671
685 void draw_grid(const Vector3 &origin, const Vector3 &x_size, const Vector3 &y_size, const Vector2i &subdivision, const Color &color = Colors::empty_color, const bool &is_centered = true, const real_t &duration = 0) FAKE_FUNC_IMPL;
686
698 void draw_grid_xf(const Transform3D &transform, const Vector2i &p_subdivision, const Color &color = Colors::empty_color, const bool &is_centered = true, const real_t &duration = 0) FAKE_FUNC_IMPL;
699
700#pragma region Camera Frustum
701
703 void draw_camera_frustum_planes_c(const std::array<Plane, 6> &planes, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
713 void draw_camera_frustum(const class godot::Camera3D *camera, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
714
722 void draw_camera_frustum_planes(const Array &camera_frustum, const Color &color = Colors::empty_color, const real_t &duration = 0) FAKE_FUNC_IMPL;
723
724#pragma endregion // Camera Frustum
725
726#pragma endregion // Misc
727#pragma endregion // Exposed Draw Methods
728
729#undef FAKE_FUNC_IMPL
730};
731
732VARIANT_ENUM_CAST(DebugDraw3D::PointType);
This is a class for storing part of the DebugDraw3D configuration.
Definition config_3d.h:17
This class is used to override scope parameters for DebugDraw3D.
Definition config_scope_3d.h:58
You can get statistics about 3D rendering from this class.
Definition stats_3d.h:24
Singleton class for calling debugging 3D methods.
Definition debug_draw_3d.h:116
void draw_line(const Vector3 &a, const Vector3 &b, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_points(const PackedVector3Array &points, const PointType type=PointType::POINT_TYPE_SQUARE, const real_t &size=0.25f, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_camera_frustum_planes(const Array &camera_frustum, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_square(const Vector3 &position, const real_t &size=0.2f, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_cylinder_ab(const Vector3 &a, const Vector3 &b, const real_t &radius=0.5f, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_grid_xf(const Transform3D &transform, const Vector2i &p_subdivision, const Color &color=Colors::empty_color, const bool &is_centered=true, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_arrow_ray(const Vector3 &origin, const Vector3 &direction, const real_t &length, const Color &color=Colors::empty_color, const real_t &arrow_size=0.5f, const bool &is_absolute_size=false, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_box_ab(const Vector3 &a, const Vector3 &b, const Vector3 &up, const Color &color=Colors::empty_color, const bool &is_ab_diagonal=true, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_camera_frustum(const class godot::Camera3D *camera, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void set_debug_enabled(const bool &state)
void draw_aabb(const AABB &aabb, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void clear_all()
void draw_cylinder(const Transform3D &transform, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_ray(const Vector3 &origin, const Vector3 &direction, const real_t &length, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void regenerate_geometry_meshes()
Ref< DebugDraw3DConfig > get_config() const
void draw_line_hit(const Vector3 &start, const Vector3 &end, const Vector3 &hit, const bool &is_hit, const real_t &hit_size=0.25f, const Color &hit_color=Colors::empty_color, const Color &after_hit_color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_line_path(const PackedVector3Array &path, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_sphere(const Vector3 &position, const real_t &radius=0.5f, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_aabb_ab(const Vector3 &a, const Vector3 &b, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
PointType
Definition debug_draw_3d.h:130
void draw_arrow_path(const PackedVector3Array &path, const Color &color=Colors::empty_color, const real_t &arrow_size=0.75f, const bool &is_absolute_size=true, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_box(const Vector3 &position, const Quaternion &rotation, const Vector3 &size, const Color &color=Colors::empty_color, const bool &is_box_centered=false, const real_t &duration=0) FAKE_FUNC_IMPL
Ref< DebugDraw3DScopeConfig > new_scoped_config()
Color get_empty_color() const
Ref< DebugDraw3DStats > get_render_stats()
Ref< DebugDraw3DScopeConfig > scoped_config() override
void draw_grid(const Vector3 &origin, const Vector3 &x_size, const Vector3 &y_size, const Vector2i &subdivision, const Color &color=Colors::empty_color, const bool &is_centered=true, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_gizmo(const Transform3D &transform, const Color &color=Colors::empty_color, const bool &is_centered=false, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_line_hit_offset(const Vector3 &start, const Vector3 &end, const bool &is_hit, const real_t &unit_offset_of_hit=0.5f, const real_t &hit_size=0.25f, const Color &hit_color=Colors::empty_color, const Color &after_hit_color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_plane(const Plane &plane, const Color &color=Colors::empty_color, const Vector3 &anchor_point=Vector3(INFINITY, INFINITY, INFINITY), const real_t &duration=0) FAKE_FUNC_IMPL
void draw_lines(const PackedVector3Array &lines, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_position(const Transform3D &transform, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_sphere_xf(const Transform3D &transform, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_arrow(const Vector3 &a, const Vector3 &b, const Color &color=Colors::empty_color, const real_t &arrow_size=0.5f, const bool &is_absolute_size=false, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_box_xf(const Transform3D &transform, const Color &color=Colors::empty_color, const bool &is_box_centered=true, const real_t &duration=0) FAKE_FUNC_IMPL
static DebugDraw3D * get_singleton()
Definition debug_draw_3d.h:239
void draw_arrowhead(const Transform3D &transform, const Color &color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
void draw_point_path(const PackedVector3Array &path, const PointType type=PointType::POINT_TYPE_SQUARE, const real_t &size=0.25f, const Color &points_color=Colors::empty_color, const Color &lines_color=Colors::empty_color, const real_t &duration=0) FAKE_FUNC_IMPL
Ref< DebugDraw3DStats > get_render_stats_for_world(Viewport *viewport)
void set_config(Ref< DebugDraw3DConfig > cfg)
The main singleton class that handles DebugDraw2D and DebugDraw3D.
Definition debug_draw_manager.h:59