editor_dir_dialog.cpp 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*************************************************************************/
  2. /* editor_dir_dialog.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "editor_dir_dialog.h"
  31. #include "core/os/keyboard.h"
  32. #include "core/os/os.h"
  33. #include "editor/editor_file_system.h"
  34. #include "editor/editor_settings.h"
  35. #include "editor_scale.h"
  36. void EditorDirDialog::_update_dir(TreeItem *p_item, EditorFileSystemDirectory *p_dir, const String &p_select_path) {
  37. updating = true;
  38. String path = p_dir->get_path();
  39. p_item->set_metadata(0, p_dir->get_path());
  40. p_item->set_icon(0, get_icon("Folder", "EditorIcons"));
  41. if (!p_item->get_parent()) {
  42. p_item->set_text(0, "res://");
  43. } else {
  44. if (!opened_paths.has(path) && (p_select_path == String() || !p_select_path.begins_with(path))) {
  45. p_item->set_collapsed(true);
  46. }
  47. p_item->set_text(0, p_dir->get_name());
  48. }
  49. //this should be handled by EditorFileSystem already
  50. //bool show_hidden = EditorSettings::get_singleton()->get("filesystem/file_dialog/show_hidden_files");
  51. updating = false;
  52. for (int i = 0; i < p_dir->get_subdir_count(); i++) {
  53. TreeItem *ti = tree->create_item(p_item);
  54. _update_dir(ti, p_dir->get_subdir(i));
  55. }
  56. }
  57. void EditorDirDialog::reload(const String &p_path) {
  58. if (!is_visible_in_tree()) {
  59. must_reload = true;
  60. return;
  61. }
  62. tree->clear();
  63. TreeItem *root = tree->create_item();
  64. _update_dir(root, EditorFileSystem::get_singleton()->get_filesystem(), p_path);
  65. _item_collapsed(root);
  66. must_reload = false;
  67. }
  68. void EditorDirDialog::_notification(int p_what) {
  69. if (p_what == NOTIFICATION_ENTER_TREE) {
  70. EditorFileSystem::get_singleton()->connect("filesystem_changed", this, "reload");
  71. reload();
  72. if (!tree->is_connected("item_collapsed", this, "_item_collapsed")) {
  73. tree->connect("item_collapsed", this, "_item_collapsed", varray(), CONNECT_DEFERRED);
  74. }
  75. if (!EditorFileSystem::get_singleton()->is_connected("filesystem_changed", this, "reload")) {
  76. EditorFileSystem::get_singleton()->connect("filesystem_changed", this, "reload");
  77. }
  78. }
  79. if (p_what == NOTIFICATION_EXIT_TREE) {
  80. EditorFileSystem::get_singleton()->disconnect("filesystem_changed", this, "reload");
  81. }
  82. if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
  83. if (must_reload && is_visible_in_tree()) {
  84. reload();
  85. }
  86. }
  87. }
  88. void EditorDirDialog::_item_collapsed(Object *p_item) {
  89. TreeItem *item = Object::cast_to<TreeItem>(p_item);
  90. if (updating)
  91. return;
  92. if (item->is_collapsed())
  93. opened_paths.erase(item->get_metadata(0));
  94. else
  95. opened_paths.insert(item->get_metadata(0));
  96. }
  97. void EditorDirDialog::ok_pressed() {
  98. TreeItem *ti = tree->get_selected();
  99. if (!ti)
  100. return;
  101. String dir = ti->get_metadata(0);
  102. emit_signal("dir_selected", dir);
  103. hide();
  104. }
  105. void EditorDirDialog::_make_dir() {
  106. TreeItem *ti = tree->get_selected();
  107. if (!ti) {
  108. mkdirerr->set_text(TTR("Please select a base directory first"));
  109. mkdirerr->popup_centered_minsize();
  110. return;
  111. }
  112. makedialog->popup_centered_minsize(Size2(250, 80));
  113. makedirname->grab_focus();
  114. }
  115. void EditorDirDialog::_make_dir_confirm() {
  116. TreeItem *ti = tree->get_selected();
  117. if (!ti)
  118. return;
  119. String dir = ti->get_metadata(0);
  120. DirAccessRef d = DirAccess::open(dir);
  121. ERR_FAIL_COND(!d);
  122. Error err = d->make_dir(makedirname->get_text());
  123. if (err != OK) {
  124. mkdirerr->popup_centered_minsize(Size2(250, 80) * EDSCALE);
  125. } else {
  126. opened_paths.insert(dir);
  127. //reload(dir.plus_file(makedirname->get_text()));
  128. EditorFileSystem::get_singleton()->scan_changes(); //we created a dir, so rescan changes
  129. }
  130. makedirname->set_text(""); // reset label
  131. }
  132. void EditorDirDialog::_bind_methods() {
  133. ClassDB::bind_method(D_METHOD("_item_collapsed"), &EditorDirDialog::_item_collapsed);
  134. ClassDB::bind_method(D_METHOD("_make_dir"), &EditorDirDialog::_make_dir);
  135. ClassDB::bind_method(D_METHOD("_make_dir_confirm"), &EditorDirDialog::_make_dir_confirm);
  136. ClassDB::bind_method(D_METHOD("reload"), &EditorDirDialog::reload, DEFVAL(""));
  137. ADD_SIGNAL(MethodInfo("dir_selected", PropertyInfo(Variant::STRING, "dir")));
  138. }
  139. EditorDirDialog::EditorDirDialog() {
  140. updating = false;
  141. set_title(TTR("Choose a Directory"));
  142. set_hide_on_ok(false);
  143. tree = memnew(Tree);
  144. add_child(tree);
  145. tree->connect("item_activated", this, "_ok");
  146. makedir = add_button(TTR("Create Folder"), OS::get_singleton()->get_swap_ok_cancel() ? true : false, "makedir");
  147. makedir->connect("pressed", this, "_make_dir");
  148. makedialog = memnew(ConfirmationDialog);
  149. makedialog->set_title(TTR("Create Folder"));
  150. add_child(makedialog);
  151. VBoxContainer *makevb = memnew(VBoxContainer);
  152. makedialog->add_child(makevb);
  153. //makedialog->set_child_rect(makevb);
  154. makedirname = memnew(LineEdit);
  155. makevb->add_margin_child(TTR("Name:"), makedirname);
  156. makedialog->register_text_enter(makedirname);
  157. makedialog->connect("confirmed", this, "_make_dir_confirm");
  158. mkdirerr = memnew(AcceptDialog);
  159. mkdirerr->set_text(TTR("Could not create folder."));
  160. add_child(mkdirerr);
  161. get_ok()->set_text(TTR("Choose"));
  162. must_reload = false;
  163. }