2019-09-01 18:38:58 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* editor_network_profiler.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2019-09-01 18:38:58 +02:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
#include "editor_network_profiler.h"
|
|
|
|
|
|
|
|
#include "core/os/os.h"
|
2020-03-08 12:21:08 +01:00
|
|
|
#include "editor/editor_scale.h"
|
|
|
|
#include "editor/editor_settings.h"
|
2019-09-01 18:38:58 +02:00
|
|
|
|
|
|
|
void EditorNetworkProfiler::_bind_methods() {
|
|
|
|
ADD_SIGNAL(MethodInfo("enable_profiling", PropertyInfo(Variant::BOOL, "enable")));
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorNetworkProfiler::_notification(int p_what) {
|
2022-02-16 00:52:32 +01:00
|
|
|
switch (p_what) {
|
|
|
|
case NOTIFICATION_ENTER_TREE:
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
|
|
activate->set_icon(get_theme_icon(SNAME("Play"), SNAME("EditorIcons")));
|
|
|
|
clear_button->set_icon(get_theme_icon(SNAME("Clear"), SNAME("EditorIcons")));
|
|
|
|
incoming_bandwidth_text->set_right_icon(get_theme_icon(SNAME("ArrowDown"), SNAME("EditorIcons")));
|
|
|
|
outgoing_bandwidth_text->set_right_icon(get_theme_icon(SNAME("ArrowUp"), SNAME("EditorIcons")));
|
|
|
|
|
|
|
|
// This needs to be done here to set the faded color when the profiler is first opened
|
|
|
|
incoming_bandwidth_text->add_theme_color_override("font_uneditable_color", get_theme_color(SNAME("font_color"), SNAME("Editor")) * Color(1, 1, 1, 0.5));
|
|
|
|
outgoing_bandwidth_text->add_theme_color_override("font_uneditable_color", get_theme_color(SNAME("font_color"), SNAME("Editor")) * Color(1, 1, 1, 0.5));
|
|
|
|
} break;
|
2019-09-01 18:38:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorNetworkProfiler::_update_frame() {
|
|
|
|
counters_display->clear();
|
|
|
|
|
|
|
|
TreeItem *root = counters_display->create_item();
|
|
|
|
|
2022-02-06 02:29:08 +01:00
|
|
|
for (const KeyValue<ObjectID, SceneDebugger::RPCNodeInfo> &E : nodes_data) {
|
2019-09-01 18:38:58 +02:00
|
|
|
TreeItem *node = counters_display->create_item(root);
|
|
|
|
|
|
|
|
for (int j = 0; j < counters_display->get_columns(); ++j) {
|
2021-11-25 03:58:47 +01:00
|
|
|
node->set_text_alignment(j, j > 0 ? HORIZONTAL_ALIGNMENT_RIGHT : HORIZONTAL_ALIGNMENT_LEFT);
|
2019-09-01 18:38:58 +02:00
|
|
|
}
|
|
|
|
|
2021-08-09 22:13:42 +02:00
|
|
|
node->set_text(0, E.value.node_path);
|
|
|
|
node->set_text(1, E.value.incoming_rpc == 0 ? "-" : itos(E.value.incoming_rpc));
|
2022-02-06 02:29:08 +01:00
|
|
|
node->set_text(2, E.value.outgoing_rpc == 0 ? "-" : itos(E.value.outgoing_rpc));
|
2019-09-01 18:38:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorNetworkProfiler::_activate_pressed() {
|
|
|
|
if (activate->is_pressed()) {
|
2021-07-17 23:22:52 +02:00
|
|
|
activate->set_icon(get_theme_icon(SNAME("Stop"), SNAME("EditorIcons")));
|
2019-09-01 18:38:58 +02:00
|
|
|
activate->set_text(TTR("Stop"));
|
|
|
|
} else {
|
2021-07-17 23:22:52 +02:00
|
|
|
activate->set_icon(get_theme_icon(SNAME("Play"), SNAME("EditorIcons")));
|
2019-09-01 18:38:58 +02:00
|
|
|
activate->set_text(TTR("Start"));
|
|
|
|
}
|
2021-07-17 23:22:52 +02:00
|
|
|
emit_signal(SNAME("enable_profiling"), activate->is_pressed());
|
2019-09-01 18:38:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void EditorNetworkProfiler::_clear_pressed() {
|
|
|
|
nodes_data.clear();
|
|
|
|
set_bandwidth(0, 0);
|
|
|
|
if (frame_delay->is_stopped()) {
|
|
|
|
frame_delay->set_wait_time(0.1);
|
|
|
|
frame_delay->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-06 02:29:08 +01:00
|
|
|
void EditorNetworkProfiler::add_node_frame_data(const SceneDebugger::RPCNodeInfo p_frame) {
|
2019-09-01 18:38:58 +02:00
|
|
|
if (!nodes_data.has(p_frame.node)) {
|
|
|
|
nodes_data.insert(p_frame.node, p_frame);
|
|
|
|
} else {
|
|
|
|
nodes_data[p_frame.node].incoming_rpc += p_frame.incoming_rpc;
|
|
|
|
nodes_data[p_frame.node].outgoing_rpc += p_frame.outgoing_rpc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frame_delay->is_stopped()) {
|
|
|
|
frame_delay->set_wait_time(0.1);
|
|
|
|
frame_delay->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorNetworkProfiler::set_bandwidth(int p_incoming, int p_outgoing) {
|
2019-09-05 19:39:58 +02:00
|
|
|
incoming_bandwidth_text->set_text(vformat(TTR("%s/s"), String::humanize_size(p_incoming)));
|
|
|
|
outgoing_bandwidth_text->set_text(vformat(TTR("%s/s"), String::humanize_size(p_outgoing)));
|
2019-09-21 15:16:15 +02:00
|
|
|
|
|
|
|
// Make labels more prominent when the bandwidth is greater than 0 to attract user attention
|
2020-03-12 13:37:40 +01:00
|
|
|
incoming_bandwidth_text->add_theme_color_override(
|
2020-12-08 14:11:45 +01:00
|
|
|
"font_uneditable_color",
|
2021-07-17 23:22:52 +02:00
|
|
|
get_theme_color(SNAME("font_color"), SNAME("Editor")) * Color(1, 1, 1, p_incoming > 0 ? 1 : 0.5));
|
2020-03-12 13:37:40 +01:00
|
|
|
outgoing_bandwidth_text->add_theme_color_override(
|
2020-12-08 14:11:45 +01:00
|
|
|
"font_uneditable_color",
|
2021-07-17 23:22:52 +02:00
|
|
|
get_theme_color(SNAME("font_color"), SNAME("Editor")) * Color(1, 1, 1, p_outgoing > 0 ? 1 : 0.5));
|
2019-09-01 18:38:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool EditorNetworkProfiler::is_profiling() {
|
|
|
|
return activate->is_pressed();
|
|
|
|
}
|
|
|
|
|
|
|
|
EditorNetworkProfiler::EditorNetworkProfiler() {
|
|
|
|
HBoxContainer *hb = memnew(HBoxContainer);
|
2020-03-12 13:37:40 +01:00
|
|
|
hb->add_theme_constant_override("separation", 8 * EDSCALE);
|
2019-09-01 18:38:58 +02:00
|
|
|
add_child(hb);
|
|
|
|
|
|
|
|
activate = memnew(Button);
|
|
|
|
activate->set_toggle_mode(true);
|
|
|
|
activate->set_text(TTR("Start"));
|
2020-02-21 18:28:45 +01:00
|
|
|
activate->connect("pressed", callable_mp(this, &EditorNetworkProfiler::_activate_pressed));
|
2019-09-01 18:38:58 +02:00
|
|
|
hb->add_child(activate);
|
|
|
|
|
|
|
|
clear_button = memnew(Button);
|
|
|
|
clear_button->set_text(TTR("Clear"));
|
2020-02-21 18:28:45 +01:00
|
|
|
clear_button->connect("pressed", callable_mp(this, &EditorNetworkProfiler::_clear_pressed));
|
2019-09-01 18:38:58 +02:00
|
|
|
hb->add_child(clear_button);
|
|
|
|
|
|
|
|
hb->add_spacer();
|
|
|
|
|
|
|
|
Label *lb = memnew(Label);
|
2019-09-21 15:16:15 +02:00
|
|
|
lb->set_text(TTR("Down"));
|
2019-09-01 18:38:58 +02:00
|
|
|
hb->add_child(lb);
|
|
|
|
|
|
|
|
incoming_bandwidth_text = memnew(LineEdit);
|
|
|
|
incoming_bandwidth_text->set_editable(false);
|
2019-09-21 15:16:15 +02:00
|
|
|
incoming_bandwidth_text->set_custom_minimum_size(Size2(120, 0) * EDSCALE);
|
2021-11-25 03:58:47 +01:00
|
|
|
incoming_bandwidth_text->set_horizontal_alignment(HORIZONTAL_ALIGNMENT_RIGHT);
|
2019-09-01 18:38:58 +02:00
|
|
|
hb->add_child(incoming_bandwidth_text);
|
|
|
|
|
2019-09-21 15:16:15 +02:00
|
|
|
Control *down_up_spacer = memnew(Control);
|
|
|
|
down_up_spacer->set_custom_minimum_size(Size2(30, 0) * EDSCALE);
|
|
|
|
hb->add_child(down_up_spacer);
|
|
|
|
|
2019-09-01 18:38:58 +02:00
|
|
|
lb = memnew(Label);
|
2019-09-21 15:16:15 +02:00
|
|
|
lb->set_text(TTR("Up"));
|
2019-09-01 18:38:58 +02:00
|
|
|
hb->add_child(lb);
|
|
|
|
|
|
|
|
outgoing_bandwidth_text = memnew(LineEdit);
|
|
|
|
outgoing_bandwidth_text->set_editable(false);
|
2019-09-21 15:16:15 +02:00
|
|
|
outgoing_bandwidth_text->set_custom_minimum_size(Size2(120, 0) * EDSCALE);
|
2021-11-25 03:58:47 +01:00
|
|
|
outgoing_bandwidth_text->set_horizontal_alignment(HORIZONTAL_ALIGNMENT_RIGHT);
|
2019-09-01 18:38:58 +02:00
|
|
|
hb->add_child(outgoing_bandwidth_text);
|
|
|
|
|
2019-09-21 15:16:15 +02:00
|
|
|
// Set initial texts in the incoming/outgoing bandwidth labels
|
|
|
|
set_bandwidth(0, 0);
|
|
|
|
|
2019-09-01 18:38:58 +02:00
|
|
|
counters_display = memnew(Tree);
|
|
|
|
counters_display->set_custom_minimum_size(Size2(300, 0) * EDSCALE);
|
|
|
|
counters_display->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
counters_display->set_hide_folding(true);
|
|
|
|
counters_display->set_hide_root(true);
|
2022-02-06 02:29:08 +01:00
|
|
|
counters_display->set_columns(3);
|
2019-09-01 18:38:58 +02:00
|
|
|
counters_display->set_column_titles_visible(true);
|
|
|
|
counters_display->set_column_title(0, TTR("Node"));
|
|
|
|
counters_display->set_column_expand(0, true);
|
2021-07-04 05:13:28 +02:00
|
|
|
counters_display->set_column_clip_content(0, true);
|
2021-06-28 15:40:56 +02:00
|
|
|
counters_display->set_column_custom_minimum_width(0, 60 * EDSCALE);
|
2019-09-01 18:38:58 +02:00
|
|
|
counters_display->set_column_title(1, TTR("Incoming RPC"));
|
|
|
|
counters_display->set_column_expand(1, false);
|
2021-07-04 05:13:28 +02:00
|
|
|
counters_display->set_column_clip_content(1, true);
|
2021-06-28 15:40:56 +02:00
|
|
|
counters_display->set_column_custom_minimum_width(1, 120 * EDSCALE);
|
2022-02-06 02:29:08 +01:00
|
|
|
counters_display->set_column_title(2, TTR("Outgoing RPC"));
|
2019-09-01 18:38:58 +02:00
|
|
|
counters_display->set_column_expand(2, false);
|
2021-07-04 05:13:28 +02:00
|
|
|
counters_display->set_column_clip_content(2, true);
|
2021-06-28 15:40:56 +02:00
|
|
|
counters_display->set_column_custom_minimum_width(2, 120 * EDSCALE);
|
2019-09-01 18:38:58 +02:00
|
|
|
add_child(counters_display);
|
|
|
|
|
|
|
|
frame_delay = memnew(Timer);
|
|
|
|
frame_delay->set_wait_time(0.1);
|
|
|
|
frame_delay->set_one_shot(true);
|
|
|
|
add_child(frame_delay);
|
2020-02-21 18:28:45 +01:00
|
|
|
frame_delay->connect("timeout", callable_mp(this, &EditorNetworkProfiler::_update_frame));
|
2019-09-01 18:38:58 +02:00
|
|
|
}
|