main.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. #pragma once
  31. #include "core/os/thread.h"
  32. #include "core/typedefs.h"
  33. template <typename T>
  34. class Vector;
  35. class Main {
  36. enum CLIOptionAvailability {
  37. CLI_OPTION_AVAILABILITY_EDITOR,
  38. CLI_OPTION_AVAILABILITY_TEMPLATE_DEBUG,
  39. CLI_OPTION_AVAILABILITY_TEMPLATE_RELEASE,
  40. CLI_OPTION_AVAILABILITY_HIDDEN,
  41. };
  42. static void print_header(bool p_rich);
  43. static void print_help_copyright(const char *p_notice);
  44. static void print_help_title(const char *p_title);
  45. static void print_help_option(const char *p_option, const char *p_description, CLIOptionAvailability p_availability = CLI_OPTION_AVAILABILITY_TEMPLATE_RELEASE);
  46. static String format_help_option(const char *p_option);
  47. static void print_help(const char *p_binary);
  48. static uint64_t last_ticks;
  49. static uint32_t hide_print_fps_attempts;
  50. static uint32_t frames;
  51. static uint32_t frame;
  52. static bool force_redraw_requested;
  53. static int iterating;
  54. public:
  55. static bool is_cmdline_tool();
  56. #ifdef TOOLS_ENABLED
  57. enum CLIScope {
  58. CLI_SCOPE_TOOL, // Editor and project manager.
  59. CLI_SCOPE_PROJECT,
  60. };
  61. static const Vector<String> &get_forwardable_cli_arguments(CLIScope p_scope);
  62. #endif
  63. static int test_entrypoint(int argc, char *argv[], bool &tests_need_run);
  64. static Error setup(const char *execpath, int argc, char *argv[], bool p_second_phase = true);
  65. static Error setup2(bool p_show_boot_logo = true); // The thread calling setup2() will effectively become the main thread.
  66. static String get_rendering_driver_name();
  67. static void setup_boot_logo();
  68. #ifdef TESTS_ENABLED
  69. static Error test_setup();
  70. static void test_cleanup();
  71. #endif
  72. static int start();
  73. static bool iteration();
  74. static void force_redraw();
  75. static bool is_iterating();
  76. static void cleanup(bool p_force = false);
  77. };
  78. // Test main override is for the testing behavior.
  79. #define TEST_MAIN_OVERRIDE \
  80. bool run_test = false; \
  81. int return_code = Main::test_entrypoint(argc, argv, run_test); \
  82. if (run_test) { \
  83. return return_code; \
  84. }
  85. #define TEST_MAIN_PARAM_OVERRIDE(argc, argv) \
  86. bool run_test = false; \
  87. int return_code = Main::test_entrypoint(argc, argv, run_test); \
  88. if (run_test) { \
  89. return return_code; \
  90. }