2
0

script_create_dialog.cpp 28 KB

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