editor_profiler.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*************************************************************************/
  2. /* editor_profiler.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  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 EDITOR_PROFILER_H
  31. #define EDITOR_PROFILER_H
  32. #include "scene/gui/box_container.h"
  33. #include "scene/gui/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 EditorProfiler : public VBoxContainer {
  41. GDCLASS(EditorProfiler, VBoxContainer);
  42. public:
  43. struct Metric {
  44. bool valid = false;
  45. int frame_number = 0;
  46. float frame_time = 0;
  47. float process_time = 0;
  48. float physics_time = 0;
  49. float physics_frame_time = 0;
  50. struct Category {
  51. StringName signature;
  52. String name;
  53. float total_time = 0; //total for category
  54. struct Item {
  55. StringName signature;
  56. String name;
  57. String script;
  58. int line = 0;
  59. float self = 0;
  60. float total = 0;
  61. int calls = 0;
  62. };
  63. Vector<Item> items;
  64. };
  65. Vector<Category> categories;
  66. HashMap<StringName, Category *> category_ptrs;
  67. HashMap<StringName, Category::Item *> item_ptrs;
  68. };
  69. enum DisplayMode {
  70. DISPLAY_FRAME_TIME,
  71. DISPLAY_AVERAGE_TIME,
  72. DISPLAY_FRAME_PERCENT,
  73. DISPLAY_PHYSICS_FRAME_PERCENT,
  74. };
  75. enum DisplayTime {
  76. DISPLAY_TOTAL_TIME,
  77. DISPLAY_SELF_TIME,
  78. };
  79. private:
  80. Button *activate = nullptr;
  81. Button *clear_button = nullptr;
  82. TextureRect *graph = nullptr;
  83. Ref<ImageTexture> graph_texture;
  84. Vector<uint8_t> graph_image;
  85. Tree *variables = nullptr;
  86. HSplitContainer *h_split = nullptr;
  87. HashSet<StringName> plot_sigs;
  88. OptionButton *display_mode = nullptr;
  89. OptionButton *display_time = nullptr;
  90. SpinBox *cursor_metric_edit = nullptr;
  91. Vector<Metric> frame_metrics;
  92. int total_metrics = 0;
  93. int last_metric = -1;
  94. int max_functions = 0;
  95. bool updating_frame = false;
  96. int hover_metric = -1;
  97. float graph_height = 1.0f;
  98. bool seeking = false;
  99. Timer *frame_delay = nullptr;
  100. Timer *plot_delay = nullptr;
  101. void _update_frame();
  102. void _activate_pressed();
  103. void _clear_pressed();
  104. String _get_time_as_text(const Metric &m, float p_time, int p_calls);
  105. void _make_metric_ptrs(Metric &m);
  106. void _item_edited();
  107. void _update_plot();
  108. void _graph_tex_mouse_exit();
  109. void _graph_tex_draw();
  110. void _graph_tex_input(const Ref<InputEvent> &p_ev);
  111. Color _get_color_from_signature(const StringName &p_signature) const;
  112. void _cursor_metric_changed(double);
  113. void _combo_changed(int);
  114. Metric _get_frame_metric(int index);
  115. protected:
  116. void _notification(int p_what);
  117. static void _bind_methods();
  118. public:
  119. void add_frame_metric(const Metric &p_metric, bool p_final = false);
  120. void set_enabled(bool p_enable);
  121. bool is_profiling();
  122. bool is_seeking() { return seeking; }
  123. void disable_seeking();
  124. void clear();
  125. Vector<Vector<String>> get_data_as_csv() const;
  126. EditorProfiler();
  127. };
  128. #endif // EDITOR_PROFILER_H