| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  scene_debugger.cpp                                                    */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "scene_debugger.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-27 03:30:20 +01:00
										 |  |  | #include "core/debugger/engine_debugger.h"
 | 
					
						
							| 
									
										
										
										
											2022-02-06 02:29:08 +01:00
										 |  |  | #include "core/debugger/engine_profiler.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | #include "core/io/marshalls.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/object/script_language.h"
 | 
					
						
							| 
									
										
										
										
											2022-03-09 14:58:40 +01:00
										 |  |  | #include "core/templates/local_vector.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | #include "scene/main/scene_tree.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | #include "scene/main/window.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | #include "scene/resources/packed_scene.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-06 02:29:08 +01:00
										 |  |  | SceneDebugger *SceneDebugger::singleton = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SceneDebugger::SceneDebugger() { | 
					
						
							|  |  |  | 	singleton = this; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							|  |  |  | 	LiveEditor::singleton = memnew(LiveEditor); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	EngineDebugger::register_message_capture("scene", EngineDebugger::Capture(nullptr, SceneDebugger::parse_message)); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-06 02:29:08 +01:00
										 |  |  | SceneDebugger::~SceneDebugger() { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							|  |  |  | 	if (LiveEditor::singleton) { | 
					
						
							| 
									
										
										
										
											2022-02-06 02:29:08 +01:00
										 |  |  | 		EngineDebugger::unregister_message_capture("scene"); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		memdelete(LiveEditor::singleton); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		LiveEditor::singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-02-06 02:29:08 +01:00
										 |  |  | 	singleton = nullptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebugger::initialize() { | 
					
						
							|  |  |  | 	if (EngineDebugger::is_active()) { | 
					
						
							|  |  |  | 		memnew(SceneDebugger); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebugger::deinitialize() { | 
					
						
							|  |  |  | 	if (singleton) { | 
					
						
							|  |  |  | 		memdelete(singleton); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2020-02-27 03:30:20 +01:00
										 |  |  | Error SceneDebugger::parse_message(void *p_user, const String &p_msg, const Array &p_args, bool &r_captured) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return ERR_UNCONFIGURED; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	LiveEditor *live_editor = LiveEditor::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!live_editor) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return ERR_UNCONFIGURED; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-27 03:30:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	r_captured = true; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	if (p_msg == "request_scene_tree") { // Scene tree
 | 
					
						
							|  |  |  | 		live_editor->_send_tree(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "save_node") { // Save node.
 | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 2, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		_save_node(p_args[0], p_args[1]); | 
					
						
							| 
									
										
										
										
											2023-03-24 19:38:08 +01:00
										 |  |  | 		Array arr; | 
					
						
							|  |  |  | 		arr.append(p_args[1]); | 
					
						
							|  |  |  | 		EngineDebugger::get_singleton()->send_message("filesystem:update_file", { arr }); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "inspect_object") { // Object Inspect
 | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 1, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		ObjectID id = p_args[0]; | 
					
						
							|  |  |  | 		_send_object_id(id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "override_camera_2D:set") { // Camera
 | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 1, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		bool enforce = p_args[0]; | 
					
						
							|  |  |  | 		scene_tree->get_root()->enable_canvas_transform_override(enforce); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "override_camera_2D:transform") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 1, ERR_INVALID_DATA); | 
					
						
							| 
									
										
										
										
											2021-08-21 21:24:09 +03:00
										 |  |  | 		Transform2D transform = p_args[0]; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		scene_tree->get_root()->set_canvas_transform_override(transform); | 
					
						
							| 
									
										
										
										
											2021-07-03 21:43:23 -04:00
										 |  |  | #ifndef _3D_DISABLED
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} else if (p_msg == "override_camera_3D:set") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 1, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		bool enable = p_args[0]; | 
					
						
							| 
									
										
										
										
											2021-08-02 12:31:51 -05:00
										 |  |  | 		scene_tree->get_root()->enable_camera_3d_override(enable); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "override_camera_3D:transform") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 5, ERR_INVALID_DATA); | 
					
						
							| 
									
										
										
										
											2020-10-17 01:08:21 -04:00
										 |  |  | 		Transform3D transform = p_args[0]; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		bool is_perspective = p_args[1]; | 
					
						
							|  |  |  | 		float size_or_fov = p_args[2]; | 
					
						
							|  |  |  | 		float near = p_args[3]; | 
					
						
							|  |  |  | 		float far = p_args[4]; | 
					
						
							|  |  |  | 		if (is_perspective) { | 
					
						
							| 
									
										
										
										
											2021-08-02 12:31:51 -05:00
										 |  |  | 			scene_tree->get_root()->set_camera_3d_override_perspective(size_or_fov, near, far); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2021-08-02 12:31:51 -05:00
										 |  |  | 			scene_tree->get_root()->set_camera_3d_override_orthogonal(size_or_fov, near, far); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-08-02 12:31:51 -05:00
										 |  |  | 		scene_tree->get_root()->set_camera_3d_override_transform(transform); | 
					
						
							| 
									
										
										
										
											2021-07-03 21:43:23 -04:00
										 |  |  | #endif // _3D_DISABLED
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} else if (p_msg == "set_object_property") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		_set_object_property(p_args[0], p_args[1], p_args[2]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (!p_msg.begins_with("live_")) { // Live edits below.
 | 
					
						
							|  |  |  | 		return ERR_SKIP; | 
					
						
							|  |  |  | 	} else if (p_msg == "live_set_root") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 2, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_root_func(p_args[0], p_args[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_node_path") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 2, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_node_path_func(p_args[0], p_args[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_res_path") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 2, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_res_path_func(p_args[0], p_args[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_node_prop_res") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_node_set_res_func(p_args[0], p_args[1], p_args[2]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_node_prop") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_node_set_func(p_args[0], p_args[1], p_args[2]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_res_prop_res") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_res_set_res_func(p_args[0], p_args[1], p_args[2]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_res_prop") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_res_set_func(p_args[0], p_args[1], p_args[2]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_node_call") { | 
					
						
							| 
									
										
										
										
											2023-07-19 13:11:08 +02:00
										 |  |  | 		ERR_FAIL_COND_V(p_args.size() < 2, ERR_INVALID_DATA); | 
					
						
							| 
									
										
										
										
											2022-03-09 14:58:40 +01:00
										 |  |  | 		LocalVector<Variant> args; | 
					
						
							|  |  |  | 		LocalVector<Variant *> argptrs; | 
					
						
							|  |  |  | 		args.resize(p_args.size() - 2); | 
					
						
							|  |  |  | 		argptrs.resize(args.size()); | 
					
						
							|  |  |  | 		for (uint32_t i = 0; i < args.size(); i++) { | 
					
						
							|  |  |  | 			args[i] = p_args[i + 2]; | 
					
						
							|  |  |  | 			argptrs[i] = &args[i]; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-07-19 13:11:08 +02:00
										 |  |  | 		live_editor->_node_call_func(p_args[0], p_args[1], argptrs.size() ? (const Variant **)argptrs.ptr() : nullptr, argptrs.size()); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_res_call") { | 
					
						
							| 
									
										
										
										
											2023-07-19 13:11:08 +02:00
										 |  |  | 		ERR_FAIL_COND_V(p_args.size() < 2, ERR_INVALID_DATA); | 
					
						
							| 
									
										
										
										
											2022-03-09 14:58:40 +01:00
										 |  |  | 		LocalVector<Variant> args; | 
					
						
							|  |  |  | 		LocalVector<Variant *> argptrs; | 
					
						
							|  |  |  | 		args.resize(p_args.size() - 2); | 
					
						
							|  |  |  | 		argptrs.resize(args.size()); | 
					
						
							|  |  |  | 		for (uint32_t i = 0; i < args.size(); i++) { | 
					
						
							|  |  |  | 			args[i] = p_args[i + 2]; | 
					
						
							|  |  |  | 			argptrs[i] = &args[i]; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-07-19 13:11:08 +02:00
										 |  |  | 		live_editor->_res_call_func(p_args[0], p_args[1], argptrs.size() ? (const Variant **)argptrs.ptr() : nullptr, argptrs.size()); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_create_node") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_create_node_func(p_args[0], p_args[1], p_args[2]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-16 00:13:39 +01:00
										 |  |  | 	} else if (p_msg == "live_instantiate_node") { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_instance_node_func(p_args[0], p_args[1], p_args[2]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_remove_node") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 1, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_remove_node_func(p_args[0]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_remove_and_keep_node") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 2, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_remove_and_keep_node_func(p_args[0], p_args[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_restore_node") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_restore_node_func(p_args[0], p_args[1], p_args[2]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_duplicate_node") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 2, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_duplicate_node_func(p_args[0], p_args[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (p_msg == "live_reparent_node") { | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(p_args.size() < 4, ERR_INVALID_DATA); | 
					
						
							|  |  |  | 		live_editor->_reparent_node_func(p_args[0], p_args[1], p_args[2], p_args[3]); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2020-02-27 03:30:20 +01:00
										 |  |  | 		r_captured = false; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebugger::_save_node(ObjectID id, const String &p_path) { | 
					
						
							|  |  |  | 	Node *node = Object::cast_to<Node>(ObjectDB::get_instance(id)); | 
					
						
							| 
									
										
										
										
											2023-06-06 14:59:54 +02:00
										 |  |  | 	ERR_FAIL_NULL(node); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-06 13:49:42 +01:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-09-02 07:26:46 +02:00
										 |  |  | 	HashMap<const Node *, Node *> duplimap; | 
					
						
							|  |  |  | 	Node *copy = node->duplicate_from_editor(duplimap); | 
					
						
							| 
									
										
										
										
											2022-12-06 13:49:42 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 	Node *copy = node->duplicate(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-09-02 07:26:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Handle Unique Nodes.
 | 
					
						
							|  |  |  | 	for (int i = 0; i < copy->get_child_count(false); i++) { | 
					
						
							|  |  |  | 		_set_node_owner_recursive(copy->get_child(i, false), copy); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Root node cannot ever be unique name in its own Scene!
 | 
					
						
							|  |  |  | 	copy->set_unique_name_in_owner(false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	Ref<PackedScene> ps = memnew(PackedScene); | 
					
						
							| 
									
										
										
										
											2022-09-02 07:26:46 +02:00
										 |  |  | 	ps->pack(copy); | 
					
						
							| 
									
										
										
										
											2022-06-03 01:33:42 +02:00
										 |  |  | 	ResourceSaver::save(ps, p_path); | 
					
						
							| 
									
										
										
										
											2022-09-02 07:26:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memdelete(copy); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebugger::_set_node_owner_recursive(Node *p_node, Node *p_owner) { | 
					
						
							|  |  |  | 	if (!p_node->get_owner()) { | 
					
						
							|  |  |  | 		p_node->set_owner(p_owner); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_node->get_child_count(false); i++) { | 
					
						
							|  |  |  | 		_set_node_owner_recursive(p_node->get_child(i, false), p_owner); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebugger::_send_object_id(ObjectID p_id, int p_max_size) { | 
					
						
							|  |  |  | 	SceneDebuggerObject obj(p_id); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (obj.id.is_null()) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Array arr; | 
					
						
							|  |  |  | 	obj.serialize(arr); | 
					
						
							| 
									
										
										
										
											2020-02-27 03:30:20 +01:00
										 |  |  | 	EngineDebugger::get_singleton()->send_message("scene:inspect_object", arr); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebugger::_set_object_property(ObjectID p_id, const String &p_property, const Variant &p_value) { | 
					
						
							|  |  |  | 	Object *obj = ObjectDB::get_instance(p_id); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!obj) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	String prop_name = p_property; | 
					
						
							|  |  |  | 	if (p_property.begins_with("Members/")) { | 
					
						
							|  |  |  | 		Vector<String> ss = p_property.split("/"); | 
					
						
							|  |  |  | 		prop_name = ss[ss.size() - 1]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	obj->set(prop_name, p_value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebugger::add_to_cache(const String &p_filename, Node *p_node) { | 
					
						
							|  |  |  | 	LiveEditor *debugger = LiveEditor::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!debugger) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-09 03:42:46 -06:00
										 |  |  | 	if (EngineDebugger::get_script_debugger() && !p_filename.is_empty()) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		debugger->live_scene_edit_cache[p_filename].insert(p_node); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void SceneDebugger::remove_from_cache(const String &p_filename, Node *p_node) { | 
					
						
							|  |  |  | 	LiveEditor *debugger = LiveEditor::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!debugger) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>> &edit_cache = debugger->live_scene_edit_cache; | 
					
						
							|  |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = edit_cache.find(p_filename); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	if (E) { | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		E->value.erase(p_node); | 
					
						
							|  |  |  | 		if (E->value.size() == 0) { | 
					
						
							|  |  |  | 			edit_cache.remove(E); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	HashMap<Node *, HashMap<ObjectID, Node *>> &remove_list = debugger->live_edit_remove_list; | 
					
						
							|  |  |  | 	HashMap<Node *, HashMap<ObjectID, Node *>>::Iterator F = remove_list.find(p_node); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	if (F) { | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		for (const KeyValue<ObjectID, Node *> &G : F->value) { | 
					
						
							| 
									
										
										
										
											2021-08-09 14:13:42 -06:00
										 |  |  | 			memdelete(G.value); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		remove_list.remove(F); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /// SceneDebuggerObject
 | 
					
						
							|  |  |  | SceneDebuggerObject::SceneDebuggerObject(ObjectID p_id) { | 
					
						
							|  |  |  | 	id = ObjectID(); | 
					
						
							|  |  |  | 	Object *obj = ObjectDB::get_instance(p_id); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!obj) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	id = p_id; | 
					
						
							|  |  |  | 	class_name = obj->get_class(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ScriptInstance *si = obj->get_script_instance()) { | 
					
						
							|  |  |  | 		// Read script instance constants and variables
 | 
					
						
							|  |  |  | 		if (!si->get_script().is_null()) { | 
					
						
							|  |  |  | 			Script *s = si->get_script().ptr(); | 
					
						
							|  |  |  | 			_parse_script_properties(s, si); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (Node *node = Object::cast_to<Node>(obj)) { | 
					
						
							|  |  |  | 		// Add specialized NodePath info (if inside tree).
 | 
					
						
							|  |  |  | 		if (node->is_inside_tree()) { | 
					
						
							|  |  |  | 			PropertyInfo pi(Variant::NODE_PATH, String("Node/path")); | 
					
						
							|  |  |  | 			properties.push_back(SceneDebuggerProperty(pi, node->get_path())); | 
					
						
							|  |  |  | 		} else { // Can't ask for path if a node is not in tree.
 | 
					
						
							|  |  |  | 			PropertyInfo pi(Variant::STRING, String("Node/path")); | 
					
						
							|  |  |  | 			properties.push_back(SceneDebuggerProperty(pi, "[Orphan]")); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else if (Script *s = Object::cast_to<Script>(obj)) { | 
					
						
							|  |  |  | 		// Add script constants (no instance).
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		_parse_script_properties(s, nullptr); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Add base object properties.
 | 
					
						
							|  |  |  | 	List<PropertyInfo> pinfo; | 
					
						
							|  |  |  | 	obj->get_property_list(&pinfo, true); | 
					
						
							| 
									
										
										
										
											2021-07-24 15:46:25 +02:00
										 |  |  | 	for (const PropertyInfo &E : pinfo) { | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		if (E.usage & (PROPERTY_USAGE_EDITOR | PROPERTY_USAGE_CATEGORY)) { | 
					
						
							|  |  |  | 			properties.push_back(SceneDebuggerProperty(E, obj->get(E.name))); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebuggerObject::_parse_script_properties(Script *p_script, ScriptInstance *p_instance) { | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	typedef HashMap<const Script *, HashSet<StringName>> ScriptMemberMap; | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	typedef HashMap<const Script *, HashMap<StringName, Variant>> ScriptConstantsMap; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ScriptMemberMap members; | 
					
						
							|  |  |  | 	if (p_instance) { | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 		members[p_script] = HashSet<StringName>(); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		p_script->get_members(&(members[p_script])); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ScriptConstantsMap constants; | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	constants[p_script] = HashMap<StringName, Variant>(); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	p_script->get_constants(&(constants[p_script])); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<Script> base = p_script->get_base_script(); | 
					
						
							|  |  |  | 	while (base.is_valid()) { | 
					
						
							|  |  |  | 		if (p_instance) { | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 			members[base.ptr()] = HashSet<StringName>(); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			base->get_members(&(members[base.ptr()])); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		constants[base.ptr()] = HashMap<StringName, Variant>(); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base->get_constants(&(constants[base.ptr()])); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		base = base->get_base_script(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Members
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	for (KeyValue<const Script *, HashSet<StringName>> sm : members) { | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 		for (const StringName &E : sm.value) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			Variant m; | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 			if (p_instance->get(E, m)) { | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 				String script_path = sm.key == p_script ? "" : sm.key->get_path().get_file() + "/"; | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 				PropertyInfo pi(m.get_type(), "Members/" + script_path + E); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 				properties.push_back(SceneDebuggerProperty(pi, m)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Constants
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	for (KeyValue<const Script *, HashMap<StringName, Variant>> &sc : constants) { | 
					
						
							|  |  |  | 		for (const KeyValue<StringName, Variant> &E : sc.value) { | 
					
						
							|  |  |  | 			String script_path = sc.key == p_script ? "" : sc.key->get_path().get_file() + "/"; | 
					
						
							| 
									
										
										
										
											2021-08-09 14:13:42 -06:00
										 |  |  | 			if (E.value.get_type() == Variant::OBJECT) { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 				Variant inst_id = ((Object *)E.value)->get_instance_id(); | 
					
						
							|  |  |  | 				PropertyInfo pi(inst_id.get_type(), "Constants/" + E.key, PROPERTY_HINT_OBJECT_ID, "Object"); | 
					
						
							|  |  |  | 				properties.push_back(SceneDebuggerProperty(pi, inst_id)); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2021-08-09 14:13:42 -06:00
										 |  |  | 				PropertyInfo pi(E.value.get_type(), "Constants/" + script_path + E.key); | 
					
						
							|  |  |  | 				properties.push_back(SceneDebuggerProperty(pi, E.value)); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebuggerObject::serialize(Array &r_arr, int p_max_size) { | 
					
						
							|  |  |  | 	Array send_props; | 
					
						
							|  |  |  | 	for (int i = 0; i < properties.size(); i++) { | 
					
						
							|  |  |  | 		const PropertyInfo &pi = properties[i].first; | 
					
						
							|  |  |  | 		Variant &var = properties[i].second; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-03 01:43:50 +02:00
										 |  |  | 		Ref<Resource> res = var; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Array prop; | 
					
						
							|  |  |  | 		prop.push_back(pi.name); | 
					
						
							|  |  |  | 		prop.push_back(pi.type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		PropertyHint hint = pi.hint; | 
					
						
							|  |  |  | 		String hint_string = pi.hint_string; | 
					
						
							| 
									
										
										
										
											2021-05-14 12:18:35 +02:00
										 |  |  | 		if (!res.is_null() && !res->get_path().is_empty()) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			var = res->get_path(); | 
					
						
							|  |  |  | 		} else { //only send information that can be sent..
 | 
					
						
							|  |  |  | 			int len = 0; //test how big is this to encode
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 			encode_variant(var, nullptr, len); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			if (len > p_max_size) { //limit to max size
 | 
					
						
							|  |  |  | 				hint = PROPERTY_HINT_OBJECT_TOO_BIG; | 
					
						
							|  |  |  | 				hint_string = ""; | 
					
						
							|  |  |  | 				var = Variant(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		prop.push_back(hint); | 
					
						
							|  |  |  | 		prop.push_back(hint_string); | 
					
						
							|  |  |  | 		prop.push_back(pi.usage); | 
					
						
							|  |  |  | 		prop.push_back(var); | 
					
						
							|  |  |  | 		send_props.push_back(prop); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	r_arr.push_back(uint64_t(id)); | 
					
						
							|  |  |  | 	r_arr.push_back(class_name); | 
					
						
							|  |  |  | 	r_arr.push_back(send_props); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebuggerObject::deserialize(const Array &p_arr) { | 
					
						
							|  |  |  | #define CHECK_TYPE(p_what, p_type) ERR_FAIL_COND(p_what.get_type() != Variant::p_type);
 | 
					
						
							|  |  |  | 	ERR_FAIL_COND(p_arr.size() < 3); | 
					
						
							|  |  |  | 	CHECK_TYPE(p_arr[0], INT); | 
					
						
							|  |  |  | 	CHECK_TYPE(p_arr[1], STRING); | 
					
						
							|  |  |  | 	CHECK_TYPE(p_arr[2], ARRAY); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	id = uint64_t(p_arr[0]); | 
					
						
							|  |  |  | 	class_name = p_arr[1]; | 
					
						
							|  |  |  | 	Array props = p_arr[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < props.size(); i++) { | 
					
						
							|  |  |  | 		CHECK_TYPE(props[i], ARRAY); | 
					
						
							|  |  |  | 		Array prop = props[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ERR_FAIL_COND(prop.size() != 6); | 
					
						
							|  |  |  | 		CHECK_TYPE(prop[0], STRING); | 
					
						
							|  |  |  | 		CHECK_TYPE(prop[1], INT); | 
					
						
							|  |  |  | 		CHECK_TYPE(prop[2], INT); | 
					
						
							|  |  |  | 		CHECK_TYPE(prop[3], STRING); | 
					
						
							|  |  |  | 		CHECK_TYPE(prop[4], INT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		PropertyInfo pinfo; | 
					
						
							|  |  |  | 		pinfo.name = prop[0]; | 
					
						
							|  |  |  | 		pinfo.type = Variant::Type(int(prop[1])); | 
					
						
							|  |  |  | 		pinfo.hint = PropertyHint(int(prop[2])); | 
					
						
							|  |  |  | 		pinfo.hint_string = prop[3]; | 
					
						
							|  |  |  | 		pinfo.usage = PropertyUsageFlags(int(prop[4])); | 
					
						
							|  |  |  | 		Variant var = prop[5]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (pinfo.type == Variant::OBJECT) { | 
					
						
							|  |  |  | 			if (var.is_zero()) { | 
					
						
							| 
									
										
										
										
											2022-05-03 01:43:50 +02:00
										 |  |  | 				var = Ref<Resource>(); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			} else if (var.get_type() == Variant::OBJECT) { | 
					
						
							|  |  |  | 				if (((Object *)var)->is_class("EncodedObjectAsID")) { | 
					
						
							|  |  |  | 					var = Object::cast_to<EncodedObjectAsID>(var)->get_object_id(); | 
					
						
							|  |  |  | 					pinfo.type = var.get_type(); | 
					
						
							|  |  |  | 					pinfo.hint = PROPERTY_HINT_OBJECT_ID; | 
					
						
							|  |  |  | 					pinfo.hint_string = "Object"; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		properties.push_back(SceneDebuggerProperty(pinfo, var)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /// SceneDebuggerTree
 | 
					
						
							|  |  |  | SceneDebuggerTree::SceneDebuggerTree(Node *p_root) { | 
					
						
							|  |  |  | 	// Flatten tree into list, depth first, use stack to avoid recursion.
 | 
					
						
							|  |  |  | 	List<Node *> stack; | 
					
						
							|  |  |  | 	stack.push_back(p_root); | 
					
						
							| 
									
										
										
										
											2022-08-31 00:52:05 +02:00
										 |  |  | 	bool is_root = true; | 
					
						
							|  |  |  | 	const StringName &is_visible_sn = SNAME("is_visible"); | 
					
						
							|  |  |  | 	const StringName &is_visible_in_tree_sn = SNAME("is_visible_in_tree"); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	while (stack.size()) { | 
					
						
							|  |  |  | 		Node *n = stack[0]; | 
					
						
							|  |  |  | 		stack.pop_front(); | 
					
						
							| 
									
										
										
										
											2022-08-31 00:52:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		int count = n->get_child_count(); | 
					
						
							|  |  |  | 		for (int i = 0; i < count; i++) { | 
					
						
							|  |  |  | 			stack.push_front(n->get_child(count - i - 1)); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-08-31 00:52:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		int view_flags = 0; | 
					
						
							|  |  |  | 		if (is_root) { | 
					
						
							|  |  |  | 			// Prevent root window visibility from being changed.
 | 
					
						
							|  |  |  | 			is_root = false; | 
					
						
							|  |  |  | 		} else if (n->has_method(is_visible_sn)) { | 
					
						
							|  |  |  | 			const Variant visible = n->call(is_visible_sn); | 
					
						
							|  |  |  | 			if (visible.get_type() == Variant::BOOL) { | 
					
						
							|  |  |  | 				view_flags = RemoteNode::VIEW_HAS_VISIBLE_METHOD; | 
					
						
							|  |  |  | 				view_flags |= uint8_t(visible) * RemoteNode::VIEW_VISIBLE; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (n->has_method(is_visible_in_tree_sn)) { | 
					
						
							|  |  |  | 				const Variant visible_in_tree = n->call(is_visible_in_tree_sn); | 
					
						
							|  |  |  | 				if (visible_in_tree.get_type() == Variant::BOOL) { | 
					
						
							|  |  |  | 					view_flags |= uint8_t(visible_in_tree) * RemoteNode::VIEW_VISIBLE_IN_TREE; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		nodes.push_back(RemoteNode(count, n->get_name(), n->get_class(), n->get_instance_id(), n->get_scene_file_path(), view_flags)); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebuggerTree::serialize(Array &p_arr) { | 
					
						
							| 
									
										
										
										
											2021-07-24 15:46:25 +02:00
										 |  |  | 	for (const RemoteNode &n : nodes) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		p_arr.push_back(n.child_count); | 
					
						
							|  |  |  | 		p_arr.push_back(n.name); | 
					
						
							|  |  |  | 		p_arr.push_back(n.type_name); | 
					
						
							|  |  |  | 		p_arr.push_back(n.id); | 
					
						
							| 
									
										
										
										
											2022-08-31 00:52:05 +02:00
										 |  |  | 		p_arr.push_back(n.scene_file_path); | 
					
						
							|  |  |  | 		p_arr.push_back(n.view_flags); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SceneDebuggerTree::deserialize(const Array &p_arr) { | 
					
						
							|  |  |  | 	int idx = 0; | 
					
						
							|  |  |  | 	while (p_arr.size() > idx) { | 
					
						
							| 
									
										
										
										
											2022-08-31 00:52:05 +02:00
										 |  |  | 		ERR_FAIL_COND(p_arr.size() < 6); | 
					
						
							|  |  |  | 		CHECK_TYPE(p_arr[idx], INT); // child_count.
 | 
					
						
							|  |  |  | 		CHECK_TYPE(p_arr[idx + 1], STRING); // name.
 | 
					
						
							|  |  |  | 		CHECK_TYPE(p_arr[idx + 2], STRING); // type_name.
 | 
					
						
							|  |  |  | 		CHECK_TYPE(p_arr[idx + 3], INT); // id.
 | 
					
						
							|  |  |  | 		CHECK_TYPE(p_arr[idx + 4], STRING); // scene_file_path.
 | 
					
						
							|  |  |  | 		CHECK_TYPE(p_arr[idx + 5], INT); // view_flags.
 | 
					
						
							|  |  |  | 		nodes.push_back(RemoteNode(p_arr[idx], p_arr[idx + 1], p_arr[idx + 2], p_arr[idx + 3], p_arr[idx + 4], p_arr[idx + 5])); | 
					
						
							|  |  |  | 		idx += 6; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /// LiveEditor
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | LiveEditor *LiveEditor::singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | LiveEditor *LiveEditor::get_singleton() { | 
					
						
							|  |  |  | 	return singleton; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LiveEditor::_send_tree() { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Array arr; | 
					
						
							| 
									
										
										
										
											2021-03-12 19:05:16 +05:30
										 |  |  | 	// Encoded as a flat list depth first.
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	SceneDebuggerTree tree(scene_tree->root); | 
					
						
							|  |  |  | 	tree.serialize(arr); | 
					
						
							| 
									
										
										
										
											2020-02-27 03:30:20 +01:00
										 |  |  | 	EngineDebugger::get_singleton()->send_message("scene:scene_tree", arr); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LiveEditor::_node_path_func(const NodePath &p_path, int p_id) { | 
					
						
							|  |  |  | 	live_edit_node_path_cache[p_id] = p_path; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LiveEditor::_res_path_func(const String &p_path, int p_id) { | 
					
						
							|  |  |  | 	live_edit_resource_cache[p_id] = p_path; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LiveEditor::_node_set_func(int p_id, const StringName &p_prop, const Variant &p_value) { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!live_edit_node_path_cache.has(p_id)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	NodePath np = live_edit_node_path_cache[p_id]; | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 	for (Node *F : E->value) { | 
					
						
							|  |  |  | 		Node *n = F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(np)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *n2 = n->get_node(np); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		n2->set(p_prop, p_value); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LiveEditor::_node_set_res_func(int p_id, const StringName &p_prop, const String &p_value) { | 
					
						
							| 
									
										
										
										
											2022-05-03 01:43:50 +02:00
										 |  |  | 	Ref<Resource> r = ResourceLoader::load(p_value); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!r.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	_node_set_func(p_id, p_prop, r); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-09 14:58:40 +01:00
										 |  |  | void LiveEditor::_node_call_func(int p_id, const StringName &p_method, const Variant **p_args, int p_argcount) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (!live_edit_node_path_cache.has(p_id)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	NodePath np = live_edit_node_path_cache[p_id]; | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 	for (Node *F : E->value) { | 
					
						
							|  |  |  | 		Node *n = F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(np)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *n2 = n->get_node(np); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-09 14:58:40 +01:00
										 |  |  | 		Callable::CallError ce; | 
					
						
							|  |  |  | 		n2->callp(p_method, p_args, p_argcount, ce); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void LiveEditor::_res_set_func(int p_id, const StringName &p_prop, const Variant &p_value) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!live_edit_resource_cache.has(p_id)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	String resp = live_edit_resource_cache[p_id]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!ResourceCache::has(resp)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-22 13:46:46 +02:00
										 |  |  | 	Ref<Resource> r = ResourceCache::get_ref(resp); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!r.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	r->set(p_prop, p_value); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void LiveEditor::_res_set_res_func(int p_id, const StringName &p_prop, const String &p_value) { | 
					
						
							| 
									
										
										
										
											2022-05-03 01:43:50 +02:00
										 |  |  | 	Ref<Resource> r = ResourceLoader::load(p_value); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!r.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	_res_set_func(p_id, p_prop, r); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-09 14:58:40 +01:00
										 |  |  | void LiveEditor::_res_call_func(int p_id, const StringName &p_method, const Variant **p_args, int p_argcount) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!live_edit_resource_cache.has(p_id)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	String resp = live_edit_resource_cache[p_id]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!ResourceCache::has(resp)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-22 13:46:46 +02:00
										 |  |  | 	Ref<Resource> r = ResourceCache::get_ref(resp); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!r.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-09 14:58:40 +01:00
										 |  |  | 	Callable::CallError ce; | 
					
						
							|  |  |  | 	r->callp(p_method, p_args, p_argcount, ce); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LiveEditor::_root_func(const NodePath &p_scene_path, const String &p_scene_from) { | 
					
						
							|  |  |  | 	live_edit_root = p_scene_path; | 
					
						
							|  |  |  | 	live_edit_scene = p_scene_from; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void LiveEditor::_create_node_func(const NodePath &p_parent, const String &p_type, const String &p_name) { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 	for (Node *F : E->value) { | 
					
						
							|  |  |  | 		Node *n = F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(p_parent)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *n2 = n->get_node(p_parent); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 		Node *no = Object::cast_to<Node>(ClassDB::instantiate(p_type)); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		if (!no) { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		no->set_name(p_name); | 
					
						
							|  |  |  | 		n2->add_child(no); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void LiveEditor::_instance_node_func(const NodePath &p_parent, const String &p_path, const String &p_name) { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Ref<PackedScene> ps = ResourceLoader::load(p_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!ps.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 	for (Node *F : E->value) { | 
					
						
							|  |  |  | 		Node *n = F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(p_parent)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *n2 = n->get_node(p_parent); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 		Node *no = ps->instantiate(); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		if (!no) { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		no->set_name(p_name); | 
					
						
							|  |  |  | 		n2->add_child(no); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void LiveEditor::_remove_node_func(const NodePath &p_at) { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	Vector<Node *> to_delete; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	for (HashSet<Node *>::Iterator F = E->value.begin(); F; ++F) { | 
					
						
							|  |  |  | 		Node *n = *F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(p_at)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *n2 = n->get_node(p_at); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 		to_delete.push_back(n2); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	for (int i = 0; i < to_delete.size(); i++) { | 
					
						
							|  |  |  | 		memdelete(to_delete[i]); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void LiveEditor::_remove_and_keep_node_func(const NodePath &p_at, ObjectID p_keep_id) { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	Vector<Node *> to_remove; | 
					
						
							|  |  |  | 	for (HashSet<Node *>::Iterator F = E->value.begin(); F; ++F) { | 
					
						
							|  |  |  | 		Node *n = *F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(p_at)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 		to_remove.push_back(n); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	for (int i = 0; i < to_remove.size(); i++) { | 
					
						
							|  |  |  | 		Node *n = to_remove[i]; | 
					
						
							|  |  |  | 		Node *n2 = n->get_node(p_at); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		n2->get_parent()->remove_child(n2); | 
					
						
							|  |  |  | 		live_edit_remove_list[n][p_keep_id] = n2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void LiveEditor::_restore_node_func(ObjectID p_id, const NodePath &p_at, int p_at_pos) { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	for (HashSet<Node *>::Iterator F = E->value.begin(); F;) { | 
					
						
							|  |  |  | 		HashSet<Node *>::Iterator N = F; | 
					
						
							|  |  |  | 		++N; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 		Node *n = *F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(p_at)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *n2 = n->get_node(p_at); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		HashMap<Node *, HashMap<ObjectID, Node *>>::Iterator EN = live_edit_remove_list.find(n); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!EN) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		HashMap<ObjectID, Node *>::Iterator FN = EN->value.find(p_id); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!FN) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		n2->add_child(FN->value); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		EN->value.remove(FN); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 		if (EN->value.size() == 0) { | 
					
						
							|  |  |  | 			live_edit_remove_list.remove(EN); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		F = N; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void LiveEditor::_duplicate_node_func(const NodePath &p_at, const String &p_new_name) { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 	for (Node *F : E->value) { | 
					
						
							|  |  |  | 		Node *n = F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(p_at)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *n2 = n->get_node(p_at); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Node *dup = n2->duplicate(Node::DUPLICATE_SIGNALS | Node::DUPLICATE_GROUPS | Node::DUPLICATE_SCRIPTS); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!dup) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		dup->set_name(p_new_name); | 
					
						
							|  |  |  | 		n2->get_parent()->add_child(dup); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | void LiveEditor::_reparent_node_func(const NodePath &p_at, const NodePath &p_new_place, const String &p_new_name, int p_at_pos) { | 
					
						
							|  |  |  | 	SceneTree *scene_tree = SceneTree::get_singleton(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!scene_tree) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	Node *base = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (scene_tree->root->has_node(live_edit_root)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		base = scene_tree->root->get_node(live_edit_root); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashMap<String, HashSet<Node *>>::Iterator E = live_scene_edit_cache.find(live_edit_scene); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!E) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		return; //scene not editable
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-18 17:43:40 -06:00
										 |  |  | 	for (Node *F : E->value) { | 
					
						
							|  |  |  | 		Node *n = F; | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:02:50 -06:00
										 |  |  | 		if (base && !base->is_ancestor_of(n)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(p_at)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *nfrom = n->get_node(p_at); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!n->has_node(p_new_place)) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 		Node *nto = n->get_node(p_new_place); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nfrom->get_parent()->remove_child(nfrom); | 
					
						
							|  |  |  | 		nfrom->set_name(p_new_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nto->add_child(nfrom); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (p_at_pos >= 0) { | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 			nto->move_child(nfrom, p_at_pos); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |