Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/main/main.h
9887 views
1
/**************************************************************************/
2
/* main.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/os/thread.h"
34
#include "core/typedefs.h"
35
36
template <typename T>
37
class Vector;
38
39
class Main {
40
enum CLIOptionAvailability {
41
CLI_OPTION_AVAILABILITY_EDITOR,
42
CLI_OPTION_AVAILABILITY_TEMPLATE_DEBUG,
43
CLI_OPTION_AVAILABILITY_TEMPLATE_RELEASE,
44
CLI_OPTION_AVAILABILITY_HIDDEN,
45
};
46
47
static void print_header(bool p_rich);
48
static void print_help_copyright(const char *p_notice);
49
static void print_help_title(const char *p_title);
50
static void print_help_option(const char *p_option, const char *p_description, CLIOptionAvailability p_availability = CLI_OPTION_AVAILABILITY_TEMPLATE_RELEASE);
51
static String format_help_option(const char *p_option);
52
static void print_help(const char *p_binary);
53
static uint64_t last_ticks;
54
static uint32_t hide_print_fps_attempts;
55
static uint32_t frames;
56
static uint32_t frame;
57
static bool force_redraw_requested;
58
static int iterating;
59
60
public:
61
static bool is_cmdline_tool();
62
#ifdef TOOLS_ENABLED
63
enum CLIScope {
64
CLI_SCOPE_TOOL, // Editor and project manager.
65
CLI_SCOPE_PROJECT,
66
};
67
static const Vector<String> &get_forwardable_cli_arguments(CLIScope p_scope);
68
#endif
69
70
static int test_entrypoint(int argc, char *argv[], bool &tests_need_run);
71
static Error setup(const char *execpath, int argc, char *argv[], bool p_second_phase = true);
72
static Error setup2(bool p_show_boot_logo = true); // The thread calling setup2() will effectively become the main thread.
73
static String get_rendering_driver_name();
74
static void setup_boot_logo();
75
#ifdef TESTS_ENABLED
76
static Error test_setup();
77
static void test_cleanup();
78
#endif
79
static int start();
80
81
static bool iteration();
82
static void force_redraw();
83
84
static bool is_iterating();
85
86
static void cleanup(bool p_force = false);
87
};
88
89
// Test main override is for the testing behavior.
90
#define TEST_MAIN_OVERRIDE \
91
bool run_test = false; \
92
int return_code = Main::test_entrypoint(argc, argv, run_test); \
93
if (run_test) { \
94
return return_code; \
95
}
96
97
#define TEST_MAIN_PARAM_OVERRIDE(argc, argv) \
98
bool run_test = false; \
99
int return_code = Main::test_entrypoint(argc, argv, run_test); \
100
if (run_test) { \
101
return return_code; \
102
}
103
104