| 
									
										
										
										
											2023-01-10 15:26:54 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  editor_path.cpp                                                       */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* 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 "editor_path.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | #include "editor_node.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "editor_scale.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void EditorPath::_add_children_to_popup(Object *p_obj, int p_depth) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (p_depth > 8) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	List<PropertyInfo> pinfo; | 
					
						
							|  |  |  | 	p_obj->get_property_list(&pinfo); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (List<PropertyInfo>::Element *E = pinfo.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (!(E->get().usage & PROPERTY_USAGE_EDITOR)) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (E->get().hint != PROPERTY_HINT_RESOURCE_TYPE) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Variant value = p_obj->get(E->get().name); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (value.get_type() != Variant::OBJECT) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		Object *obj = value; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (!obj) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-02 16:40:51 -05:00
										 |  |  | 		Ref<Texture> icon = EditorNode::get_singleton()->get_object_icon(obj); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | 		String proper_name = ""; | 
					
						
							|  |  |  | 		Vector<String> name_parts = E->get().name.split("/"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i < name_parts.size(); i++) { | 
					
						
							|  |  |  | 			if (i > 0) { | 
					
						
							|  |  |  | 				proper_name += " > "; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			proper_name += name_parts[i].capitalize(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int index = sub_objects_menu->get_item_count(); | 
					
						
							|  |  |  | 		sub_objects_menu->add_icon_item(icon, proper_name, objects.size()); | 
					
						
							|  |  |  | 		sub_objects_menu->set_item_h_offset(index, p_depth * 10 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-08-07 17:17:31 +07:00
										 |  |  | 		objects.push_back(obj->get_instance_id()); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		_add_children_to_popup(obj, p_depth + 1); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | void EditorPath::_show_popup() { | 
					
						
							|  |  |  | 	sub_objects_menu->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Size2 size = get_size(); | 
					
						
							|  |  |  | 	Point2 gp = get_global_position(); | 
					
						
							|  |  |  | 	gp.y += size.y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_objects_menu->set_position(gp); | 
					
						
							|  |  |  | 	sub_objects_menu->set_size(Size2(size.width, 1)); | 
					
						
							|  |  |  | 	sub_objects_menu->set_parent_rect(Rect2(Point2(gp - sub_objects_menu->get_position()), size)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_objects_menu->popup(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | void EditorPath::_about_to_show() { | 
					
						
							|  |  |  | 	Object *obj = ObjectDB::get_instance(history->get_path_object(history->get_path_size() - 1)); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (!obj) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	objects.clear(); | 
					
						
							| 
									
										
										
										
											2019-09-04 19:38:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	_add_children_to_popup(obj); | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | 	if (sub_objects_menu->get_item_count() == 0) { | 
					
						
							|  |  |  | 		sub_objects_menu->add_item(TTR("No sub-resources found.")); | 
					
						
							|  |  |  | 		sub_objects_menu->set_item_disabled(0, true); | 
					
						
							| 
									
										
										
										
											2019-09-04 19:38:23 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void EditorPath::update_path() { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	for (int i = 0; i < history->get_path_size(); i++) { | 
					
						
							|  |  |  | 		Object *obj = ObjectDB::get_instance(history->get_path_object(i)); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (!obj) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Texture> icon = EditorNode::get_singleton()->get_object_icon(obj); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (icon.is_valid()) { | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | 			current_object_icon->set_texture(icon); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (i == history->get_path_size() - 1) { | 
					
						
							|  |  |  | 			String name; | 
					
						
							|  |  |  | 			if (Object::cast_to<Resource>(obj)) { | 
					
						
							|  |  |  | 				Resource *r = Object::cast_to<Resource>(obj); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (r->get_path().is_resource_file()) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_path().get_file(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_name(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (name == "") { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_class(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} else if (obj->is_class("ScriptEditorDebuggerInspectedObject")) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = obj->call("get_title"); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} else if (Object::cast_to<Node>(obj)) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = Object::cast_to<Node>(obj)->get_name(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} else if (Object::cast_to<Resource>(obj) && Object::cast_to<Resource>(obj)->get_name() != "") { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = Object::cast_to<Resource>(obj)->get_name(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = obj->get_class(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | 			current_object_label->set_text(" " + name); // An extra space so the text is not too close of the icon.
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 			set_tooltip(obj->get_class()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | void EditorPath::clear_path() { | 
					
						
							|  |  |  | 	set_disabled(true); | 
					
						
							|  |  |  | 	set_tooltip(""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	current_object_label->set_text(""); | 
					
						
							|  |  |  | 	current_object_icon->set_texture(nullptr); | 
					
						
							|  |  |  | 	sub_objects_icon->set_visible(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void EditorPath::enable_path() { | 
					
						
							|  |  |  | 	set_disabled(false); | 
					
						
							|  |  |  | 	sub_objects_icon->set_visible(true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | void EditorPath::_id_pressed(int p_idx) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ERR_FAIL_INDEX(p_idx, objects.size()); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Object *obj = ObjectDB::get_instance(objects[p_idx]); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (!obj) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	EditorNode::get_singleton()->push_item(obj); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-15 09:07:44 +02:00
										 |  |  | void EditorPath::_notification(int p_what) { | 
					
						
							|  |  |  | 	switch (p_what) { | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | 		case NOTIFICATION_ENTER_TREE: | 
					
						
							| 
									
										
										
										
											2019-10-15 09:07:44 +02:00
										 |  |  | 		case NOTIFICATION_THEME_CHANGED: { | 
					
						
							|  |  |  | 			update_path(); | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// Button overrides Control's method, so we have to improvise.
 | 
					
						
							|  |  |  | 			sub_objects_icon->set_texture(sub_objects_icon->get_icon("select_arrow", "Tree")); | 
					
						
							|  |  |  | 			current_object_label->add_font_override("font", get_font("main", "EditorFonts")); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case NOTIFICATION_READY: { | 
					
						
							|  |  |  | 			connect("pressed", this, "_show_popup"); | 
					
						
							| 
									
										
										
										
											2019-10-15 09:07:44 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | void EditorPath::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | 	ClassDB::bind_method("_show_popup", &EditorPath::_show_popup); | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	ClassDB::bind_method("_about_to_show", &EditorPath::_about_to_show); | 
					
						
							|  |  |  | 	ClassDB::bind_method("_id_pressed", &EditorPath::_id_pressed); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | EditorPath::EditorPath(EditorHistory *p_history) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	history = p_history; | 
					
						
							| 
									
										
										
										
											2021-07-16 23:27:00 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	MarginContainer *main_mc = memnew(MarginContainer); | 
					
						
							|  |  |  | 	main_mc->set_anchors_and_margins_preset(PRESET_WIDE); | 
					
						
							|  |  |  | 	main_mc->add_constant_override("margin_left", 4 * EDSCALE); | 
					
						
							|  |  |  | 	main_mc->add_constant_override("margin_right", 6 * EDSCALE); | 
					
						
							|  |  |  | 	main_mc->set_mouse_filter(MOUSE_FILTER_PASS); | 
					
						
							|  |  |  | 	add_child(main_mc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HBoxContainer *main_hb = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	main_mc->add_child(main_hb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	current_object_icon = memnew(TextureRect); | 
					
						
							|  |  |  | 	current_object_icon->set_stretch_mode(TextureRect::STRETCH_KEEP_CENTERED); | 
					
						
							|  |  |  | 	main_hb->add_child(current_object_icon); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	current_object_label = memnew(Label); | 
					
						
							|  |  |  | 	current_object_label->set_clip_text(true); | 
					
						
							|  |  |  | 	current_object_label->set_align(Label::ALIGN_LEFT); | 
					
						
							|  |  |  | 	current_object_label->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	main_hb->add_child(current_object_label); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_objects_icon = memnew(TextureRect); | 
					
						
							|  |  |  | 	sub_objects_icon->set_visible(false); | 
					
						
							|  |  |  | 	sub_objects_icon->set_stretch_mode(TextureRect::STRETCH_KEEP_CENTERED); | 
					
						
							|  |  |  | 	main_hb->add_child(sub_objects_icon); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_objects_menu = memnew(PopupMenu); | 
					
						
							|  |  |  | 	add_child(sub_objects_menu); | 
					
						
							|  |  |  | 	sub_objects_menu->connect("about_to_show", this, "_about_to_show"); | 
					
						
							|  |  |  | 	sub_objects_menu->connect("id_pressed", this, "_id_pressed"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	set_tooltip(TTR("Open a list of sub-resources.")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |