summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-08-02 12:19:11 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-08-02 12:19:11 +0200
commit93c69a2db620224380ad3dac4b7d8da4b17e5002 (patch)
treeed74371ba28de2391d9b0f581ad6711b24bb2ee3
parent3e958cfa8ddae44fc9440ae4841308db464af4d2 (diff)
parent1ab7d1fcad1f283b8ddc1255257daa4b374cd03b (diff)
downloadredot-engine-93c69a2db620224380ad3dac4b7d8da4b17e5002.tar.gz
Merge pull request #79756 from sfreed141/root-node-casing-fix
In Create New Scene dialog derive the default root node name based on `editor/naming/node_name_casing`
-rw-r--r--editor/scene_create_dialog.cpp24
-rw-r--r--editor/scene_create_dialog.h1
2 files changed, 22 insertions, 3 deletions
diff --git a/editor/scene_create_dialog.cpp b/editor/scene_create_dialog.cpp
index c153b79316..986f6bb87a 100644
--- a/editor/scene_create_dialog.cpp
+++ b/editor/scene_create_dialog.cpp
@@ -130,10 +130,25 @@ void SceneCreateDialog::update_dialog() {
root_name = root_name_edit->get_text().strip_edges();
if (root_name.is_empty()) {
- root_name = scene_name.get_file().get_basename();
+ root_name = scene_name_edit->get_text().strip_edges();
+
+ if (root_name.is_empty()) {
+ root_name_edit->set_placeholder(TTR("Leave empty to derive from scene name"));
+ } else {
+ // Respect the desired root node casing from ProjectSettings and ensure it's a valid node name.
+ String adjusted_root_name = Node::adjust_name_casing(root_name);
+ root_name = adjusted_root_name.validate_node_name();
+
+ bool has_invalid_characters = root_name != adjusted_root_name;
+ if (has_invalid_characters) {
+ update_error(node_error_label, MSG_WARNING, TTR("Invalid root node name characters have been replaced."));
+ }
+
+ root_name_edit->set_placeholder(root_name);
+ }
}
- if (root_name.is_empty() || root_name.validate_node_name().size() != root_name.size()) {
+ if (root_name.is_empty() || root_name.validate_node_name() != root_name) {
update_error(node_error_label, MSG_ERROR, TTR("Invalid root node name."));
is_valid = false;
}
@@ -150,6 +165,9 @@ void SceneCreateDialog::update_error(Label *p_label, MsgType p_type, const Strin
case MSG_ERROR:
p_label->add_theme_color_override("font_color", get_theme_color(SNAME("error_color"), SNAME("Editor")));
break;
+ case MSG_WARNING:
+ p_label->add_theme_color_override("font_color", get_theme_color(SNAME("warning_color"), SNAME("Editor")));
+ break;
}
}
@@ -285,7 +303,7 @@ SceneCreateDialog::SceneCreateDialog() {
root_name_edit = memnew(LineEdit);
gc->add_child(root_name_edit);
- root_name_edit->set_placeholder(TTR("Leave empty to use scene name"));
+ root_name_edit->set_tooltip_text(TTR("When empty, the root node name is derived from the scene name based on the \"editor/naming/node_name_casing\" project setting."));
root_name_edit->set_h_size_flags(Control::SIZE_EXPAND_FILL);
root_name_edit->connect("text_changed", callable_mp(this, &SceneCreateDialog::update_dialog).unbind(1));
root_name_edit->connect("text_submitted", callable_mp(this, &SceneCreateDialog::accept_create).unbind(1));
diff --git a/editor/scene_create_dialog.h b/editor/scene_create_dialog.h
index dd27b85af2..c6f40b928e 100644
--- a/editor/scene_create_dialog.h
+++ b/editor/scene_create_dialog.h
@@ -48,6 +48,7 @@ class SceneCreateDialog : public ConfirmationDialog {
enum MsgType {
MSG_OK,
MSG_ERROR,
+ MSG_WARNING,
};
const StringName type_meta = StringName("type");