| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  editor_path.cpp                                                      */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (p_depth > 8) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +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()) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!(E->get().usage & PROPERTY_USAGE_EDITOR)) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (E->get().hint != PROPERTY_HINT_RESOURCE_TYPE) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Variant value = p_obj->get(E->get().name); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (value.get_type() != Variant::OBJECT) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		Object *obj = value; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!obj) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 		Ref<Texture2D> icon = EditorNode::get_singleton()->get_object_icon(obj); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 		int index = get_popup()->get_item_count(); | 
					
						
							|  |  |  | 		get_popup()->add_icon_item(icon, E->get().name.capitalize(), objects.size()); | 
					
						
							|  |  |  | 		get_popup()->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
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!obj) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	objects.clear(); | 
					
						
							|  |  |  | 	get_popup()->clear(); | 
					
						
							|  |  |  | 	get_popup()->set_size(Size2(get_size().width, 1)); | 
					
						
							| 
									
										
										
										
											2019-09-04 19:38:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	_add_children_to_popup(obj); | 
					
						
							| 
									
										
										
										
											2019-09-04 19:38:23 -03:00
										 |  |  | 	if (get_popup()->get_item_count() == 0) { | 
					
						
							|  |  |  | 		get_popup()->add_item(TTR("No sub-resources found.")); | 
					
						
							|  |  |  | 		get_popup()->set_item_disabled(0, true); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											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)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!obj) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 		Ref<Texture2D> icon = EditorNode::get_singleton()->get_object_icon(obj); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (icon.is_valid()) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 			set_icon(icon); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +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); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				if (r->get_path().is_resource_file()) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_path().get_file(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_name(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				if (name == "") { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_class(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} else if (obj->is_class("EditorDebuggerRemoteObject")) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = obj->call("get_title"); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +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(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +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(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = obj->get_class(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			set_text(" " + name); // An extra space so the text is not too close of the icon.
 | 
					
						
							|  |  |  | 			set_tooltip(obj->get_class()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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]); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!obj) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +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) { | 
					
						
							|  |  |  | 		case NOTIFICATION_THEME_CHANGED: { | 
					
						
							|  |  |  | 			update_path(); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | void EditorPath::_bind_methods() { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | EditorPath::EditorPath(EditorHistory *p_history) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	history = p_history; | 
					
						
							| 
									
										
										
										
											2020-01-20 14:25:27 -03:00
										 |  |  | 	set_clip_text(true); | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	set_text_align(ALIGN_LEFT); | 
					
						
							| 
									
										
										
										
											2020-03-12 09:37:40 -03:00
										 |  |  | 	get_popup()->connect("about_to_popup", callable_mp(this, &EditorPath::_about_to_show)); | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 	get_popup()->connect("id_pressed", callable_mp(this, &EditorPath::_id_pressed)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |