| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  debugger_editor_plugin.h                                              */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-01 10:33:58 -06:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 01:11:35 -07:00
										 |  |  | #include "editor/plugins/editor_plugin.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | class EditorFileServer; | 
					
						
							|  |  |  | class MenuButton; | 
					
						
							| 
									
										
										
										
											2020-03-08 22:48:04 +01:00
										 |  |  | class PopupMenu; | 
					
						
							| 
									
										
										
										
											2022-09-13 19:07:25 +02:00
										 |  |  | class RunInstancesDialog; | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | class DebuggerEditorPlugin : public EditorPlugin { | 
					
						
							|  |  |  | 	GDCLASS(DebuggerEditorPlugin, EditorPlugin); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 	PopupMenu *debug_menu = nullptr; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	EditorFileServer *file_server = nullptr; | 
					
						
							| 
									
										
										
										
											2022-09-13 19:07:25 +02:00
										 |  |  | 	RunInstancesDialog *run_instances_dialog = nullptr; | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	enum MenuOptions { | 
					
						
							|  |  |  | 		RUN_FILE_SERVER, | 
					
						
							|  |  |  | 		RUN_LIVE_DEBUG, | 
					
						
							| 
									
										
										
										
											2022-09-29 13:56:26 -08:00
										 |  |  | 		RUN_DEBUG_COLLISIONS, | 
					
						
							| 
									
										
										
										
											2022-06-15 23:24:06 +02:00
										 |  |  | 		RUN_DEBUG_PATHS, | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | 		RUN_DEBUG_NAVIGATION, | 
					
						
							| 
									
										
										
										
											2023-01-10 07:14:16 +01:00
										 |  |  | 		RUN_DEBUG_AVOIDANCE, | 
					
						
							| 
									
										
										
										
											2023-07-07 19:35:54 +02:00
										 |  |  | 		RUN_DEBUG_CANVAS_REDRAW, | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | 		RUN_DEPLOY_REMOTE_DEBUG, | 
					
						
							|  |  |  | 		RUN_RELOAD_SCRIPTS, | 
					
						
							| 
									
										
										
										
											2022-11-24 22:03:29 +01:00
										 |  |  | 		SERVER_KEEP_OPEN, | 
					
						
							| 
									
										
										
										
											2022-09-13 19:07:25 +02:00
										 |  |  | 		RUN_MULTIPLE_INSTANCES, | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-07 14:36:20 +01:00
										 |  |  | 	bool initializing = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | 	void _update_debug_options(); | 
					
						
							|  |  |  | 	void _notification(int p_what); | 
					
						
							| 
									
										
										
										
											2020-03-08 22:48:04 +01:00
										 |  |  | 	void _menu_option(int p_option); | 
					
						
							| 
									
										
										
										
											2020-03-08 18:58:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2024-10-12 19:42:12 -07:00
										 |  |  | 	virtual String get_plugin_name() const override { return "Debugger"; } | 
					
						
							| 
									
										
										
										
											2020-07-10 11:34:39 +01:00
										 |  |  | 	bool has_main_screen() const override { return false; } | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 	DebuggerEditorPlugin(PopupMenu *p_menu); | 
					
						
							| 
									
										
										
										
											2020-02-07 02:52:05 +01:00
										 |  |  | 	~DebuggerEditorPlugin(); | 
					
						
							|  |  |  | }; |