| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  dependency_editor.h                                                  */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02: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).   */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | #ifndef DEPENDENCY_EDITOR_H
 | 
					
						
							|  |  |  | #define DEPENDENCY_EDITOR_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "editor_file_dialog.h"
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | #include "scene/gui/dialogs.h"
 | 
					
						
							|  |  |  | #include "scene/gui/tab_container.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/gui/tree.h"
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-02 01:37:32 +01:00
										 |  |  | class EditorFileDialog; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | class EditorFileSystemDirectory; | 
					
						
							| 
									
										
										
										
											2017-11-15 12:05:49 +08:00
										 |  |  | class EditorNode; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | class DependencyEditor : public AcceptDialog { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(DependencyEditor, AcceptDialog); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Tree *tree; | 
					
						
							|  |  |  | 	Button *fixdeps; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EditorFileDialog *search; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String replacing; | 
					
						
							|  |  |  | 	String editing; | 
					
						
							|  |  |  | 	List<String> missing; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 14:20:36 +02:00
										 |  |  | 	void _fix_and_find(EditorFileSystemDirectory *efsd, Map<String, Map<String, String>> &candidates); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _searched(const String &p_path); | 
					
						
							|  |  |  | 	void _load_pressed(Object *p_item, int p_cell, int p_button); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	void _fix_all(); | 
					
						
							|  |  |  | 	void _update_list(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _update_file(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							|  |  |  | 	void edit(const String &p_path); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	DependencyEditor(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DependencyEditorOwners : public AcceptDialog { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(DependencyEditorOwners, AcceptDialog); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ItemList *owners; | 
					
						
							| 
									
										
										
										
											2017-11-15 12:05:49 +08:00
										 |  |  | 	PopupMenu *file_options; | 
					
						
							|  |  |  | 	EditorNode *editor; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	String editing; | 
					
						
							| 
									
										
										
										
											2017-11-15 12:05:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	void _fill_owners(EditorFileSystemDirectory *efsd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-15 12:05:49 +08:00
										 |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 	void _list_rmb_select(int p_item, const Vector2 &p_pos); | 
					
						
							|  |  |  | 	void _select_file(int p_idx); | 
					
						
							|  |  |  | 	void _file_option(int p_option); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	enum FileMenu { | 
					
						
							|  |  |  | 		FILE_OPEN | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void show(const String &p_path); | 
					
						
							| 
									
										
										
										
											2017-11-15 12:05:49 +08:00
										 |  |  | 	DependencyEditorOwners(EditorNode *p_editor); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DependencyRemoveDialog : public ConfirmationDialog { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(DependencyRemoveDialog, ConfirmationDialog); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Label *text; | 
					
						
							|  |  |  | 	Tree *owners; | 
					
						
							| 
									
										
										
										
											2017-10-01 23:24:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Map<String, String> all_remove_files; | 
					
						
							| 
									
										
										
										
											2018-02-25 23:59:49 -08:00
										 |  |  | 	Vector<String> dirs_to_delete; | 
					
						
							|  |  |  | 	Vector<String> files_to_delete; | 
					
						
							| 
									
										
										
										
											2017-10-01 23:24:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct RemovedDependency { | 
					
						
							|  |  |  | 		String file; | 
					
						
							|  |  |  | 		String file_type; | 
					
						
							|  |  |  | 		String dependency; | 
					
						
							|  |  |  | 		String dependency_folder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bool operator<(const RemovedDependency &p_other) const { | 
					
						
							|  |  |  | 			if (dependency_folder.empty() != p_other.dependency_folder.empty()) { | 
					
						
							|  |  |  | 				return p_other.dependency_folder.empty(); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				return dependency < p_other.dependency; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _find_files_in_removed_folder(EditorFileSystemDirectory *efsd, const String &p_folder); | 
					
						
							|  |  |  | 	void _find_all_removed_dependencies(EditorFileSystemDirectory *efsd, Vector<RemovedDependency> &p_removed); | 
					
						
							|  |  |  | 	void _build_removed_dependency_tree(const Vector<RemovedDependency> &p_removed); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void ok_pressed(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 20:17:33 +01:00
										 |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-10-01 23:24:49 +01:00
										 |  |  | 	void show(const Vector<String> &p_folders, const Vector<String> &p_files); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	DependencyRemoveDialog(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DependencyErrorDialog : public ConfirmationDialog { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(DependencyErrorDialog, ConfirmationDialog); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-02 04:44:40 +01:00
										 |  |  | public: | 
					
						
							|  |  |  | 	enum Mode { | 
					
						
							|  |  |  | 		MODE_SCENE, | 
					
						
							|  |  |  | 		MODE_RESOURCE, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	String for_file; | 
					
						
							| 
									
										
										
										
											2018-11-02 04:44:40 +01:00
										 |  |  | 	Mode mode; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	Button *fdep; | 
					
						
							|  |  |  | 	Label *text; | 
					
						
							|  |  |  | 	Tree *files; | 
					
						
							|  |  |  | 	void ok_pressed(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void custom_action(const String &); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2018-11-02 04:44:40 +01:00
										 |  |  | 	void show(Mode p_mode, const String &p_for_file, const Vector<String> &report); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	DependencyErrorDialog(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 01:08:31 -03:00
										 |  |  | class OrphanResourcesDialog : public ConfirmationDialog { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(OrphanResourcesDialog, ConfirmationDialog); | 
					
						
							| 
									
										
										
										
											2015-11-29 01:08:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	DependencyEditor *dep_edit; | 
					
						
							|  |  |  | 	Tree *files; | 
					
						
							|  |  |  | 	ConfirmationDialog *delete_confirm; | 
					
						
							|  |  |  | 	void ok_pressed(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bool _fill_owners(EditorFileSystemDirectory *efsd, HashMap<String, int> &refs, TreeItem *p_parent); | 
					
						
							| 
									
										
										
										
											2015-11-29 01:08:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	List<String> paths; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _find_to_delete(TreeItem *p_item, List<String> &paths); | 
					
						
							| 
									
										
										
										
											2015-11-29 01:08:31 -03:00
										 |  |  | 	void _delete_confirm(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _button_pressed(Object *p_item, int p_column, int p_id); | 
					
						
							| 
									
										
										
										
											2015-11-29 01:08:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void refresh(); | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2015-11-29 01:08:31 -03:00
										 |  |  | 	void show(); | 
					
						
							|  |  |  | 	OrphanResourcesDialog(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | #endif // DEPENDENCY_EDITOR_H
 |