main.h 4.6 KB

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