| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | /*  mesh_library_editor_plugin.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
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-03 21:27:34 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | #include "mesh_library_editor_plugin.h"
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-12 02:46:22 +01:00
										 |  |  | #include "editor/editor_file_dialog.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 14:21:25 +01:00
										 |  |  | #include "editor/editor_node.h"
 | 
					
						
							|  |  |  | #include "editor/editor_settings.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "main/main.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-27 08:44:44 +01:00
										 |  |  | #include "node_3d_editor_plugin.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | #include "scene/3d/mesh_instance_3d.h"
 | 
					
						
							|  |  |  | #include "scene/3d/navigation_region_3d.h"
 | 
					
						
							|  |  |  | #include "scene/3d/physics_body_3d.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | #include "scene/main/window.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "scene/resources/packed_scene.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | void MeshLibraryEditor::edit(const Ref<MeshLibrary> &p_mesh_library) { | 
					
						
							|  |  |  | 	mesh_library = p_mesh_library; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (mesh_library.is_valid()) { | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 		menu->get_popup()->set_item_disabled(menu->get_popup()->get_item_index(MENU_OPTION_UPDATE_FROM_SCENE), !mesh_library->has_meta("_editor_source_scene")); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | void MeshLibraryEditor::_menu_remove_confirm() { | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 	switch (option) { | 
					
						
							|  |  |  | 		case MENU_OPTION_REMOVE_ITEM: { | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 			mesh_library->remove_item(to_erase); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2019-04-09 17:08:36 +02:00
										 |  |  | 		default: { | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | void MeshLibraryEditor::_menu_update_confirm(bool p_apply_xforms) { | 
					
						
							|  |  |  | 	cd_update->hide(); | 
					
						
							|  |  |  | 	apply_xforms = p_apply_xforms; | 
					
						
							|  |  |  | 	String existing = mesh_library->get_meta("_editor_source_scene"); | 
					
						
							| 
									
										
										
										
											2021-12-09 03:42:46 -06:00
										 |  |  | 	ERR_FAIL_COND(existing.is_empty()); | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 	_import_scene_cbk(existing); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MeshLibraryEditor::_import_scene(Node *p_scene, Ref<MeshLibrary> p_library, bool p_merge, bool p_apply_xforms) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!p_merge) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		p_library->clear(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	HashMap<int, MeshInstance3D *> mesh_instances; | 
					
						
							| 
									
										
										
										
											2019-01-31 18:04:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 	for (int i = 0; i < p_scene->get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Node *child = p_scene->get_child(i); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 		if (!Object::cast_to<MeshInstance3D>(child)) { | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 			if (child->get_child_count() > 0) { | 
					
						
							|  |  |  | 				child = child->get_child(0); | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 				if (!Object::cast_to<MeshInstance3D>(child)) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 					continue; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 		MeshInstance3D *mi = Object::cast_to<MeshInstance3D>(child); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		Ref<Mesh> mesh = mi->get_mesh(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (mesh.is_null()) { | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-31 18:04:36 +01:00
										 |  |  | 		mesh = mesh->duplicate(); | 
					
						
							|  |  |  | 		for (int j = 0; j < mesh->get_surface_count(); ++j) { | 
					
						
							| 
									
										
										
										
											2021-04-13 20:45:16 -07:00
										 |  |  | 			Ref<Material> mat = mi->get_surface_override_material(j); | 
					
						
							| 
									
										
										
										
											2019-01-31 18:04:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (mat.is_valid()) { | 
					
						
							|  |  |  | 				mesh->surface_set_material(j, mat); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-03 14:53:17 -03:00
										 |  |  | 		int id = p_library->find_item_by_name(mi->get_name()); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		if (id < 0) { | 
					
						
							|  |  |  | 			id = p_library->get_last_unused_item_id(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			p_library->create_item(id); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 			p_library->set_item_name(id, mi->get_name()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		p_library->set_item_mesh(id, mesh); | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (p_apply_xforms) { | 
					
						
							|  |  |  | 			p_library->set_item_mesh_transform(id, mi->get_transform()); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			p_library->set_item_mesh_transform(id, Transform3D()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-31 18:04:36 +01:00
										 |  |  | 		mesh_instances[id] = mi; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-27 16:00:59 -03:00
										 |  |  | 		Vector<MeshLibrary::ShapeData> collisions; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		for (int j = 0; j < mi->get_child_count(); j++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			Node *child2 = mi->get_child(j); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (!Object::cast_to<StaticBody3D>(child2)) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 			StaticBody3D *sb = Object::cast_to<StaticBody3D>(child2); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 			List<uint32_t> shapes; | 
					
						
							|  |  |  | 			sb->get_shape_owners(&shapes); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 			for (uint32_t &E : shapes) { | 
					
						
							|  |  |  | 				if (sb->is_shape_owner_disabled(E)) { | 
					
						
							| 
									
										
										
										
											2017-09-04 07:48:14 -03:00
										 |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-18 16:30:41 +01:00
										 |  |  | 				Transform3D shape_transform; | 
					
						
							|  |  |  | 				if (p_apply_xforms) { | 
					
						
							|  |  |  | 					shape_transform = mi->get_transform(); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				shape_transform *= sb->get_transform() * sb->shape_owner_get_transform(E); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 				for (int k = 0; k < sb->shape_owner_get_shape_count(E); k++) { | 
					
						
							|  |  |  | 					Ref<Shape3D> collision = sb->shape_owner_get_shape(E, k); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 					if (!collision.is_valid()) { | 
					
						
							| 
									
										
										
										
											2017-08-27 16:00:59 -03:00
										 |  |  | 						continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-08-27 16:00:59 -03:00
										 |  |  | 					MeshLibrary::ShapeData shape_data; | 
					
						
							|  |  |  | 					shape_data.shape = collision; | 
					
						
							| 
									
										
										
										
											2022-01-18 16:30:41 +01:00
										 |  |  | 					shape_data.local_transform = shape_transform; | 
					
						
							| 
									
										
										
										
											2017-08-27 16:00:59 -03:00
										 |  |  | 					collisions.push_back(shape_data); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-27 16:00:59 -03:00
										 |  |  | 		p_library->set_item_shapes(id, collisions); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-20 21:19:05 +03:00
										 |  |  | 		Ref<NavigationMesh> navmesh; | 
					
						
							| 
									
										
										
										
											2020-10-17 01:08:21 -04:00
										 |  |  | 		Transform3D navmesh_transform; | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		for (int j = 0; j < mi->get_child_count(); j++) { | 
					
						
							|  |  |  | 			Node *child2 = mi->get_child(j); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (!Object::cast_to<NavigationRegion3D>(child2)) { | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 			NavigationRegion3D *sb = Object::cast_to<NavigationRegion3D>(child2); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 			navmesh = sb->get_navigation_mesh(); | 
					
						
							| 
									
										
										
										
											2019-02-26 15:38:23 +02:00
										 |  |  | 			navmesh_transform = sb->get_transform(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (!navmesh.is_null()) { | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-04-20 21:19:05 +03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		if (!navmesh.is_null()) { | 
					
						
							| 
									
										
										
										
											2016-04-20 21:19:05 +03:00
										 |  |  | 			p_library->set_item_navmesh(id, navmesh); | 
					
						
							| 
									
										
										
										
											2019-02-26 15:38:23 +02:00
										 |  |  | 			p_library->set_item_navmesh_transform(id, navmesh_transform); | 
					
						
							| 
									
										
										
										
											2016-04-20 21:19:05 +03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//generate previews!
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 11:00:19 +02:00
										 |  |  | 	if (true) { | 
					
						
							| 
									
										
										
										
											2020-03-17 07:33:00 +01:00
										 |  |  | 		Vector<Ref<Mesh>> meshes; | 
					
						
							| 
									
										
										
										
											2020-10-17 01:08:21 -04:00
										 |  |  | 		Vector<Transform3D> transforms; | 
					
						
							| 
									
										
										
										
											2017-08-28 00:03:34 -03:00
										 |  |  | 		Vector<int> ids = p_library->get_item_list(); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		for (int i = 0; i < ids.size(); i++) { | 
					
						
							| 
									
										
										
										
											2019-01-31 18:04:36 +01:00
										 |  |  | 			if (mesh_instances.find(ids[i])) { | 
					
						
							|  |  |  | 				meshes.push_back(p_library->get_item_mesh(ids[i])); | 
					
						
							|  |  |  | 				transforms.push_back(mesh_instances[ids[i]]->get_transform()); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-18 16:43:37 +02:00
										 |  |  | 		Vector<Ref<Texture2D>> textures = EditorInterface::get_singleton()->make_mesh_previews(meshes, &transforms, EDITOR_GET("editors/grid_map/preview_size")); | 
					
						
							| 
									
										
										
										
											2019-01-31 18:04:36 +01:00
										 |  |  | 		int j = 0; | 
					
						
							| 
									
										
										
										
											2017-08-28 00:03:34 -03:00
										 |  |  | 		for (int i = 0; i < ids.size(); i++) { | 
					
						
							| 
									
										
										
										
											2019-01-31 18:04:36 +01:00
										 |  |  | 			if (mesh_instances.find(ids[i])) { | 
					
						
							|  |  |  | 				p_library->set_item_preview(ids[i], textures[j]); | 
					
						
							|  |  |  | 				j++; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-08-28 00:03:34 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | void MeshLibraryEditor::_import_scene_cbk(const String &p_str) { | 
					
						
							|  |  |  | 	Ref<PackedScene> ps = ResourceLoader::load(p_str, "PackedScene"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ERR_FAIL_COND(ps.is_null()); | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 	Node *scene = ps->instantiate(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(!scene, "Cannot create an instance from PackedScene '" + p_str + "'."); | 
					
						
							| 
									
										
										
										
											2019-07-23 09:14:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 	_import_scene(scene, mesh_library, option == MENU_OPTION_UPDATE_FROM_SCENE, apply_xforms); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memdelete(scene); | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 	mesh_library->set_meta("_editor_source_scene", p_str); | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 	menu->get_popup()->set_item_disabled(menu->get_popup()->get_item_index(MENU_OPTION_UPDATE_FROM_SCENE), false); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | Error MeshLibraryEditor::update_library_file(Node *p_base_scene, Ref<MeshLibrary> ml, bool p_merge, bool p_apply_xforms) { | 
					
						
							|  |  |  | 	_import_scene(p_base_scene, ml, p_merge, p_apply_xforms); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MeshLibraryEditor::_menu_cbk(int p_option) { | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 	option = p_option; | 
					
						
							|  |  |  | 	switch (p_option) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case MENU_OPTION_ADD_ITEM: { | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 			mesh_library->create_item(mesh_library->get_last_unused_item_id()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case MENU_OPTION_REMOVE_ITEM: { | 
					
						
							| 
									
										
										
										
											2021-11-17 21:08:55 +01:00
										 |  |  | 			String p = InspectorDock::get_inspector_singleton()->get_selected_path(); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 			if (p.begins_with("/MeshLibrary/item") && p.get_slice_count("/") >= 3) { | 
					
						
							|  |  |  | 				to_erase = p.get_slice("/", 3).to_int(); | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 				cd_remove->set_text(vformat(TTR("Remove item %d?"), to_erase)); | 
					
						
							|  |  |  | 				cd_remove->popup_centered(Size2(300, 60)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case MENU_OPTION_IMPORT_FROM_SCENE: { | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 			apply_xforms = false; | 
					
						
							|  |  |  | 			file->popup_file_dialog(); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case MENU_OPTION_IMPORT_FROM_SCENE_APPLY_XFORMS: { | 
					
						
							|  |  |  | 			apply_xforms = true; | 
					
						
							| 
									
										
										
										
											2020-07-11 18:45:19 +02:00
										 |  |  | 			file->popup_file_dialog(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		case MENU_OPTION_UPDATE_FROM_SCENE: { | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 			cd_update->set_text(vformat(TTR("Update from existing scene?:\n%s"), String(mesh_library->get_meta("_editor_source_scene")))); | 
					
						
							|  |  |  | 			cd_update->popup_centered(Size2(500, 60)); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MeshLibraryEditor::_bind_methods() { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-27 10:36:51 +01:00
										 |  |  | MeshLibraryEditor::MeshLibraryEditor() { | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 	file = memnew(EditorFileDialog); | 
					
						
							| 
									
										
										
										
											2020-03-06 14:00:16 -03:00
										 |  |  | 	file->set_file_mode(EditorFileDialog::FILE_MODE_OPEN_FILE); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	//not for now?
 | 
					
						
							|  |  |  | 	List<String> extensions; | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 	ResourceLoader::get_recognized_extensions_for_type("PackedScene", &extensions); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	file->clear_filters(); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	file->set_title(TTR("Import Scene")); | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | 	for (int i = 0; i < extensions.size(); i++) { | 
					
						
							| 
									
										
										
										
											2022-07-04 16:26:26 -05:00
										 |  |  | 		file->add_filter("*." + extensions[i], extensions[i].to_upper()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	add_child(file); | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 	file->connect("file_selected", callable_mp(this, &MeshLibraryEditor::_import_scene_cbk)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | 	menu = memnew(MenuButton); | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	Node3DEditor::get_singleton()->add_control_to_menu_panel(menu); | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | 	menu->set_position(Point2(1, 1)); | 
					
						
							| 
									
										
										
										
											2022-03-24 15:28:19 -05:00
										 |  |  | 	menu->set_text(TTR("MeshLibrary")); | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 	menu->set_icon(EditorNode::get_singleton()->get_gui_base()->get_theme_icon(SNAME("MeshLibrary"), SNAME("EditorIcons"))); | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | 	menu->get_popup()->add_item(TTR("Add Item"), MENU_OPTION_ADD_ITEM); | 
					
						
							|  |  |  | 	menu->get_popup()->add_item(TTR("Remove Selected Item"), MENU_OPTION_REMOVE_ITEM); | 
					
						
							|  |  |  | 	menu->get_popup()->add_separator(); | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 	menu->get_popup()->add_item(TTR("Import from Scene (Ignore Transforms)"), MENU_OPTION_IMPORT_FROM_SCENE); | 
					
						
							|  |  |  | 	menu->get_popup()->add_item(TTR("Import from Scene (Apply Transforms)"), MENU_OPTION_IMPORT_FROM_SCENE_APPLY_XFORMS); | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | 	menu->get_popup()->add_item(TTR("Update from Scene"), MENU_OPTION_UPDATE_FROM_SCENE); | 
					
						
							|  |  |  | 	menu->get_popup()->set_item_disabled(menu->get_popup()->get_item_index(MENU_OPTION_UPDATE_FROM_SCENE), true); | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 	menu->get_popup()->connect("id_pressed", callable_mp(this, &MeshLibraryEditor::_menu_cbk)); | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | 	menu->hide(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 01:17:33 +02:00
										 |  |  | 	cd_remove = memnew(ConfirmationDialog); | 
					
						
							|  |  |  | 	add_child(cd_remove); | 
					
						
							|  |  |  | 	cd_remove->get_ok_button()->connect("pressed", callable_mp(this, &MeshLibraryEditor::_menu_remove_confirm)); | 
					
						
							|  |  |  | 	cd_update = memnew(ConfirmationDialog); | 
					
						
							|  |  |  | 	add_child(cd_update); | 
					
						
							| 
									
										
										
										
											2022-07-07 19:31:19 -05:00
										 |  |  | 	cd_update->set_ok_button_text(TTR("Apply without Transforms")); | 
					
						
							| 
									
										
										
										
											2022-07-28 22:56:41 +02:00
										 |  |  | 	cd_update->get_ok_button()->connect("pressed", callable_mp(this, &MeshLibraryEditor::_menu_update_confirm).bind(false)); | 
					
						
							|  |  |  | 	cd_update->add_button(TTR("Apply with Transforms"))->connect("pressed", callable_mp(this, &MeshLibraryEditor::_menu_update_confirm).bind(true)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MeshLibraryEditorPlugin::edit(Object *p_node) { | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 	if (Object::cast_to<MeshLibrary>(p_node)) { | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 		mesh_library_editor->edit(Object::cast_to<MeshLibrary>(p_node)); | 
					
						
							|  |  |  | 		mesh_library_editor->show(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 		mesh_library_editor->hide(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | bool MeshLibraryEditorPlugin::handles(Object *p_node) const { | 
					
						
							|  |  |  | 	return p_node->is_class("MeshLibrary"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 11:41:17 -03:00
										 |  |  | void MeshLibraryEditorPlugin::make_visible(bool p_visible) { | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | 	if (p_visible) { | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 		mesh_library_editor->show(); | 
					
						
							|  |  |  | 		mesh_library_editor->get_menu_button()->show(); | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 		mesh_library_editor->hide(); | 
					
						
							|  |  |  | 		mesh_library_editor->get_menu_button()->hide(); | 
					
						
							| 
									
										
										
										
											2018-08-21 19:06:52 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-27 10:36:51 +01:00
										 |  |  | MeshLibraryEditorPlugin::MeshLibraryEditorPlugin() { | 
					
						
							|  |  |  | 	mesh_library_editor = memnew(MeshLibraryEditor); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-07 02:30:54 +03:00
										 |  |  | 	EditorNode::get_singleton()->get_main_screen_control()->add_child(mesh_library_editor); | 
					
						
							| 
									
										
										
										
											2020-12-22 16:24:29 +00:00
										 |  |  | 	mesh_library_editor->set_anchors_and_offsets_preset(Control::PRESET_TOP_WIDE); | 
					
						
							| 
									
										
										
										
											2018-08-22 03:10:54 -03:00
										 |  |  | 	mesh_library_editor->set_end(Point2(0, 22)); | 
					
						
							|  |  |  | 	mesh_library_editor->hide(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |