2
0

script_create_dialog.cpp 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910
  1. /*************************************************************************/
  2. /* script_create_dialog.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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 "script_create_dialog.h"
  31. #include "core/io/resource_saver.h"
  32. #include "core/os/file_access.h"
  33. #include "core/project_settings.h"
  34. #include "core/script_language.h"
  35. #include "core/string_builder.h"
  36. #include "editor/create_dialog.h"
  37. #include "editor/editor_node.h"
  38. #include "editor/editor_scale.h"
  39. #include "editor_file_system.h"
  40. void ScriptCreateDialog::_theme_changed() {
  41. for (int i = 0; i < ScriptServer::get_language_count(); i++) {
  42. String lang = ScriptServer::get_language(i)->get_type();
  43. Ref<Texture2D> lang_icon = gc->get_theme_icon(lang, "EditorIcons");
  44. if (lang_icon.is_valid()) {
  45. language_menu->set_item_icon(i, lang_icon);
  46. }
  47. }
  48. String last_lang = EditorSettings::get_singleton()->get_project_metadata("script_setup", "last_selected_language", "");
  49. if (!last_lang.empty()) {
  50. for (int i = 0; i < language_menu->get_item_count(); i++) {
  51. if (language_menu->get_item_text(i) == last_lang) {
  52. language_menu->select(i);
  53. current_language = i;
  54. break;
  55. }
  56. }
  57. } else {
  58. language_menu->select(default_language);
  59. }
  60. path_button->set_icon(gc->get_theme_icon("Folder", "EditorIcons"));
  61. parent_browse_button->set_icon(gc->get_theme_icon("Folder", "EditorIcons"));
  62. parent_search_button->set_icon(gc->get_theme_icon("ClassList", "EditorIcons"));
  63. status_panel->add_theme_style_override("panel", gc->get_theme_stylebox("bg", "Tree"));
  64. }
  65. void ScriptCreateDialog::_notification(int p_what) {
  66. switch (p_what) {
  67. case NOTIFICATION_ENTER_TREE: {
  68. _theme_changed();
  69. } break;
  70. }
  71. }
  72. void ScriptCreateDialog::_path_hbox_sorted() {
  73. if (is_visible()) {
  74. int filename_start_pos = initial_bp.find_last("/") + 1;
  75. int filename_end_pos = initial_bp.length();
  76. if (!is_built_in) {
  77. file_path->select(filename_start_pos, filename_end_pos);
  78. }
  79. // First set cursor to the end of line to scroll LineEdit view
  80. // to the right and then set the actual cursor position.
  81. file_path->set_cursor_position(file_path->get_text().length());
  82. file_path->set_cursor_position(filename_start_pos);
  83. file_path->grab_focus();
  84. }
  85. }
  86. bool ScriptCreateDialog::_can_be_built_in() {
  87. return (supports_built_in && built_in_enabled);
  88. }
  89. void ScriptCreateDialog::config(const String &p_base_name, const String &p_base_path, bool p_built_in_enabled, bool p_load_enabled) {
  90. class_name->set_text("");
  91. class_name->deselect();
  92. parent_name->set_text(p_base_name);
  93. parent_name->deselect();
  94. if (p_base_path != "") {
  95. initial_bp = p_base_path.get_basename();
  96. file_path->set_text(initial_bp + "." + ScriptServer::get_language(language_menu->get_selected())->get_extension());
  97. current_language = language_menu->get_selected();
  98. } else {
  99. initial_bp = "";
  100. file_path->set_text("");
  101. }
  102. file_path->deselect();
  103. built_in_enabled = p_built_in_enabled;
  104. load_enabled = p_load_enabled;
  105. _lang_changed(current_language);
  106. _class_name_changed("");
  107. _path_changed(file_path->get_text());
  108. }
  109. void ScriptCreateDialog::set_inheritance_base_type(const String &p_base) {
  110. base_type = p_base;
  111. }
  112. bool ScriptCreateDialog::_validate_parent(const String &p_string) {
  113. if (p_string.length() == 0)
  114. return false;
  115. if (can_inherit_from_file && p_string.is_quoted()) {
  116. String p = p_string.substr(1, p_string.length() - 2);
  117. if (_validate_path(p, true) == "")
  118. return true;
  119. }
  120. return ClassDB::class_exists(p_string) || ScriptServer::is_global_class(p_string);
  121. }
  122. bool ScriptCreateDialog::_validate_class(const String &p_string) {
  123. if (p_string.length() == 0)
  124. return false;
  125. for (int i = 0; i < p_string.length(); i++) {
  126. if (i == 0) {
  127. if (p_string[0] >= '0' && p_string[0] <= '9')
  128. return false; // no start with number plz
  129. }
  130. bool valid_char = (p_string[i] >= '0' && p_string[i] <= '9') || (p_string[i] >= 'a' && p_string[i] <= 'z') || (p_string[i] >= 'A' && p_string[i] <= 'Z') || p_string[i] == '_' || p_string[i] == '.';
  131. if (!valid_char)
  132. return false;
  133. }
  134. return true;
  135. }
  136. String ScriptCreateDialog::_validate_path(const String &p_path, bool p_file_must_exist) {
  137. String p = p_path.strip_edges();
  138. if (p == "")
  139. return TTR("Path is empty.");
  140. if (p.get_file().get_basename() == "")
  141. return TTR("Filename is empty.");
  142. p = ProjectSettings::get_singleton()->localize_path(p);
  143. if (!p.begins_with("res://"))
  144. return TTR("Path is not local.");
  145. DirAccess *d = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  146. if (d->change_dir(p.get_base_dir()) != OK) {
  147. memdelete(d);
  148. return TTR("Invalid base path.");
  149. }
  150. memdelete(d);
  151. /* Does file already exist */
  152. DirAccess *f = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  153. if (f->dir_exists(p)) {
  154. memdelete(f);
  155. return TTR("A directory with the same name exists.");
  156. } else if (p_file_must_exist && !f->file_exists(p)) {
  157. memdelete(f);
  158. return TTR("File does not exist.");
  159. }
  160. memdelete(f);
  161. /* Check file extension */
  162. String extension = p.get_extension();
  163. List<String> extensions;
  164. // get all possible extensions for script
  165. for (int l = 0; l < language_menu->get_item_count(); l++) {
  166. ScriptServer::get_language(l)->get_recognized_extensions(&extensions);
  167. }
  168. bool found = false;
  169. bool match = false;
  170. int index = 0;
  171. for (List<String>::Element *E = extensions.front(); E; E = E->next()) {
  172. if (E->get().nocasecmp_to(extension) == 0) {
  173. //FIXME (?) - changing language this way doesn't update controls, needs rework
  174. //language_menu->select(index); // change Language option by extension
  175. found = true;
  176. if (E->get() == ScriptServer::get_language(language_menu->get_selected())->get_extension()) {
  177. match = true;
  178. }
  179. break;
  180. }
  181. index++;
  182. }
  183. if (!found)
  184. return TTR("Invalid extension.");
  185. if (!match)
  186. return TTR("Wrong extension chosen.");
  187. /* Let ScriptLanguage do custom validation */
  188. String path_error = ScriptServer::get_language(language_menu->get_selected())->validate_path(p);
  189. if (path_error != "")
  190. return path_error;
  191. /* All checks passed */
  192. return "";
  193. }
  194. void ScriptCreateDialog::_class_name_changed(const String &p_name) {
  195. if (_validate_class(class_name->get_text())) {
  196. is_class_name_valid = true;
  197. } else {
  198. is_class_name_valid = false;
  199. }
  200. _update_dialog();
  201. }
  202. void ScriptCreateDialog::_parent_name_changed(const String &p_parent) {
  203. if (_validate_parent(parent_name->get_text())) {
  204. is_parent_name_valid = true;
  205. } else {
  206. is_parent_name_valid = false;
  207. }
  208. _update_dialog();
  209. }
  210. void ScriptCreateDialog::_template_changed(int p_template) {
  211. String selected_template = p_template == 0 ? "" : template_menu->get_item_text(p_template);
  212. EditorSettings::get_singleton()->set_project_metadata("script_setup", "last_selected_template", selected_template);
  213. if (p_template == 0) {
  214. //default
  215. script_template = "";
  216. return;
  217. }
  218. int selected_id = template_menu->get_selected_id();
  219. for (int i = 0; i < template_list.size(); i++) {
  220. const ScriptTemplateInfo &sinfo = template_list[i];
  221. if (sinfo.id == selected_id) {
  222. script_template = sinfo.dir.plus_file(sinfo.name + "." + sinfo.extension);
  223. break;
  224. }
  225. }
  226. }
  227. void ScriptCreateDialog::ok_pressed() {
  228. if (is_new_script_created) {
  229. _create_new();
  230. } else {
  231. _load_exist();
  232. }
  233. is_new_script_created = true;
  234. _update_dialog();
  235. }
  236. void ScriptCreateDialog::_create_new() {
  237. String cname_param;
  238. if (has_named_classes) {
  239. cname_param = class_name->get_text();
  240. } else {
  241. cname_param = ProjectSettings::get_singleton()->localize_path(file_path->get_text()).get_file().get_basename();
  242. }
  243. Ref<Script> scr;
  244. if (script_template != "") {
  245. scr = ResourceLoader::load(script_template);
  246. if (scr.is_null()) {
  247. alert->set_text(vformat(TTR("Error loading template '%s'"), script_template));
  248. alert->popup_centered();
  249. return;
  250. }
  251. scr = scr->duplicate();
  252. ScriptServer::get_language(language_menu->get_selected())->make_template(cname_param, parent_name->get_text(), scr);
  253. } else {
  254. scr = ScriptServer::get_language(language_menu->get_selected())->get_template(cname_param, parent_name->get_text());
  255. }
  256. if (has_named_classes) {
  257. String cname = class_name->get_text();
  258. if (cname.length())
  259. scr->set_name(cname);
  260. }
  261. if (!is_built_in) {
  262. String lpath = ProjectSettings::get_singleton()->localize_path(file_path->get_text());
  263. scr->set_path(lpath);
  264. Error err = ResourceSaver::save(lpath, scr, ResourceSaver::FLAG_CHANGE_PATH);
  265. if (err != OK) {
  266. alert->set_text(TTR("Error - Could not create script in filesystem."));
  267. alert->popup_centered();
  268. return;
  269. }
  270. }
  271. emit_signal("script_created", scr);
  272. hide();
  273. }
  274. void ScriptCreateDialog::_load_exist() {
  275. String path = file_path->get_text();
  276. RES p_script = ResourceLoader::load(path, "Script");
  277. if (p_script.is_null()) {
  278. alert->set_text(vformat(TTR("Error loading script from %s"), path));
  279. alert->popup_centered();
  280. return;
  281. }
  282. emit_signal("script_created", p_script);
  283. hide();
  284. }
  285. void ScriptCreateDialog::_lang_changed(int l) {
  286. ScriptLanguage *language = ScriptServer::get_language(l);
  287. has_named_classes = language->has_named_classes();
  288. can_inherit_from_file = language->can_inherit_from_file();
  289. supports_built_in = language->supports_builtin_mode();
  290. if (!supports_built_in)
  291. is_built_in = false;
  292. String selected_ext = "." + language->get_extension();
  293. String path = file_path->get_text();
  294. String extension = "";
  295. if (path != "") {
  296. if (path.find(".") != -1) {
  297. extension = path.get_extension();
  298. }
  299. if (extension.length() == 0) {
  300. // add extension if none
  301. path += selected_ext;
  302. _path_changed(path);
  303. } else {
  304. // change extension by selected language
  305. List<String> extensions;
  306. // get all possible extensions for script
  307. for (int m = 0; m < language_menu->get_item_count(); m++) {
  308. ScriptServer::get_language(m)->get_recognized_extensions(&extensions);
  309. }
  310. for (List<String>::Element *E = extensions.front(); E; E = E->next()) {
  311. if (E->get().nocasecmp_to(extension) == 0) {
  312. path = path.get_basename() + selected_ext;
  313. _path_changed(path);
  314. break;
  315. }
  316. }
  317. }
  318. } else {
  319. path = "class" + selected_ext;
  320. _path_changed(path);
  321. }
  322. file_path->set_text(path);
  323. bool use_templates = language->is_using_templates();
  324. template_menu->set_disabled(!use_templates);
  325. template_menu->clear();
  326. if (use_templates) {
  327. _update_script_templates(language->get_extension());
  328. String last_lang = EditorSettings::get_singleton()->get_project_metadata("script_setup", "last_selected_language", "");
  329. String last_template = EditorSettings::get_singleton()->get_project_metadata("script_setup", "last_selected_template", "");
  330. template_menu->add_item(TTR("Default"));
  331. ScriptTemplateInfo *templates = template_list.ptrw();
  332. Vector<String> origin_names;
  333. origin_names.push_back(TTR("Project"));
  334. origin_names.push_back(TTR("Editor"));
  335. int cur_origin = -1;
  336. // Populate script template items previously sorted and now grouped by origin
  337. for (int i = 0; i < template_list.size(); i++) {
  338. if (int(templates[i].origin) != cur_origin) {
  339. template_menu->add_separator();
  340. String origin_name = origin_names[templates[i].origin];
  341. int last_index = template_menu->get_item_count() - 1;
  342. template_menu->set_item_text(last_index, origin_name);
  343. cur_origin = templates[i].origin;
  344. }
  345. String item_name = templates[i].name.capitalize();
  346. template_menu->add_item(item_name);
  347. int new_id = template_menu->get_item_count() - 1;
  348. templates[i].id = new_id;
  349. }
  350. // Disable overridden
  351. for (Map<String, Vector<int>>::Element *E = template_overrides.front(); E; E = E->next()) {
  352. const Vector<int> &overrides = E->get();
  353. if (overrides.size() == 1) {
  354. continue; // doesn't override anything
  355. }
  356. const ScriptTemplateInfo &extended = template_list[overrides[0]];
  357. StringBuilder override_info;
  358. override_info += TTR("Overrides");
  359. override_info += ": ";
  360. for (int i = 1; i < overrides.size(); i++) {
  361. const ScriptTemplateInfo &overridden = template_list[overrides[i]];
  362. int disable_index = template_menu->get_item_index(overridden.id);
  363. template_menu->set_item_disabled(disable_index, true);
  364. override_info += origin_names[overridden.origin];
  365. if (i < overrides.size() - 1) {
  366. override_info += ", ";
  367. }
  368. }
  369. template_menu->set_item_icon(extended.id, gc->get_theme_icon("Override", "EditorIcons"));
  370. template_menu->get_popup()->set_item_tooltip(extended.id, override_info.as_string());
  371. }
  372. // Reselect last selected template
  373. for (int i = 0; i < template_menu->get_item_count(); i++) {
  374. const String &ti = template_menu->get_item_text(i);
  375. if (language_menu->get_item_text(language_menu->get_selected()) == last_lang && last_template == ti) {
  376. template_menu->select(i);
  377. break;
  378. }
  379. }
  380. } else {
  381. template_menu->add_item(TTR("N/A"));
  382. script_template = "";
  383. }
  384. _template_changed(template_menu->get_selected());
  385. EditorSettings::get_singleton()->set_project_metadata("script_setup", "last_selected_language", language_menu->get_item_text(language_menu->get_selected()));
  386. _parent_name_changed(parent_name->get_text());
  387. _update_dialog();
  388. }
  389. void ScriptCreateDialog::_update_script_templates(const String &p_extension) {
  390. template_list.clear();
  391. template_overrides.clear();
  392. Vector<String> dirs;
  393. // Ordered from local to global for correct override mechanism
  394. dirs.push_back(EditorSettings::get_singleton()->get_project_script_templates_dir());
  395. dirs.push_back(EditorSettings::get_singleton()->get_script_templates_dir());
  396. for (int i = 0; i < dirs.size(); i++) {
  397. Vector<String> list = EditorSettings::get_singleton()->get_script_templates(p_extension, dirs[i]);
  398. for (int j = 0; j < list.size(); j++) {
  399. ScriptTemplateInfo sinfo;
  400. sinfo.origin = ScriptOrigin(i);
  401. sinfo.dir = dirs[i];
  402. sinfo.name = list[j];
  403. sinfo.extension = p_extension;
  404. template_list.push_back(sinfo);
  405. if (!template_overrides.has(sinfo.name)) {
  406. Vector<int> overrides;
  407. overrides.push_back(template_list.size() - 1); // first one
  408. template_overrides.insert(sinfo.name, overrides);
  409. } else {
  410. Vector<int> &overrides = template_overrides[sinfo.name];
  411. overrides.push_back(template_list.size() - 1);
  412. }
  413. }
  414. }
  415. }
  416. void ScriptCreateDialog::_built_in_pressed() {
  417. if (internal->is_pressed()) {
  418. is_built_in = true;
  419. is_new_script_created = true;
  420. } else {
  421. is_built_in = false;
  422. _path_changed(file_path->get_text());
  423. }
  424. _update_dialog();
  425. }
  426. void ScriptCreateDialog::_browse_path(bool browse_parent, bool p_save) {
  427. is_browsing_parent = browse_parent;
  428. if (p_save) {
  429. file_browse->set_file_mode(EditorFileDialog::FILE_MODE_SAVE_FILE);
  430. file_browse->set_title(TTR("Open Script / Choose Location"));
  431. file_browse->get_ok()->set_text(TTR("Open"));
  432. } else {
  433. file_browse->set_file_mode(EditorFileDialog::FILE_MODE_OPEN_FILE);
  434. file_browse->set_title(TTR("Open Script"));
  435. }
  436. file_browse->set_disable_overwrite_warning(true);
  437. file_browse->clear_filters();
  438. List<String> extensions;
  439. int lang = language_menu->get_selected();
  440. ScriptServer::get_language(lang)->get_recognized_extensions(&extensions);
  441. for (List<String>::Element *E = extensions.front(); E; E = E->next()) {
  442. file_browse->add_filter("*." + E->get());
  443. }
  444. file_browse->set_current_path(file_path->get_text());
  445. file_browse->popup_centered_ratio();
  446. }
  447. void ScriptCreateDialog::_file_selected(const String &p_file) {
  448. String p = ProjectSettings::get_singleton()->localize_path(p_file);
  449. if (is_browsing_parent) {
  450. parent_name->set_text("\"" + p + "\"");
  451. _parent_name_changed(parent_name->get_text());
  452. } else {
  453. file_path->set_text(p);
  454. _path_changed(p);
  455. String filename = p.get_file().get_basename();
  456. int select_start = p.find_last(filename);
  457. file_path->select(select_start, select_start + filename.length());
  458. file_path->set_cursor_position(select_start + filename.length());
  459. file_path->grab_focus();
  460. }
  461. }
  462. void ScriptCreateDialog::_create() {
  463. parent_name->set_text(select_class->get_selected_type().split(" ")[0]);
  464. _parent_name_changed(parent_name->get_text());
  465. }
  466. void ScriptCreateDialog::_browse_class_in_tree() {
  467. select_class->set_base_type(base_type);
  468. select_class->popup_create(true);
  469. }
  470. void ScriptCreateDialog::_path_changed(const String &p_path) {
  471. if (is_built_in) {
  472. return;
  473. }
  474. is_path_valid = false;
  475. is_new_script_created = true;
  476. String path_error = _validate_path(p_path, false);
  477. if (path_error != "") {
  478. _msg_path_valid(false, path_error);
  479. _update_dialog();
  480. return;
  481. }
  482. /* Does file already exist */
  483. DirAccess *f = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  484. String p = ProjectSettings::get_singleton()->localize_path(p_path.strip_edges());
  485. if (f->file_exists(p)) {
  486. is_new_script_created = false;
  487. _msg_path_valid(true, TTR("File exists, it will be reused."));
  488. }
  489. memdelete(f);
  490. is_path_valid = true;
  491. _update_dialog();
  492. }
  493. void ScriptCreateDialog::_path_entered(const String &p_path) {
  494. ok_pressed();
  495. }
  496. void ScriptCreateDialog::_msg_script_valid(bool valid, const String &p_msg) {
  497. error_label->set_text("- " + TTR(p_msg));
  498. if (valid) {
  499. error_label->add_theme_color_override("font_color", gc->get_theme_color("success_color", "Editor"));
  500. } else {
  501. error_label->add_theme_color_override("font_color", gc->get_theme_color("error_color", "Editor"));
  502. }
  503. }
  504. void ScriptCreateDialog::_msg_path_valid(bool valid, const String &p_msg) {
  505. path_error_label->set_text("- " + TTR(p_msg));
  506. if (valid) {
  507. path_error_label->add_theme_color_override("font_color", gc->get_theme_color("success_color", "Editor"));
  508. } else {
  509. path_error_label->add_theme_color_override("font_color", gc->get_theme_color("error_color", "Editor"));
  510. }
  511. }
  512. void ScriptCreateDialog::_update_dialog() {
  513. /* "Add Script Dialog" GUI logic and script checks. */
  514. bool script_ok = true;
  515. // Is script path/name valid (order from top to bottom)?
  516. if (!is_built_in && !is_path_valid) {
  517. _msg_script_valid(false, TTR("Invalid path."));
  518. script_ok = false;
  519. }
  520. if (has_named_classes && (is_new_script_created && !is_class_name_valid)) {
  521. _msg_script_valid(false, TTR("Invalid class name."));
  522. script_ok = false;
  523. }
  524. if (!is_parent_name_valid && is_new_script_created) {
  525. _msg_script_valid(false, TTR("Invalid inherited parent name or path."));
  526. script_ok = false;
  527. }
  528. if (script_ok) {
  529. _msg_script_valid(true, TTR("Script path/name is valid."));
  530. }
  531. // Does script have named classes?
  532. if (has_named_classes) {
  533. if (is_new_script_created) {
  534. class_name->set_editable(true);
  535. class_name->set_placeholder(TTR("Allowed: a-z, A-Z, 0-9, _ and ."));
  536. class_name->set_placeholder_alpha(0.3);
  537. } else {
  538. class_name->set_editable(false);
  539. }
  540. } else {
  541. class_name->set_editable(false);
  542. class_name->set_placeholder(TTR("N/A"));
  543. class_name->set_placeholder_alpha(1);
  544. class_name->set_text("");
  545. }
  546. // Is script Built-in?
  547. if (is_built_in) {
  548. file_path->set_editable(false);
  549. path_button->set_disabled(true);
  550. re_check_path = true;
  551. } else {
  552. file_path->set_editable(true);
  553. path_button->set_disabled(false);
  554. if (re_check_path) {
  555. re_check_path = false;
  556. _path_changed(file_path->get_text());
  557. }
  558. }
  559. if (!_can_be_built_in()) {
  560. internal->set_pressed(false);
  561. }
  562. internal->set_disabled(!_can_be_built_in());
  563. // Is Script created or loaded from existing file?
  564. builtin_warning_label->set_visible(is_built_in);
  565. if (is_built_in) {
  566. get_ok()->set_text(TTR("Create"));
  567. parent_name->set_editable(true);
  568. parent_search_button->set_disabled(false);
  569. parent_browse_button->set_disabled(!can_inherit_from_file);
  570. _msg_path_valid(true, TTR("Built-in script (into scene file)."));
  571. } else if (is_new_script_created) {
  572. // New script created.
  573. get_ok()->set_text(TTR("Create"));
  574. parent_name->set_editable(true);
  575. parent_search_button->set_disabled(false);
  576. parent_browse_button->set_disabled(!can_inherit_from_file);
  577. if (is_path_valid) {
  578. _msg_path_valid(true, TTR("Will create a new script file."));
  579. }
  580. } else if (load_enabled) {
  581. // Script loaded.
  582. get_ok()->set_text(TTR("Load"));
  583. parent_name->set_editable(false);
  584. parent_search_button->set_disabled(true);
  585. parent_browse_button->set_disabled(true);
  586. if (is_path_valid) {
  587. _msg_path_valid(true, TTR("Will load an existing script file."));
  588. }
  589. } else {
  590. get_ok()->set_text(TTR("Create"));
  591. parent_name->set_editable(true);
  592. parent_search_button->set_disabled(false);
  593. parent_browse_button->set_disabled(!can_inherit_from_file);
  594. _msg_path_valid(false, TTR("Script file already exists."));
  595. script_ok = false;
  596. }
  597. get_ok()->set_disabled(!script_ok);
  598. }
  599. void ScriptCreateDialog::_bind_methods() {
  600. ClassDB::bind_method(D_METHOD("config", "inherits", "path", "built_in_enabled", "load_enabled"), &ScriptCreateDialog::config, DEFVAL(true), DEFVAL(true));
  601. ADD_SIGNAL(MethodInfo("script_created", PropertyInfo(Variant::OBJECT, "script", PROPERTY_HINT_RESOURCE_TYPE, "Script")));
  602. }
  603. ScriptCreateDialog::ScriptCreateDialog() {
  604. /* DIALOG */
  605. /* Main Controls */
  606. gc = memnew(GridContainer);
  607. gc->set_columns(2);
  608. gc->connect("theme_changed", callable_mp(this, &ScriptCreateDialog::_theme_changed));
  609. /* Error Messages Field */
  610. VBoxContainer *vb = memnew(VBoxContainer);
  611. error_label = memnew(Label);
  612. vb->add_child(error_label);
  613. path_error_label = memnew(Label);
  614. vb->add_child(path_error_label);
  615. builtin_warning_label = memnew(Label);
  616. builtin_warning_label->set_text(
  617. TTR("Note: Built-in scripts have some limitations and can't be edited using an external editor."));
  618. vb->add_child(builtin_warning_label);
  619. builtin_warning_label->set_autowrap(true);
  620. builtin_warning_label->hide();
  621. status_panel = memnew(PanelContainer);
  622. status_panel->set_h_size_flags(Control::SIZE_FILL);
  623. status_panel->add_child(vb);
  624. /* Spacing */
  625. Control *spacing = memnew(Control);
  626. spacing->set_custom_minimum_size(Size2(0, 10 * EDSCALE));
  627. vb = memnew(VBoxContainer);
  628. vb->add_child(gc);
  629. vb->add_child(spacing);
  630. vb->add_child(status_panel);
  631. HBoxContainer *hb = memnew(HBoxContainer);
  632. hb->add_child(vb);
  633. add_child(hb);
  634. /* Language */
  635. language_menu = memnew(OptionButton);
  636. language_menu->set_custom_minimum_size(Size2(250, 0) * EDSCALE);
  637. language_menu->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  638. gc->add_child(memnew(Label(TTR("Language:"))));
  639. gc->add_child(language_menu);
  640. default_language = 0;
  641. for (int i = 0; i < ScriptServer::get_language_count(); i++) {
  642. String lang = ScriptServer::get_language(i)->get_name();
  643. language_menu->add_item(lang);
  644. if (lang == "GDScript") {
  645. default_language = i;
  646. }
  647. }
  648. language_menu->select(default_language);
  649. current_language = default_language;
  650. language_menu->connect("item_selected", callable_mp(this, &ScriptCreateDialog::_lang_changed));
  651. /* Inherits */
  652. base_type = "Object";
  653. hb = memnew(HBoxContainer);
  654. hb->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  655. parent_name = memnew(LineEdit);
  656. parent_name->connect("text_changed", callable_mp(this, &ScriptCreateDialog::_parent_name_changed));
  657. parent_name->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  658. hb->add_child(parent_name);
  659. parent_search_button = memnew(Button);
  660. parent_search_button->set_flat(true);
  661. parent_search_button->connect("pressed", callable_mp(this, &ScriptCreateDialog::_browse_class_in_tree));
  662. hb->add_child(parent_search_button);
  663. parent_browse_button = memnew(Button);
  664. parent_browse_button->set_flat(true);
  665. parent_browse_button->connect("pressed", callable_mp(this, &ScriptCreateDialog::_browse_path), varray(true, false));
  666. hb->add_child(parent_browse_button);
  667. gc->add_child(memnew(Label(TTR("Inherits:"))));
  668. gc->add_child(hb);
  669. is_browsing_parent = false;
  670. /* Class Name */
  671. class_name = memnew(LineEdit);
  672. class_name->connect("text_changed", callable_mp(this, &ScriptCreateDialog::_class_name_changed));
  673. class_name->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  674. gc->add_child(memnew(Label(TTR("Class Name:"))));
  675. gc->add_child(class_name);
  676. /* Templates */
  677. template_menu = memnew(OptionButton);
  678. gc->add_child(memnew(Label(TTR("Template:"))));
  679. gc->add_child(template_menu);
  680. template_menu->connect("item_selected", callable_mp(this, &ScriptCreateDialog::_template_changed));
  681. /* Built-in Script */
  682. internal = memnew(CheckBox);
  683. internal->set_text(TTR("On"));
  684. internal->connect("pressed", callable_mp(this, &ScriptCreateDialog::_built_in_pressed));
  685. gc->add_child(memnew(Label(TTR("Built-in Script:"))));
  686. gc->add_child(internal);
  687. /* Path */
  688. hb = memnew(HBoxContainer);
  689. hb->connect("sort_children", callable_mp(this, &ScriptCreateDialog::_path_hbox_sorted));
  690. file_path = memnew(LineEdit);
  691. file_path->connect("text_changed", callable_mp(this, &ScriptCreateDialog::_path_changed));
  692. file_path->connect("text_entered", callable_mp(this, &ScriptCreateDialog::_path_entered));
  693. file_path->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  694. hb->add_child(file_path);
  695. path_button = memnew(Button);
  696. path_button->set_flat(true);
  697. path_button->connect("pressed", callable_mp(this, &ScriptCreateDialog::_browse_path), varray(false, true));
  698. hb->add_child(path_button);
  699. gc->add_child(memnew(Label(TTR("Path:"))));
  700. gc->add_child(hb);
  701. re_check_path = false;
  702. /* Dialog Setup */
  703. select_class = memnew(CreateDialog);
  704. select_class->connect("create", callable_mp(this, &ScriptCreateDialog::_create));
  705. add_child(select_class);
  706. file_browse = memnew(EditorFileDialog);
  707. file_browse->connect("file_selected", callable_mp(this, &ScriptCreateDialog::_file_selected));
  708. file_browse->set_file_mode(EditorFileDialog::FILE_MODE_OPEN_FILE);
  709. add_child(file_browse);
  710. get_ok()->set_text(TTR("Create"));
  711. alert = memnew(AcceptDialog);
  712. alert->get_label()->set_autowrap(true);
  713. alert->get_label()->set_align(Label::ALIGN_CENTER);
  714. alert->get_label()->set_valign(Label::VALIGN_CENTER);
  715. alert->get_label()->set_custom_minimum_size(Size2(325, 60) * EDSCALE);
  716. add_child(alert);
  717. set_hide_on_ok(false);
  718. set_title(TTR("Attach Node Script"));
  719. is_parent_name_valid = false;
  720. is_class_name_valid = false;
  721. is_path_valid = false;
  722. has_named_classes = false;
  723. supports_built_in = false;
  724. can_inherit_from_file = false;
  725. is_built_in = false;
  726. built_in_enabled = true;
  727. load_enabled = true;
  728. is_new_script_created = true;
  729. }