create_dialog.cpp 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820
  1. /**************************************************************************/
  2. /* create_dialog.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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 "create_dialog.h"
  31. #include "core/object/class_db.h"
  32. #include "core/os/keyboard.h"
  33. #include "editor/editor_feature_profile.h"
  34. #include "editor/editor_node.h"
  35. #include "editor/editor_paths.h"
  36. #include "editor/editor_settings.h"
  37. #include "editor/editor_string_names.h"
  38. #include "editor/themes/editor_scale.h"
  39. void CreateDialog::popup_create(bool p_dont_clear, bool p_replace_mode, const String &p_current_type, const String &p_current_name) {
  40. _fill_type_list();
  41. icon_fallback = search_options->has_theme_icon(base_type, EditorStringName(EditorIcons)) ? base_type : "Object";
  42. if (p_dont_clear) {
  43. search_box->select_all();
  44. } else {
  45. search_box->clear();
  46. }
  47. if (p_replace_mode) {
  48. search_box->set_text(p_current_type);
  49. }
  50. search_box->grab_focus();
  51. _update_search();
  52. if (p_replace_mode) {
  53. set_title(vformat(TTR("Change Type of \"%s\""), p_current_name));
  54. set_ok_button_text(TTR("Change"));
  55. } else {
  56. set_title(vformat(TTR("Create New %s"), base_type));
  57. set_ok_button_text(TTR("Create"));
  58. }
  59. _load_favorites_and_history();
  60. _save_and_update_favorite_list();
  61. // Restore valid window bounds or pop up at default size.
  62. Rect2 saved_size = EditorSettings::get_singleton()->get_project_metadata("dialog_bounds", "create_new_node", Rect2());
  63. if (saved_size != Rect2()) {
  64. popup(saved_size);
  65. } else {
  66. popup_centered_clamped(Size2(900, 700) * EDSCALE, 0.8);
  67. }
  68. }
  69. void CreateDialog::_fill_type_list() {
  70. List<StringName> complete_type_list;
  71. ClassDB::get_class_list(&complete_type_list);
  72. ScriptServer::get_global_class_list(&complete_type_list);
  73. EditorData &ed = EditorNode::get_editor_data();
  74. for (List<StringName>::Element *I = complete_type_list.front(); I; I = I->next()) {
  75. StringName type = I->get();
  76. if (!_should_hide_type(type)) {
  77. type_list.push_back(type);
  78. if (!ed.get_custom_types().has(type)) {
  79. continue;
  80. }
  81. const Vector<EditorData::CustomType> &ct = ed.get_custom_types()[type];
  82. for (int i = 0; i < ct.size(); i++) {
  83. custom_type_parents[ct[i].name] = type;
  84. custom_type_indices[ct[i].name] = i;
  85. type_list.push_back(ct[i].name);
  86. }
  87. }
  88. }
  89. type_list.sort_custom<StringName::AlphCompare>();
  90. }
  91. bool CreateDialog::_is_type_preferred(const String &p_type) const {
  92. if (ClassDB::class_exists(p_type)) {
  93. return ClassDB::is_parent_class(p_type, preferred_search_result_type);
  94. }
  95. return EditorNode::get_editor_data().script_class_is_parent(p_type, preferred_search_result_type);
  96. }
  97. bool CreateDialog::_is_class_disabled_by_feature_profile(const StringName &p_class) const {
  98. Ref<EditorFeatureProfile> profile = EditorFeatureProfileManager::get_singleton()->get_current_profile();
  99. return !profile.is_null() && profile->is_class_disabled(p_class);
  100. }
  101. bool CreateDialog::_should_hide_type(const StringName &p_type) const {
  102. if (_is_class_disabled_by_feature_profile(p_type)) {
  103. return true;
  104. }
  105. if (is_base_type_node && p_type.operator String().begins_with("Editor")) {
  106. return true; // Do not show editor nodes.
  107. }
  108. if (ClassDB::class_exists(p_type)) {
  109. if (!ClassDB::can_instantiate(p_type) || ClassDB::is_virtual(p_type)) {
  110. return true; // Can't create abstract or virtual class.
  111. }
  112. if (!ClassDB::is_parent_class(p_type, base_type)) {
  113. return true; // Wrong inheritance.
  114. }
  115. if (!ClassDB::is_class_exposed(p_type)) {
  116. return true; // Unexposed types.
  117. }
  118. for (const StringName &E : type_blacklist) {
  119. if (ClassDB::is_parent_class(p_type, E)) {
  120. return true; // Parent type is blacklisted.
  121. }
  122. }
  123. } else {
  124. if (!ScriptServer::is_global_class(p_type)) {
  125. return true;
  126. }
  127. if (!EditorNode::get_editor_data().script_class_is_parent(p_type, base_type)) {
  128. return true; // Wrong inheritance.
  129. }
  130. StringName native_type = ScriptServer::get_global_class_native_base(p_type);
  131. if (ClassDB::class_exists(native_type) && !ClassDB::can_instantiate(native_type)) {
  132. return true;
  133. }
  134. String script_path = ScriptServer::get_global_class_path(p_type);
  135. if (script_path.begins_with("res://addons/")) {
  136. if (!EditorNode::get_singleton()->is_addon_plugin_enabled(script_path.get_slicec('/', 3))) {
  137. return true; // Plugin is not enabled.
  138. }
  139. }
  140. }
  141. return false;
  142. }
  143. void CreateDialog::_update_search() {
  144. search_options->clear();
  145. search_options_types.clear();
  146. TreeItem *root = search_options->create_item();
  147. root->set_text(0, base_type);
  148. root->set_icon(0, search_options->get_editor_theme_icon(icon_fallback));
  149. search_options_types[base_type] = root;
  150. _configure_search_option_item(root, base_type, ClassDB::class_exists(base_type) ? TypeCategory::CPP_TYPE : TypeCategory::OTHER_TYPE);
  151. const String search_text = search_box->get_text();
  152. bool empty_search = search_text.is_empty();
  153. float highest_score = 0.0f;
  154. StringName best_match;
  155. for (List<StringName>::Element *I = type_list.front(); I; I = I->next()) {
  156. StringName candidate = I->get();
  157. if (empty_search || search_text.is_subsequence_ofn(candidate)) {
  158. _add_type(candidate, ClassDB::class_exists(candidate) ? TypeCategory::CPP_TYPE : TypeCategory::OTHER_TYPE);
  159. // Determine the best match for an non-empty search.
  160. if (!empty_search) {
  161. float score = _score_type(candidate.operator String().get_slicec(' ', 0), search_text);
  162. if (score > highest_score) {
  163. highest_score = score;
  164. best_match = candidate;
  165. }
  166. }
  167. }
  168. }
  169. // Select the best result.
  170. if (empty_search) {
  171. select_type(base_type);
  172. } else if (best_match != StringName()) {
  173. select_type(best_match);
  174. } else {
  175. favorite->set_disabled(true);
  176. help_bit->set_custom_text(String(), String(), vformat(TTR("No results for \"%s\"."), search_text.replace("[", "[lb]")));
  177. get_ok_button()->set_disabled(true);
  178. search_options->deselect_all();
  179. }
  180. }
  181. void CreateDialog::_add_type(const StringName &p_type, TypeCategory p_type_category) {
  182. if (search_options_types.has(p_type)) {
  183. return;
  184. }
  185. TypeCategory inherited_type = TypeCategory::OTHER_TYPE;
  186. StringName inherits;
  187. if (p_type_category == TypeCategory::CPP_TYPE) {
  188. inherits = ClassDB::get_parent_class(p_type);
  189. inherited_type = TypeCategory::CPP_TYPE;
  190. } else {
  191. if (p_type_category == TypeCategory::PATH_TYPE || ScriptServer::is_global_class(p_type)) {
  192. Ref<Script> scr;
  193. if (p_type_category == TypeCategory::PATH_TYPE) {
  194. ERR_FAIL_COND(!ResourceLoader::exists(p_type, "Script"));
  195. scr = ResourceLoader::load(p_type, "Script");
  196. } else {
  197. scr = EditorNode::get_editor_data().script_class_load_script(p_type);
  198. }
  199. ERR_FAIL_COND(scr.is_null());
  200. Ref<Script> base = scr->get_base_script();
  201. if (base.is_null()) {
  202. // Must be a native base type.
  203. StringName extends = scr->get_instance_base_type();
  204. if (extends == StringName()) {
  205. // Not a valid script (has compile errors), we therefore ignore it as it can not be instantiated anyway (when selected).
  206. return;
  207. }
  208. inherits = extends;
  209. inherited_type = TypeCategory::CPP_TYPE;
  210. } else {
  211. inherits = base->get_global_name();
  212. if (inherits == StringName()) {
  213. inherits = base->get_path();
  214. inherited_type = TypeCategory::PATH_TYPE;
  215. }
  216. }
  217. } else {
  218. inherits = custom_type_parents[p_type];
  219. if (ClassDB::class_exists(inherits)) {
  220. inherited_type = TypeCategory::CPP_TYPE;
  221. }
  222. }
  223. }
  224. // Should never happen, but just in case...
  225. ERR_FAIL_COND(inherits == StringName());
  226. _add_type(inherits, inherited_type);
  227. TreeItem *item = search_options->create_item(search_options_types[inherits]);
  228. search_options_types[p_type] = item;
  229. _configure_search_option_item(item, p_type, p_type_category);
  230. }
  231. void CreateDialog::_configure_search_option_item(TreeItem *r_item, const StringName &p_type, TypeCategory p_type_category) {
  232. bool script_type = ScriptServer::is_global_class(p_type);
  233. bool is_abstract = false;
  234. if (p_type_category == TypeCategory::CPP_TYPE) {
  235. r_item->set_text(0, p_type);
  236. } else if (p_type_category == TypeCategory::PATH_TYPE) {
  237. r_item->set_text(0, "\"" + p_type + "\"");
  238. } else if (script_type) {
  239. r_item->set_metadata(0, p_type);
  240. r_item->set_text(0, p_type);
  241. String script_path = ScriptServer::get_global_class_path(p_type);
  242. r_item->set_suffix(0, "(" + script_path.get_file() + ")");
  243. Ref<Script> scr = ResourceLoader::load(script_path, "Script");
  244. ERR_FAIL_COND(!scr.is_valid());
  245. is_abstract = scr->is_abstract();
  246. } else {
  247. r_item->set_metadata(0, custom_type_parents[p_type]);
  248. r_item->set_text(0, p_type);
  249. }
  250. bool can_instantiate = (p_type_category == TypeCategory::CPP_TYPE && ClassDB::can_instantiate(p_type)) ||
  251. (p_type_category == TypeCategory::OTHER_TYPE && !is_abstract);
  252. bool instantiable = can_instantiate && !(ClassDB::class_exists(p_type) && ClassDB::is_virtual(p_type));
  253. r_item->set_meta(SNAME("__instantiable"), instantiable);
  254. r_item->set_icon(0, EditorNode::get_singleton()->get_class_icon(p_type));
  255. if (!instantiable) {
  256. r_item->set_custom_color(0, search_options->get_theme_color(SNAME("font_disabled_color"), EditorStringName(Editor)));
  257. }
  258. HashMap<String, DocData::ClassDoc>::Iterator class_doc = EditorHelp::get_doc_data()->class_list.find(p_type);
  259. bool is_deprecated = (class_doc && class_doc->value.is_deprecated);
  260. bool is_experimental = (class_doc && class_doc->value.is_experimental);
  261. if (is_deprecated) {
  262. r_item->add_button(0, get_editor_theme_icon("StatusError"), 0, false, TTR("This class is marked as deprecated."));
  263. } else if (is_experimental) {
  264. r_item->add_button(0, get_editor_theme_icon("NodeWarning"), 0, false, TTR("This class is marked as experimental."));
  265. }
  266. if (!search_box->get_text().is_empty()) {
  267. r_item->set_collapsed(false);
  268. } else {
  269. // Don't collapse the root node or an abstract node on the first tree level.
  270. bool should_collapse = p_type != base_type && (r_item->get_parent()->get_text(0) != base_type || can_instantiate);
  271. if (should_collapse && bool(EDITOR_GET("docks/scene_tree/start_create_dialog_fully_expanded"))) {
  272. should_collapse = false; // Collapse all nodes anyway.
  273. }
  274. r_item->set_collapsed(should_collapse);
  275. }
  276. const String &description = DTR(class_doc ? class_doc->value.brief_description : "");
  277. r_item->set_tooltip_text(0, description);
  278. if (p_type_category == TypeCategory::OTHER_TYPE && !script_type) {
  279. Ref<Texture2D> icon = EditorNode::get_editor_data().get_custom_types()[custom_type_parents[p_type]][custom_type_indices[p_type]].icon;
  280. if (icon.is_valid()) {
  281. r_item->set_icon(0, icon);
  282. }
  283. }
  284. }
  285. float CreateDialog::_score_type(const String &p_type, const String &p_search) const {
  286. if (p_type == p_search) {
  287. // Always favor an exact match (case-sensitive), since clicking a favorite will set the search text to the type.
  288. return 1.0f;
  289. }
  290. float inverse_length = 1.f / float(p_type.length());
  291. // Favor types where search term is a substring close to the start of the type.
  292. float w = 0.5f;
  293. int pos = p_type.findn(p_search);
  294. float score = (pos > -1) ? 1.0f - w * MIN(1, 3 * pos * inverse_length) : MAX(0.f, .9f - w);
  295. // Favor shorter items: they resemble the search term more.
  296. w = 0.9f;
  297. score *= (1 - w) + w * MIN(1.0f, p_search.length() * inverse_length);
  298. score *= _is_type_preferred(p_type) ? 1.0f : 0.9f;
  299. // Add score for being a favorite type.
  300. score *= favorite_list.has(p_type) ? 1.0f : 0.8f;
  301. // Look through at most 5 recent items
  302. bool in_recent = false;
  303. constexpr int RECENT_COMPLETION_SIZE = 5;
  304. for (int i = 0; i < MIN(RECENT_COMPLETION_SIZE - 1, recent->get_item_count()); i++) {
  305. if (recent->get_item_text(i) == p_type) {
  306. in_recent = true;
  307. break;
  308. }
  309. }
  310. score *= in_recent ? 1.0f : 0.9f;
  311. return score;
  312. }
  313. void CreateDialog::_cleanup() {
  314. type_list.clear();
  315. favorite_list.clear();
  316. favorites->clear();
  317. recent->clear();
  318. custom_type_parents.clear();
  319. custom_type_indices.clear();
  320. }
  321. void CreateDialog::_confirmed() {
  322. String selected_item = get_selected_type();
  323. if (selected_item.is_empty()) {
  324. return;
  325. }
  326. TreeItem *selected = search_options->get_selected();
  327. if (!selected->get_meta("__instantiable", true)) {
  328. return;
  329. }
  330. {
  331. Ref<FileAccess> f = FileAccess::open(EditorPaths::get_singleton()->get_project_settings_dir().path_join("create_recent." + base_type), FileAccess::WRITE);
  332. if (f.is_valid()) {
  333. f->store_line(selected_item);
  334. constexpr int RECENT_HISTORY_SIZE = 15;
  335. for (int i = 0; i < MIN(RECENT_HISTORY_SIZE - 1, recent->get_item_count()); i++) {
  336. if (recent->get_item_text(i) != selected_item) {
  337. f->store_line(recent->get_item_text(i));
  338. }
  339. }
  340. }
  341. }
  342. // To prevent, emitting an error from the transient window (shader dialog for example) hide this dialog before emitting the "create" signal.
  343. hide();
  344. emit_signal(SNAME("create"));
  345. _cleanup();
  346. }
  347. void CreateDialog::_text_changed(const String &p_newtext) {
  348. _update_search();
  349. }
  350. void CreateDialog::_sbox_input(const Ref<InputEvent> &p_ie) {
  351. Ref<InputEventKey> k = p_ie;
  352. if (k.is_valid() && k->is_pressed()) {
  353. switch (k->get_keycode()) {
  354. case Key::UP:
  355. case Key::DOWN:
  356. case Key::PAGEUP:
  357. case Key::PAGEDOWN: {
  358. search_options->gui_input(k);
  359. search_box->accept_event();
  360. } break;
  361. case Key::SPACE: {
  362. TreeItem *ti = search_options->get_selected();
  363. if (ti) {
  364. ti->set_collapsed(!ti->is_collapsed());
  365. }
  366. search_box->accept_event();
  367. } break;
  368. default:
  369. break;
  370. }
  371. }
  372. }
  373. void CreateDialog::_notification(int p_what) {
  374. switch (p_what) {
  375. case NOTIFICATION_ENTER_TREE: {
  376. connect("confirmed", callable_mp(this, &CreateDialog::_confirmed));
  377. } break;
  378. case NOTIFICATION_EXIT_TREE: {
  379. disconnect("confirmed", callable_mp(this, &CreateDialog::_confirmed));
  380. } break;
  381. case NOTIFICATION_VISIBILITY_CHANGED: {
  382. if (is_visible()) {
  383. callable_mp((Control *)search_box, &Control::grab_focus).call_deferred(); // Still not visible.
  384. search_box->select_all();
  385. } else {
  386. EditorSettings::get_singleton()->set_project_metadata("dialog_bounds", "create_new_node", Rect2(get_position(), get_size()));
  387. }
  388. } break;
  389. case NOTIFICATION_THEME_CHANGED: {
  390. const int icon_width = get_theme_constant(SNAME("class_icon_size"), EditorStringName(Editor));
  391. search_options->add_theme_constant_override("icon_max_width", icon_width);
  392. favorites->add_theme_constant_override("icon_max_width", icon_width);
  393. recent->set_fixed_icon_size(Size2(icon_width, icon_width));
  394. search_box->set_right_icon(get_editor_theme_icon(SNAME("Search")));
  395. favorite->set_icon(get_editor_theme_icon(SNAME("Favorites")));
  396. } break;
  397. }
  398. }
  399. void CreateDialog::select_type(const String &p_type, bool p_center_on_item) {
  400. if (!search_options_types.has(p_type)) {
  401. return;
  402. }
  403. TreeItem *to_select = search_options_types[p_type];
  404. to_select->select(0);
  405. search_options->scroll_to_item(to_select, p_center_on_item);
  406. help_bit->parse_symbol("class|" + p_type + "|");
  407. favorite->set_disabled(false);
  408. favorite->set_pressed(favorite_list.has(p_type));
  409. if (to_select->get_meta("__instantiable", true)) {
  410. get_ok_button()->set_disabled(false);
  411. get_ok_button()->set_tooltip_text(String());
  412. } else {
  413. get_ok_button()->set_disabled(true);
  414. get_ok_button()->set_tooltip_text(TTR("The selected class can't be instantiated."));
  415. }
  416. }
  417. void CreateDialog::select_base() {
  418. if (search_options_types.is_empty()) {
  419. _update_search();
  420. }
  421. select_type(base_type, false);
  422. }
  423. String CreateDialog::get_selected_type() {
  424. TreeItem *selected = search_options->get_selected();
  425. if (!selected) {
  426. return String();
  427. }
  428. return selected->get_text(0);
  429. }
  430. void CreateDialog::set_base_type(const String &p_base) {
  431. base_type = p_base;
  432. is_base_type_node = ClassDB::is_parent_class(p_base, "Node");
  433. }
  434. Variant CreateDialog::instantiate_selected() {
  435. TreeItem *selected = search_options->get_selected();
  436. if (!selected) {
  437. return Variant();
  438. }
  439. Variant md = selected->get_metadata(0);
  440. Variant obj;
  441. if (md.get_type() != Variant::NIL) {
  442. String custom = md;
  443. if (ScriptServer::is_global_class(custom)) {
  444. obj = EditorNode::get_editor_data().script_class_instance(custom);
  445. Node *n = Object::cast_to<Node>(obj);
  446. if (n) {
  447. n->set_name(custom);
  448. }
  449. } else {
  450. obj = EditorNode::get_editor_data().instantiate_custom_type(selected->get_text(0), custom);
  451. }
  452. } else {
  453. obj = ClassDB::instantiate(selected->get_text(0));
  454. }
  455. EditorNode::get_editor_data().instantiate_object_properties(obj);
  456. return obj;
  457. }
  458. void CreateDialog::_item_selected() {
  459. String name = get_selected_type();
  460. select_type(name, false);
  461. }
  462. void CreateDialog::_hide_requested() {
  463. _cancel_pressed(); // From AcceptDialog.
  464. }
  465. void CreateDialog::cancel_pressed() {
  466. _cleanup();
  467. }
  468. void CreateDialog::_favorite_toggled() {
  469. TreeItem *item = search_options->get_selected();
  470. if (!item) {
  471. return;
  472. }
  473. String name = item->get_text(0);
  474. if (favorite_list.has(name)) {
  475. favorite_list.erase(name);
  476. favorite->set_pressed(false);
  477. } else {
  478. favorite_list.push_back(name);
  479. favorite->set_pressed(true);
  480. }
  481. _save_and_update_favorite_list();
  482. }
  483. void CreateDialog::_history_selected(int p_idx) {
  484. search_box->set_text(recent->get_item_text(p_idx).get_slicec(' ', 0));
  485. favorites->deselect_all();
  486. _update_search();
  487. }
  488. void CreateDialog::_favorite_selected() {
  489. TreeItem *item = favorites->get_selected();
  490. if (!item) {
  491. return;
  492. }
  493. search_box->set_text(item->get_text(0).get_slicec(' ', 0));
  494. recent->deselect_all();
  495. _update_search();
  496. }
  497. void CreateDialog::_history_activated(int p_idx) {
  498. _history_selected(p_idx);
  499. _confirmed();
  500. }
  501. void CreateDialog::_favorite_activated() {
  502. _favorite_selected();
  503. _confirmed();
  504. }
  505. Variant CreateDialog::get_drag_data_fw(const Point2 &p_point, Control *p_from) {
  506. TreeItem *ti = favorites->get_item_at_position(p_point);
  507. if (ti) {
  508. Dictionary d;
  509. d["type"] = "create_favorite_drag";
  510. d["class"] = ti->get_text(0);
  511. Button *tb = memnew(Button);
  512. tb->set_flat(true);
  513. tb->set_icon(ti->get_icon(0));
  514. tb->set_text(ti->get_text(0));
  515. favorites->set_drag_preview(tb);
  516. return d;
  517. }
  518. return Variant();
  519. }
  520. bool CreateDialog::can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const {
  521. Dictionary d = p_data;
  522. if (d.has("type") && String(d["type"]) == "create_favorite_drag") {
  523. favorites->set_drop_mode_flags(Tree::DROP_MODE_INBETWEEN);
  524. return true;
  525. }
  526. return false;
  527. }
  528. void CreateDialog::drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) {
  529. Dictionary d = p_data;
  530. TreeItem *ti = favorites->get_item_at_position(p_point);
  531. if (!ti) {
  532. return;
  533. }
  534. String drop_at = ti->get_text(0);
  535. int ds = favorites->get_drop_section_at_position(p_point);
  536. int drop_idx = favorite_list.find(drop_at);
  537. if (drop_idx < 0) {
  538. return;
  539. }
  540. String type = d["class"];
  541. int from_idx = favorite_list.find(type);
  542. if (from_idx < 0) {
  543. return;
  544. }
  545. if (drop_idx == from_idx) {
  546. ds = -1; //cause it will be gone
  547. } else if (drop_idx > from_idx) {
  548. drop_idx--;
  549. }
  550. favorite_list.remove_at(from_idx);
  551. if (ds < 0) {
  552. favorite_list.insert(drop_idx, type);
  553. } else {
  554. if (drop_idx >= favorite_list.size() - 1) {
  555. favorite_list.push_back(type);
  556. } else {
  557. favorite_list.insert(drop_idx + 1, type);
  558. }
  559. }
  560. _save_and_update_favorite_list();
  561. }
  562. void CreateDialog::_save_and_update_favorite_list() {
  563. favorites->clear();
  564. TreeItem *root = favorites->create_item();
  565. {
  566. Ref<FileAccess> f = FileAccess::open(EditorPaths::get_singleton()->get_project_settings_dir().path_join("favorites." + base_type), FileAccess::WRITE);
  567. if (f.is_valid()) {
  568. for (int i = 0; i < favorite_list.size(); i++) {
  569. String l = favorite_list[i];
  570. String name = l.get_slicec(' ', 0);
  571. if (!EditorNode::get_editor_data().is_type_recognized(name)) {
  572. continue;
  573. }
  574. f->store_line(l);
  575. if (_is_class_disabled_by_feature_profile(name)) {
  576. continue;
  577. }
  578. TreeItem *ti = favorites->create_item(root);
  579. ti->set_text(0, l);
  580. ti->set_icon(0, EditorNode::get_singleton()->get_class_icon(name));
  581. }
  582. }
  583. }
  584. emit_signal(SNAME("favorites_updated"));
  585. }
  586. void CreateDialog::_load_favorites_and_history() {
  587. String dir = EditorPaths::get_singleton()->get_project_settings_dir();
  588. Ref<FileAccess> f = FileAccess::open(dir.path_join("create_recent." + base_type), FileAccess::READ);
  589. if (f.is_valid()) {
  590. while (!f->eof_reached()) {
  591. String l = f->get_line().strip_edges();
  592. String name = l.get_slicec(' ', 0);
  593. if (EditorNode::get_editor_data().is_type_recognized(name) && !_is_class_disabled_by_feature_profile(name)) {
  594. recent->add_item(l, EditorNode::get_singleton()->get_class_icon(name));
  595. }
  596. }
  597. }
  598. f = FileAccess::open(dir.path_join("favorites." + base_type), FileAccess::READ);
  599. if (f.is_valid()) {
  600. while (!f->eof_reached()) {
  601. String l = f->get_line().strip_edges();
  602. if (!l.is_empty()) {
  603. favorite_list.push_back(l);
  604. }
  605. }
  606. }
  607. }
  608. void CreateDialog::_bind_methods() {
  609. ADD_SIGNAL(MethodInfo("create"));
  610. ADD_SIGNAL(MethodInfo("favorites_updated"));
  611. }
  612. CreateDialog::CreateDialog() {
  613. base_type = "Object";
  614. preferred_search_result_type = "";
  615. type_blacklist.insert("PluginScript"); // PluginScript must be initialized before use, which is not possible here.
  616. type_blacklist.insert("ScriptCreateDialog"); // This is an exposed editor Node that doesn't have an Editor prefix.
  617. HSplitContainer *hsc = memnew(HSplitContainer);
  618. add_child(hsc);
  619. VSplitContainer *vsc = memnew(VSplitContainer);
  620. hsc->add_child(vsc);
  621. VBoxContainer *fav_vb = memnew(VBoxContainer);
  622. fav_vb->set_custom_minimum_size(Size2(150, 100) * EDSCALE);
  623. fav_vb->set_v_size_flags(Control::SIZE_EXPAND_FILL);
  624. vsc->add_child(fav_vb);
  625. favorites = memnew(Tree);
  626. favorites->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
  627. favorites->set_hide_root(true);
  628. favorites->set_hide_folding(true);
  629. favorites->set_allow_reselect(true);
  630. favorites->connect("cell_selected", callable_mp(this, &CreateDialog::_favorite_selected));
  631. favorites->connect("item_activated", callable_mp(this, &CreateDialog::_favorite_activated));
  632. favorites->add_theme_constant_override("draw_guides", 1);
  633. SET_DRAG_FORWARDING_GCD(favorites, CreateDialog);
  634. fav_vb->add_margin_child(TTR("Favorites:"), favorites, true);
  635. VBoxContainer *rec_vb = memnew(VBoxContainer);
  636. vsc->add_child(rec_vb);
  637. rec_vb->set_custom_minimum_size(Size2(150, 100) * EDSCALE);
  638. rec_vb->set_v_size_flags(Control::SIZE_EXPAND_FILL);
  639. recent = memnew(ItemList);
  640. recent->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
  641. rec_vb->add_margin_child(TTR("Recent:"), recent, true);
  642. recent->set_allow_reselect(true);
  643. recent->connect("item_selected", callable_mp(this, &CreateDialog::_history_selected));
  644. recent->connect("item_activated", callable_mp(this, &CreateDialog::_history_activated));
  645. recent->add_theme_constant_override("draw_guides", 1);
  646. VBoxContainer *vbc = memnew(VBoxContainer);
  647. vbc->set_custom_minimum_size(Size2(300, 0) * EDSCALE);
  648. vbc->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  649. hsc->add_child(vbc);
  650. search_box = memnew(LineEdit);
  651. search_box->set_clear_button_enabled(true);
  652. search_box->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  653. search_box->connect("text_changed", callable_mp(this, &CreateDialog::_text_changed));
  654. search_box->connect(SceneStringName(gui_input), callable_mp(this, &CreateDialog::_sbox_input));
  655. HBoxContainer *search_hb = memnew(HBoxContainer);
  656. search_hb->add_child(search_box);
  657. favorite = memnew(Button);
  658. favorite->set_toggle_mode(true);
  659. favorite->set_tooltip_text(TTR("(Un)favorite selected item."));
  660. favorite->connect(SceneStringName(pressed), callable_mp(this, &CreateDialog::_favorite_toggled));
  661. search_hb->add_child(favorite);
  662. vbc->add_margin_child(TTR("Search:"), search_hb);
  663. search_options = memnew(Tree);
  664. search_options->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
  665. search_options->connect("item_activated", callable_mp(this, &CreateDialog::_confirmed));
  666. search_options->connect("cell_selected", callable_mp(this, &CreateDialog::_item_selected));
  667. vbc->add_margin_child(TTR("Matches:"), search_options, true);
  668. help_bit = memnew(EditorHelpBit);
  669. help_bit->set_content_height_limits(64 * EDSCALE, 64 * EDSCALE);
  670. help_bit->connect("request_hide", callable_mp(this, &CreateDialog::_hide_requested));
  671. vbc->add_margin_child(TTR("Description:"), help_bit);
  672. register_text_enter(search_box);
  673. set_hide_on_ok(false);
  674. set_clamp_to_embedder(true);
  675. }