Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/editor/debugger/editor_performance_profiler.h
9903 views
1
/**************************************************************************/
2
/* editor_performance_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
31
#pragma once
32
33
#include "core/templates/hash_map.h"
34
#include "main/performance.h"
35
#include "scene/gui/control.h"
36
#include "scene/gui/label.h"
37
#include "scene/gui/split_container.h"
38
#include "scene/gui/tree.h"
39
40
class EditorPerformanceProfiler : public HSplitContainer {
41
GDCLASS(EditorPerformanceProfiler, HSplitContainer);
42
43
private:
44
class Monitor {
45
public:
46
String name;
47
String base;
48
List<float> history;
49
float max = 0.0f;
50
TreeItem *item = nullptr;
51
Performance::MonitorType type = Performance::MONITOR_TYPE_QUANTITY;
52
int frame_index = 0;
53
54
Monitor() {}
55
Monitor(const String &p_name, const String &p_base, int p_frame_index, Performance::MonitorType p_type, TreeItem *p_item);
56
void update_value(float p_value);
57
void reset();
58
};
59
60
HashMap<StringName, Monitor> monitors;
61
62
HashMap<StringName, TreeItem *> base_map;
63
Tree *monitor_tree = nullptr;
64
Control *monitor_draw = nullptr;
65
Label *info_message = nullptr;
66
StringName marker_key;
67
int marker_frame = 0;
68
const int MARGIN = 4;
69
const int POINT_SEPARATION = 5;
70
const int MARKER_MARGIN = 2;
71
72
static String _create_label(float p_value, Performance::MonitorType p_type);
73
void _monitor_select();
74
void _monitor_draw();
75
void _build_monitor_tree();
76
TreeItem *_get_monitor_base(const StringName &p_base_name);
77
TreeItem *_create_monitor_item(const StringName &p_monitor_name, TreeItem *p_base);
78
void _marker_input(const Ref<InputEvent> &p_event);
79
80
protected:
81
void _notification(int p_what);
82
83
public:
84
void reset();
85
void update_monitors(const Vector<StringName> &p_names);
86
void add_profile_frame(const Vector<float> &p_values);
87
List<float> *get_monitor_data(const StringName &p_name);
88
EditorPerformanceProfiler();
89
};
90
91