2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* main.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. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef MAIN_H
|
|
|
|
#define MAIN_H
|
|
|
|
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/error/error_list.h"
|
2017-08-22 15:21:41 +00:00
|
|
|
#include "core/os/thread.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/typedefs.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-08-13 19:52:03 +00:00
|
|
|
template <typename T>
|
|
|
|
class Vector;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
class Main {
|
2020-02-15 20:37:48 +00:00
|
|
|
enum CLIOptionAvailability {
|
|
|
|
CLI_OPTION_AVAILABILITY_EDITOR,
|
|
|
|
CLI_OPTION_AVAILABILITY_TEMPLATE_DEBUG,
|
|
|
|
CLI_OPTION_AVAILABILITY_TEMPLATE_RELEASE,
|
|
|
|
CLI_OPTION_AVAILABILITY_HIDDEN,
|
|
|
|
};
|
|
|
|
|
2022-03-12 01:04:14 +00:00
|
|
|
static void print_header(bool p_rich);
|
2020-02-15 20:37:48 +00:00
|
|
|
static void print_help_copyright(const char *p_notice);
|
|
|
|
static void print_help_title(const char *p_title);
|
|
|
|
static void print_help_option(const char *p_option, const char *p_description, CLIOptionAvailability p_availability = CLI_OPTION_AVAILABILITY_TEMPLATE_RELEASE);
|
|
|
|
static String format_help_option(const char *p_option);
|
2014-02-10 01:10:30 +00:00
|
|
|
static void print_help(const char *p_binary);
|
|
|
|
static uint64_t last_ticks;
|
2022-04-11 22:23:22 +00:00
|
|
|
static uint32_t hide_print_fps_attempts;
|
2018-05-28 11:47:09 +00:00
|
|
|
static uint32_t frames;
|
2014-02-10 01:10:30 +00:00
|
|
|
static uint32_t frame;
|
|
|
|
static bool force_redraw_requested;
|
2019-01-24 16:09:05 +00:00
|
|
|
static int iterating;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
Main: Fixup bogus fallback to project manager with more bolognese
WARNING: Hacks everywhere!
The logic in `main.cpp` is due a full rewrite as it's extremely hacky,
splitting argument parsing over several functions, with a mess of global state
and assumptions about what combinations of arguments or lack thereof should
mean in terms of what we want to read: game, editor, project manager, or
command line tools such as `--doctool`, `--export` or `--script`.
Until this is fully rewritten, this patch hacks things some more to ensure
that we don't fall back to the project manager in cases where it's not
warranted, and especially not *too late*, as it can mean that we haven't
properly initialized stuff like `EditorPaths` needed by the PM (which in turn
impacts what kind of path will be used for logs and the shader cache, etc...
the rabbit hole goes deep).
Fixes #41435.
Fixes #49392.
Fixes #49658.
Fixes https://github.com/godotengine/godot/issues/38202#issuecomment-773158477.
2021-06-16 17:08:29 +00:00
|
|
|
static bool is_cmdline_tool();
|
2022-08-13 19:52:03 +00:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
enum CLIScope {
|
|
|
|
CLI_SCOPE_TOOL, // Editor and project manager.
|
|
|
|
CLI_SCOPE_PROJECT,
|
|
|
|
};
|
|
|
|
static const Vector<String> &get_forwardable_cli_arguments(CLIScope p_scope);
|
|
|
|
#endif
|
|
|
|
|
2020-07-20 16:35:34 +00:00
|
|
|
static int test_entrypoint(int argc, char *argv[], bool &tests_need_run);
|
2014-02-10 01:10:30 +00:00
|
|
|
static Error setup(const char *execpath, int argc, char *argv[], bool p_second_phase = true);
|
2024-07-03 09:37:14 +00:00
|
|
|
static Error setup2(bool p_show_boot_logo = true); // The thread calling setup2() will effectively become the main thread.
|
2021-12-14 01:44:12 +00:00
|
|
|
static String get_rendering_driver_name();
|
2024-07-03 09:37:14 +00:00
|
|
|
static void setup_boot_logo();
|
2020-08-02 18:30:56 +00:00
|
|
|
#ifdef TESTS_ENABLED
|
|
|
|
static Error test_setup();
|
|
|
|
static void test_cleanup();
|
|
|
|
#endif
|
2024-03-06 17:50:35 +00:00
|
|
|
static int start();
|
2018-09-20 09:45:05 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
static bool iteration();
|
|
|
|
static void force_redraw();
|
2018-09-20 09:45:05 +00:00
|
|
|
|
2019-01-22 16:17:39 +00:00
|
|
|
static bool is_iterating();
|
|
|
|
|
2021-02-22 10:06:33 +00:00
|
|
|
static void cleanup(bool p_force = false);
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2022-11-01 14:29:38 +00:00
|
|
|
// Test main override is for the testing behavior.
|
2020-07-20 16:35:34 +00:00
|
|
|
#define TEST_MAIN_OVERRIDE \
|
|
|
|
bool run_test = false; \
|
|
|
|
int return_code = Main::test_entrypoint(argc, argv, run_test); \
|
|
|
|
if (run_test) { \
|
|
|
|
return return_code; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TEST_MAIN_PARAM_OVERRIDE(argc, argv) \
|
|
|
|
bool run_test = false; \
|
|
|
|
int return_code = Main::test_entrypoint(argc, argv, run_test); \
|
|
|
|
if (run_test) { \
|
|
|
|
return return_code; \
|
|
|
|
}
|
|
|
|
|
2018-09-20 09:45:05 +00:00
|
|
|
#endif // MAIN_H
|