script_create_dialog.cpp 28 KB

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