|
@@ -1334,6 +1334,7 @@ void ScriptEditor::_find_scripts(Node* p_base, Node* p_current, Set<Ref<Script>
|
|
|
struct _ScriptEditorItemData {
|
|
|
|
|
|
String name;
|
|
|
+ String sort_key;
|
|
|
Ref<Texture> icon;
|
|
|
int index;
|
|
|
String tooltip;
|
|
@@ -1343,7 +1344,7 @@ struct _ScriptEditorItemData {
|
|
|
|
|
|
bool operator<(const _ScriptEditorItemData& id) const {
|
|
|
|
|
|
- return category==id.category?name.nocasecmp_to(id.name)<0:category<id.category;
|
|
|
+ return category==id.category?sort_key<id.sort_key:category<id.category;
|
|
|
}
|
|
|
|
|
|
};
|
|
@@ -1404,6 +1405,8 @@ void ScriptEditor::_update_script_names() {
|
|
|
|
|
|
script_list->clear();
|
|
|
bool split_script_help = EditorSettings::get_singleton()->get("text_editor/open_scripts/group_help_pages");
|
|
|
+ ScriptSortBy sort_by = (ScriptSortBy) (int) EditorSettings::get_singleton()->get("text_editor/open_scripts/sort_scripts_by");
|
|
|
+ ScriptListName display_as = (ScriptListName) (int) EditorSettings::get_singleton()->get("text_editor/open_scripts/list_script_names_as");
|
|
|
|
|
|
Vector<_ScriptEditorItemData> sedata;
|
|
|
|
|
@@ -1415,15 +1418,41 @@ void ScriptEditor::_update_script_names() {
|
|
|
|
|
|
String name = se->get_name();
|
|
|
Ref<Texture> icon = se->get_icon();
|
|
|
- String tooltip = se->get_edited_script()->get_path();
|
|
|
+ String path = se->get_edited_script()->get_path();
|
|
|
|
|
|
_ScriptEditorItemData sd;
|
|
|
sd.icon=icon;
|
|
|
sd.name=name;
|
|
|
- sd.tooltip=tooltip;
|
|
|
+ sd.tooltip=path;
|
|
|
sd.index=i;
|
|
|
sd.used=used.has(se->get_edited_script());
|
|
|
sd.category=0;
|
|
|
+
|
|
|
+ switch (sort_by) {
|
|
|
+ case SORT_BY_NAME: {
|
|
|
+ sd.sort_key=name.to_lower();
|
|
|
+ } break;
|
|
|
+ case SORT_BY_PATH: {
|
|
|
+ sd.sort_key=path;
|
|
|
+ } break;
|
|
|
+ }
|
|
|
+
|
|
|
+ switch (display_as) {
|
|
|
+ case DISPLAY_NAME: {
|
|
|
+ sd.name=name;
|
|
|
+ } break;
|
|
|
+ case DISPLAY_DIR_AND_NAME: {
|
|
|
+ if (!path.get_base_dir().get_file().empty()) {
|
|
|
+ sd.name=path.get_base_dir().get_file() + "/" + name;
|
|
|
+ } else {
|
|
|
+ sd.name=name;
|
|
|
+ }
|
|
|
+ } break;
|
|
|
+ case DISPLAY_FULL_PATH: {
|
|
|
+ sd.name=path;
|
|
|
+ } break;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
sedata.push_back(sd);
|
|
|
}
|
|
@@ -1438,6 +1467,7 @@ void ScriptEditor::_update_script_names() {
|
|
|
_ScriptEditorItemData sd;
|
|
|
sd.icon=icon;
|
|
|
sd.name=name;
|
|
|
+ sd.sort_key=name;
|
|
|
sd.tooltip=tooltip;
|
|
|
sd.index=i;
|
|
|
sd.used=false;
|
|
@@ -1727,6 +1757,7 @@ void ScriptEditor::_editor_settings_changed() {
|
|
|
se->update_settings();
|
|
|
}
|
|
|
_update_script_colors();
|
|
|
+ _update_script_names();
|
|
|
|
|
|
ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/files/auto_reload_and_parse_scripts_on_save",true));
|
|
|
|
|
@@ -2440,9 +2471,13 @@ ScriptEditorPlugin::ScriptEditorPlugin(EditorNode *p_node) {
|
|
|
EDITOR_DEF("text_editor/open_scripts/script_temperature_cold_color",Color(0,0,1,0.3));
|
|
|
EDITOR_DEF("text_editor/open_scripts/current_script_background_color",Color(0.81,0.81,0.14,0.63));
|
|
|
EDITOR_DEF("text_editor/open_scripts/group_help_pages",true);
|
|
|
+ EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT,"text_editor/open_scripts/sort_scripts_by",PROPERTY_HINT_ENUM,"Name,Path"));
|
|
|
+ EDITOR_DEF("text_editor/open_scripts/sort_scripts_by",0);
|
|
|
+ EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT,"text_editor/open_scripts/list_script_names_as",PROPERTY_HINT_ENUM,"Name,Parent Directory And Name,Full Path"));
|
|
|
+ EDITOR_DEF("text_editor/open_scripts/list_script_names_as",0);
|
|
|
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING,"text_editor/external/exec_path",PROPERTY_HINT_GLOBAL_FILE));
|
|
|
EDITOR_DEF("text_editor/external/exec_flags","");
|
|
|
-
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|