editor_profiler.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /**************************************************************************/
  2. /* editor_profiler.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. #pragma once
  31. #include "scene/gui/box_container.h"
  32. #include "scene/gui/button.h"
  33. #include "scene/gui/check_button.h"
  34. #include "scene/gui/label.h"
  35. #include "scene/gui/option_button.h"
  36. #include "scene/gui/spin_box.h"
  37. #include "scene/gui/split_container.h"
  38. #include "scene/gui/texture_rect.h"
  39. #include "scene/gui/tree.h"
  40. class ImageTexture;
  41. class EditorProfiler : public VBoxContainer {
  42. GDCLASS(EditorProfiler, VBoxContainer);
  43. public:
  44. struct Metric {
  45. bool valid = false;
  46. int frame_number = 0;
  47. float frame_time = 0;
  48. float process_time = 0;
  49. float physics_time = 0;
  50. float physics_frame_time = 0;
  51. struct Category {
  52. StringName signature;
  53. String name;
  54. float total_time = 0; //total for category
  55. struct Item {
  56. StringName signature;
  57. String name;
  58. String script;
  59. int line = 0;
  60. float self = 0;
  61. float total = 0;
  62. float internal = 0;
  63. int calls = 0;
  64. };
  65. Vector<Item> items;
  66. };
  67. Vector<Category> categories;
  68. HashMap<StringName, Category *> category_ptrs;
  69. HashMap<StringName, Category::Item *> item_ptrs;
  70. };
  71. enum DisplayMode {
  72. DISPLAY_FRAME_TIME,
  73. DISPLAY_AVERAGE_TIME,
  74. DISPLAY_FRAME_PERCENT,
  75. DISPLAY_PHYSICS_FRAME_PERCENT,
  76. };
  77. enum DisplayTime {
  78. DISPLAY_TOTAL_TIME,
  79. DISPLAY_SELF_TIME,
  80. };
  81. private:
  82. struct ThemeCache {
  83. Color seek_line_color;
  84. Color seek_line_hover_color;
  85. } theme_cache;
  86. Button *activate = nullptr;
  87. Button *clear_button = nullptr;
  88. TextureRect *graph = nullptr;
  89. Ref<ImageTexture> graph_texture;
  90. Vector<uint8_t> graph_image;
  91. float graph_zoom = 0.0f;
  92. float pan_accumulator = 0.0f;
  93. int zoom_center = -1;
  94. Tree *variables = nullptr;
  95. HSplitContainer *h_split = nullptr;
  96. HashSet<StringName> plot_sigs;
  97. OptionButton *display_mode = nullptr;
  98. OptionButton *display_time = nullptr;
  99. CheckButton *display_internal_profiles = nullptr;
  100. SpinBox *cursor_metric_edit = nullptr;
  101. Vector<Metric> frame_metrics;
  102. int total_metrics = 0;
  103. int last_metric = -1;
  104. bool updating_frame = false;
  105. int hover_metric = -1;
  106. float graph_height = 1.0f;
  107. bool seeking = false;
  108. Timer *frame_delay = nullptr;
  109. Timer *plot_delay = nullptr;
  110. void _update_button_text();
  111. void _update_frame();
  112. void _activate_pressed();
  113. void _clear_pressed();
  114. void _autostart_toggled(bool p_toggled_on);
  115. void _internal_profiles_pressed();
  116. String _get_time_as_text(const Metric &m, float p_time, int p_calls);
  117. void _make_metric_ptrs(Metric &m);
  118. void _item_edited();
  119. void _update_plot();
  120. void _graph_tex_mouse_exit();
  121. void _graph_tex_draw();
  122. void _graph_tex_input(const Ref<InputEvent> &p_ev);
  123. Color _get_color_from_signature(const StringName &p_signature) const;
  124. int _get_zoom_left_border() const;
  125. void _cursor_metric_changed(double);
  126. void _combo_changed(int);
  127. Metric _get_frame_metric(int index);
  128. protected:
  129. void _notification(int p_what);
  130. static void _bind_methods();
  131. public:
  132. void add_frame_metric(const Metric &p_metric, bool p_final = false);
  133. void set_enabled(bool p_enable, bool p_clear = true);
  134. void set_profiling(bool p_pressed);
  135. bool is_profiling();
  136. bool is_seeking() { return seeking; }
  137. void disable_seeking();
  138. void clear();
  139. Vector<Vector<String>> get_data_as_csv() const;
  140. EditorProfiler();
  141. };