Skip to content

Commit

Permalink
Fix profiler being disabled at wrong times
Browse files Browse the repository at this point in the history
Co-authored by: Will Whitty <tavurth@gmail.com>
  • Loading branch information
halgriffiths committed Sep 13, 2022
1 parent 0f62e35 commit 026e081
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
22 changes: 19 additions & 3 deletions editor/debugger/editor_profiler.cpp
Expand Up @@ -104,6 +104,10 @@ void EditorProfiler::clear() {
updating_frame = false;
hover_metric = -1;
seeking = false;

// Ensure button text (start, stop) is correct
_set_button_text();
emit_signal(SNAME("enable_profiling"), activate->is_pressed());
}

static String _get_percent_txt(float p_value, float p_total) {
Expand Down Expand Up @@ -374,15 +378,23 @@ void EditorProfiler::_update_frame() {
updating_frame = false;
}

void EditorProfiler::_activate_pressed() {
void EditorProfiler::_set_button_text() {
if (activate->is_pressed()) {
activate->set_icon(get_theme_icon(SNAME("Stop"), SNAME("EditorIcons")));
activate->set_text(TTR("Stop"));
_clear_pressed();
} else {
activate->set_icon(get_theme_icon(SNAME("Play"), SNAME("EditorIcons")));
activate->set_text(TTR("Start"));
}
}

void EditorProfiler::_activate_pressed() {
_set_button_text();

if (activate->is_pressed()) {
_clear_pressed();
}

emit_signal(SNAME("enable_profiling"), activate->is_pressed());
}

Expand Down Expand Up @@ -499,8 +511,12 @@ void EditorProfiler::_bind_methods() {
ADD_SIGNAL(MethodInfo("break_request"));
}

void EditorProfiler::set_enabled(bool p_enable) {
void EditorProfiler::set_enabled(bool p_enable, bool p_clear) {
activate->set_pressed(false);
activate->set_disabled(!p_enable);
if (p_clear) {
clear();
}
}

bool EditorProfiler::is_profiling() {
Expand Down
3 changes: 2 additions & 1 deletion editor/debugger/editor_profiler.h
Expand Up @@ -122,6 +122,7 @@ class EditorProfiler : public VBoxContainer {
Timer *frame_delay = nullptr;
Timer *plot_delay = nullptr;

void _set_button_text();
void _update_frame();

void _activate_pressed();
Expand Down Expand Up @@ -153,7 +154,7 @@ class EditorProfiler : public VBoxContainer {

public:
void add_frame_metric(const Metric &p_metric, bool p_final = false);
void set_enabled(bool p_enable);
void set_enabled(bool p_enable, bool p_clear = true);
bool is_profiling();
bool is_seeking() { return seeking; }
void disable_seeking();
Expand Down
9 changes: 6 additions & 3 deletions editor/debugger/script_editor_debugger.cpp
Expand Up @@ -52,7 +52,6 @@
#include "editor/plugins/node_3d_editor_plugin.h"
#include "main/performance.h"
#include "scene/3d/camera_3d.h"
#include "scene/debugger/scene_debugger.h"
#include "scene/gui/dialogs.h"
#include "scene/gui/label.h"
#include "scene/gui/line_edit.h"
Expand Down Expand Up @@ -317,7 +316,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
if (!error.is_empty()) {
tabs->set_current_tab(0);
}
profiler->set_enabled(false);
profiler->set_enabled(false, false);
inspector->clear_cache(); // Take a chance to force remote objects update.

} else if (p_msg == "debug_exit") {
Expand All @@ -327,7 +326,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
_update_buttons_state();
_set_reason_text(TTR("Execution resumed."), MESSAGE_SUCCESS);
emit_signal(SNAME("breaked"), false, false, "", false);
profiler->set_enabled(true);
profiler->set_enabled(true, false);
profiler->disable_seeking();
} else if (p_msg == "set_pid") {
ERR_FAIL_COND(p_data.size() < 1);
Expand Down Expand Up @@ -916,6 +915,8 @@ void ScriptEditorDebugger::start(Ref<RemoteDebuggerPeer> p_peer) {
_clear_errors_list();
stop();

profiler->set_enabled(true, true);

peer = p_peer;
ERR_FAIL_COND(p_peer.is_null());

Expand Down Expand Up @@ -971,6 +972,8 @@ void ScriptEditorDebugger::stop() {
res_path_cache.clear();
profiler_signature.clear();

profiler->set_enabled(true, false);

inspector->edit(nullptr);
_update_buttons_state();
}
Expand Down

0 comments on commit 026e081

Please sign in to comment.