filesystem_dock.cpp 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  1. /*************************************************************************/
  2. /* filesystem_dock.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2018 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 "filesystem_dock.h"
  31. #include "core/os/keyboard.h"
  32. #include "editor_node.h"
  33. #include "editor_settings.h"
  34. #include "io/resource_loader.h"
  35. #include "os/dir_access.h"
  36. #include "os/file_access.h"
  37. #include "os/os.h"
  38. #include "project_settings.h"
  39. #include "scene/main/viewport.h"
  40. bool FileSystemDock::_create_tree(TreeItem *p_parent, EditorFileSystemDirectory *p_dir, Vector<String> &uncollapsed_paths) {
  41. TreeItem *item = tree->create_item(p_parent);
  42. String dname = p_dir->get_name();
  43. if (dname == "")
  44. dname = "res://";
  45. item->set_text(0, dname);
  46. item->set_icon(0, get_icon("Folder", "EditorIcons"));
  47. item->set_selectable(0, true);
  48. String lpath = p_dir->get_path();
  49. if (lpath != "res://" && lpath.ends_with("/")) {
  50. lpath = lpath.substr(0, lpath.length() - 1);
  51. }
  52. item->set_metadata(0, lpath);
  53. if (lpath == path) {
  54. item->select(0);
  55. }
  56. if ((path.begins_with(lpath) && path != lpath)) {
  57. item->set_collapsed(false);
  58. } else {
  59. bool is_collapsed = true;
  60. for (int i = 0; i < uncollapsed_paths.size(); i++) {
  61. if (lpath == uncollapsed_paths[i]) {
  62. is_collapsed = false;
  63. break;
  64. }
  65. }
  66. item->set_collapsed(is_collapsed);
  67. }
  68. for (int i = 0; i < p_dir->get_subdir_count(); i++)
  69. _create_tree(item, p_dir->get_subdir(i), uncollapsed_paths);
  70. return true;
  71. }
  72. void FileSystemDock::_update_tree(bool keep_collapse_state, bool p_uncollapse_root) {
  73. Vector<String> uncollapsed_paths;
  74. if (keep_collapse_state) {
  75. TreeItem *root = tree->get_root();
  76. if (root) {
  77. TreeItem *resTree = root->get_children()->get_next();
  78. Vector<TreeItem *> needs_check;
  79. needs_check.push_back(resTree);
  80. while (needs_check.size()) {
  81. if (!needs_check[0]->is_collapsed()) {
  82. uncollapsed_paths.push_back(needs_check[0]->get_metadata(0));
  83. TreeItem *child = needs_check[0]->get_children();
  84. while (child) {
  85. needs_check.push_back(child);
  86. child = child->get_next();
  87. }
  88. }
  89. needs_check.remove(0);
  90. }
  91. }
  92. }
  93. tree->clear();
  94. updating_tree = true;
  95. TreeItem *root = tree->create_item();
  96. TreeItem *favorites = tree->create_item(root);
  97. favorites->set_icon(0, get_icon("Favorites", "EditorIcons"));
  98. favorites->set_text(0, TTR("Favorites:"));
  99. favorites->set_selectable(0, false);
  100. Vector<String> favorite_paths = EditorSettings::get_singleton()->get_favorite_dirs();
  101. String res_path = "res://";
  102. Ref<Texture> folder_icon = get_icon("Folder", "EditorIcons");
  103. for (int i = 0; i < favorite_paths.size(); i++) {
  104. String fave = favorite_paths[i];
  105. if (!fave.begins_with(res_path))
  106. continue;
  107. TreeItem *ti = tree->create_item(favorites);
  108. if (fave == res_path)
  109. ti->set_text(0, "/");
  110. else
  111. ti->set_text(0, fave.get_file());
  112. ti->set_icon(0, folder_icon);
  113. ti->set_selectable(0, true);
  114. ti->set_metadata(0, fave);
  115. }
  116. if (p_uncollapse_root) {
  117. uncollapsed_paths.push_back("res://");
  118. }
  119. _create_tree(root, EditorFileSystem::get_singleton()->get_filesystem(), uncollapsed_paths);
  120. tree->ensure_cursor_is_visible();
  121. updating_tree = false;
  122. }
  123. void FileSystemDock::_notification(int p_what) {
  124. switch (p_what) {
  125. case NOTIFICATION_RESIZED: {
  126. bool new_mode = get_size().height < get_viewport_rect().size.height / 2;
  127. if (new_mode != low_height_mode) {
  128. low_height_mode = new_mode;
  129. if (low_height_mode) {
  130. tree->hide();
  131. tree->set_v_size_flags(SIZE_EXPAND_FILL);
  132. button_tree->show();
  133. } else {
  134. tree->set_v_size_flags(SIZE_FILL);
  135. button_tree->hide();
  136. if (!tree->is_visible()) {
  137. tree->show();
  138. button_favorite->show();
  139. _update_tree(true);
  140. }
  141. tree->ensure_cursor_is_visible();
  142. if (!file_list_vb->is_visible()) {
  143. file_list_vb->show();
  144. _update_files(true);
  145. }
  146. }
  147. }
  148. } break;
  149. case NOTIFICATION_ENTER_TREE: {
  150. if (initialized)
  151. return;
  152. initialized = true;
  153. EditorFileSystem::get_singleton()->connect("filesystem_changed", this, "_fs_changed");
  154. EditorResourcePreview::get_singleton()->connect("preview_invalidated", this, "_preview_invalidated");
  155. String ei = "EditorIcons";
  156. button_reload->set_icon(get_icon("Reload", ei));
  157. button_favorite->set_icon(get_icon("Favorites", ei));
  158. //button_instance->set_icon(get_icon("Add", ei));
  159. //button_open->set_icon(get_icon("Folder", ei));
  160. button_tree->set_icon(get_icon("Filesystem", ei));
  161. _update_file_display_toggle_button();
  162. button_display_mode->connect("pressed", this, "_change_file_display");
  163. //file_options->set_icon( get_icon("Tools","ei"));
  164. files->connect("item_activated", this, "_select_file");
  165. button_hist_next->connect("pressed", this, "_fw_history");
  166. button_hist_prev->connect("pressed", this, "_bw_history");
  167. search_box->add_icon_override("right_icon", get_icon("Search", ei));
  168. button_hist_next->set_icon(get_icon("Forward", ei));
  169. button_hist_prev->set_icon(get_icon("Back", ei));
  170. button_show->set_icon(get_icon("GuiVisibilityVisible", "EditorIcons"));
  171. file_options->connect("id_pressed", this, "_file_option");
  172. folder_options->connect("id_pressed", this, "_folder_option");
  173. button_tree->connect("pressed", this, "_go_to_tree", varray(), CONNECT_DEFERRED);
  174. current_path->connect("text_entered", this, "navigate_to_path");
  175. if (EditorFileSystem::get_singleton()->is_scanning()) {
  176. _set_scanning_mode();
  177. } else {
  178. _update_tree(false, true);
  179. }
  180. } break;
  181. case NOTIFICATION_PROCESS: {
  182. if (EditorFileSystem::get_singleton()->is_scanning()) {
  183. scanning_progress->set_value(EditorFileSystem::get_singleton()->get_scanning_progress() * 100);
  184. }
  185. } break;
  186. case NOTIFICATION_EXIT_TREE: {
  187. } break;
  188. case NOTIFICATION_DRAG_BEGIN: {
  189. Dictionary dd = get_viewport()->gui_get_drag_data();
  190. if (tree->is_visible_in_tree() && dd.has("type")) {
  191. if ((String(dd["type"]) == "files") || (String(dd["type"]) == "files_and_dirs") || (String(dd["type"]) == "resource")) {
  192. tree->set_drop_mode_flags(Tree::DROP_MODE_ON_ITEM);
  193. } else if ((String(dd["type"]) == "favorite")) {
  194. tree->set_drop_mode_flags(Tree::DROP_MODE_INBETWEEN);
  195. }
  196. }
  197. } break;
  198. case NOTIFICATION_DRAG_END: {
  199. tree->set_drop_mode_flags(0);
  200. } break;
  201. case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
  202. String ei = "EditorIcons";
  203. int new_mode = int(EditorSettings::get_singleton()->get("docks/filesystem/display_mode"));
  204. //_update_icons
  205. button_reload->set_icon(get_icon("Reload", ei));
  206. button_favorite->set_icon(get_icon("Favorites", ei));
  207. button_tree->set_icon(get_icon("Filesystem", ei));
  208. button_hist_next->set_icon(get_icon("Forward", ei));
  209. button_hist_prev->set_icon(get_icon("Back", ei));
  210. search_box->add_icon_override("right_icon", get_icon("Search", ei));
  211. if (new_mode != display_mode) {
  212. set_display_mode(new_mode);
  213. } else {
  214. _update_file_display_toggle_button();
  215. _update_files(true);
  216. }
  217. _update_tree(true);
  218. } break;
  219. }
  220. }
  221. void FileSystemDock::_dir_selected() {
  222. TreeItem *sel = tree->get_selected();
  223. if (!sel)
  224. return;
  225. path = sel->get_metadata(0);
  226. bool found = false;
  227. Vector<String> favorites = EditorSettings::get_singleton()->get_favorite_dirs();
  228. for (int i = 0; i < favorites.size(); i++) {
  229. if (favorites[i] == path) {
  230. found = true;
  231. break;
  232. }
  233. }
  234. button_favorite->set_pressed(found);
  235. current_path->set_text(path);
  236. _push_to_history();
  237. if (!low_height_mode) {
  238. _update_files(false);
  239. }
  240. }
  241. void FileSystemDock::_favorites_pressed() {
  242. TreeItem *sel = tree->get_selected();
  243. if (!sel)
  244. return;
  245. path = sel->get_metadata(0);
  246. int idx = -1;
  247. Vector<String> favorites = EditorSettings::get_singleton()->get_favorite_dirs();
  248. for (int i = 0; i < favorites.size(); i++) {
  249. if (favorites[i] == path) {
  250. idx = i;
  251. break;
  252. }
  253. }
  254. if (idx == -1) {
  255. favorites.push_back(path);
  256. } else {
  257. favorites.remove(idx);
  258. }
  259. EditorSettings::get_singleton()->set_favorite_dirs(favorites);
  260. _update_tree(true);
  261. }
  262. void FileSystemDock::_show_current_scene_file() {
  263. int index = EditorNode::get_editor_data().get_edited_scene();
  264. String path = EditorNode::get_editor_data().get_scene_path(index);
  265. if (path != String()) {
  266. navigate_to_path(path);
  267. }
  268. }
  269. String FileSystemDock::get_selected_path() const {
  270. TreeItem *sel = tree->get_selected();
  271. if (!sel)
  272. return "";
  273. return sel->get_metadata(0);
  274. }
  275. String FileSystemDock::get_current_path() const {
  276. return path;
  277. }
  278. void FileSystemDock::navigate_to_path(const String &p_path) {
  279. // If the path is a file, do not only go to the directory in the tree, also select the file in the file list.
  280. String file_name = "";
  281. DirAccess *dirAccess = DirAccess::open("res://");
  282. if (dirAccess->file_exists(p_path)) {
  283. path = p_path.get_base_dir();
  284. file_name = p_path.get_file();
  285. } else if (dirAccess->dir_exists(p_path)) {
  286. path = p_path;
  287. } else {
  288. ERR_EXPLAIN(vformat(TTR("Cannot navigate to '%s' as it has not been found in the file system!"), p_path));
  289. ERR_FAIL();
  290. }
  291. current_path->set_text(path);
  292. _push_to_history();
  293. if (!low_height_mode) {
  294. _update_tree(true);
  295. _update_files(false);
  296. } else {
  297. _go_to_file_list();
  298. }
  299. if (!file_name.empty()) {
  300. for (int i = 0; i < files->get_item_count(); i++) {
  301. if (files->get_item_text(i) == file_name) {
  302. files->select(i, true);
  303. files->ensure_current_is_visible();
  304. break;
  305. }
  306. }
  307. }
  308. }
  309. void FileSystemDock::_thumbnail_done(const String &p_path, const Ref<Texture> &p_preview, const Variant &p_udata) {
  310. if ((file_list_vb->is_visible_in_tree() || path == p_path.get_base_dir()) && p_preview.is_valid()) {
  311. Array uarr = p_udata;
  312. int idx = uarr[0];
  313. String file = uarr[1];
  314. if (idx < files->get_item_count() && files->get_item_text(idx) == file && files->get_item_metadata(idx) == p_path)
  315. files->set_item_icon(idx, p_preview);
  316. }
  317. }
  318. void FileSystemDock::_update_file_display_toggle_button() {
  319. if (button_display_mode->is_pressed()) {
  320. display_mode = DISPLAY_LIST;
  321. button_display_mode->set_icon(get_icon("FileThumbnail", "EditorIcons"));
  322. button_display_mode->set_tooltip(TTR("View items as a grid of thumbnails."));
  323. } else {
  324. display_mode = DISPLAY_THUMBNAILS;
  325. button_display_mode->set_icon(get_icon("FileList", "EditorIcons"));
  326. button_display_mode->set_tooltip(TTR("View items as a list."));
  327. }
  328. }
  329. void FileSystemDock::_change_file_display() {
  330. _update_file_display_toggle_button();
  331. EditorSettings::get_singleton()->set("docks/filesystem/display_mode", display_mode);
  332. _update_files(true);
  333. }
  334. void FileSystemDock::_search(EditorFileSystemDirectory *p_path, List<FileInfo> *matches, int p_max_items) {
  335. if (matches->size() > p_max_items)
  336. return;
  337. for (int i = 0; i < p_path->get_subdir_count(); i++) {
  338. _search(p_path->get_subdir(i), matches, p_max_items);
  339. }
  340. String match = search_box->get_text().to_lower();
  341. for (int i = 0; i < p_path->get_file_count(); i++) {
  342. String file = p_path->get_file(i);
  343. if (file.to_lower().find(match) != -1) {
  344. FileInfo fi;
  345. fi.name = file;
  346. fi.type = p_path->get_file_type(i);
  347. fi.path = p_path->get_file_path(i);
  348. fi.import_broken = !p_path->get_file_import_is_valid(i);
  349. fi.import_status = 0;
  350. matches->push_back(fi);
  351. if (matches->size() > p_max_items)
  352. return;
  353. }
  354. }
  355. }
  356. void FileSystemDock::_update_files(bool p_keep_selection) {
  357. Set<String> cselection;
  358. if (p_keep_selection) {
  359. for (int i = 0; i < files->get_item_count(); i++) {
  360. if (files->is_selected(i))
  361. cselection.insert(files->get_item_text(i));
  362. }
  363. }
  364. files->clear();
  365. current_path->set_text(path);
  366. EditorFileSystemDirectory *efd = EditorFileSystem::get_singleton()->get_filesystem_path(path);
  367. if (!efd)
  368. return;
  369. String ei = "EditorIcons";
  370. int thumbnail_size = EditorSettings::get_singleton()->get("docks/filesystem/thumbnail_size");
  371. thumbnail_size *= EDSCALE;
  372. Ref<Texture> folder_thumbnail;
  373. Ref<Texture> file_thumbnail;
  374. Ref<Texture> file_thumbnail_broken;
  375. bool always_show_folders = EditorSettings::get_singleton()->get("docks/filesystem/always_show_folders");
  376. bool use_thumbnails = (display_mode == DISPLAY_THUMBNAILS);
  377. bool use_folders = search_box->get_text().length() == 0 && (low_height_mode || always_show_folders);
  378. if (use_thumbnails) {
  379. files->set_max_columns(0);
  380. files->set_icon_mode(ItemList::ICON_MODE_TOP);
  381. files->set_fixed_column_width(thumbnail_size * 3 / 2);
  382. files->set_max_text_lines(2);
  383. files->set_fixed_icon_size(Size2(thumbnail_size, thumbnail_size));
  384. if (thumbnail_size < 64) {
  385. folder_thumbnail = get_icon("FolderMediumThumb", ei);
  386. file_thumbnail = get_icon("FileMediumThumb", ei);
  387. file_thumbnail_broken = get_icon("FileDeadMediumThumb", ei);
  388. } else {
  389. folder_thumbnail = get_icon("FolderBigThumb", ei);
  390. file_thumbnail = get_icon("FileBigThumb", ei);
  391. file_thumbnail_broken = get_icon("FileDeadBigThumb", ei);
  392. }
  393. } else {
  394. files->set_icon_mode(ItemList::ICON_MODE_LEFT);
  395. files->set_max_columns(1);
  396. files->set_max_text_lines(1);
  397. files->set_fixed_column_width(0);
  398. files->set_fixed_icon_size(Size2());
  399. }
  400. if (use_folders) {
  401. Ref<Texture> folderIcon = (use_thumbnails) ? folder_thumbnail : get_icon("folder", "FileDialog");
  402. if (path != "res://") {
  403. files->add_item("..", folderIcon, true);
  404. String bd = path.get_base_dir();
  405. if (bd != "res://" && !bd.ends_with("/"))
  406. bd += "/";
  407. files->set_item_metadata(files->get_item_count() - 1, bd);
  408. }
  409. for (int i = 0; i < efd->get_subdir_count(); i++) {
  410. String dname = efd->get_subdir(i)->get_name();
  411. files->add_item(dname, folderIcon, true);
  412. files->set_item_metadata(files->get_item_count() - 1, path.plus_file(dname) + "/");
  413. if (cselection.has(dname))
  414. files->select(files->get_item_count() - 1, false);
  415. }
  416. }
  417. List<FileInfo> filelist;
  418. if (search_box->get_text().length() > 0) {
  419. _search(EditorFileSystem::get_singleton()->get_filesystem(), &filelist, 128);
  420. filelist.sort();
  421. } else {
  422. for (int i = 0; i < efd->get_file_count(); i++) {
  423. FileInfo fi;
  424. fi.name = efd->get_file(i);
  425. fi.path = path.plus_file(fi.name);
  426. fi.type = efd->get_file_type(i);
  427. fi.import_broken = !efd->get_file_import_is_valid(i);
  428. fi.import_status = 0;
  429. filelist.push_back(fi);
  430. }
  431. filelist.sort();
  432. }
  433. String oi = "Object";
  434. for (List<FileInfo>::Element *E = filelist.front(); E; E = E->next()) {
  435. FileInfo *finfo = &(E->get());
  436. String fname = finfo->name;
  437. String fpath = finfo->path;
  438. String ftype = finfo->type;
  439. Ref<Texture> type_icon;
  440. Ref<Texture> big_icon;
  441. String tooltip = fname;
  442. if (!finfo->import_broken) {
  443. type_icon = (has_icon(ftype, ei)) ? get_icon(ftype, ei) : get_icon(oi, ei);
  444. big_icon = file_thumbnail;
  445. } else {
  446. type_icon = get_icon("ImportFail", ei);
  447. big_icon = file_thumbnail_broken;
  448. tooltip += "\n" + TTR("Status: Import of file failed. Please fix file and reimport manually.");
  449. }
  450. int item_index;
  451. if (use_thumbnails) {
  452. files->add_item(fname, big_icon, true);
  453. item_index = files->get_item_count() - 1;
  454. files->set_item_metadata(item_index, fpath);
  455. files->set_item_tag_icon(item_index, type_icon);
  456. if (!finfo->import_broken) {
  457. Array udata;
  458. udata.resize(2);
  459. udata[0] = item_index;
  460. udata[1] = fname;
  461. EditorResourcePreview::get_singleton()->queue_resource_preview(fpath, this, "_thumbnail_done", udata);
  462. }
  463. } else {
  464. files->add_item(fname, type_icon, true);
  465. item_index = files->get_item_count() - 1;
  466. files->set_item_metadata(item_index, fpath);
  467. }
  468. if (cselection.has(fname))
  469. files->select(item_index, false);
  470. if (finfo->sources.size()) {
  471. for (int j = 0; j < finfo->sources.size(); j++) {
  472. tooltip += "\nSource: " + finfo->sources[j];
  473. }
  474. }
  475. files->set_item_tooltip(item_index, tooltip);
  476. }
  477. }
  478. void FileSystemDock::_select_file(int p_idx) {
  479. String fpath = files->get_item_metadata(p_idx);
  480. if (fpath.ends_with("/")) {
  481. if (fpath != "res://") {
  482. fpath = fpath.substr(0, fpath.length() - 1);
  483. }
  484. navigate_to_path(fpath);
  485. } else {
  486. if (ResourceLoader::get_resource_type(fpath) == "PackedScene") {
  487. editor->open_request(fpath);
  488. } else {
  489. editor->load_resource(fpath);
  490. }
  491. }
  492. }
  493. void FileSystemDock::_go_to_tree() {
  494. if (low_height_mode) {
  495. tree->show();
  496. button_favorite->show();
  497. file_list_vb->hide();
  498. }
  499. _update_tree(true);
  500. tree->grab_focus();
  501. tree->ensure_cursor_is_visible();
  502. //button_open->hide();
  503. //file_options->hide();
  504. }
  505. void FileSystemDock::_preview_invalidated(const String &p_path) {
  506. if (display_mode == DISPLAY_THUMBNAILS && p_path.get_base_dir() == path && search_box->get_text() == String() && file_list_vb->is_visible_in_tree()) {
  507. for (int i = 0; i < files->get_item_count(); i++) {
  508. if (files->get_item_metadata(i) == p_path) {
  509. //re-request preview
  510. Array udata;
  511. udata.resize(2);
  512. udata[0] = i;
  513. udata[1] = files->get_item_text(i);
  514. EditorResourcePreview::get_singleton()->queue_resource_preview(p_path, this, "_thumbnail_done", udata);
  515. break;
  516. }
  517. }
  518. }
  519. }
  520. void FileSystemDock::_fs_changed() {
  521. button_hist_prev->set_disabled(history_pos == 0);
  522. button_hist_next->set_disabled(history_pos == history.size() - 1);
  523. scanning_vb->hide();
  524. split_box->show();
  525. if (tree->is_visible()) {
  526. _update_tree(true);
  527. }
  528. if (file_list_vb->is_visible()) {
  529. _update_files(true);
  530. }
  531. set_process(false);
  532. }
  533. void FileSystemDock::_set_scanning_mode() {
  534. button_hist_prev->set_disabled(true);
  535. button_hist_next->set_disabled(true);
  536. split_box->hide();
  537. scanning_vb->show();
  538. set_process(true);
  539. if (EditorFileSystem::get_singleton()->is_scanning()) {
  540. scanning_progress->set_value(EditorFileSystem::get_singleton()->get_scanning_progress() * 100);
  541. } else {
  542. scanning_progress->set_value(0);
  543. }
  544. }
  545. void FileSystemDock::_fw_history() {
  546. if (history_pos < history.size() - 1)
  547. history_pos++;
  548. _update_history();
  549. }
  550. void FileSystemDock::_bw_history() {
  551. if (history_pos > 0)
  552. history_pos--;
  553. _update_history();
  554. }
  555. void FileSystemDock::_update_history() {
  556. path = history[history_pos];
  557. current_path->set_text(path);
  558. if (tree->is_visible()) {
  559. _update_tree(true);
  560. tree->grab_focus();
  561. tree->ensure_cursor_is_visible();
  562. }
  563. if (file_list_vb->is_visible()) {
  564. _update_files(false);
  565. }
  566. button_hist_prev->set_disabled(history_pos == 0);
  567. button_hist_next->set_disabled(history_pos == history.size() - 1);
  568. }
  569. void FileSystemDock::_push_to_history() {
  570. if (history[history_pos] != path) {
  571. history.resize(history_pos + 1);
  572. history.push_back(path);
  573. history_pos++;
  574. if (history.size() > history_max_size) {
  575. history.remove(0);
  576. history_pos = history_max_size - 1;
  577. }
  578. }
  579. button_hist_prev->set_disabled(history_pos == 0);
  580. button_hist_next->set_disabled(history_pos == history.size() - 1);
  581. }
  582. void FileSystemDock::_get_all_items_in_dir(EditorFileSystemDirectory *efsd, Vector<String> &files, Vector<String> &folders) const {
  583. if (efsd == NULL)
  584. return;
  585. for (int i = 0; i < efsd->get_subdir_count(); i++) {
  586. folders.push_back(efsd->get_subdir(i)->get_path());
  587. _get_all_items_in_dir(efsd->get_subdir(i), files, folders);
  588. }
  589. for (int i = 0; i < efsd->get_file_count(); i++) {
  590. files.push_back(efsd->get_file_path(i));
  591. }
  592. }
  593. void FileSystemDock::_find_remaps(EditorFileSystemDirectory *efsd, const Map<String, String> &renames, Vector<String> &to_remaps) const {
  594. for (int i = 0; i < efsd->get_subdir_count(); i++) {
  595. _find_remaps(efsd->get_subdir(i), renames, to_remaps);
  596. }
  597. for (int i = 0; i < efsd->get_file_count(); i++) {
  598. Vector<String> deps = efsd->get_file_deps(i);
  599. for (int j = 0; j < deps.size(); j++) {
  600. if (renames.has(deps[j])) {
  601. to_remaps.push_back(efsd->get_file_path(i));
  602. break;
  603. }
  604. }
  605. }
  606. }
  607. void FileSystemDock::_try_move_item(const FileOrFolder &p_item, const String &p_new_path,
  608. Map<String, String> &p_file_renames, Map<String, String> &p_folder_renames) const {
  609. //Ensure folder paths end with "/"
  610. String old_path = (p_item.is_file || p_item.path.ends_with("/")) ? p_item.path : (p_item.path + "/");
  611. String new_path = (p_item.is_file || p_new_path.ends_with("/")) ? p_new_path : (p_new_path + "/");
  612. if (new_path == old_path) {
  613. return;
  614. } else if (old_path == "res://") {
  615. EditorNode::get_singleton()->add_io_error(TTR("Cannot move/rename resources root."));
  616. return;
  617. } else if (!p_item.is_file && new_path.begins_with(old_path)) {
  618. //This check doesn't erroneously catch renaming to a longer name as folder paths always end with "/"
  619. EditorNode::get_singleton()->add_io_error(TTR("Cannot move a folder into itself.") + "\n" + old_path + "\n");
  620. return;
  621. }
  622. //Build a list of files which will have new paths as a result of this operation
  623. Vector<String> file_changed_paths;
  624. Vector<String> folder_changed_paths;
  625. if (p_item.is_file) {
  626. file_changed_paths.push_back(old_path);
  627. } else {
  628. folder_changed_paths.push_back(old_path);
  629. _get_all_items_in_dir(EditorFileSystem::get_singleton()->get_filesystem_path(old_path), file_changed_paths, folder_changed_paths);
  630. }
  631. DirAccess *da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  632. print_line("Moving " + old_path + " -> " + new_path);
  633. Error err = da->rename(old_path, new_path);
  634. if (err == OK) {
  635. //Move/Rename any corresponding import settings too
  636. if (p_item.is_file && FileAccess::exists(old_path + ".import")) {
  637. err = da->rename(old_path + ".import", new_path + ".import");
  638. if (err != OK) {
  639. EditorNode::get_singleton()->add_io_error(TTR("Error moving:") + "\n" + old_path + ".import\n");
  640. }
  641. }
  642. // update scene if it is open
  643. for (int i = 0; i < file_changed_paths.size(); ++i) {
  644. String new_item_path = p_item.is_file ? new_path : file_changed_paths[i].replace_first(old_path, new_path);
  645. if (ResourceLoader::get_resource_type(new_item_path) == "PackedScene" && editor->is_scene_open(file_changed_paths[i])) {
  646. EditorData *ed = &editor->get_editor_data();
  647. for (int j = 0; j < ed->get_edited_scene_count(); j++) {
  648. if (ed->get_scene_path(j) == file_changed_paths[i]) {
  649. ed->get_edited_scene_root(j)->set_filename(new_item_path);
  650. break;
  651. }
  652. }
  653. }
  654. }
  655. //Only treat as a changed dependency if it was successfully moved
  656. for (int i = 0; i < file_changed_paths.size(); ++i) {
  657. p_file_renames[file_changed_paths[i]] = file_changed_paths[i].replace_first(old_path, new_path);
  658. print_line(" Remap: " + file_changed_paths[i] + " -> " + p_file_renames[file_changed_paths[i]]);
  659. }
  660. for (int i = 0; i < folder_changed_paths.size(); ++i) {
  661. p_folder_renames[folder_changed_paths[i]] = folder_changed_paths[i].replace_first(old_path, new_path);
  662. }
  663. } else {
  664. EditorNode::get_singleton()->add_io_error(TTR("Error moving:") + "\n" + old_path + "\n");
  665. }
  666. memdelete(da);
  667. }
  668. void FileSystemDock::_try_duplicate_item(const FileOrFolder &p_item, const String &p_new_path) const {
  669. //Ensure folder paths end with "/"
  670. String old_path = (p_item.is_file || p_item.path.ends_with("/")) ? p_item.path : (p_item.path + "/");
  671. String new_path = (p_item.is_file || p_new_path.ends_with("/")) ? p_new_path : (p_new_path + "/");
  672. if (new_path == old_path) {
  673. return;
  674. } else if (old_path == "res://") {
  675. EditorNode::get_singleton()->add_io_error(TTR("Cannot move/rename resources root."));
  676. return;
  677. } else if (!p_item.is_file && new_path.begins_with(old_path)) {
  678. //This check doesn't erroneously catch renaming to a longer name as folder paths always end with "/"
  679. EditorNode::get_singleton()->add_io_error(TTR("Cannot move a folder into itself.") + "\n" + old_path + "\n");
  680. return;
  681. }
  682. DirAccess *da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  683. print_line("Duplicating " + old_path + " -> " + new_path);
  684. Error err = p_item.is_file ? da->copy(old_path, new_path) : da->copy_dir(old_path, new_path);
  685. if (err == OK) {
  686. //Move/Rename any corresponding import settings too
  687. if (p_item.is_file && FileAccess::exists(old_path + ".import")) {
  688. err = da->copy(old_path + ".import", new_path + ".import");
  689. if (err != OK) {
  690. EditorNode::get_singleton()->add_io_error(TTR("Error duplicating:") + "\n" + old_path + ".import\n");
  691. }
  692. }
  693. } else {
  694. EditorNode::get_singleton()->add_io_error(TTR("Error duplicating:") + "\n" + old_path + "\n");
  695. }
  696. memdelete(da);
  697. }
  698. void FileSystemDock::_update_resource_paths_after_move(const Map<String, String> &p_renames) const {
  699. //Rename all resources loaded, be it subresources or actual resources
  700. List<Ref<Resource> > cached;
  701. ResourceCache::get_cached_resources(&cached);
  702. for (List<Ref<Resource> >::Element *E = cached.front(); E; E = E->next()) {
  703. Ref<Resource> r = E->get();
  704. String base_path = r->get_path();
  705. String extra_path;
  706. int sep_pos = r->get_path().find("::");
  707. if (sep_pos >= 0) {
  708. extra_path = base_path.substr(sep_pos, base_path.length());
  709. base_path = base_path.substr(0, sep_pos);
  710. }
  711. if (p_renames.has(base_path)) {
  712. base_path = p_renames[base_path];
  713. }
  714. r->set_path(base_path + extra_path);
  715. }
  716. for (int i = 0; i < EditorNode::get_editor_data().get_edited_scene_count(); i++) {
  717. String path;
  718. if (i == EditorNode::get_editor_data().get_edited_scene()) {
  719. if (!get_tree()->get_edited_scene_root())
  720. continue;
  721. path = get_tree()->get_edited_scene_root()->get_filename();
  722. } else {
  723. path = EditorNode::get_editor_data().get_scene_path(i);
  724. }
  725. if (p_renames.has(path)) {
  726. path = p_renames[path];
  727. }
  728. if (i == EditorNode::get_editor_data().get_edited_scene()) {
  729. get_tree()->get_edited_scene_root()->set_filename(path);
  730. } else {
  731. EditorNode::get_editor_data().set_scene_path(i, path);
  732. }
  733. }
  734. }
  735. void FileSystemDock::_update_dependencies_after_move(const Map<String, String> &p_renames) const {
  736. //The following code assumes that the following holds:
  737. // 1) EditorFileSystem contains the old paths/folder structure from before the rename/move.
  738. // 2) ResourceLoader can use the new paths without needing to call rescan.
  739. Vector<String> remaps;
  740. _find_remaps(EditorFileSystem::get_singleton()->get_filesystem(), p_renames, remaps);
  741. for (int i = 0; i < remaps.size(); ++i) {
  742. //Because we haven't called a rescan yet the found remap might still be an old path itself.
  743. String file = p_renames.has(remaps[i]) ? p_renames[remaps[i]] : remaps[i];
  744. print_line("Remapping dependencies for: " + file);
  745. Error err = ResourceLoader::rename_dependencies(file, p_renames);
  746. if (err == OK) {
  747. if (ResourceLoader::get_resource_type(file) == "PackedScene")
  748. editor->reload_scene(file);
  749. } else {
  750. EditorNode::get_singleton()->add_io_error(TTR("Unable to update dependencies:") + "\n" + remaps[i] + "\n");
  751. }
  752. }
  753. }
  754. void FileSystemDock::_update_project_settings_after_move(const Map<String, String> &p_renames) const {
  755. // Find all project settings of type FILE and replace them if needed
  756. const Map<StringName, PropertyInfo> prop_info = ProjectSettings::get_singleton()->get_custom_property_info();
  757. for (const Map<StringName, PropertyInfo>::Element *E = prop_info.front(); E; E = E->next()) {
  758. if (E->get().hint == PROPERTY_HINT_FILE) {
  759. String old_path = GLOBAL_GET(E->key());
  760. if (p_renames.has(old_path)) {
  761. ProjectSettings::get_singleton()->set_setting(E->key(), p_renames[old_path]);
  762. }
  763. };
  764. }
  765. ProjectSettings::get_singleton()->save();
  766. }
  767. void FileSystemDock::_update_favorite_dirs_list_after_move(const Map<String, String> &p_renames) const {
  768. Vector<String> favorite_dirs = EditorSettings::get_singleton()->get_favorite_dirs();
  769. Vector<String> new_favorite_dirs;
  770. for (int i = 0; i < favorite_dirs.size(); i++) {
  771. String old_path = favorite_dirs[i] + "/";
  772. if (p_renames.has(old_path)) {
  773. String new_path = p_renames[old_path];
  774. new_favorite_dirs.push_back(new_path.substr(0, new_path.length() - 1));
  775. } else {
  776. new_favorite_dirs.push_back(favorite_dirs[i]);
  777. }
  778. }
  779. EditorSettings::get_singleton()->set_favorite_dirs(new_favorite_dirs);
  780. }
  781. void FileSystemDock::_make_dir_confirm() {
  782. String dir_name = make_dir_dialog_text->get_text().strip_edges();
  783. if (dir_name.length() == 0) {
  784. EditorNode::get_singleton()->show_warning(TTR("No name provided"));
  785. return;
  786. } else if (dir_name.find("/") != -1 || dir_name.find("\\") != -1 || dir_name.find(":") != -1 || dir_name.ends_with(".") || dir_name.ends_with(" ")) {
  787. EditorNode::get_singleton()->show_warning(TTR("Provided name contains invalid characters"));
  788. return;
  789. }
  790. print_line("Making folder " + dir_name + " in " + path);
  791. DirAccess *da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  792. Error err = da->change_dir(path);
  793. if (err == OK) {
  794. err = da->make_dir(dir_name);
  795. }
  796. memdelete(da);
  797. if (err == OK) {
  798. print_line("call rescan!");
  799. _rescan();
  800. } else {
  801. EditorNode::get_singleton()->show_warning(TTR("Could not create folder."));
  802. }
  803. }
  804. void FileSystemDock::_rename_operation_confirm() {
  805. String new_name = rename_dialog_text->get_text().strip_edges();
  806. if (new_name.length() == 0) {
  807. EditorNode::get_singleton()->show_warning(TTR("No name provided."));
  808. return;
  809. } else if (new_name.find("/") != -1 || new_name.find("\\") != -1 || new_name.find(":") != -1) {
  810. EditorNode::get_singleton()->show_warning(TTR("Name contains invalid characters."));
  811. return;
  812. }
  813. String old_path = to_rename.path.ends_with("/") ? to_rename.path.substr(0, to_rename.path.length() - 1) : to_rename.path;
  814. String new_path = old_path.get_base_dir().plus_file(new_name);
  815. if (old_path == new_path) {
  816. return;
  817. }
  818. //Present a more user friendly warning for name conflict
  819. DirAccess *da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  820. #if defined(WINDOWS_ENABLED) || defined(UWP_ENABLED)
  821. // Workaround case insensitivity on Windows
  822. if ((da->file_exists(new_path) || da->dir_exists(new_path)) && new_path.to_lower() != old_path.to_lower()) {
  823. #else
  824. if (da->file_exists(new_path) || da->dir_exists(new_path)) {
  825. #endif
  826. EditorNode::get_singleton()->show_warning(TTR("A file or folder with this name already exists."));
  827. memdelete(da);
  828. return;
  829. }
  830. memdelete(da);
  831. Map<String, String> file_renames;
  832. Map<String, String> folder_renames;
  833. _try_move_item(to_rename, new_path, file_renames, folder_renames);
  834. _update_dependencies_after_move(file_renames);
  835. _update_resource_paths_after_move(file_renames);
  836. _update_project_settings_after_move(file_renames);
  837. _update_favorite_dirs_list_after_move(folder_renames);
  838. //Rescan everything
  839. print_line("call rescan!");
  840. _rescan();
  841. }
  842. void FileSystemDock::_duplicate_operation_confirm() {
  843. String new_name = duplicate_dialog_text->get_text().strip_edges();
  844. if (new_name.length() == 0) {
  845. EditorNode::get_singleton()->show_warning(TTR("No name provided."));
  846. return;
  847. } else if (new_name.find("/") != -1 || new_name.find("\\") != -1 || new_name.find(":") != -1) {
  848. EditorNode::get_singleton()->show_warning(TTR("Name contains invalid characters."));
  849. return;
  850. }
  851. String new_path;
  852. String base_dir = to_duplicate.path.get_base_dir();
  853. if (to_duplicate.is_file) {
  854. new_path = base_dir.plus_file(new_name);
  855. } else {
  856. new_path = base_dir.substr(0, base_dir.find_last("/")) + "/" + new_name;
  857. }
  858. //Present a more user friendly warning for name conflict
  859. DirAccess *da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  860. if (da->file_exists(new_path) || da->dir_exists(new_path)) {
  861. EditorNode::get_singleton()->show_warning(TTR("A file or folder with this name already exists."));
  862. memdelete(da);
  863. return;
  864. }
  865. memdelete(da);
  866. _try_duplicate_item(to_duplicate, new_path);
  867. //Rescan everything
  868. print_line("call rescan!");
  869. _rescan();
  870. }
  871. void FileSystemDock::_move_with_overwrite() {
  872. _move_operation_confirm(to_move_path, true);
  873. }
  874. bool FileSystemDock::_check_existing() {
  875. String &p_to_path = to_move_path;
  876. for (int i = 0; i < to_move.size(); i++) {
  877. String ol_pth = to_move[i].path.ends_with("/") ? to_move[i].path.substr(0, to_move[i].path.length() - 1) : to_move[i].path;
  878. String p_new_path = p_to_path.plus_file(ol_pth.get_file());
  879. FileOrFolder p_item = to_move[i];
  880. String old_path = (p_item.is_file || p_item.path.ends_with("/")) ? p_item.path : (p_item.path + "/");
  881. String new_path = (p_item.is_file || p_new_path.ends_with("/")) ? p_new_path : (p_new_path + "/");
  882. if (p_item.is_file && FileAccess::exists(new_path)) {
  883. return false;
  884. } else if (!p_item.is_file && DirAccess::exists(new_path)) {
  885. return false;
  886. }
  887. }
  888. return true;
  889. }
  890. void FileSystemDock::_move_operation_confirm(const String &p_to_path, bool overwrite) {
  891. if (!overwrite) {
  892. to_move_path = p_to_path;
  893. bool can_move = _check_existing();
  894. if (!can_move) {
  895. //ask to do something
  896. overwrite_dialog->popup_centered_minsize();
  897. overwrite_dialog->grab_focus();
  898. return;
  899. }
  900. }
  901. Map<String, String> file_renames;
  902. Map<String, String> folder_renames;
  903. bool is_moved = false;
  904. for (int i = 0; i < to_move.size(); i++) {
  905. String old_path = to_move[i].path.ends_with("/") ? to_move[i].path.substr(0, to_move[i].path.length() - 1) : to_move[i].path;
  906. String new_path = p_to_path.plus_file(old_path.get_file());
  907. if (old_path != new_path) {
  908. _try_move_item(to_move[i], new_path, file_renames, folder_renames);
  909. is_moved = true;
  910. }
  911. }
  912. if (is_moved) {
  913. _update_dependencies_after_move(file_renames);
  914. _update_resource_paths_after_move(file_renames);
  915. _update_project_settings_after_move(file_renames);
  916. _update_favorite_dirs_list_after_move(folder_renames);
  917. print_line("call rescan!");
  918. _rescan();
  919. }
  920. }
  921. void FileSystemDock::_file_option(int p_option) {
  922. switch (p_option) {
  923. case FILE_SHOW_IN_EXPLORER: {
  924. String path = this->path;
  925. // first try to grab directory from selected file, so that it works for searched files
  926. int idx = files->get_current();
  927. if (idx >= 0 && idx < files->get_item_count()) {
  928. path = files->get_item_metadata(idx);
  929. path = path.get_base_dir();
  930. }
  931. path = ProjectSettings::get_singleton()->globalize_path(path);
  932. OS::get_singleton()->shell_open(String("file://") + path);
  933. } break;
  934. case FILE_OPEN: {
  935. for (int i = 0; i < files->get_item_count(); i++) {
  936. if (files->is_selected(i)) {
  937. _select_file(i);
  938. }
  939. }
  940. } break;
  941. case FILE_INSTANCE: {
  942. Vector<String> paths;
  943. for (int i = 0; i < files->get_item_count(); i++) {
  944. if (!files->is_selected(i))
  945. continue;
  946. String fpath = files->get_item_metadata(i);
  947. if (EditorFileSystem::get_singleton()->get_file_type(fpath) == "PackedScene") {
  948. paths.push_back(fpath);
  949. }
  950. }
  951. if (!paths.empty()) {
  952. emit_signal("instance", paths);
  953. }
  954. } break;
  955. case FILE_DEPENDENCIES: {
  956. int idx = files->get_current();
  957. if (idx < 0 || idx >= files->get_item_count())
  958. break;
  959. String fpath = files->get_item_metadata(idx);
  960. deps_editor->edit(fpath);
  961. } break;
  962. case FILE_OWNERS: {
  963. int idx = files->get_current();
  964. if (idx < 0 || idx >= files->get_item_count())
  965. break;
  966. String fpath = files->get_item_metadata(idx);
  967. owners_editor->show(fpath);
  968. } break;
  969. case FILE_MOVE: {
  970. to_move.clear();
  971. for (int i = 0; i < files->get_item_count(); i++) {
  972. if (!files->is_selected(i))
  973. continue;
  974. String fpath = files->get_item_metadata(i);
  975. to_move.push_back(FileOrFolder(fpath, !fpath.ends_with("/")));
  976. }
  977. if (to_move.size() > 0) {
  978. move_dialog->popup_centered_ratio();
  979. }
  980. } break;
  981. case FILE_RENAME: {
  982. int idx = files->get_current();
  983. if (idx < 0 || idx >= files->get_item_count())
  984. break;
  985. to_rename.path = files->get_item_metadata(idx);
  986. to_rename.is_file = !to_rename.path.ends_with("/");
  987. if (to_rename.is_file) {
  988. String name = to_rename.path.get_file();
  989. rename_dialog->set_title(TTR("Renaming file:") + " " + name);
  990. rename_dialog_text->set_text(name);
  991. rename_dialog_text->select(0, name.find_last("."));
  992. } else {
  993. String name = to_rename.path.substr(0, to_rename.path.length() - 1).get_file();
  994. rename_dialog->set_title(TTR("Renaming folder:") + " " + name);
  995. rename_dialog_text->set_text(name);
  996. rename_dialog_text->select(0, name.length());
  997. }
  998. rename_dialog->popup_centered_minsize(Size2(250, 80) * EDSCALE);
  999. rename_dialog_text->grab_focus();
  1000. } break;
  1001. case FILE_REMOVE: {
  1002. Vector<String> remove_files;
  1003. Vector<String> remove_folders;
  1004. for (int i = 0; i < files->get_item_count(); i++) {
  1005. String fpath = files->get_item_metadata(i);
  1006. if (files->is_selected(i) && fpath != "res://") {
  1007. if (fpath.ends_with("/")) {
  1008. remove_folders.push_back(fpath);
  1009. } else {
  1010. remove_files.push_back(fpath);
  1011. }
  1012. }
  1013. }
  1014. if (remove_files.size() + remove_folders.size() > 0) {
  1015. remove_dialog->show(remove_folders, remove_files);
  1016. //1) find if used
  1017. //2) warn
  1018. }
  1019. } break;
  1020. case FILE_DUPLICATE: {
  1021. int idx = files->get_current();
  1022. if (idx < 0 || idx >= files->get_item_count())
  1023. break;
  1024. to_duplicate.path = files->get_item_metadata(idx);
  1025. to_duplicate.is_file = !to_duplicate.path.ends_with("/");
  1026. if (to_duplicate.is_file) {
  1027. String name = to_duplicate.path.get_file();
  1028. duplicate_dialog->set_title(TTR("Duplicating file:") + " " + name);
  1029. duplicate_dialog_text->set_text(name);
  1030. duplicate_dialog_text->select(0, name.find_last("."));
  1031. } else {
  1032. String name = to_duplicate.path.substr(0, to_duplicate.path.length() - 1).get_file();
  1033. duplicate_dialog->set_title(TTR("Duplicating folder:") + " " + name);
  1034. duplicate_dialog_text->set_text(name);
  1035. duplicate_dialog_text->select(0, name.length());
  1036. }
  1037. duplicate_dialog->popup_centered_minsize(Size2(250, 80) * EDSCALE);
  1038. duplicate_dialog_text->grab_focus();
  1039. } break;
  1040. case FILE_INFO: {
  1041. } break;
  1042. case FILE_REIMPORT: {
  1043. Vector<String> reimport;
  1044. for (int i = 0; i < files->get_item_count(); i++) {
  1045. if (!files->is_selected(i))
  1046. continue;
  1047. String fpath = files->get_item_metadata(i);
  1048. reimport.push_back(fpath);
  1049. }
  1050. ERR_FAIL_COND(reimport.size() == 0);
  1051. /*
  1052. Ref<ResourceImportMetadata> rimd = ResourceLoader::load_import_metadata(reimport[0]);
  1053. ERR_FAIL_COND(!rimd.is_valid());
  1054. String editor=rimd->get_editor();
  1055. if (editor.begins_with("texture_")) { //compatibility fix for old texture format
  1056. editor="texture";
  1057. }
  1058. Ref<EditorImportPlugin> rimp = EditorImportExport::get_singleton()->get_import_plugin_by_name(editor);
  1059. ERR_FAIL_COND(!rimp.is_valid());
  1060. if (reimport.size()==1) {
  1061. rimp->import_dialog(reimport[0]);
  1062. } else {
  1063. rimp->reimport_multiple_files(reimport);
  1064. }
  1065. */
  1066. } break;
  1067. case FILE_NEW_FOLDER: {
  1068. make_dir_dialog_text->set_text("new folder");
  1069. make_dir_dialog_text->select_all();
  1070. make_dir_dialog->popup_centered_minsize(Size2(250, 80) * EDSCALE);
  1071. make_dir_dialog_text->grab_focus();
  1072. } break;
  1073. case FILE_NEW_SCRIPT: {
  1074. String tarDir = path;
  1075. if (tarDir != "res://" && !tarDir.ends_with("/")) {
  1076. tarDir += "/";
  1077. }
  1078. make_script_dialog_text->config("Node", tarDir + "new_script.gd");
  1079. make_script_dialog_text->popup_centered(Size2(300, 300) * EDSCALE);
  1080. } break;
  1081. case FILE_COPY_PATH: {
  1082. int idx = files->get_current();
  1083. if (idx < 0 || idx >= files->get_item_count())
  1084. break;
  1085. String fpath = files->get_item_metadata(idx);
  1086. OS::get_singleton()->set_clipboard(fpath);
  1087. } break;
  1088. }
  1089. }
  1090. void FileSystemDock::_folder_option(int p_option) {
  1091. TreeItem *selected = tree->get_selected();
  1092. switch (p_option) {
  1093. case FOLDER_EXPAND_ALL:
  1094. case FOLDER_COLLAPSE_ALL: {
  1095. bool is_collapsed = (p_option == FOLDER_COLLAPSE_ALL);
  1096. Vector<TreeItem *> needs_check;
  1097. needs_check.push_back(selected);
  1098. while (needs_check.size()) {
  1099. needs_check[0]->set_collapsed(is_collapsed);
  1100. TreeItem *child = needs_check[0]->get_children();
  1101. while (child) {
  1102. needs_check.push_back(child);
  1103. child = child->get_next();
  1104. }
  1105. needs_check.remove(0);
  1106. }
  1107. } break;
  1108. case FOLDER_MOVE: {
  1109. to_move.clear();
  1110. String fpath = selected->get_metadata(tree->get_selected_column());
  1111. if (fpath != "res://") {
  1112. fpath = fpath.ends_with("/") ? fpath.substr(0, fpath.length() - 1) : fpath;
  1113. to_move.push_back(FileOrFolder(fpath, false));
  1114. move_dialog->popup_centered_ratio();
  1115. }
  1116. } break;
  1117. case FOLDER_RENAME: {
  1118. to_rename.path = selected->get_metadata(tree->get_selected_column());
  1119. to_rename.is_file = false;
  1120. if (to_rename.path != "res://") {
  1121. String name = to_rename.path.ends_with("/") ? to_rename.path.substr(0, to_rename.path.length() - 1).get_file() : to_rename.path.get_file();
  1122. rename_dialog->set_title(TTR("Renaming folder:") + " " + name);
  1123. rename_dialog_text->set_text(name);
  1124. rename_dialog_text->select(0, name.length());
  1125. rename_dialog->popup_centered_minsize(Size2(250, 80) * EDSCALE);
  1126. rename_dialog_text->grab_focus();
  1127. }
  1128. } break;
  1129. case FOLDER_REMOVE: {
  1130. Vector<String> remove_folders;
  1131. Vector<String> remove_files;
  1132. String fpath = selected->get_metadata(tree->get_selected_column());
  1133. if (fpath != "res://") {
  1134. remove_folders.push_back(fpath);
  1135. remove_dialog->show(remove_folders, remove_files);
  1136. }
  1137. } break;
  1138. case FOLDER_NEW_FOLDER: {
  1139. make_dir_dialog_text->set_text("new folder");
  1140. make_dir_dialog_text->select_all();
  1141. make_dir_dialog->popup_centered_minsize(Size2(250, 80) * EDSCALE);
  1142. make_dir_dialog_text->grab_focus();
  1143. } break;
  1144. case FOLDER_COPY_PATH: {
  1145. String fpath = selected->get_metadata(tree->get_selected_column());
  1146. OS::get_singleton()->set_clipboard(fpath);
  1147. } break;
  1148. case FOLDER_SHOW_IN_EXPLORER: {
  1149. String fpath = selected->get_metadata(tree->get_selected_column());
  1150. String dir = ProjectSettings::get_singleton()->globalize_path(fpath);
  1151. OS::get_singleton()->shell_open(String("file://") + dir);
  1152. } break;
  1153. }
  1154. }
  1155. void FileSystemDock::_go_to_file_list() {
  1156. if (low_height_mode) {
  1157. tree->hide();
  1158. file_list_vb->show();
  1159. button_favorite->hide();
  1160. } else {
  1161. bool collapsed = tree->get_selected()->is_collapsed();
  1162. tree->get_selected()->set_collapsed(!collapsed);
  1163. }
  1164. //file_options->show();
  1165. _update_files(false);
  1166. //emit_signal("open",path);
  1167. }
  1168. void FileSystemDock::_dir_rmb_pressed(const Vector2 &p_pos) {
  1169. folder_options->clear();
  1170. folder_options->set_size(Size2(1, 1));
  1171. folder_options->add_item(TTR("Expand all"), FOLDER_EXPAND_ALL);
  1172. folder_options->add_item(TTR("Collapse all"), FOLDER_COLLAPSE_ALL);
  1173. TreeItem *item = tree->get_selected();
  1174. if (item) {
  1175. String fpath = item->get_metadata(tree->get_selected_column());
  1176. folder_options->add_separator();
  1177. folder_options->add_item(TTR("Copy Path"), FOLDER_COPY_PATH);
  1178. if (fpath != "res://") {
  1179. folder_options->add_item(TTR("Rename..."), FOLDER_RENAME);
  1180. folder_options->add_item(TTR("Move To..."), FOLDER_MOVE);
  1181. folder_options->add_item(TTR("Delete"), FOLDER_REMOVE);
  1182. }
  1183. folder_options->add_separator();
  1184. folder_options->add_item(TTR("New Folder..."), FOLDER_NEW_FOLDER);
  1185. folder_options->add_item(TTR("Show In File Manager"), FOLDER_SHOW_IN_EXPLORER);
  1186. }
  1187. folder_options->set_position(tree->get_global_position() + p_pos);
  1188. folder_options->popup();
  1189. }
  1190. void FileSystemDock::_search_changed(const String &p_text) {
  1191. if (file_list_vb->is_visible())
  1192. _update_files(false);
  1193. }
  1194. void FileSystemDock::_rescan() {
  1195. _set_scanning_mode();
  1196. EditorFileSystem::get_singleton()->scan();
  1197. }
  1198. void FileSystemDock::fix_dependencies(const String &p_for_file) {
  1199. deps_editor->edit(p_for_file);
  1200. }
  1201. void FileSystemDock::focus_on_filter() {
  1202. if (low_height_mode && tree->is_visible()) {
  1203. // Tree mode, switch to files list with search box
  1204. tree->hide();
  1205. file_list_vb->show();
  1206. button_favorite->hide();
  1207. }
  1208. search_box->grab_focus();
  1209. }
  1210. void FileSystemDock::set_display_mode(int p_mode) {
  1211. if (p_mode == display_mode)
  1212. return;
  1213. button_display_mode->set_pressed(p_mode == DISPLAY_LIST);
  1214. _change_file_display();
  1215. }
  1216. Variant FileSystemDock::get_drag_data_fw(const Point2 &p_point, Control *p_from) {
  1217. bool is_favorite = false;
  1218. Vector<String> paths;
  1219. if (p_from == tree) {
  1220. TreeItem *selected = tree->get_selected();
  1221. if (!selected)
  1222. return Variant();
  1223. String folder = selected->get_metadata(0);
  1224. if (folder == String())
  1225. return Variant();
  1226. paths.push_back(folder.ends_with("/") ? folder : (folder + "/"));
  1227. is_favorite = selected->get_parent() != NULL && tree->get_root()->get_children() == selected->get_parent();
  1228. } else if (p_from == files) {
  1229. for (int i = 0; i < files->get_item_count(); i++) {
  1230. if (files->is_selected(i)) {
  1231. paths.push_back(files->get_item_metadata(i));
  1232. }
  1233. }
  1234. }
  1235. if (paths.empty())
  1236. return Variant();
  1237. Dictionary drag_data = EditorNode::get_singleton()->drag_files_and_dirs(paths, p_from);
  1238. if (is_favorite) {
  1239. drag_data["type"] = "favorite";
  1240. }
  1241. return drag_data;
  1242. }
  1243. bool FileSystemDock::can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const {
  1244. Dictionary drag_data = p_data;
  1245. if (drag_data.has("type") && String(drag_data["type"]) == "favorite") {
  1246. //moving favorite around
  1247. TreeItem *ti = tree->get_item_at_position(p_point);
  1248. if (!ti)
  1249. return false;
  1250. int what = tree->get_drop_section_at_position(p_point);
  1251. if (ti == tree->get_root()->get_children()) {
  1252. return (what == 1); //the parent, first fav
  1253. }
  1254. if (ti->get_parent() && tree->get_root()->get_children() == ti->get_parent()) {
  1255. return true; // a favorite
  1256. }
  1257. if (ti == tree->get_root()->get_children()->get_next()) {
  1258. return (what == -1); //the tree, last fav
  1259. }
  1260. return false;
  1261. }
  1262. if (drag_data.has("type") && String(drag_data["type"]) == "resource") {
  1263. String to_dir = _get_drag_target_folder(p_point, p_from);
  1264. return !to_dir.empty();
  1265. }
  1266. if (drag_data.has("type") && (String(drag_data["type"]) == "files" || String(drag_data["type"]) == "files_and_dirs")) {
  1267. String to_dir = _get_drag_target_folder(p_point, p_from);
  1268. if (to_dir.empty())
  1269. return false;
  1270. //Attempting to move a folder into itself will fail later
  1271. //Rather than bring up a message don't try to do it in the first place
  1272. to_dir = to_dir.ends_with("/") ? to_dir : (to_dir + "/");
  1273. Vector<String> fnames = drag_data["files"];
  1274. for (int i = 0; i < fnames.size(); ++i) {
  1275. if (fnames[i].ends_with("/") && to_dir.begins_with(fnames[i]))
  1276. return false;
  1277. }
  1278. return true;
  1279. }
  1280. return false;
  1281. }
  1282. void FileSystemDock::drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) {
  1283. if (!can_drop_data_fw(p_point, p_data, p_from))
  1284. return;
  1285. Dictionary drag_data = p_data;
  1286. if (drag_data.has("type") && String(drag_data["type"]) == "favorite") {
  1287. //moving favorite around
  1288. TreeItem *ti = tree->get_item_at_position(p_point);
  1289. if (!ti)
  1290. return;
  1291. Vector<String> files = drag_data["files"];
  1292. ERR_FAIL_COND(files.size() != 1);
  1293. String swap = files[0];
  1294. if (swap != "res://" && swap.ends_with("/")) {
  1295. swap = swap.substr(0, swap.length() - 1);
  1296. }
  1297. int what = tree->get_drop_section_at_position(p_point);
  1298. TreeItem *swap_item = NULL;
  1299. if (ti == tree->get_root()->get_children()) {
  1300. swap_item = tree->get_root()->get_children()->get_children();
  1301. } else if (ti->get_parent() && tree->get_root()->get_children() == ti->get_parent()) {
  1302. if (what == -1) {
  1303. swap_item = ti;
  1304. } else {
  1305. swap_item = ti->get_next();
  1306. }
  1307. }
  1308. String swap_with;
  1309. if (swap_item) {
  1310. swap_with = swap_item->get_metadata(0);
  1311. if (swap_with != "res://" && swap_with.ends_with("/")) {
  1312. swap_with = swap_with.substr(0, swap_with.length() - 1);
  1313. }
  1314. }
  1315. if (swap == swap_with)
  1316. return;
  1317. Vector<String> dirs = EditorSettings::get_singleton()->get_favorite_dirs();
  1318. ERR_FAIL_COND(dirs.find(swap) == -1);
  1319. ERR_FAIL_COND(swap_with != String() && dirs.find(swap_with) == -1);
  1320. dirs.erase(swap);
  1321. if (swap_with == String()) {
  1322. dirs.push_back(swap);
  1323. } else {
  1324. int idx = dirs.find(swap_with);
  1325. dirs.insert(idx, swap);
  1326. }
  1327. EditorSettings::get_singleton()->set_favorite_dirs(dirs);
  1328. _update_tree(true);
  1329. return;
  1330. }
  1331. if (drag_data.has("type") && String(drag_data["type"]) == "resource") {
  1332. Ref<Resource> res = drag_data["resource"];
  1333. String to_dir = _get_drag_target_folder(p_point, p_from);
  1334. if (res.is_valid() && !to_dir.empty()) {
  1335. EditorNode::get_singleton()->push_item(res.ptr());
  1336. EditorNode::get_singleton()->save_resource_as(res, to_dir);
  1337. }
  1338. }
  1339. if (drag_data.has("type") && (String(drag_data["type"]) == "files" || String(drag_data["type"]) == "files_and_dirs")) {
  1340. String to_dir = _get_drag_target_folder(p_point, p_from);
  1341. if (!to_dir.empty()) {
  1342. Vector<String> fnames = drag_data["files"];
  1343. to_move.clear();
  1344. for (int i = 0; i < fnames.size(); i++) {
  1345. to_move.push_back(FileOrFolder(fnames[i], !fnames[i].ends_with("/")));
  1346. }
  1347. _move_operation_confirm(to_dir);
  1348. }
  1349. }
  1350. }
  1351. String FileSystemDock::_get_drag_target_folder(const Point2 &p_point, Control *p_from) const {
  1352. if (p_from == files) {
  1353. int pos = files->get_item_at_position(p_point, true);
  1354. if (pos == -1)
  1355. return path;
  1356. String target = files->get_item_metadata(pos);
  1357. return target.ends_with("/") ? target : path;
  1358. }
  1359. if (p_from == tree) {
  1360. TreeItem *ti = tree->get_item_at_position(p_point);
  1361. if (ti && ti != tree->get_root()->get_children())
  1362. return ti->get_metadata(0);
  1363. }
  1364. return String();
  1365. }
  1366. void FileSystemDock::_files_list_rmb_select(int p_item, const Vector2 &p_pos) {
  1367. //Right clicking ".." should clear current selection
  1368. if (files->get_item_text(p_item) == "..") {
  1369. for (int i = 0; i < files->get_item_count(); i++) {
  1370. files->unselect(i);
  1371. }
  1372. }
  1373. Vector<String> filenames;
  1374. Vector<String> foldernames;
  1375. bool all_files = true;
  1376. bool all_files_scenes = true;
  1377. bool all_folders = true;
  1378. for (int i = 0; i < files->get_item_count(); i++) {
  1379. if (!files->is_selected(i)) {
  1380. continue;
  1381. }
  1382. String fpath = files->get_item_metadata(i);
  1383. if (fpath.ends_with("/")) {
  1384. foldernames.push_back(fpath);
  1385. all_files = false;
  1386. } else {
  1387. filenames.push_back(fpath);
  1388. all_folders = false;
  1389. all_files_scenes &= (EditorFileSystem::get_singleton()->get_file_type(fpath) == "PackedScene");
  1390. }
  1391. }
  1392. file_options->clear();
  1393. file_options->set_size(Size2(1, 1));
  1394. if (all_files) {
  1395. if (all_files_scenes && filenames.size() >= 1) {
  1396. file_options->add_item(TTR("Open Scene(s)"), FILE_OPEN);
  1397. file_options->add_item(TTR("Instance"), FILE_INSTANCE);
  1398. file_options->add_separator();
  1399. }
  1400. if (!all_files_scenes && filenames.size() == 1) {
  1401. file_options->add_item(TTR("Open"), FILE_OPEN);
  1402. file_options->add_separator();
  1403. }
  1404. if (filenames.size() == 1) {
  1405. file_options->add_item(TTR("Edit Dependencies..."), FILE_DEPENDENCIES);
  1406. file_options->add_item(TTR("View Owners..."), FILE_OWNERS);
  1407. file_options->add_separator();
  1408. }
  1409. } else if (all_folders && foldernames.size() > 0) {
  1410. file_options->add_item(TTR("Open"), FILE_OPEN);
  1411. file_options->add_separator();
  1412. }
  1413. int num_items = filenames.size() + foldernames.size();
  1414. if (num_items >= 1) {
  1415. if (num_items == 1) {
  1416. file_options->add_item(TTR("Copy Path"), FILE_COPY_PATH);
  1417. file_options->add_item(TTR("Rename..."), FILE_RENAME);
  1418. file_options->add_item(TTR("Duplicate..."), FILE_DUPLICATE);
  1419. }
  1420. file_options->add_item(TTR("Move To..."), FILE_MOVE);
  1421. file_options->add_item(TTR("Delete"), FILE_REMOVE);
  1422. file_options->add_separator();
  1423. }
  1424. file_options->add_item(TTR("New Folder..."), FILE_NEW_FOLDER);
  1425. file_options->add_item(TTR("New Script..."), FILE_NEW_SCRIPT);
  1426. file_options->add_item(TTR("Show In File Manager"), FILE_SHOW_IN_EXPLORER);
  1427. file_options->set_position(files->get_global_position() + p_pos);
  1428. file_options->popup();
  1429. }
  1430. void FileSystemDock::_rmb_pressed(const Vector2 &p_pos) {
  1431. file_options->clear();
  1432. file_options->set_size(Size2(1, 1));
  1433. file_options->add_item(TTR("New Folder..."), FILE_NEW_FOLDER);
  1434. file_options->add_item(TTR("New Script..."), FILE_NEW_SCRIPT);
  1435. file_options->add_item(TTR("Show In File Manager"), FILE_SHOW_IN_EXPLORER);
  1436. file_options->set_position(files->get_global_position() + p_pos);
  1437. file_options->popup();
  1438. }
  1439. void FileSystemDock::select_file(const String &p_file) {
  1440. navigate_to_path(p_file);
  1441. }
  1442. void FileSystemDock::_file_multi_selected(int p_index, bool p_selected) {
  1443. import_dock_needs_update = true;
  1444. call_deferred("_update_import_dock");
  1445. }
  1446. void FileSystemDock::_files_gui_input(Ref<InputEvent> p_event) {
  1447. if (get_viewport()->get_modal_stack_top())
  1448. return; //ignore because of modal window
  1449. Ref<InputEventKey> key = p_event;
  1450. if (key.is_valid() && key->is_pressed() && !key->is_echo()) {
  1451. if (ED_IS_SHORTCUT("filesystem_dock/duplicate", p_event)) {
  1452. _file_option(FILE_DUPLICATE);
  1453. } else if (ED_IS_SHORTCUT("filesystem_dock/copy_path", p_event)) {
  1454. _file_option(FILE_COPY_PATH);
  1455. } else if (ED_IS_SHORTCUT("filesystem_dock/delete", p_event)) {
  1456. _file_option(FILE_REMOVE);
  1457. } else if (ED_IS_SHORTCUT("filesystem_dock/rename", p_event)) {
  1458. _file_option(FILE_RENAME);
  1459. }
  1460. }
  1461. }
  1462. void FileSystemDock::_file_selected() {
  1463. import_dock_needs_update = true;
  1464. _update_import_dock();
  1465. }
  1466. void FileSystemDock::_update_import_dock() {
  1467. if (!import_dock_needs_update)
  1468. return;
  1469. //check import
  1470. Vector<String> imports;
  1471. String import_type;
  1472. for (int i = 0; i < files->get_item_count(); i++) {
  1473. if (!files->is_selected(i))
  1474. continue;
  1475. String fpath = files->get_item_metadata(i);
  1476. if (!FileAccess::exists(fpath + ".import")) {
  1477. imports.clear();
  1478. break;
  1479. }
  1480. Ref<ConfigFile> cf;
  1481. cf.instance();
  1482. Error err = cf->load(fpath + ".import");
  1483. if (err != OK) {
  1484. imports.clear();
  1485. break;
  1486. }
  1487. String type = cf->get_value("remap", "type");
  1488. if (import_type == "") {
  1489. import_type = type;
  1490. } else if (import_type != type) {
  1491. //all should be the same type
  1492. imports.clear();
  1493. break;
  1494. }
  1495. imports.push_back(fpath);
  1496. }
  1497. if (imports.size() == 0) {
  1498. EditorNode::get_singleton()->get_import_dock()->clear();
  1499. } else if (imports.size() == 1) {
  1500. EditorNode::get_singleton()->get_import_dock()->set_edit_path(imports[0]);
  1501. } else {
  1502. EditorNode::get_singleton()->get_import_dock()->set_edit_multiple_paths(imports);
  1503. }
  1504. import_dock_needs_update = false;
  1505. }
  1506. void FileSystemDock::_bind_methods() {
  1507. ClassDB::bind_method(D_METHOD("_files_gui_input"), &FileSystemDock::_files_gui_input);
  1508. ClassDB::bind_method(D_METHOD("_update_tree"), &FileSystemDock::_update_tree);
  1509. ClassDB::bind_method(D_METHOD("_rescan"), &FileSystemDock::_rescan);
  1510. ClassDB::bind_method(D_METHOD("_favorites_pressed"), &FileSystemDock::_favorites_pressed);
  1511. ClassDB::bind_method(D_METHOD("_show_current_scene_file"), &FileSystemDock::_show_current_scene_file);
  1512. //ClassDB::bind_method(D_METHOD("_instance_pressed"),&ScenesDock::_instance_pressed);
  1513. ClassDB::bind_method(D_METHOD("_go_to_file_list"), &FileSystemDock::_go_to_file_list);
  1514. ClassDB::bind_method(D_METHOD("_dir_rmb_pressed"), &FileSystemDock::_dir_rmb_pressed);
  1515. ClassDB::bind_method(D_METHOD("_thumbnail_done"), &FileSystemDock::_thumbnail_done);
  1516. ClassDB::bind_method(D_METHOD("_select_file"), &FileSystemDock::_select_file);
  1517. ClassDB::bind_method(D_METHOD("_go_to_tree"), &FileSystemDock::_go_to_tree);
  1518. ClassDB::bind_method(D_METHOD("navigate_to_path"), &FileSystemDock::navigate_to_path);
  1519. ClassDB::bind_method(D_METHOD("_change_file_display"), &FileSystemDock::_change_file_display);
  1520. ClassDB::bind_method(D_METHOD("_fw_history"), &FileSystemDock::_fw_history);
  1521. ClassDB::bind_method(D_METHOD("_bw_history"), &FileSystemDock::_bw_history);
  1522. ClassDB::bind_method(D_METHOD("_fs_changed"), &FileSystemDock::_fs_changed);
  1523. ClassDB::bind_method(D_METHOD("_dir_selected"), &FileSystemDock::_dir_selected);
  1524. ClassDB::bind_method(D_METHOD("_file_option"), &FileSystemDock::_file_option);
  1525. ClassDB::bind_method(D_METHOD("_folder_option"), &FileSystemDock::_folder_option);
  1526. ClassDB::bind_method(D_METHOD("_make_dir_confirm"), &FileSystemDock::_make_dir_confirm);
  1527. ClassDB::bind_method(D_METHOD("_move_operation_confirm"), &FileSystemDock::_move_operation_confirm);
  1528. ClassDB::bind_method(D_METHOD("_move_with_overwrite"), &FileSystemDock::_move_with_overwrite);
  1529. ClassDB::bind_method(D_METHOD("_rename_operation_confirm"), &FileSystemDock::_rename_operation_confirm);
  1530. ClassDB::bind_method(D_METHOD("_duplicate_operation_confirm"), &FileSystemDock::_duplicate_operation_confirm);
  1531. ClassDB::bind_method(D_METHOD("_search_changed"), &FileSystemDock::_search_changed);
  1532. ClassDB::bind_method(D_METHOD("get_drag_data_fw"), &FileSystemDock::get_drag_data_fw);
  1533. ClassDB::bind_method(D_METHOD("can_drop_data_fw"), &FileSystemDock::can_drop_data_fw);
  1534. ClassDB::bind_method(D_METHOD("drop_data_fw"), &FileSystemDock::drop_data_fw);
  1535. ClassDB::bind_method(D_METHOD("_files_list_rmb_select"), &FileSystemDock::_files_list_rmb_select);
  1536. ClassDB::bind_method(D_METHOD("_preview_invalidated"), &FileSystemDock::_preview_invalidated);
  1537. ClassDB::bind_method(D_METHOD("_file_selected"), &FileSystemDock::_file_selected);
  1538. ClassDB::bind_method(D_METHOD("_file_multi_selected"), &FileSystemDock::_file_multi_selected);
  1539. ClassDB::bind_method(D_METHOD("_update_import_dock"), &FileSystemDock::_update_import_dock);
  1540. ClassDB::bind_method(D_METHOD("_rmb_pressed"), &FileSystemDock::_rmb_pressed);
  1541. ADD_SIGNAL(MethodInfo("instance", PropertyInfo(Variant::POOL_STRING_ARRAY, "files")));
  1542. ADD_SIGNAL(MethodInfo("open"));
  1543. }
  1544. FileSystemDock::FileSystemDock(EditorNode *p_editor) {
  1545. set_name("FileSystem");
  1546. editor = p_editor;
  1547. path = "res://";
  1548. ED_SHORTCUT("filesystem_dock/copy_path", TTR("Copy Path"), KEY_MASK_CMD | KEY_C);
  1549. ED_SHORTCUT("filesystem_dock/duplicate", TTR("Duplicate..."), KEY_MASK_CMD | KEY_D);
  1550. ED_SHORTCUT("filesystem_dock/delete", TTR("Delete"), KEY_DELETE);
  1551. ED_SHORTCUT("filesystem_dock/rename", TTR("Rename"));
  1552. HBoxContainer *toolbar_hbc = memnew(HBoxContainer);
  1553. toolbar_hbc->add_constant_override("separation", 0);
  1554. add_child(toolbar_hbc);
  1555. button_hist_prev = memnew(ToolButton);
  1556. button_hist_prev->set_disabled(true);
  1557. button_hist_prev->set_focus_mode(FOCUS_NONE);
  1558. button_hist_prev->set_tooltip(TTR("Previous Directory"));
  1559. toolbar_hbc->add_child(button_hist_prev);
  1560. button_hist_next = memnew(ToolButton);
  1561. button_hist_next->set_disabled(true);
  1562. button_hist_next->set_focus_mode(FOCUS_NONE);
  1563. button_hist_next->set_tooltip(TTR("Next Directory"));
  1564. toolbar_hbc->add_child(button_hist_next);
  1565. current_path = memnew(LineEdit);
  1566. current_path->set_h_size_flags(SIZE_EXPAND_FILL);
  1567. toolbar_hbc->add_child(current_path);
  1568. button_reload = memnew(Button);
  1569. button_reload->set_flat(true);
  1570. button_reload->connect("pressed", this, "_rescan");
  1571. button_reload->set_focus_mode(FOCUS_NONE);
  1572. button_reload->set_tooltip(TTR("Re-Scan Filesystem"));
  1573. button_reload->hide();
  1574. toolbar_hbc->add_child(button_reload);
  1575. //toolbar_hbc->add_spacer();
  1576. button_favorite = memnew(Button);
  1577. button_favorite->set_flat(true);
  1578. button_favorite->set_toggle_mode(true);
  1579. button_favorite->connect("pressed", this, "_favorites_pressed");
  1580. button_favorite->set_tooltip(TTR("Toggle folder status as Favorite."));
  1581. button_favorite->set_focus_mode(FOCUS_NONE);
  1582. toolbar_hbc->add_child(button_favorite);
  1583. button_show = memnew(Button);
  1584. button_show->set_flat(true);
  1585. button_show->connect("pressed", this, "_show_current_scene_file");
  1586. toolbar_hbc->add_child(button_show);
  1587. button_show->set_focus_mode(FOCUS_NONE);
  1588. button_show->set_tooltip(TTR("Show current scene file."));
  1589. //Control *spacer = memnew( Control);
  1590. /*
  1591. button_open = memnew( Button );
  1592. button_open->set_flat(true);
  1593. button_open->connect("pressed",this,"_go_to_file_list");
  1594. toolbar_hbc->add_child(button_open);
  1595. button_open->hide();
  1596. button_open->set_focus_mode(FOCUS_NONE);
  1597. button_open->set_tooltip("Open the selected file.\nOpen as scene if a scene, or as resource otherwise.");
  1598. button_instance = memnew( Button );
  1599. button_instance->set_flat(true);
  1600. button_instance->connect("pressed",this,"_instance_pressed");
  1601. toolbar_hbc->add_child(button_instance);
  1602. button_instance->hide();
  1603. button_instance->set_focus_mode(FOCUS_NONE);
  1604. button_instance->set_tooltip(TTR("Instance the selected scene(s) as child of the selected node."));
  1605. */
  1606. file_options = memnew(PopupMenu);
  1607. add_child(file_options);
  1608. folder_options = memnew(PopupMenu);
  1609. add_child(folder_options);
  1610. split_box = memnew(VSplitContainer);
  1611. split_box->set_v_size_flags(SIZE_EXPAND_FILL);
  1612. add_child(split_box);
  1613. tree = memnew(Tree);
  1614. tree->set_hide_root(true);
  1615. tree->set_drag_forwarding(this);
  1616. tree->set_allow_rmb_select(true);
  1617. tree->set_custom_minimum_size(Size2(0, 200 * EDSCALE));
  1618. split_box->add_child(tree);
  1619. tree->connect("item_edited", this, "_favorite_toggled");
  1620. tree->connect("item_activated", this, "_go_to_file_list");
  1621. tree->connect("cell_selected", this, "_dir_selected");
  1622. tree->connect("item_rmb_selected", this, "_dir_rmb_pressed");
  1623. file_list_vb = memnew(VBoxContainer);
  1624. file_list_vb->set_v_size_flags(SIZE_EXPAND_FILL);
  1625. split_box->add_child(file_list_vb);
  1626. path_hb = memnew(HBoxContainer);
  1627. file_list_vb->add_child(path_hb);
  1628. button_tree = memnew(ToolButton);
  1629. button_tree->set_tooltip(TTR("Enter tree-view."));
  1630. button_tree->hide();
  1631. path_hb->add_child(button_tree);
  1632. search_box = memnew(LineEdit);
  1633. search_box->set_h_size_flags(SIZE_EXPAND_FILL);
  1634. search_box->set_placeholder(TTR("Search files"));
  1635. search_box->connect("text_changed", this, "_search_changed");
  1636. path_hb->add_child(search_box);
  1637. button_display_mode = memnew(ToolButton);
  1638. button_display_mode->set_toggle_mode(true);
  1639. path_hb->add_child(button_display_mode);
  1640. files = memnew(ItemList);
  1641. files->set_v_size_flags(SIZE_EXPAND_FILL);
  1642. files->set_select_mode(ItemList::SELECT_MULTI);
  1643. files->set_drag_forwarding(this);
  1644. files->connect("item_rmb_selected", this, "_files_list_rmb_select");
  1645. files->connect("gui_input", this, "_files_gui_input");
  1646. files->connect("item_selected", this, "_file_selected");
  1647. files->connect("multi_selected", this, "_file_multi_selected");
  1648. files->connect("rmb_clicked", this, "_rmb_pressed");
  1649. files->set_allow_rmb_select(true);
  1650. file_list_vb->add_child(files);
  1651. scanning_vb = memnew(VBoxContainer);
  1652. scanning_vb->hide();
  1653. add_child(scanning_vb);
  1654. Label *slabel = memnew(Label);
  1655. slabel->set_text(TTR("Scanning Files,\nPlease Wait..."));
  1656. slabel->set_align(Label::ALIGN_CENTER);
  1657. scanning_vb->add_child(slabel);
  1658. scanning_progress = memnew(ProgressBar);
  1659. scanning_vb->add_child(scanning_progress);
  1660. deps_editor = memnew(DependencyEditor);
  1661. add_child(deps_editor);
  1662. owners_editor = memnew(DependencyEditorOwners(editor));
  1663. add_child(owners_editor);
  1664. remove_dialog = memnew(DependencyRemoveDialog);
  1665. add_child(remove_dialog);
  1666. move_dialog = memnew(EditorDirDialog);
  1667. move_dialog->get_ok()->set_text(TTR("Move"));
  1668. add_child(move_dialog);
  1669. move_dialog->connect("dir_selected", this, "_move_operation_confirm");
  1670. rename_dialog = memnew(ConfirmationDialog);
  1671. VBoxContainer *rename_dialog_vb = memnew(VBoxContainer);
  1672. rename_dialog->add_child(rename_dialog_vb);
  1673. rename_dialog_text = memnew(LineEdit);
  1674. rename_dialog_vb->add_margin_child(TTR("Name:"), rename_dialog_text);
  1675. rename_dialog->get_ok()->set_text(TTR("Rename"));
  1676. add_child(rename_dialog);
  1677. rename_dialog->register_text_enter(rename_dialog_text);
  1678. rename_dialog->connect("confirmed", this, "_rename_operation_confirm");
  1679. overwrite_dialog = memnew(ConfirmationDialog);
  1680. overwrite_dialog->set_text(TTR("There is already file or folder with the same name in this location."));
  1681. overwrite_dialog->get_ok()->set_text(TTR("Overwrite"));
  1682. add_child(overwrite_dialog);
  1683. overwrite_dialog->connect("confirmed", this, "_move_with_overwrite");
  1684. duplicate_dialog = memnew(ConfirmationDialog);
  1685. VBoxContainer *duplicate_dialog_vb = memnew(VBoxContainer);
  1686. duplicate_dialog->add_child(duplicate_dialog_vb);
  1687. duplicate_dialog_text = memnew(LineEdit);
  1688. duplicate_dialog_vb->add_margin_child(TTR("Name:"), duplicate_dialog_text);
  1689. duplicate_dialog->get_ok()->set_text(TTR("Duplicate"));
  1690. add_child(duplicate_dialog);
  1691. duplicate_dialog->register_text_enter(duplicate_dialog_text);
  1692. duplicate_dialog->connect("confirmed", this, "_duplicate_operation_confirm");
  1693. make_dir_dialog = memnew(ConfirmationDialog);
  1694. make_dir_dialog->set_title(TTR("Create Folder"));
  1695. VBoxContainer *make_folder_dialog_vb = memnew(VBoxContainer);
  1696. make_dir_dialog->add_child(make_folder_dialog_vb);
  1697. make_dir_dialog_text = memnew(LineEdit);
  1698. make_folder_dialog_vb->add_margin_child(TTR("Name:"), make_dir_dialog_text);
  1699. add_child(make_dir_dialog);
  1700. make_dir_dialog->register_text_enter(make_dir_dialog_text);
  1701. make_dir_dialog->connect("confirmed", this, "_make_dir_confirm");
  1702. make_script_dialog_text = memnew(ScriptCreateDialog);
  1703. make_script_dialog_text->set_title(TTR("Create Script"));
  1704. add_child(make_script_dialog_text);
  1705. updating_tree = false;
  1706. initialized = false;
  1707. import_dock_needs_update = false;
  1708. history_pos = 0;
  1709. history_max_size = 20;
  1710. history.push_back("res://");
  1711. low_height_mode = false;
  1712. display_mode = DISPLAY_THUMBNAILS;
  1713. }
  1714. FileSystemDock::~FileSystemDock() {
  1715. }