filesystem_dock.cpp 60 KB

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