| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  create_dialog.cpp                                                    */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-01 14:40:08 +01:00
										 |  |  | /* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "create_dialog.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | #include "class_db.h"
 | 
					
						
							| 
									
										
										
										
											2016-06-02 17:36:23 +02:00
										 |  |  | #include "editor_help.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-24 21:45:31 +01:00
										 |  |  | #include "editor_node.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "editor_settings.h"
 | 
					
						
							|  |  |  | #include "os/keyboard.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-24 21:45:31 +01:00
										 |  |  | #include "print_string.h"
 | 
					
						
							|  |  |  | #include "scene/gui/box_container.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 22:43:53 -02:00
										 |  |  | void CreateDialog::popup_create(bool p_dont_clear, bool p_replace_mode) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 	type_list.clear(); | 
					
						
							|  |  |  | 	ClassDB::get_class_list(&type_list); | 
					
						
							|  |  |  | 	ScriptServer::get_global_class_list(&type_list); | 
					
						
							|  |  |  | 	type_list.sort_custom<StringName::AlphCompare>(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	recent->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 15:50:18 +01:00
										 |  |  | 	FileAccess *f = FileAccess::open(EditorSettings::get_singleton()->get_project_settings_dir().plus_file("create_recent." + base_type), FileAccess::READ); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (f) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		TreeItem *root = recent->create_item(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		while (!f->eof_reached()) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 			String l = f->get_line().strip_edges(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (l != String()) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				TreeItem *ti = recent->create_item(root); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				ti->set_text(0, l); | 
					
						
							| 
									
										
										
										
											2017-09-05 01:10:07 +01:00
										 |  |  | 				ti->set_icon(0, _get_editor_icon(l)); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memdelete(f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	favorites->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 15:50:18 +01:00
										 |  |  | 	f = FileAccess::open(EditorSettings::get_singleton()->get_project_settings_dir().plus_file("favorites." + base_type), FileAccess::READ); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	favorite_list.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (f) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		while (!f->eof_reached()) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 			String l = f->get_line().strip_edges(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (l != String()) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 				favorite_list.push_back(l); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memdelete(f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_update_favorite_list(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 21:58:45 +01:00
										 |  |  | 	// Restore valid window bounds or pop up at default size.
 | 
					
						
							| 
									
										
										
										
											2017-10-05 15:34:34 -03:00
										 |  |  | 	if (EditorSettings::get_singleton()->has_setting("interface/dialogs/create_new_node_bounds")) { | 
					
						
							| 
									
										
										
										
											2017-03-24 21:45:31 +01:00
										 |  |  | 		popup(EditorSettings::get_singleton()->get("interface/dialogs/create_new_node_bounds")); | 
					
						
							| 
									
										
										
										
											2017-03-16 21:58:45 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-05-04 18:44:29 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Size2 popup_size = Size2(900, 700) * editor_get_scale(); | 
					
						
							|  |  |  | 		Size2 window_size = get_viewport_rect().size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		popup_size.x = MIN(window_size.x * 0.8, popup_size.x); | 
					
						
							|  |  |  | 		popup_size.y = MIN(window_size.y * 0.8, popup_size.y); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		popup_centered(popup_size); | 
					
						
							| 
									
										
										
										
											2017-03-16 21:58:45 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 22:43:53 -02:00
										 |  |  | 	if (p_dont_clear) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		search_box->select_all(); | 
					
						
							| 
									
										
										
										
											2017-12-28 22:43:53 -02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		search_box->clear(); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-28 22:43:53 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	search_box->grab_focus(); | 
					
						
							| 
									
										
										
										
											2016-07-10 08:19:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_update_search(); | 
					
						
							| 
									
										
										
										
											2017-11-16 20:24:33 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool enable_rl = EditorSettings::get_singleton()->get("docks/scene_tree/draw_relationship_lines"); | 
					
						
							|  |  |  | 	Color rl_color = EditorSettings::get_singleton()->get("docks/scene_tree/relationship_line_color"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (enable_rl) { | 
					
						
							|  |  |  | 		search_options->add_constant_override("draw_relationship_lines", 1); | 
					
						
							|  |  |  | 		search_options->add_color_override("relationship_line_color", rl_color); | 
					
						
							| 
									
										
										
										
											2017-12-28 22:43:53 -02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-11-16 20:24:33 -02:00
										 |  |  | 		search_options->add_constant_override("draw_relationship_lines", 0); | 
					
						
							| 
									
										
										
										
											2017-12-28 22:43:53 -02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	is_replace_mode = p_replace_mode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_replace_mode) { | 
					
						
							|  |  |  | 		set_title(vformat(TTR("Change %s Type"), base_type)); | 
					
						
							|  |  |  | 		get_ok()->set_text(TTR("Change")); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		set_title(vformat(TTR("Create New %s"), base_type)); | 
					
						
							|  |  |  | 		get_ok()->set_text(TTR("Create")); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void CreateDialog::_text_changed(const String &p_newtext) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_update_search(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | void CreateDialog::_sbox_input(const Ref<InputEvent> &p_ie) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	Ref<InputEventKey> k = p_ie; | 
					
						
							|  |  |  | 	if (k.is_valid() && (k->get_scancode() == KEY_UP || | 
					
						
							|  |  |  | 								k->get_scancode() == KEY_DOWN || | 
					
						
							|  |  |  | 								k->get_scancode() == KEY_PAGEUP || | 
					
						
							|  |  |  | 								k->get_scancode() == KEY_PAGEDOWN)) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		search_options->call("_gui_input", k); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		search_box->accept_event(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-05 01:10:07 +01:00
										 |  |  | Ref<Texture> CreateDialog::_get_editor_icon(const String &p_type) const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (has_icon(p_type, "EditorIcons")) { | 
					
						
							|  |  |  | 		return get_icon(p_type, "EditorIcons"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const Map<String, Vector<EditorData::CustomType> > &p_map = EditorNode::get_editor_data().get_custom_types(); | 
					
						
							|  |  |  | 	for (const Map<String, Vector<EditorData::CustomType> >::Element *E = p_map.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		const Vector<EditorData::CustomType> &ct = E->value(); | 
					
						
							|  |  |  | 		for (int i = 0; i < ct.size(); ++i) { | 
					
						
							|  |  |  | 			if (ct[i].name == p_type) { | 
					
						
							|  |  |  | 				if (ct[i].icon.is_valid()) { | 
					
						
							|  |  |  | 					return ct[i].icon; | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					return get_icon("Object", "EditorIcons"); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return get_icon("Object", "EditorIcons"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void CreateDialog::add_type(const String &p_type, HashMap<String, TreeItem *> &p_types, TreeItem *p_root, TreeItem **to_select) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p_types.has(p_type)) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool cpp_type = ClassDB::class_exists(p_type); | 
					
						
							|  |  |  | 	EditorData &ed = EditorNode::get_singleton()->get_editor_data(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_type == base_type) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 	if (cpp_type) { | 
					
						
							|  |  |  | 		if (!ClassDB::is_parent_class(p_type, base_type)) | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		if (!ScriptServer::is_global_class(p_type) || !ed.script_class_is_parent(p_type, base_type)) | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		String script_path = ScriptServer::get_global_class_path(p_type); | 
					
						
							|  |  |  | 		if (script_path.find("res://addons/", 0) != -1) { | 
					
						
							|  |  |  | 			if (!EditorNode::get_singleton()->is_addon_plugin_enabled(script_path.get_slicec('/', 3))) | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String inherits = cpp_type ? ClassDB::get_parent_class(p_type) : ed.script_class_get_base(p_type); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	TreeItem *parent = p_root; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (inherits.length()) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!p_types.has(inherits)) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			add_type(inherits, p_types, p_root, to_select); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (p_types.has(inherits)) | 
					
						
							|  |  |  | 			parent = p_types[inherits]; | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 		else if (ScriptServer::is_global_class(inherits)) | 
					
						
							|  |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 	bool can_instance = (cpp_type && ClassDB::can_instance(p_type)) || ScriptServer::is_global_class(p_type); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	TreeItem *item = search_options->create_item(parent); | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 	if (cpp_type) { | 
					
						
							|  |  |  | 		item->set_text(0, p_type); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		item->set_metadata(0, p_type); | 
					
						
							|  |  |  | 		item->set_text(0, p_type + " (" + ScriptServer::get_global_class_path(p_type).get_file() + ")"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (!can_instance) { | 
					
						
							| 
									
										
										
										
											2017-09-25 21:43:20 -05:00
										 |  |  | 		item->set_custom_color(0, get_color("disabled_font_color", "Editor")); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		item->set_selectable(0, false); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-09-29 20:57:31 +02:00
										 |  |  | 		bool is_search_subsequence = search_box->get_text().is_subsequence_ofi(p_type); | 
					
						
							|  |  |  | 		String to_select_type = *to_select ? (*to_select)->get_text(0) : ""; | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 		to_select_type = to_select_type.split(" ")[0]; | 
					
						
							|  |  |  | 		bool current_item_is_preffered; | 
					
						
							|  |  |  | 		if (cpp_type) { | 
					
						
							|  |  |  | 			current_item_is_preffered = ClassDB::is_parent_class(p_type, preferred_search_result_type) && !ClassDB::is_parent_class(to_select_type, preferred_search_result_type); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			current_item_is_preffered = ed.script_class_is_parent(p_type, preferred_search_result_type) && !ed.script_class_is_parent(to_select_type, preferred_search_result_type); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-04 20:21:41 +01:00
										 |  |  | 		if (*to_select && p_type.length() < (*to_select)->get_text(0).length()) { | 
					
						
							|  |  |  | 			current_item_is_preffered = true; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 20:57:31 +02:00
										 |  |  | 		if (((!*to_select || current_item_is_preffered) && is_search_subsequence) || search_box->get_text() == p_type) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			*to_select = item; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 19:41:36 -03:00
										 |  |  | 	if (bool(EditorSettings::get_singleton()->get("docks/scene_tree/start_create_dialog_fully_expanded"))) { | 
					
						
							| 
									
										
										
										
											2016-06-04 10:06:42 +02:00
										 |  |  | 		item->set_collapsed(false); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		// don't collapse search results
 | 
					
						
							|  |  |  | 		bool collapse = (search_box->get_text() == ""); | 
					
						
							|  |  |  | 		// don't collapse the root node
 | 
					
						
							|  |  |  | 		collapse &= (item != p_root); | 
					
						
							|  |  |  | 		// don't collapse abstract nodes on the first tree level
 | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 		collapse &= ((parent != p_root) || (can_instance)); | 
					
						
							| 
									
										
										
										
											2016-06-04 10:06:42 +02:00
										 |  |  | 		item->set_collapsed(collapse); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	const String &description = EditorHelp::get_doc_data()->class_list[p_type].brief_description; | 
					
						
							|  |  |  | 	item->set_tooltip(0, description); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 	if (cpp_type && has_icon(p_type, "EditorIcons")) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		item->set_icon(0, get_icon(p_type, "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 	} else if (!cpp_type && has_icon(ScriptServer::get_global_class_base(p_type), "EditorIcons")) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		item->set_icon(0, get_icon(ScriptServer::get_global_class_base(p_type), "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	p_types[p_type] = item; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CreateDialog::_update_search() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	search_options->clear(); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	favorite->set_disabled(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-23 23:15:16 -03:00
										 |  |  | 	help_bit->set_text(""); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	TreeItem *root = search_options->create_item(); | 
					
						
							|  |  |  | 	_parse_fs(EditorFileSystem::get_singleton()->get_filesystem()); | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	HashMap<String, TreeItem *> types; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *root = search_options->create_item(); | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 	EditorData &ed = EditorNode::get_singleton()->get_editor_data(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	root->set_text(0, base_type); | 
					
						
							|  |  |  | 	if (has_icon(base_type, "EditorIcons")) { | 
					
						
							|  |  |  | 		root->set_icon(0, get_icon(base_type, "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2016-07-18 12:39:51 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 12:53:11 +07:00
										 |  |  | 	TreeItem *to_select = search_box->get_text() == base_type ? root : NULL; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 	for (List<StringName>::Element *I = type_list.front(); I; I = I->next()) { | 
					
						
							| 
									
										
										
										
											2016-07-21 10:16:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		String type = I->get(); | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 		bool cpp_type = ClassDB::class_exists(type); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (base_type == "Node" && type.begins_with("Editor")) | 
					
						
							| 
									
										
										
										
											2016-07-21 10:16:30 -03:00
										 |  |  | 			continue; // do not show editor nodes
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 		if (cpp_type && !ClassDB::can_instance(type)) | 
					
						
							| 
									
										
										
										
											2017-03-24 21:45:31 +01:00
										 |  |  | 			continue; // can't create what can't be instanced
 | 
					
						
							| 
									
										
										
										
											2016-07-10 08:19:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 22:08:28 -05:00
										 |  |  | 		bool skip = false; | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 		if (cpp_type) { | 
					
						
							|  |  |  | 			for (Set<StringName>::Element *E = type_blacklist.front(); E && !skip; E = E->next()) { | 
					
						
							|  |  |  | 				if (ClassDB::is_parent_class(type, E->get())) | 
					
						
							|  |  |  | 					skip = true; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (skip) | 
					
						
							|  |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2018-06-29 22:08:28 -05:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (search_box->get_text() == "") { | 
					
						
							|  |  |  | 			add_type(type, types, root, &to_select); | 
					
						
							| 
									
										
										
										
											2016-07-10 08:19:15 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			bool found = false; | 
					
						
							|  |  |  | 			String type = I->get(); | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 			while (type != "" && (cpp_type ? ClassDB::is_parent_class(type, base_type) : ed.script_class_is_parent(type, base_type)) && type != base_type) { | 
					
						
							| 
									
										
										
										
											2016-06-12 13:43:31 -03:00
										 |  |  | 				if (search_box->get_text().is_subsequence_ofi(type)) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					found = true; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				type = ClassDB::get_parent_class(type); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (found) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				add_type(I->get(), types, root, &to_select); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-02 23:03:46 -03:00
										 |  |  | 		if (EditorNode::get_editor_data().get_custom_types().has(type) && ClassDB::is_parent_class(type, base_type)) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			//there are custom types based on this... cool.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			const Vector<EditorData::CustomType> &ct = EditorNode::get_editor_data().get_custom_types()[type]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < ct.size(); i++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-12 13:43:31 -03:00
										 |  |  | 				bool show = search_box->get_text().is_subsequence_ofi(ct[i].name); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if (!show) | 
					
						
							|  |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2016-07-10 08:19:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				if (!types.has(type)) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					add_type(type, types, root, &to_select); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				TreeItem *ti; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (types.has(type)) | 
					
						
							|  |  |  | 					ti = types[type]; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				else | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					ti = search_options->get_root(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				TreeItem *item = search_options->create_item(ti); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				item->set_metadata(0, type); | 
					
						
							|  |  |  | 				item->set_text(0, ct[i].name); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				if (ct[i].icon.is_valid()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					item->set_icon(0, ct[i].icon); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (!to_select || ct[i].name == search_box->get_text()) { | 
					
						
							|  |  |  | 					to_select = item; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-08 11:44:56 +01:00
										 |  |  | 	if (search_box->get_text() == "") { | 
					
						
							|  |  |  | 		to_select = root; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	if (to_select) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		to_select->select(0); | 
					
						
							| 
									
										
										
										
											2017-11-04 20:21:41 +01:00
										 |  |  | 		search_options->scroll_to_item(to_select); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		favorite->set_disabled(false); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		favorite->set_pressed(favorite_list.find(to_select->get_text(0)) != -1); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	get_ok()->set_disabled(root->get_children() == NULL); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CreateDialog::_confirmed() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *ti = search_options->get_selected(); | 
					
						
							|  |  |  | 	if (!ti) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 15:50:18 +01:00
										 |  |  | 	FileAccess *f = FileAccess::open(EditorSettings::get_singleton()->get_project_settings_dir().plus_file("create_recent." + base_type), FileAccess::WRITE); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (f) { | 
					
						
							|  |  |  | 		f->store_line(get_selected_type()); | 
					
						
							|  |  |  | 		TreeItem *t = recent->get_root(); | 
					
						
							|  |  |  | 		if (t) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			t = t->get_children(); | 
					
						
							|  |  |  | 		int count = 0; | 
					
						
							|  |  |  | 		while (t) { | 
					
						
							|  |  |  | 			if (t->get_text(0) != get_selected_type()) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				f->store_line(t->get_text(0)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (count > 32) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 				//limit it to 32 entries..
 | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			t = t->get_next(); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 			count++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memdelete(f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	emit_signal("create"); | 
					
						
							|  |  |  | 	hide(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CreateDialog::_notification(int p_what) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-24 21:45:31 +01:00
										 |  |  | 	switch (p_what) { | 
					
						
							| 
									
										
										
										
											2017-03-16 21:58:45 +01:00
										 |  |  | 		case NOTIFICATION_ENTER_TREE: { | 
					
						
							|  |  |  | 			connect("confirmed", this, "_confirmed"); | 
					
						
							|  |  |  | 			favorite->set_icon(get_icon("Favorites", "EditorIcons")); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case NOTIFICATION_EXIT_TREE: { | 
					
						
							|  |  |  | 			disconnect("confirmed", this, "_confirmed"); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case NOTIFICATION_VISIBILITY_CHANGED: { | 
					
						
							|  |  |  | 			if (is_visible_in_tree()) { | 
					
						
							|  |  |  | 				search_box->call_deferred("grab_focus"); // still not visible
 | 
					
						
							|  |  |  | 				search_box->select_all(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case NOTIFICATION_POPUP_HIDE: { | 
					
						
							|  |  |  | 			EditorSettings::get_singleton()->set("interface/dialogs/create_new_node_bounds", get_rect()); | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void CreateDialog::set_base_type(const String &p_base) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	base_type = p_base; | 
					
						
							| 
									
										
										
										
											2017-12-28 22:43:53 -02:00
										 |  |  | 	if (is_replace_mode) | 
					
						
							|  |  |  | 		set_title(vformat(TTR("Change %s Type"), p_base)); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		set_title(vformat(TTR("Create New %s"), p_base)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_update_search(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 20:57:31 +02:00
										 |  |  | String CreateDialog::get_base_type() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return base_type; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CreateDialog::set_preferred_search_result_type(const String &p_preferred_type) { | 
					
						
							|  |  |  | 	preferred_search_result_type = p_preferred_type; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String CreateDialog::get_preferred_search_result_type() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return preferred_search_result_type; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | String CreateDialog::get_selected_type() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *selected = search_options->get_selected(); | 
					
						
							|  |  |  | 	if (selected) | 
					
						
							|  |  |  | 		return selected->get_text(0); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return String(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | Object *CreateDialog::instance_selected() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *selected = search_options->get_selected(); | 
					
						
							| 
									
										
										
										
											2016-08-06 20:13:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (selected) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 17:23:04 -03:00
										 |  |  | 		Variant md = selected->get_metadata(0); | 
					
						
							| 
									
										
										
										
											2016-08-06 20:13:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 17:23:04 -03:00
										 |  |  | 		String custom; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (md.get_type() != Variant::NIL) | 
					
						
							|  |  |  | 			custom = md; | 
					
						
							| 
									
										
										
										
											2016-08-06 20:13:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (custom != String()) { | 
					
						
							| 
									
										
										
										
											2018-07-15 19:29:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (ScriptServer::is_global_class(custom)) { | 
					
						
							|  |  |  | 				RES script = ResourceLoader::load(ScriptServer::get_global_class_path(custom)); | 
					
						
							|  |  |  | 				ERR_FAIL_COND_V(!script.is_valid(), NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				Object *obj = ClassDB::instance(ScriptServer::get_global_class_base(custom)); | 
					
						
							|  |  |  | 				ERR_FAIL_COND_V(!obj, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				obj->set_script(script.get_ref_ptr()); | 
					
						
							|  |  |  | 				return obj; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-25 01:41:26 +01:00
										 |  |  | 			return EditorNode::get_editor_data().instance_custom_type(selected->get_text(0), custom); | 
					
						
							| 
									
										
										
										
											2016-02-27 23:10:44 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-01-02 23:03:46 -03:00
										 |  |  | 			return ClassDB::instance(selected->get_text(0)); | 
					
						
							| 
									
										
										
										
											2016-02-27 23:10:44 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-23 23:15:16 -03:00
										 |  |  | void CreateDialog::_item_selected() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *item = search_options->get_selected(); | 
					
						
							|  |  |  | 	if (!item) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String name = item->get_text(0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	favorite->set_disabled(false); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	favorite->set_pressed(favorite_list.find(name) != -1); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-23 23:15:16 -03:00
										 |  |  | 	if (!EditorHelp::get_doc_data()->class_list.has(name)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	help_bit->set_text(EditorHelp::get_doc_data()->class_list[name].brief_description); | 
					
						
							| 
									
										
										
										
											2018-03-04 23:27:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	get_ok()->set_disabled(false); | 
					
						
							| 
									
										
										
										
											2016-08-23 23:15:16 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | void CreateDialog::_favorite_toggled() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *item = search_options->get_selected(); | 
					
						
							|  |  |  | 	if (!item) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String name = item->get_text(0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (favorite_list.find(name) == -1) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		favorite_list.push_back(name); | 
					
						
							|  |  |  | 		favorite->set_pressed(true); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		favorite_list.erase(name); | 
					
						
							|  |  |  | 		favorite->set_pressed(false); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_save_favorite_list(); | 
					
						
							|  |  |  | 	_update_favorite_list(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CreateDialog::_save_favorite_list() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 15:50:18 +01:00
										 |  |  | 	FileAccess *f = FileAccess::open(EditorSettings::get_singleton()->get_project_settings_dir().plus_file("favorites." + base_type), FileAccess::WRITE); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (f) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < favorite_list.size(); i++) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			f->store_line(favorite_list[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		memdelete(f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CreateDialog::_update_favorite_list() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	favorites->clear(); | 
					
						
							|  |  |  | 	TreeItem *root = favorites->create_item(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (int i = 0; i < favorite_list.size(); i++) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		TreeItem *ti = favorites->create_item(root); | 
					
						
							|  |  |  | 		String l = favorite_list[i]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ti->set_text(0, l); | 
					
						
							| 
									
										
										
										
											2017-09-05 01:10:07 +01:00
										 |  |  | 		ti->set_icon(0, _get_editor_icon(l)); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CreateDialog::_history_selected() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *item = recent->get_selected(); | 
					
						
							|  |  |  | 	if (!item) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	search_box->set_text(item->get_text(0)); | 
					
						
							|  |  |  | 	_update_search(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void CreateDialog::_favorite_selected() { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *item = favorites->get_selected(); | 
					
						
							|  |  |  | 	if (!item) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	search_box->set_text(item->get_text(0)); | 
					
						
							|  |  |  | 	_update_search(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CreateDialog::_history_activated() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 13:23:37 +07:00
										 |  |  | 	_history_selected(); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	_confirmed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void CreateDialog::_favorite_activated() { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 13:23:37 +07:00
										 |  |  | 	_favorite_selected(); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	_confirmed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Variant CreateDialog::get_drag_data_fw(const Point2 &p_point, Control *p_from) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | 	TreeItem *ti = favorites->get_item_at_position(p_point); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	if (ti) { | 
					
						
							|  |  |  | 		Dictionary d; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		d["type"] = "create_favorite_drag"; | 
					
						
							|  |  |  | 		d["class"] = ti->get_text(0); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ToolButton *tb = memnew(ToolButton); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		tb->set_icon(ti->get_icon(0)); | 
					
						
							|  |  |  | 		tb->set_text(ti->get_text(0)); | 
					
						
							|  |  |  | 		set_drag_preview(tb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return d; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return Variant(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool CreateDialog::can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Dictionary d = p_data; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (d.has("type") && String(d["type"]) == "create_favorite_drag") { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		favorites->set_drop_mode_flags(Tree::DROP_MODE_INBETWEEN); | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void CreateDialog::drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Dictionary d = p_data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | 	TreeItem *ti = favorites->get_item_at_position(p_point); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	if (!ti) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String drop_at = ti->get_text(0); | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | 	int ds = favorites->get_drop_section_at_position(p_point); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int drop_idx = favorite_list.find(drop_at); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (drop_idx < 0) | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String type = d["class"]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int from_idx = favorite_list.find(type); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (from_idx < 0) | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (drop_idx == from_idx) { | 
					
						
							|  |  |  | 		ds = -1; //cause it will be gone
 | 
					
						
							|  |  |  | 	} else if (drop_idx > from_idx) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		drop_idx--; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	favorite_list.remove(from_idx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (ds < 0) { | 
					
						
							|  |  |  | 		favorite_list.insert(drop_idx, type); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (drop_idx >= favorite_list.size() - 1) { | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 			favorite_list.push_back(type); | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			favorite_list.insert(drop_idx + 1, type); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_save_favorite_list(); | 
					
						
							|  |  |  | 	_update_favorite_list(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void CreateDialog::_bind_methods() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("_text_changed"), &CreateDialog::_text_changed); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_confirmed"), &CreateDialog::_confirmed); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_sbox_input"), &CreateDialog::_sbox_input); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_item_selected"), &CreateDialog::_item_selected); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_favorite_toggled"), &CreateDialog::_favorite_toggled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_history_selected"), &CreateDialog::_history_selected); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_favorite_selected"), &CreateDialog::_favorite_selected); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_history_activated"), &CreateDialog::_history_activated); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_favorite_activated"), &CreateDialog::_favorite_activated); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method("get_drag_data_fw", &CreateDialog::get_drag_data_fw); | 
					
						
							|  |  |  | 	ClassDB::bind_method("can_drop_data_fw", &CreateDialog::can_drop_data_fw); | 
					
						
							|  |  |  | 	ClassDB::bind_method("drop_data_fw", &CreateDialog::drop_data_fw); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("create")); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CreateDialog::CreateDialog() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 22:43:53 -02:00
										 |  |  | 	is_replace_mode = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 21:58:45 +01:00
										 |  |  | 	set_resizable(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-21 13:00:25 -02:00
										 |  |  | 	HSplitContainer *hsc = memnew(HSplitContainer); | 
					
						
							|  |  |  | 	add_child(hsc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VSplitContainer *vsc = memnew(VSplitContainer); | 
					
						
							|  |  |  | 	hsc->add_child(vsc); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-25 02:29:00 -02:00
										 |  |  | 	VBoxContainer *fav_vb = memnew(VBoxContainer); | 
					
						
							|  |  |  | 	vsc->add_child(fav_vb); | 
					
						
							|  |  |  | 	fav_vb->set_custom_minimum_size(Size2(150, 100) * EDSCALE); | 
					
						
							|  |  |  | 	fav_vb->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	favorites = memnew(Tree); | 
					
						
							|  |  |  | 	fav_vb->add_margin_child(TTR("Favorites:"), favorites, true); | 
					
						
							|  |  |  | 	favorites->set_hide_root(true); | 
					
						
							|  |  |  | 	favorites->set_hide_folding(true); | 
					
						
							|  |  |  | 	favorites->connect("cell_selected", this, "_favorite_selected"); | 
					
						
							|  |  |  | 	favorites->connect("item_activated", this, "_favorite_activated"); | 
					
						
							|  |  |  | 	favorites->set_drag_forwarding(this); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *rec_vb = memnew(VBoxContainer); | 
					
						
							|  |  |  | 	vsc->add_child(rec_vb); | 
					
						
							|  |  |  | 	rec_vb->set_custom_minimum_size(Size2(150, 100) * EDSCALE); | 
					
						
							|  |  |  | 	rec_vb->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	recent = memnew(Tree); | 
					
						
							|  |  |  | 	rec_vb->add_margin_child(TTR("Recent:"), recent, true); | 
					
						
							|  |  |  | 	recent->set_hide_root(true); | 
					
						
							|  |  |  | 	recent->set_hide_folding(true); | 
					
						
							|  |  |  | 	recent->connect("cell_selected", this, "_history_selected"); | 
					
						
							|  |  |  | 	recent->connect("item_activated", this, "_history_activated"); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	VBoxContainer *vbc = memnew(VBoxContainer); | 
					
						
							| 
									
										
										
										
											2017-12-21 13:00:25 -02:00
										 |  |  | 	hsc->add_child(vbc); | 
					
						
							|  |  |  | 	vbc->set_custom_minimum_size(Size2(300, 0) * EDSCALE); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	vbc->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	HBoxContainer *search_hb = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	search_box = memnew(LineEdit); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	search_box->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	search_hb->add_child(search_box); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	favorite = memnew(Button); | 
					
						
							| 
									
										
										
										
											2017-09-13 21:31:35 -05:00
										 |  |  | 	favorite->set_flat(true); | 
					
						
							| 
									
										
										
										
											2016-09-12 23:23:36 -03:00
										 |  |  | 	favorite->set_toggle_mode(true); | 
					
						
							|  |  |  | 	search_hb->add_child(favorite); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	favorite->connect("pressed", this, "_favorite_toggled"); | 
					
						
							|  |  |  | 	vbc->add_margin_child(TTR("Search:"), search_hb); | 
					
						
							|  |  |  | 	search_box->connect("text_changed", this, "_text_changed"); | 
					
						
							|  |  |  | 	search_box->connect("gui_input", this, "_sbox_input"); | 
					
						
							|  |  |  | 	search_options = memnew(Tree); | 
					
						
							|  |  |  | 	vbc->add_margin_child(TTR("Matches:"), search_options, true); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	get_ok()->set_disabled(true); | 
					
						
							|  |  |  | 	register_text_enter(search_box); | 
					
						
							|  |  |  | 	set_hide_on_ok(false); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	search_options->connect("item_activated", this, "_confirmed"); | 
					
						
							|  |  |  | 	search_options->connect("cell_selected", this, "_item_selected"); | 
					
						
							|  |  |  | 	base_type = "Object"; | 
					
						
							| 
									
										
										
										
											2017-09-29 20:57:31 +02:00
										 |  |  | 	preferred_search_result_type = ""; | 
					
						
							| 
									
										
										
										
											2016-08-23 23:15:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	help_bit = memnew(EditorHelpBit); | 
					
						
							|  |  |  | 	vbc->add_margin_child(TTR("Description:"), help_bit); | 
					
						
							|  |  |  | 	help_bit->connect("request_hide", this, "_closed"); | 
					
						
							| 
									
										
										
										
											2018-06-29 22:08:28 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	type_blacklist.insert("PluginScript"); // PluginScript must be initialized before use, which is not possible here
 | 
					
						
							|  |  |  | 	type_blacklist.insert("ScriptCreateDialog"); // This is an exposed editor Node that doesn't have an Editor prefix.
 | 
					
						
							| 
									
										
										
										
											2018-07-25 14:43:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	EDITOR_DEF("interface/editors/derive_script_globals_by_name", true); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |