| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | /*  gdnative_library_singleton_editor.cpp                                */ | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-01 14:40:08 +01:00
										 |  |  | /* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-15 13:29:29 -03:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | #include "gdnative_library_singleton_editor.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | #include "gdnative.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | void GDNativeLibrarySingletonEditor::_find_gdnative_singletons(EditorFileSystemDirectory *p_dir, const Set<String> &enabled_list) { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// check children
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_dir->get_file_count(); i++) { | 
					
						
							|  |  |  | 		String file_type = p_dir->get_file_type(i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (file_type != "GDNativeLibrary") { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<GDNativeLibrary> lib = ResourceLoader::load(p_dir->get_file_path(i)); | 
					
						
							| 
									
										
										
										
											2017-11-02 17:14:37 +01:00
										 |  |  | 		if (lib.is_valid() && lib->is_singleton()) { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 			String path = p_dir->get_file_path(i); | 
					
						
							|  |  |  | 			TreeItem *ti = libraries->create_item(libraries->get_root()); | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 			ti->set_text(0, path.get_file()); | 
					
						
							|  |  |  | 			ti->set_tooltip(0, path); | 
					
						
							|  |  |  | 			ti->set_metadata(0, path); | 
					
						
							|  |  |  | 			ti->set_cell_mode(1, TreeItem::CELL_MODE_RANGE); | 
					
						
							|  |  |  | 			ti->set_text(1, "Disabled,Enabled"); | 
					
						
							|  |  |  | 			bool enabled = enabled_list.has(path) ? true : false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ti->set_range(1, enabled ? 1 : 0); | 
					
						
							|  |  |  | 			ti->set_custom_color(1, enabled ? Color(0, 1, 0) : Color(1, 0, 0)); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// check subdirectories
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_dir->get_subdir_count(); i++) { | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 		_find_gdnative_singletons(p_dir->get_subdir(i), enabled_list); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | void GDNativeLibrarySingletonEditor::_update_libraries() { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 	updating = true; | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	libraries->clear(); | 
					
						
							|  |  |  | 	libraries->create_item(); //rppt
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector<String> enabled_paths; | 
					
						
							| 
									
										
										
										
											2017-10-05 15:34:34 -03:00
										 |  |  | 	if (ProjectSettings::get_singleton()->has_setting("gdnative/singletons")) { | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 		enabled_paths = ProjectSettings::get_singleton()->get("gdnative/singletons"); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	Set<String> enabled_list; | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 	for (int i = 0; i < enabled_paths.size(); i++) { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 		enabled_list.insert(enabled_paths[i]); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EditorFileSystemDirectory *fs = EditorFileSystem::get_singleton()->get_filesystem(); | 
					
						
							|  |  |  | 	if (fs) { | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 		_find_gdnative_singletons(fs, enabled_list); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 	updating = false; | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | void GDNativeLibrarySingletonEditor::_item_edited() { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	if (updating) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *item = libraries->get_edited(); | 
					
						
							|  |  |  | 	if (!item) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool enabled = item->get_range(1); | 
					
						
							|  |  |  | 	String path = item->get_metadata(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector<String> enabled_paths; | 
					
						
							| 
									
										
										
										
											2017-10-05 15:34:34 -03:00
										 |  |  | 	if (ProjectSettings::get_singleton()->has_setting("gdnative/singletons")) { | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 		enabled_paths = ProjectSettings::get_singleton()->get("gdnative/singletons"); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (enabled) { | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 		if (enabled_paths.find(path) == -1) { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 			enabled_paths.push_back(path); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		enabled_paths.erase(path); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (enabled_paths.size()) { | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 		ProjectSettings::get_singleton()->set("gdnative/singletons", enabled_paths); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 		ProjectSettings::get_singleton()->set("gdnative/singletons", Variant()); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | void GDNativeLibrarySingletonEditor::_notification(int p_what) { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 	if (p_what == NOTIFICATION_VISIBILITY_CHANGED) { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 		if (is_visible_in_tree()) { | 
					
						
							|  |  |  | 			_update_libraries(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | void GDNativeLibrarySingletonEditor::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("_item_edited"), &GDNativeLibrarySingletonEditor::_item_edited); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | GDNativeLibrarySingletonEditor::GDNativeLibrarySingletonEditor() { | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 	libraries = memnew(Tree); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	libraries->set_columns(2); | 
					
						
							|  |  |  | 	libraries->set_column_titles_visible(true); | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 	libraries->set_column_title(0, TTR("Library")); | 
					
						
							|  |  |  | 	libraries->set_column_title(1, TTR("Status")); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	libraries->set_hide_root(true); | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 	add_margin_child(TTR("Libraries: "), libraries, true); | 
					
						
							|  |  |  | 	updating = false; | 
					
						
							|  |  |  | 	libraries->connect("item_edited", this, "_item_edited"); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // TOOLS_ENABLED
 |