engine.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /**************************************************************************/
  2. /* engine.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 ENGINE_H
  31. #define ENGINE_H
  32. #include "core/os/main_loop.h"
  33. #include "core/string/ustring.h"
  34. #include "core/templates/list.h"
  35. #include "core/templates/vector.h"
  36. template <typename T>
  37. class TypedArray;
  38. class Engine {
  39. public:
  40. struct Singleton {
  41. StringName name;
  42. Object *ptr = nullptr;
  43. StringName class_name; // Used for binding generation hinting.
  44. // Singleton scope flags.
  45. bool user_created = false;
  46. bool editor_only = false;
  47. Singleton(const StringName &p_name = StringName(), Object *p_ptr = nullptr, const StringName &p_class_name = StringName());
  48. };
  49. private:
  50. friend class Main;
  51. uint64_t frames_drawn = 0;
  52. uint32_t _frame_delay = 0;
  53. uint64_t _frame_ticks = 0;
  54. double _process_step = 0;
  55. int ips = 60;
  56. double physics_jitter_fix = 0.5;
  57. double _fps = 1;
  58. int _max_fps = 0;
  59. int _audio_output_latency = 0;
  60. double _time_scale = 1.0;
  61. uint64_t _physics_frames = 0;
  62. int max_physics_steps_per_frame = 8;
  63. double _physics_interpolation_fraction = 0.0f;
  64. bool abort_on_gpu_errors = false;
  65. bool use_validation_layers = false;
  66. bool generate_spirv_debug_info = false;
  67. int32_t gpu_idx = -1;
  68. uint64_t _process_frames = 0;
  69. bool _in_physics = false;
  70. List<Singleton> singletons;
  71. HashMap<StringName, Object *> singleton_ptrs;
  72. bool editor_hint = false;
  73. bool project_manager_hint = false;
  74. bool extension_reloading = false;
  75. static Engine *singleton;
  76. String write_movie_path;
  77. String shader_cache_path;
  78. public:
  79. static Engine *get_singleton();
  80. virtual void set_physics_ticks_per_second(int p_ips);
  81. virtual int get_physics_ticks_per_second() const;
  82. virtual void set_max_physics_steps_per_frame(int p_max_physics_steps);
  83. virtual int get_max_physics_steps_per_frame() const;
  84. void set_physics_jitter_fix(double p_threshold);
  85. double get_physics_jitter_fix() const;
  86. virtual void set_max_fps(int p_fps);
  87. virtual int get_max_fps() const;
  88. virtual void set_audio_output_latency(int p_msec);
  89. virtual int get_audio_output_latency() const;
  90. virtual double get_frames_per_second() const { return _fps; }
  91. uint64_t get_frames_drawn();
  92. uint64_t get_physics_frames() const { return _physics_frames; }
  93. uint64_t get_process_frames() const { return _process_frames; }
  94. bool is_in_physics_frame() const { return _in_physics; }
  95. uint64_t get_frame_ticks() const { return _frame_ticks; }
  96. double get_process_step() const { return _process_step; }
  97. double get_physics_interpolation_fraction() const { return _physics_interpolation_fraction; }
  98. void set_time_scale(double p_scale);
  99. double get_time_scale() const;
  100. void set_print_error_messages(bool p_enabled);
  101. bool is_printing_error_messages() const;
  102. void set_frame_delay(uint32_t p_msec);
  103. uint32_t get_frame_delay() const;
  104. void add_singleton(const Singleton &p_singleton);
  105. void get_singletons(List<Singleton> *p_singletons);
  106. bool has_singleton(const StringName &p_name) const;
  107. Object *get_singleton_object(const StringName &p_name) const;
  108. void remove_singleton(const StringName &p_name);
  109. bool is_singleton_user_created(const StringName &p_name) const;
  110. bool is_singleton_editor_only(const StringName &p_name) const;
  111. #ifdef TOOLS_ENABLED
  112. _FORCE_INLINE_ void set_editor_hint(bool p_enabled) { editor_hint = p_enabled; }
  113. _FORCE_INLINE_ bool is_editor_hint() const { return editor_hint; }
  114. _FORCE_INLINE_ void set_project_manager_hint(bool p_enabled) { project_manager_hint = p_enabled; }
  115. _FORCE_INLINE_ bool is_project_manager_hint() const { return project_manager_hint; }
  116. _FORCE_INLINE_ void set_extension_reloading_enabled(bool p_enabled) { extension_reloading = p_enabled; }
  117. _FORCE_INLINE_ bool is_extension_reloading_enabled() const { return extension_reloading; }
  118. #else
  119. _FORCE_INLINE_ void set_editor_hint(bool p_enabled) {}
  120. _FORCE_INLINE_ bool is_editor_hint() const { return false; }
  121. _FORCE_INLINE_ void set_project_manager_hint(bool p_enabled) {}
  122. _FORCE_INLINE_ bool is_project_manager_hint() const { return false; }
  123. _FORCE_INLINE_ void set_extension_reloading_enabled(bool p_enabled) {}
  124. _FORCE_INLINE_ bool is_extension_reloading_enabled() const { return false; }
  125. #endif
  126. Dictionary get_version_info() const;
  127. Dictionary get_author_info() const;
  128. TypedArray<Dictionary> get_copyright_info() const;
  129. Dictionary get_donor_info() const;
  130. Dictionary get_license_info() const;
  131. String get_license_text() const;
  132. void set_write_movie_path(const String &p_path);
  133. String get_write_movie_path() const;
  134. String get_architecture_name() const;
  135. void set_shader_cache_path(const String &p_path);
  136. String get_shader_cache_path() const;
  137. bool is_abort_on_gpu_errors_enabled() const;
  138. bool is_validation_layers_enabled() const;
  139. bool is_generate_spirv_debug_info_enabled() const;
  140. int32_t get_gpu_index() const;
  141. Engine();
  142. virtual ~Engine() {}
  143. };
  144. #endif // ENGINE_H