| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-09-01 21:07:55 +07:00
										 |  |  | /*  project_settings_editor.cpp                                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       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
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | #include "project_settings_editor.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/config/project_settings.h"
 | 
					
						
							| 
									
										
										
										
											2019-12-24 15:17:23 +08:00
										 |  |  | #include "editor/editor_export.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-26 17:46:49 +02:00
										 |  |  | #include "editor/editor_node.h"
 | 
					
						
							| 
									
										
										
										
											2019-12-24 15:17:23 +08:00
										 |  |  | #include "editor/editor_scale.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | ProjectSettingsEditor *ProjectSettingsEditor::singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | void ProjectSettingsEditor::popup_project_settings() { | 
					
						
							|  |  |  | 	// Restore valid window bounds or pop up at default size.
 | 
					
						
							|  |  |  | 	Rect2 saved_size = EditorSettings::get_singleton()->get_project_metadata("dialog_bounds", "project_settings", Rect2()); | 
					
						
							|  |  |  | 	if (saved_size != Rect2()) { | 
					
						
							|  |  |  | 		popup(saved_size); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		popup_centered_clamped(Size2(900, 700) * EDSCALE, 0.8); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	_add_feature_overrides(); | 
					
						
							|  |  |  | 	inspector->update_category_list(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	localization_editor->update_translations(); | 
					
						
							|  |  |  | 	autoload_settings->update_autoload(); | 
					
						
							|  |  |  | 	plugin_settings->update_plugins(); | 
					
						
							| 
									
										
										
										
											2021-02-23 14:17:42 -03:00
										 |  |  | 	import_defaults_editor->clear(); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-04-28 15:53:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::queue_save() { | 
					
						
							| 
									
										
										
										
											2021-02-13 11:06:56 -03:00
										 |  |  | 	EditorNode::get_singleton()->notify_settings_changed(); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	timer->start(); | 
					
						
							| 
									
										
										
										
											2019-10-06 17:13:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::set_plugins_page() { | 
					
						
							|  |  |  | 	tab_container->set_current_tab(plugin_settings->get_index()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | void ProjectSettingsEditor::update_plugins() { | 
					
						
							|  |  |  | 	plugin_settings->update_plugins(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_setting_edited(const String &p_name) { | 
					
						
							|  |  |  | 	queue_save(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectSettingsEditor::_advanced_pressed() { | 
					
						
							|  |  |  | 	if (advanced->is_pressed()) { | 
					
						
							|  |  |  | 		_update_advanced_bar(); | 
					
						
							|  |  |  | 		advanced_bar->show(); | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 		EditorSettings::get_singleton()->set_project_metadata("project_settings", "advanced_mode", true); | 
					
						
							|  |  |  | 		inspector->set_restrict_to_basic_settings(false); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		advanced_bar->hide(); | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 		EditorSettings::get_singleton()->set_project_metadata("project_settings", "advanced_mode", false); | 
					
						
							|  |  |  | 		inspector->set_restrict_to_basic_settings(true); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_setting_selected(const String &p_path) { | 
					
						
							|  |  |  | 	if (p_path == String()) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	category_box->set_text(inspector->get_current_section()); | 
					
						
							|  |  |  | 	property_box->set_text(p_path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (advanced_bar->is_visible()) { | 
					
						
							|  |  |  | 		_update_advanced_bar(); // set_text doesn't trigger text_changed
 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_add_setting() { | 
					
						
							|  |  |  | 	String setting = _get_setting_name(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	// Initialize the property with the default value for the given type.
 | 
					
						
							|  |  |  | 	Callable::CallError ce; | 
					
						
							| 
									
										
										
										
											2020-11-09 00:19:09 -03:00
										 |  |  | 	Variant value; | 
					
						
							| 
									
										
										
										
											2021-04-20 18:50:36 +02:00
										 |  |  | 	Variant::construct(Variant::Type(type->get_selected_id()), value, nullptr, 0, ce); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	undo_redo->create_action(TTR("Add Project Setting")); | 
					
						
							|  |  |  | 	undo_redo->add_do_property(ps, setting, value); | 
					
						
							|  |  |  | 	undo_redo->add_undo_property(ps, setting, ps->has_setting(setting) ? ps->get(setting) : Variant()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	undo_redo->add_do_method(inspector, "update_category_list"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(inspector, "update_category_list"); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	inspector->set_current_section(setting.get_slice("/", 1)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-14 18:04:34 +10:00
										 |  |  | void ProjectSettingsEditor::_delete_setting(bool p_confirmed) { | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	String setting = _get_setting_name(); | 
					
						
							|  |  |  | 	Variant value = ps->get(setting); | 
					
						
							|  |  |  | 	int order = ps->get_order(setting); | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-14 18:04:34 +10:00
										 |  |  | 	if (!p_confirmed) { | 
					
						
							|  |  |  | 		del_confirmation->set_text(vformat(TTR("Are you sure you want to delete '%s'?"), setting)); | 
					
						
							|  |  |  | 		del_confirmation->popup_centered(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	undo_redo->create_action(TTR("Delete Item")); | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	undo_redo->add_do_method(ps, "clear", setting); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(ps, "set", setting, value); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(ps, "set_order", setting, order); | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	undo_redo->add_do_method(inspector, "update_category_list"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(inspector, "update_category_list"); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "queue_save"); | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	property_box->clear(); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_text_field_changed(const String &p_text) { | 
					
						
							|  |  |  | 	_update_advanced_bar(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_feature_selected(int p_index) { | 
					
						
							|  |  |  | 	_update_advanced_bar(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_update_advanced_bar() { | 
					
						
							|  |  |  | 	const String property_text = property_box->get_text().strip_edges(); | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	String error_msg = ""; | 
					
						
							|  |  |  | 	bool disable_add = true; | 
					
						
							|  |  |  | 	bool disable_del = true; | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 12:04:21 +00:00
										 |  |  | 	if (!property_box->get_text().is_empty()) { | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		const String setting = _get_setting_name(); | 
					
						
							|  |  |  | 		bool setting_exists = ps->has_setting(setting); | 
					
						
							|  |  |  | 		if (setting_exists) { | 
					
						
							|  |  |  | 			error_msg = TTR(" - Cannot add already existing setting."); | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 			disable_del = ps->is_builtin_setting(setting); | 
					
						
							|  |  |  | 			if (disable_del) { | 
					
						
							|  |  |  | 				String msg = TTR(" - Cannot delete built-in setting."); | 
					
						
							|  |  |  | 				error_msg += (error_msg == "") ? msg : "\n" + msg; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			bool bad_category = false; // Allow empty string.
 | 
					
						
							|  |  |  | 			Vector<String> cats = category_box->get_text().strip_edges().split("/"); | 
					
						
							|  |  |  | 			for (int i = 0; i < cats.size(); i++) { | 
					
						
							|  |  |  | 				if (!cats[i].is_valid_identifier()) { | 
					
						
							|  |  |  | 					bad_category = true; | 
					
						
							|  |  |  | 					error_msg = TTR(" - Invalid category name."); | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-14 12:14:23 -03:00
										 |  |  | 			disable_add = bad_category; | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 			if (!property_text.is_valid_identifier()) { | 
					
						
							|  |  |  | 				disable_add = true; | 
					
						
							|  |  |  | 				String msg = TTR(" - Invalid property name."); | 
					
						
							|  |  |  | 				error_msg += (error_msg == "") ? msg : "\n" + msg; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	add_button->set_disabled(disable_add); | 
					
						
							|  |  |  | 	del_button->set_disabled(disable_del); | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | String ProjectSettingsEditor::_get_setting_name() const { | 
					
						
							|  |  |  | 	const String cat = category_box->get_text(); | 
					
						
							| 
									
										
										
										
											2020-12-15 12:04:21 +00:00
										 |  |  | 	const String name = (cat.is_empty() ? "global" : cat.strip_edges()).plus_file(property_box->get_text().strip_edges()); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	const String feature = feature_override->get_item_text(feature_override->get_selected()); | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	return (feature == "") ? name : (name + "." + feature); | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_add_feature_overrides() { | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	Set<String> presets; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	presets.insert("bptc"); | 
					
						
							|  |  |  | 	presets.insert("s3tc"); | 
					
						
							|  |  |  | 	presets.insert("etc"); | 
					
						
							|  |  |  | 	presets.insert("etc2"); | 
					
						
							|  |  |  | 	presets.insert("pvrtc"); | 
					
						
							|  |  |  | 	presets.insert("debug"); | 
					
						
							|  |  |  | 	presets.insert("release"); | 
					
						
							|  |  |  | 	presets.insert("editor"); | 
					
						
							|  |  |  | 	presets.insert("standalone"); | 
					
						
							|  |  |  | 	presets.insert("32"); | 
					
						
							|  |  |  | 	presets.insert("64"); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	presets.insert("Server"); // Not available as an export platform yet, so it needs to be added manually
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	EditorExport *ee = EditorExport::get_singleton(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < ee->get_export_platform_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 		List<String> p; | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		ee->get_export_platform(i)->get_platform_features(&p); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 		for (List<String>::Element *E = p.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 			presets.insert(E->get()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	for (int i = 0; i < ee->get_export_preset_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 		List<String> p; | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		ee->get_export_preset(i)->get_platform()->get_preset_features(ee->get_export_preset(i), &p); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 		for (List<String>::Element *E = p.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 			presets.insert(E->get()); | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		String custom = ee->get_export_preset(i)->get_custom_features(); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 		Vector<String> custom_list = custom.split(","); | 
					
						
							|  |  |  | 		for (int j = 0; j < custom_list.size(); j++) { | 
					
						
							|  |  |  | 			String f = custom_list[j].strip_edges(); | 
					
						
							|  |  |  | 			if (f != String()) { | 
					
						
							|  |  |  | 				presets.insert(f); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	feature_override->clear(); | 
					
						
							|  |  |  | 	feature_override->add_item("", 0); // So it is always on top.
 | 
					
						
							|  |  |  | 	int id = 1; | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	for (Set<String>::Element *E = presets.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		feature_override->add_item(E->get(), id++); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | void ProjectSettingsEditor::_editor_restart() { | 
					
						
							| 
									
										
										
										
											2021-02-26 13:33:08 +01:00
										 |  |  | 	ProjectSettings::get_singleton()->save(); | 
					
						
							| 
									
										
										
										
											2019-01-25 17:23:56 -03:00
										 |  |  | 	EditorNode::get_singleton()->save_all_scenes(); | 
					
						
							|  |  |  | 	EditorNode::get_singleton()->restart_editor(); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectSettingsEditor::_editor_restart_request() { | 
					
						
							|  |  |  | 	restart_container->show(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectSettingsEditor::_editor_restart_close() { | 
					
						
							|  |  |  | 	restart_container->hide(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-01 23:04:57 +10:00
										 |  |  | void ProjectSettingsEditor::_action_added(const String &p_name) { | 
					
						
							|  |  |  | 	String name = "input/" + p_name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ProjectSettings::get_singleton()->has_setting(name)) { | 
					
						
							|  |  |  | 		action_map->show_message(vformat(TTR("An action with the name '%s' already exists."), name)); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Dictionary action; | 
					
						
							|  |  |  | 	action["events"] = Array(); | 
					
						
							|  |  |  | 	action["deadzone"] = 0.5f; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Add Input Action")); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", name, action); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(ProjectSettings::get_singleton(), "clear", name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectSettingsEditor::_action_edited(const String &p_name, const Dictionary &p_action) { | 
					
						
							|  |  |  | 	const String property_name = "input/" + p_name; | 
					
						
							|  |  |  | 	Dictionary old_val = ProjectSettings::get_singleton()->get(property_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (old_val["deadzone"] != p_action["deadzone"]) { | 
					
						
							|  |  |  | 		// Deadzone Changed
 | 
					
						
							|  |  |  | 		undo_redo->create_action(TTR("Change Action deadzone")); | 
					
						
							|  |  |  | 		undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", property_name, p_action); | 
					
						
							|  |  |  | 		undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", property_name, old_val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		// Events changed
 | 
					
						
							|  |  |  | 		int event_count = ((Array)p_action["events"]).size(); | 
					
						
							|  |  |  | 		int old_event_count = ((Array)old_val["events"]).size(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (event_count == old_event_count) { | 
					
						
							|  |  |  | 			undo_redo->create_action(TTR("Edit Input Action Event")); | 
					
						
							|  |  |  | 		} else if (event_count > old_event_count) { | 
					
						
							|  |  |  | 			undo_redo->create_action(TTR("Add Input Action Event")); | 
					
						
							|  |  |  | 		} else if (event_count < old_event_count) { | 
					
						
							|  |  |  | 			undo_redo->create_action(TTR("Remove Input Action Event")); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", property_name, p_action); | 
					
						
							|  |  |  | 		undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", property_name, old_val); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectSettingsEditor::_action_removed(const String &p_name) { | 
					
						
							|  |  |  | 	const String property_name = "input/" + p_name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Dictionary old_val = ProjectSettings::get_singleton()->get(property_name); | 
					
						
							|  |  |  | 	int order = ProjectSettings::get_singleton()->get_order(property_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Erase Input Action")); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(ProjectSettings::get_singleton(), "clear", property_name); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", property_name, old_val); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set_order", property_name, order); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectSettingsEditor::_action_renamed(const String &p_old_name, const String &p_new_name) { | 
					
						
							|  |  |  | 	const String old_property_name = "input/" + p_old_name; | 
					
						
							|  |  |  | 	const String new_property_name = "input/" + p_new_name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ProjectSettings::get_singleton()->has_setting(new_property_name)) { | 
					
						
							|  |  |  | 		action_map->show_message(vformat(TTR("An action with the name '%s' already exists."), new_property_name)); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int order = ProjectSettings::get_singleton()->get_order(old_property_name); | 
					
						
							|  |  |  | 	Dictionary action = ProjectSettings::get_singleton()->get(old_property_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Rename Input Action Event")); | 
					
						
							|  |  |  | 	// Do: clear old, set new
 | 
					
						
							|  |  |  | 	undo_redo->add_do_method(ProjectSettings::get_singleton(), "clear", old_property_name); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", new_property_name, action); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(ProjectSettings::get_singleton(), "set_order", new_property_name, order); | 
					
						
							|  |  |  | 	// Undo: clear new, set old
 | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(ProjectSettings::get_singleton(), "clear", new_property_name); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", old_property_name, action); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set_order", old_property_name, order); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectSettingsEditor::_action_reordered(const String &p_action_name, const String &p_relative_to, bool p_before) { | 
					
						
							|  |  |  | 	const String action_name = "input/" + p_action_name; | 
					
						
							|  |  |  | 	const String target_name = "input/" + p_relative_to; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// It is much easier to rebuild the custom "input" properties rather than messing around with the "order" values of them.
 | 
					
						
							|  |  |  | 	Variant action_value = ps->get(action_name); | 
					
						
							|  |  |  | 	Variant target_value = ps->get(target_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	List<PropertyInfo> props; | 
					
						
							|  |  |  | 	OrderedHashMap<String, Variant> action_values; | 
					
						
							|  |  |  | 	ProjectSettings::get_singleton()->get_property_list(&props); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Update Input Action Order")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		PropertyInfo prop = E->get(); | 
					
						
							|  |  |  | 		// Skip builtins and non-inputs
 | 
					
						
							|  |  |  | 		if (ProjectSettings::get_singleton()->is_builtin_setting(prop.name) || !prop.name.begins_with("input/")) { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		action_values.insert(prop.name, ps->get(prop.name)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		undo_redo->add_do_method(ProjectSettings::get_singleton(), "clear", prop.name); | 
					
						
							|  |  |  | 		undo_redo->add_undo_method(ProjectSettings::get_singleton(), "clear", prop.name); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (OrderedHashMap<String, Variant>::Element E = action_values.front(); E; E = E.next()) { | 
					
						
							|  |  |  | 		String name = E.key(); | 
					
						
							|  |  |  | 		Variant value = E.get(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (name == target_name) { | 
					
						
							|  |  |  | 			if (p_before) { | 
					
						
							|  |  |  | 				// Insert before target
 | 
					
						
							|  |  |  | 				undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", action_name, action_value); | 
					
						
							|  |  |  | 				undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", target_name, target_value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", target_name, target_value); | 
					
						
							|  |  |  | 				undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", action_name, action_value); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				// Insert after target
 | 
					
						
							|  |  |  | 				undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", target_name, target_value); | 
					
						
							|  |  |  | 				undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", action_name, action_value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", action_name, action_value); | 
					
						
							|  |  |  | 				undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", target_name, target_value); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} else if (name != action_name) { | 
					
						
							|  |  |  | 			undo_redo->add_do_method(ProjectSettings::get_singleton(), "set", name, value); | 
					
						
							|  |  |  | 			undo_redo->add_undo_method(ProjectSettings::get_singleton(), "set", name, value); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "_update_action_map_editor"); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this, "queue_save"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectSettingsEditor::_update_action_map_editor() { | 
					
						
							|  |  |  | 	Vector<ActionMapEditor::ActionInfo> actions; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	List<PropertyInfo> props; | 
					
						
							|  |  |  | 	ProjectSettings::get_singleton()->get_property_list(&props); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const Ref<Texture2D> builtin_icon = get_theme_icon("PinPressed", "EditorIcons"); | 
					
						
							|  |  |  | 	for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		const String property_name = E->get().name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!property_name.begins_with("input/")) { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Strip the "input/" from the left.
 | 
					
						
							|  |  |  | 		String display_name = property_name.substr(String("input/").size() - 1); | 
					
						
							|  |  |  | 		Dictionary action = ProjectSettings::get_singleton()->get(property_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ActionMapEditor::ActionInfo action_info; | 
					
						
							|  |  |  | 		action_info.action = action; | 
					
						
							|  |  |  | 		action_info.editable = true; | 
					
						
							|  |  |  | 		action_info.name = display_name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		const bool is_builtin_input = ProjectSettings::get_singleton()->get_input_presets().find(property_name) != nullptr; | 
					
						
							|  |  |  | 		if (is_builtin_input) { | 
					
						
							|  |  |  | 			action_info.editable = false; | 
					
						
							|  |  |  | 			action_info.icon = builtin_icon; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		actions.push_back(action_info); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	action_map->update_action_list(actions); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_notification(int p_what) { | 
					
						
							|  |  |  | 	switch (p_what) { | 
					
						
							|  |  |  | 		case NOTIFICATION_VISIBILITY_CHANGED: { | 
					
						
							|  |  |  | 			if (!is_visible()) { | 
					
						
							|  |  |  | 				EditorSettings::get_singleton()->set_project_metadata("dialog_bounds", "project_settings", Rect2(get_position(), get_size())); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case NOTIFICATION_ENTER_TREE: { | 
					
						
							|  |  |  | 			inspector->edit(ps); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			add_button->set_icon(get_theme_icon("Add", "EditorIcons")); | 
					
						
							|  |  |  | 			del_button->set_icon(get_theme_icon("Remove", "EditorIcons")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			search_box->set_right_icon(get_theme_icon("Search", "EditorIcons")); | 
					
						
							|  |  |  | 			search_box->set_clear_button_enabled(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			restart_close_button->set_icon(get_theme_icon("Close", "EditorIcons")); | 
					
						
							|  |  |  | 			restart_container->add_theme_style_override("panel", get_theme_stylebox("bg", "Tree")); | 
					
						
							|  |  |  | 			restart_icon->set_texture(get_theme_icon("StatusWarning", "EditorIcons")); | 
					
						
							|  |  |  | 			restart_label->add_theme_color_override("font_color", get_theme_color("warning_color", "Editor")); | 
					
						
							| 
									
										
										
										
											2020-10-01 23:04:57 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			_update_action_map_editor(); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: { | 
					
						
							|  |  |  | 			search_box->set_right_icon(get_theme_icon("Search", "EditorIcons")); | 
					
						
							|  |  |  | 			search_box->set_clear_button_enabled(true); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | void ProjectSettingsEditor::_bind_methods() { | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("queue_save"), &ProjectSettingsEditor::queue_save); | 
					
						
							| 
									
										
										
										
											2020-10-01 23:04:57 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_update_action_map_editor"), &ProjectSettingsEditor::_update_action_map_editor); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	singleton = this; | 
					
						
							| 
									
										
										
										
											2017-05-01 17:44:52 +02:00
										 |  |  | 	set_title(TTR("Project Settings (project.godot)")); | 
					
						
							| 
									
										
										
										
											2020-03-06 14:00:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	ps = ProjectSettings::get_singleton(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	undo_redo = &p_data->get_undo_redo(); | 
					
						
							|  |  |  | 	data = p_data; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tab_container = memnew(TabContainer); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	tab_container->set_tab_align(TabContainer::ALIGN_LEFT); | 
					
						
							| 
									
										
										
										
											2019-01-26 15:41:36 -03:00
										 |  |  | 	tab_container->set_use_hidden_tabs_for_min_size(true); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	add_child(tab_container); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	VBoxContainer *general_editor = memnew(VBoxContainer); | 
					
						
							|  |  |  | 	general_editor->set_name(TTR("General")); | 
					
						
							|  |  |  | 	general_editor->set_alignment(BoxContainer::ALIGN_BEGIN); | 
					
						
							|  |  |  | 	general_editor->set_v_size_flags(Control::SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	tab_container->add_child(general_editor); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *header = memnew(VBoxContainer); | 
					
						
							|  |  |  | 	header->set_h_size_flags(Control::SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	general_editor->add_child(header); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		// Search bar.
 | 
					
						
							|  |  |  | 		search_bar = memnew(HBoxContainer); | 
					
						
							|  |  |  | 		search_bar->set_h_size_flags(Control::SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 		header->add_child(search_bar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		search_box = memnew(LineEdit); | 
					
						
							| 
									
										
										
										
											2020-08-28 18:39:19 -03:00
										 |  |  | 		search_box->set_placeholder(TTR("Search")); | 
					
						
							| 
									
										
										
										
											2020-08-14 12:14:23 -03:00
										 |  |  | 		search_box->set_h_size_flags(Control::SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		search_bar->add_child(search_box); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		advanced = memnew(CheckButton); | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 		advanced->set_text(TTR("Advanced Settings")); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		advanced->connect("pressed", callable_mp(this, &ProjectSettingsEditor::_advanced_pressed)); | 
					
						
							|  |  |  | 		search_bar->add_child(advanced); | 
					
						
							| 
									
										
										
										
											2019-10-07 17:17:13 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		// Advanced bar.
 | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 		advanced_bar = memnew(HBoxContainer); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		advanced_bar->hide(); | 
					
						
							|  |  |  | 		header->add_child(advanced_bar); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 		HBoxContainer *hbc = advanced_bar; | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		hbc->set_h_size_flags(Control::SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		category_box = memnew(LineEdit); | 
					
						
							| 
									
										
										
										
											2020-08-14 12:14:23 -03:00
										 |  |  | 		category_box->set_h_size_flags(Control::SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		category_box->connect("text_changed", callable_mp(this, &ProjectSettingsEditor::_text_field_changed)); | 
					
						
							|  |  |  | 		category_box->set_placeholder(TTR("Category")); | 
					
						
							|  |  |  | 		hbc->add_child(category_box); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Label *l = memnew(Label); | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 		l->set_text(" / "); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		hbc->add_child(l); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		property_box = memnew(LineEdit); | 
					
						
							|  |  |  | 		property_box->set_h_size_flags(Control::SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 		property_box->set_placeholder(TTR("Property")); | 
					
						
							|  |  |  | 		property_box->connect("text_changed", callable_mp(this, &ProjectSettingsEditor::_text_field_changed)); | 
					
						
							|  |  |  | 		hbc->add_child(property_box); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		l = memnew(Label); | 
					
						
							|  |  |  | 		l->set_text(TTR("Type:")); | 
					
						
							|  |  |  | 		hbc->add_child(l); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		type = memnew(OptionButton); | 
					
						
							| 
									
										
										
										
											2020-08-14 12:14:23 -03:00
										 |  |  | 		type->set_custom_minimum_size(Size2(100, 0) * EDSCALE); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		hbc->add_child(type); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-07 14:27:25 +02:00
										 |  |  | 		for (int i = 0; i < Variant::VARIANT_MAX; i++) { | 
					
						
							|  |  |  | 			// There's no point in adding Nil types, and Object types
 | 
					
						
							|  |  |  | 			// can't be serialized correctly in the project settings.
 | 
					
						
							|  |  |  | 			if (i != Variant::NIL && i != Variant::OBJECT) { | 
					
						
							| 
									
										
										
										
											2021-04-20 18:50:36 +02:00
										 |  |  | 				type->add_item(Variant::get_type_name(Variant::Type(i)), i); | 
					
						
							| 
									
										
										
										
											2020-10-07 14:27:25 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		l = memnew(Label); | 
					
						
							|  |  |  | 		l->set_text(TTR("Feature Override:")); | 
					
						
							|  |  |  | 		hbc->add_child(l); | 
					
						
							| 
									
										
										
										
											2016-01-23 16:05:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		feature_override = memnew(OptionButton); | 
					
						
							| 
									
										
										
										
											2020-08-14 12:14:23 -03:00
										 |  |  | 		feature_override->set_custom_minimum_size(Size2(100, 0) * EDSCALE); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		feature_override->connect("item_selected", callable_mp(this, &ProjectSettingsEditor::_feature_selected)); | 
					
						
							|  |  |  | 		hbc->add_child(feature_override); | 
					
						
							| 
									
										
										
										
											2016-01-23 16:05:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		add_button = memnew(Button); | 
					
						
							| 
									
										
										
										
											2020-08-14 12:14:23 -03:00
										 |  |  | 		add_button->set_flat(true); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		add_button->connect("pressed", callable_mp(this, &ProjectSettingsEditor::_add_setting)); | 
					
						
							|  |  |  | 		hbc->add_child(add_button); | 
					
						
							| 
									
										
										
										
											2015-11-21 13:42:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		del_button = memnew(Button); | 
					
						
							| 
									
										
										
										
											2020-08-14 12:14:23 -03:00
										 |  |  | 		del_button->set_flat(true); | 
					
						
							| 
									
										
										
										
											2020-08-14 18:04:34 +10:00
										 |  |  | 		del_button->connect("pressed", callable_mp(this, &ProjectSettingsEditor::_delete_setting), varray(false)); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 		hbc->add_child(del_button); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	inspector = memnew(SectionedInspector); | 
					
						
							|  |  |  | 	inspector->get_inspector()->set_undo_redo(EditorNode::get_singleton()->get_undo_redo()); | 
					
						
							|  |  |  | 	inspector->set_v_size_flags(Control::SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	inspector->register_search_box(search_box); | 
					
						
							|  |  |  | 	inspector->get_inspector()->connect("property_selected", callable_mp(this, &ProjectSettingsEditor::_setting_selected)); | 
					
						
							|  |  |  | 	inspector->get_inspector()->connect("property_edited", callable_mp(this, &ProjectSettingsEditor::_setting_edited)); | 
					
						
							|  |  |  | 	inspector->get_inspector()->connect("restart_requested", callable_mp(this, &ProjectSettingsEditor::_editor_restart_request)); | 
					
						
							|  |  |  | 	general_editor->add_child(inspector); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	restart_container = memnew(PanelContainer); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	general_editor->add_child(restart_container); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	HBoxContainer *restart_hb = memnew(HBoxContainer); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	restart_container->hide(); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	restart_container->add_child(restart_hb); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	restart_icon = memnew(TextureRect); | 
					
						
							| 
									
										
										
										
											2020-03-06 14:00:16 -03:00
										 |  |  | 	restart_icon->set_v_size_flags(Control::SIZE_SHRINK_CENTER); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	restart_hb->add_child(restart_icon); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	restart_label = memnew(Label); | 
					
						
							| 
									
										
										
										
											2020-06-19 00:43:57 +02:00
										 |  |  | 	restart_label->set_text(TTR("Changed settings will be applied to the editor after restarting.")); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	restart_hb->add_child(restart_label); | 
					
						
							|  |  |  | 	restart_hb->add_spacer(); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	Button *restart_button = memnew(Button); | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 	restart_button->connect("pressed", callable_mp(this, &ProjectSettingsEditor::_editor_restart)); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	restart_hb->add_child(restart_button); | 
					
						
							|  |  |  | 	restart_button->set_text(TTR("Save & Restart")); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-19 20:49:04 +02:00
										 |  |  | 	restart_close_button = memnew(Button); | 
					
						
							|  |  |  | 	restart_close_button->set_flat(true); | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 	restart_close_button->connect("pressed", callable_mp(this, &ProjectSettingsEditor::_editor_restart_close)); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	restart_hb->add_child(restart_close_button); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-01 23:04:57 +10:00
										 |  |  | 	action_map = memnew(ActionMapEditor); | 
					
						
							|  |  |  | 	action_map->set_name(TTR("Input Map")); | 
					
						
							|  |  |  | 	action_map->connect("action_added", callable_mp(this, &ProjectSettingsEditor::_action_added)); | 
					
						
							|  |  |  | 	action_map->connect("action_edited", callable_mp(this, &ProjectSettingsEditor::_action_edited)); | 
					
						
							|  |  |  | 	action_map->connect("action_removed", callable_mp(this, &ProjectSettingsEditor::_action_removed)); | 
					
						
							|  |  |  | 	action_map->connect("action_renamed", callable_mp(this, &ProjectSettingsEditor::_action_renamed)); | 
					
						
							|  |  |  | 	action_map->connect("action_reordered", callable_mp(this, &ProjectSettingsEditor::_action_reordered)); | 
					
						
							| 
									
										
										
										
											2021-02-24 16:20:39 -03:00
										 |  |  | 	action_map->set_toggle_editable_label(TTR("Show Built-in Actions")); | 
					
						
							| 
									
										
										
										
											2020-10-01 23:04:57 +10:00
										 |  |  | 	action_map->set_show_uneditable(false); | 
					
						
							|  |  |  | 	tab_container->add_child(action_map); | 
					
						
							| 
									
										
										
										
											2017-10-17 18:27:54 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	localization_editor = memnew(LocalizationEditor); | 
					
						
							|  |  |  | 	localization_editor->set_name(TTR("Localization")); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	localization_editor->connect("localization_changed", callable_mp(this, &ProjectSettingsEditor::queue_save)); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	tab_container->add_child(localization_editor); | 
					
						
							| 
									
										
										
										
											2020-06-19 11:56:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 21:49:44 -02:00
										 |  |  | 	autoload_settings = memnew(EditorAutoloadSettings); | 
					
						
							|  |  |  | 	autoload_settings->set_name(TTR("AutoLoad")); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	autoload_settings->connect("autoload_changed", callable_mp(this, &ProjectSettingsEditor::queue_save)); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	tab_container->add_child(autoload_settings); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-16 23:52:00 -03:00
										 |  |  | 	shaders_global_variables_editor = memnew(ShaderGlobalsEditor); | 
					
						
							|  |  |  | 	shaders_global_variables_editor->set_name(TTR("Shader Globals")); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	shaders_global_variables_editor->connect("globals_changed", callable_mp(this, &ProjectSettingsEditor::queue_save)); | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	tab_container->add_child(shaders_global_variables_editor); | 
					
						
							| 
									
										
										
										
											2020-04-16 23:52:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-07 21:49:44 -02:00
										 |  |  | 	plugin_settings = memnew(EditorPluginSettings); | 
					
						
							|  |  |  | 	plugin_settings->set_name(TTR("Plugins")); | 
					
						
							|  |  |  | 	tab_container->add_child(plugin_settings); | 
					
						
							| 
									
										
										
										
											2016-02-27 23:10:44 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	timer = memnew(Timer); | 
					
						
							| 
									
										
										
										
											2018-07-03 20:33:06 +03:00
										 |  |  | 	timer->set_wait_time(1.5); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	timer->connect("timeout", callable_mp(ps, &ProjectSettings::save)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	timer->set_one_shot(true); | 
					
						
							|  |  |  | 	add_child(timer); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-14 18:04:34 +10:00
										 |  |  | 	del_confirmation = memnew(ConfirmationDialog); | 
					
						
							|  |  |  | 	del_confirmation->connect("confirmed", callable_mp(this, &ProjectSettingsEditor::_delete_setting), varray(true)); | 
					
						
							|  |  |  | 	add_child(del_confirmation); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-14 18:37:30 +00:00
										 |  |  | 	get_ok_button()->set_text(TTR("Close")); | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	set_hide_on_ok(true); | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool use_advanced = EditorSettings::get_singleton()->get_project_metadata("project_settings", "advanced_mode", false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (use_advanced) { | 
					
						
							|  |  |  | 		advanced->set_pressed(true); | 
					
						
							|  |  |  | 		advanced_bar->show(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	inspector->set_restrict_to_basic_settings(!use_advanced); | 
					
						
							| 
									
										
										
										
											2021-02-23 14:17:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	import_defaults_editor = memnew(ImportDefaultsEditor); | 
					
						
							|  |  |  | 	import_defaults_editor->set_name(TTR("Import Defaults")); | 
					
						
							|  |  |  | 	tab_container->add_child(import_defaults_editor); | 
					
						
							|  |  |  | 	import_defaults_editor->connect("project_settings_changed", callable_mp(this, &ProjectSettingsEditor::queue_save)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |