summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-30 22:13:42 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-30 22:13:42 +0200
commitcd8bd0380de18647b4f1d17767a4480a6abf4128 (patch)
treeffb4d6b991f617aed1f09d5f4c667994cb685309 /main
parente7dd6f11ed1ed4d72186d3a90d5f4ef42e79c4d0 (diff)
parent77b9e60303c05e7ce045e66b715cffb826a1baa7 (diff)
downloadredot-engine-cd8bd0380de18647b4f1d17767a4480a6abf4128.tar.gz
Merge pull request #92336 from van800/DAP
[DAP] Add `--dap-port` as a command line argument
Diffstat (limited to 'main')
-rw-r--r--main/main.cpp19
1 files changed, 18 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp
index 6b17c55efc..af29e18c46 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -90,6 +90,7 @@
#endif
#ifdef TOOLS_ENABLED
+#include "editor/debugger/debug_adapter/debug_adapter_server.h"
#include "editor/debugger/editor_debugger_node.h"
#include "editor/doc_data_class_path.gen.h"
#include "editor/doc_tools.h"
@@ -518,8 +519,9 @@ void Main::print_help(const char *p_binary) {
print_help_option("-e, --editor", "Start the editor instead of running the scene.\n", CLI_OPTION_AVAILABILITY_EDITOR);
print_help_option("-p, --project-manager", "Start the project manager, even if a project is auto-detected.\n", CLI_OPTION_AVAILABILITY_EDITOR);
print_help_option("--debug-server <uri>", "Start the editor debug server (<protocol>://<host/IP>[:port], e.g. tcp://127.0.0.1:6007)\n", CLI_OPTION_AVAILABILITY_EDITOR);
+ print_help_option("--dap-port <port>", "Use the specified port for the GDScript Debugger Adaptor protocol. Recommended port range [1024, 49151].\n", CLI_OPTION_AVAILABILITY_EDITOR);
#if defined(MODULE_GDSCRIPT_ENABLED) && !defined(GDSCRIPT_NO_LSP)
- print_help_option("--lsp-port <port>", "Use the specified port for the GDScript language server protocol. The port should be between 1025 and 49150.\n", CLI_OPTION_AVAILABILITY_EDITOR);
+ print_help_option("--lsp-port <port>", "Use the specified port for the GDScript language server protocol. Recommended port range [1024, 49151].\n", CLI_OPTION_AVAILABILITY_EDITOR);
#endif // MODULE_GDSCRIPT_ENABLED && !GDSCRIPT_NO_LSP
#endif
print_help_option("--quit", "Quit after the first iteration.\n");
@@ -1714,6 +1716,21 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
goto error;
}
#endif // TOOLS_ENABLED && MODULE_GDSCRIPT_ENABLED && !GDSCRIPT_NO_LSP
+#if defined(TOOLS_ENABLED)
+ } else if (arg == "--dap-port") {
+ if (N) {
+ int port_override = N->get().to_int();
+ if (port_override < 0 || port_override > 65535) {
+ OS::get_singleton()->print("<port> argument for --dap-port <port> must be between 0 and 65535.\n");
+ goto error;
+ }
+ DebugAdapterServer::port_override = port_override;
+ N = N->next();
+ } else {
+ OS::get_singleton()->print("Missing <port> argument for --dap-port <port>.\n");
+ goto error;
+ }
+#endif // TOOLS_ENABLED
} else if (arg == "--" || arg == "++") {
adding_user_args = true;
} else {