summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-08-28 12:08:37 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-08-28 12:08:37 +0200
commit00d1fafc77cb36c72183cc18187819e28c14ac59 (patch)
treef3e659297dc13a07f3cd8c49573595376ff236c1
parentb5b87b38adb677f7129769b57fe97b71b503ef77 (diff)
parent2270f4917a6a8f1ca14e4d142dda38edb6c64944 (diff)
downloadredot-engine-00d1fafc77cb36c72183cc18187819e28c14ac59.tar.gz
Merge pull request #81022 from YuriSizov/editor-run-scripts-valid-and-toasty
Improve warnings when running scripts in the editor
-rw-r--r--editor/plugins/canvas_item_editor_plugin.cpp2
-rw-r--r--editor/plugins/script_editor_plugin.cpp33
2 files changed, 25 insertions, 10 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp
index 735217bea6..832d0c204d 100644
--- a/editor/plugins/canvas_item_editor_plugin.cpp
+++ b/editor/plugins/canvas_item_editor_plugin.cpp
@@ -254,7 +254,7 @@ bool CanvasItemEditor::_is_node_movable(const Node *p_node, bool p_popup_warning
}
if (Object::cast_to<Control>(p_node) && Object::cast_to<Container>(p_node->get_parent())) {
if (p_popup_warning) {
- EditorToaster::get_singleton()->popup_str("Children of a container get their position and size determined only by their parent.", EditorToaster::SEVERITY_WARNING);
+ EditorToaster::get_singleton()->popup_str(TTR("Children of a container get their position and size determined only by their parent."), EditorToaster::SEVERITY_WARNING);
}
return false;
}
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index d6a382f9dd..39f4e4eb6a 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -52,6 +52,7 @@
#include "editor/find_in_files.h"
#include "editor/gui/editor_file_dialog.h"
#include "editor/gui/editor_run_bar.h"
+#include "editor/gui/editor_toaster.h"
#include "editor/inspector_dock.h"
#include "editor/node_dock.h"
#include "editor/plugins/shader_editor_plugin.h"
@@ -1347,27 +1348,40 @@ void ScriptEditor::_menu_option(int p_option) {
scr->reload(true);
} break;
+
case FILE_RUN: {
Ref<Script> scr = current->get_edited_resource();
if (scr == nullptr || scr.is_null()) {
- EditorNode::get_singleton()->show_warning(TTR("Can't obtain the script for running."));
+ EditorToaster::get_singleton()->popup_str(TTR("Cannot run the edited file because it's not a script."), EditorToaster::SEVERITY_WARNING);
break;
}
- if (!scr->is_tool()) {
- EditorNode::get_singleton()->show_warning(TTR("Script is not in tool mode, will not be able to run."));
- return;
- }
current->apply_code();
- Error err = scr->reload(false); //hard reload script before running always
- if (err != OK) {
- EditorNode::get_singleton()->show_warning(TTR("Script failed reloading, check console for errors."));
+ Error err = scr->reload(false); // Always hard reload the script before running.
+ if (err != OK || !scr->is_valid()) {
+ EditorToaster::get_singleton()->popup_str(TTR("Cannot run the script because it contains errors, check the output log."), EditorToaster::SEVERITY_WARNING);
return;
}
+ // Perform additional checks on the script to evaluate if it's runnable.
+
+ bool is_runnable = true;
if (!ClassDB::is_parent_class(scr->get_instance_base_type(), "EditorScript")) {
- EditorNode::get_singleton()->show_warning(TTR("To run this script, it must inherit EditorScript and be set to tool mode."));
+ is_runnable = false;
+
+ EditorToaster::get_singleton()->popup_str(TTR("Cannot run the script because it doesn't extend EditorScript."), EditorToaster::SEVERITY_WARNING);
+ }
+ if (!scr->is_tool()) {
+ is_runnable = false;
+
+ if (scr->get_class() == "GDScript") {
+ EditorToaster::get_singleton()->popup_str(TTR("Cannot run the script because it's not a tool script (add the @tool annotation at the top)."), EditorToaster::SEVERITY_WARNING);
+ } else {
+ EditorToaster::get_singleton()->popup_str(TTR("Cannot run the script because it's not a tool script."), EditorToaster::SEVERITY_WARNING);
+ }
+ }
+ if (!is_runnable) {
return;
}
@@ -1375,6 +1389,7 @@ void ScriptEditor::_menu_option(int p_option) {
es->set_script(scr);
es->run();
} break;
+
case FILE_CLOSE: {
if (current->is_unsaved()) {
_ask_close_current_unsaved_tab(current);