os.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. /**************************************************************************/
  2. /* os.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 OS_H
  31. #define OS_H
  32. #include "core/config/engine.h"
  33. #include "core/io/image.h"
  34. #include "core/io/logger.h"
  35. #include "core/io/remote_filesystem_client.h"
  36. #include "core/os/time_enums.h"
  37. #include "core/string/ustring.h"
  38. #include "core/templates/list.h"
  39. #include "core/templates/vector.h"
  40. #include <stdarg.h>
  41. #include <stdlib.h>
  42. class OS {
  43. static OS *singleton;
  44. static uint64_t target_ticks;
  45. String _execpath;
  46. List<String> _cmdline;
  47. List<String> _user_args;
  48. bool _keep_screen_on = true; // set default value to true, because this had been true before godot 2.0.
  49. bool low_processor_usage_mode = false;
  50. int low_processor_usage_mode_sleep_usec = 10000;
  51. bool _delta_smoothing_enabled = false;
  52. bool _verbose_stdout = false;
  53. bool _debug_stdout = false;
  54. String _local_clipboard;
  55. int _exit_code = EXIT_FAILURE; // unexpected exit is marked as failure
  56. bool _allow_hidpi = false;
  57. bool _allow_layered = false;
  58. bool _stdout_enabled = true;
  59. bool _stderr_enabled = true;
  60. bool _writing_movie = false;
  61. CompositeLogger *_logger = nullptr;
  62. bool restart_on_exit = false;
  63. List<String> restart_commandline;
  64. // for the user interface we keep a record of the current display driver
  65. // so we can retrieve the rendering drivers available
  66. int _display_driver_id = -1;
  67. String _current_rendering_driver_name;
  68. String _current_rendering_method;
  69. RemoteFilesystemClient default_rfs;
  70. // For tracking benchmark data
  71. bool use_benchmark = false;
  72. String benchmark_file;
  73. HashMap<String, uint64_t> start_benchmark_from;
  74. Dictionary startup_benchmark_json;
  75. protected:
  76. void _set_logger(CompositeLogger *p_logger);
  77. public:
  78. typedef void (*ImeCallback)(void *p_inp, String p_text, Point2 p_selection);
  79. typedef bool (*HasServerFeatureCallback)(const String &p_feature);
  80. enum RenderThreadMode {
  81. RENDER_THREAD_UNSAFE,
  82. RENDER_THREAD_SAFE,
  83. RENDER_SEPARATE_THREAD
  84. };
  85. protected:
  86. friend class Main;
  87. // Needed by tests to setup command-line args.
  88. friend int test_main(int argc, char *argv[]);
  89. HasServerFeatureCallback has_server_feature_callback = nullptr;
  90. RenderThreadMode _render_thread_mode = RENDER_THREAD_SAFE;
  91. // Functions used by Main to initialize/deinitialize the OS.
  92. void add_logger(Logger *p_logger);
  93. virtual void initialize() = 0;
  94. virtual void initialize_joypads() = 0;
  95. void set_current_rendering_driver_name(String p_driver_name) { _current_rendering_driver_name = p_driver_name; }
  96. void set_current_rendering_method(String p_name) { _current_rendering_method = p_name; }
  97. void set_display_driver_id(int p_display_driver_id) { _display_driver_id = p_display_driver_id; }
  98. virtual void set_main_loop(MainLoop *p_main_loop) = 0;
  99. virtual void delete_main_loop() = 0;
  100. virtual void finalize() = 0;
  101. virtual void finalize_core() = 0;
  102. virtual void set_cmdline(const char *p_execpath, const List<String> &p_args, const List<String> &p_user_args);
  103. virtual bool _check_internal_feature_support(const String &p_feature) = 0;
  104. public:
  105. typedef int64_t ProcessID;
  106. static OS *get_singleton();
  107. String get_current_rendering_driver_name() const { return _current_rendering_driver_name; }
  108. String get_current_rendering_method() const { return _current_rendering_method; }
  109. int get_display_driver_id() const { return _display_driver_id; }
  110. virtual Vector<String> get_video_adapter_driver_info() const = 0;
  111. void print_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify = false, Logger::ErrorType p_type = Logger::ERR_ERROR);
  112. void print(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3;
  113. void print_rich(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3;
  114. void printerr(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3;
  115. virtual String get_stdin_string() = 0;
  116. virtual Error get_entropy(uint8_t *r_buffer, int p_bytes) = 0; // Should return cryptographically-safe random bytes.
  117. virtual String get_system_ca_certificates() { return ""; } // Concatenated certificates in PEM format.
  118. virtual PackedStringArray get_connected_midi_inputs();
  119. virtual void open_midi_inputs();
  120. virtual void close_midi_inputs();
  121. virtual void alert(const String &p_alert, const String &p_title = "ALERT!");
  122. virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false, String *r_resolved_path = nullptr) { return ERR_UNAVAILABLE; }
  123. virtual Error close_dynamic_library(void *p_library_handle) { return ERR_UNAVAILABLE; }
  124. virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional = false) { return ERR_UNAVAILABLE; }
  125. virtual void set_low_processor_usage_mode(bool p_enabled);
  126. virtual bool is_in_low_processor_usage_mode() const;
  127. virtual void set_low_processor_usage_mode_sleep_usec(int p_usec);
  128. virtual int get_low_processor_usage_mode_sleep_usec() const;
  129. void set_delta_smoothing(bool p_enabled);
  130. bool is_delta_smoothing_enabled() const;
  131. virtual Vector<String> get_system_fonts() const { return Vector<String>(); };
  132. virtual String get_system_font_path(const String &p_font_name, int p_weight = 400, int p_stretch = 100, bool p_italic = false) const { return String(); };
  133. virtual Vector<String> get_system_font_path_for_text(const String &p_font_name, const String &p_text, const String &p_locale = String(), const String &p_script = String(), int p_weight = 400, int p_stretch = 100, bool p_italic = false) const { return Vector<String>(); };
  134. virtual String get_executable_path() const;
  135. virtual Error execute(const String &p_path, const List<String> &p_arguments, String *r_pipe = nullptr, int *r_exitcode = nullptr, bool read_stderr = false, Mutex *p_pipe_mutex = nullptr, bool p_open_console = false) = 0;
  136. virtual Error create_process(const String &p_path, const List<String> &p_arguments, ProcessID *r_child_id = nullptr, bool p_open_console = false) = 0;
  137. virtual Error create_instance(const List<String> &p_arguments, ProcessID *r_child_id = nullptr) { return create_process(get_executable_path(), p_arguments, r_child_id); };
  138. virtual Error kill(const ProcessID &p_pid) = 0;
  139. virtual int get_process_id() const;
  140. virtual bool is_process_running(const ProcessID &p_pid) const = 0;
  141. virtual void vibrate_handheld(int p_duration_ms = 500) {}
  142. virtual Error shell_open(String p_uri);
  143. virtual Error shell_show_in_file_manager(String p_path, bool p_open_folder = true);
  144. virtual Error set_cwd(const String &p_cwd);
  145. virtual bool has_environment(const String &p_var) const = 0;
  146. virtual String get_environment(const String &p_var) const = 0;
  147. virtual void set_environment(const String &p_var, const String &p_value) const = 0;
  148. virtual void unset_environment(const String &p_var) const = 0;
  149. virtual String get_name() const = 0;
  150. virtual String get_identifier() const;
  151. virtual String get_distribution_name() const = 0;
  152. virtual String get_version() const = 0;
  153. virtual List<String> get_cmdline_args() const { return _cmdline; }
  154. virtual List<String> get_cmdline_user_args() const { return _user_args; }
  155. virtual List<String> get_cmdline_platform_args() const { return List<String>(); }
  156. virtual String get_model_name() const;
  157. bool is_layered_allowed() const { return _allow_layered; }
  158. bool is_hidpi_allowed() const { return _allow_hidpi; }
  159. void ensure_user_data_dir();
  160. virtual MainLoop *get_main_loop() const = 0;
  161. virtual void yield();
  162. struct DateTime {
  163. int64_t year;
  164. Month month;
  165. uint8_t day;
  166. Weekday weekday;
  167. uint8_t hour;
  168. uint8_t minute;
  169. uint8_t second;
  170. bool dst;
  171. };
  172. struct TimeZoneInfo {
  173. int bias;
  174. String name;
  175. };
  176. virtual DateTime get_datetime(bool utc = false) const = 0;
  177. virtual TimeZoneInfo get_time_zone_info() const = 0;
  178. virtual double get_unix_time() const;
  179. virtual void delay_usec(uint32_t p_usec) const = 0;
  180. virtual void add_frame_delay(bool p_can_draw);
  181. virtual uint64_t get_ticks_usec() const = 0;
  182. uint64_t get_ticks_msec() const;
  183. virtual bool is_userfs_persistent() const { return true; }
  184. bool is_stdout_verbose() const;
  185. bool is_stdout_debug_enabled() const;
  186. bool is_stdout_enabled() const;
  187. bool is_stderr_enabled() const;
  188. void set_stdout_enabled(bool p_enabled);
  189. void set_stderr_enabled(bool p_enabled);
  190. virtual void disable_crash_handler() {}
  191. virtual bool is_disable_crash_handler() const { return false; }
  192. virtual void initialize_debugging() {}
  193. virtual uint64_t get_static_memory_usage() const;
  194. virtual uint64_t get_static_memory_peak_usage() const;
  195. virtual Dictionary get_memory_info() const;
  196. RenderThreadMode get_render_thread_mode() const { return _render_thread_mode; }
  197. virtual String get_locale() const;
  198. String get_locale_language() const;
  199. virtual uint64_t get_embedded_pck_offset() const;
  200. String get_safe_dir_name(const String &p_dir_name, bool p_allow_paths = false) const;
  201. virtual String get_godot_dir_name() const;
  202. virtual String get_data_path() const;
  203. virtual String get_config_path() const;
  204. virtual String get_cache_path() const;
  205. virtual String get_bundle_resource_dir() const;
  206. virtual String get_bundle_icon_path() const;
  207. virtual String get_user_data_dir() const;
  208. virtual String get_resource_dir() const;
  209. enum SystemDir {
  210. SYSTEM_DIR_DESKTOP,
  211. SYSTEM_DIR_DCIM,
  212. SYSTEM_DIR_DOCUMENTS,
  213. SYSTEM_DIR_DOWNLOADS,
  214. SYSTEM_DIR_MOVIES,
  215. SYSTEM_DIR_MUSIC,
  216. SYSTEM_DIR_PICTURES,
  217. SYSTEM_DIR_RINGTONES,
  218. };
  219. virtual String get_system_dir(SystemDir p_dir, bool p_shared_storage = true) const;
  220. virtual Error move_to_trash(const String &p_path) { return FAILED; }
  221. virtual int get_exit_code() const;
  222. // `set_exit_code` should only be used from `SceneTree` (or from a similar
  223. // level, e.g. from the `Main::start` if leaving without creating a `SceneTree`).
  224. // For other components, `SceneTree.quit()` should be used instead.
  225. virtual void set_exit_code(int p_code);
  226. virtual int get_processor_count() const;
  227. virtual String get_processor_name() const;
  228. virtual int get_default_thread_pool_size() const { return get_processor_count(); }
  229. virtual String get_unique_id() const;
  230. bool has_feature(const String &p_feature);
  231. void set_has_server_feature_callback(HasServerFeatureCallback p_callback);
  232. void set_restart_on_exit(bool p_restart, const List<String> &p_restart_arguments);
  233. bool is_restart_on_exit_set() const;
  234. List<String> get_restart_on_exit_arguments() const;
  235. virtual bool request_permission(const String &p_name) { return true; }
  236. virtual bool request_permissions() { return true; }
  237. virtual Vector<String> get_granted_permissions() const { return Vector<String>(); }
  238. // For recording / measuring benchmark data. Only enabled with tools
  239. void set_use_benchmark(bool p_use_benchmark);
  240. bool is_use_benchmark_set();
  241. void set_benchmark_file(const String &p_benchmark_file);
  242. String get_benchmark_file();
  243. virtual void benchmark_begin_measure(const String &p_what);
  244. virtual void benchmark_end_measure(const String &p_what);
  245. virtual void benchmark_dump();
  246. virtual void process_and_drop_events() {}
  247. virtual Error setup_remote_filesystem(const String &p_server_host, int p_port, const String &p_password, String &r_project_path);
  248. enum PreferredTextureFormat {
  249. PREFERRED_TEXTURE_FORMAT_S3TC_BPTC,
  250. PREFERRED_TEXTURE_FORMAT_ETC2_ASTC
  251. };
  252. virtual PreferredTextureFormat get_preferred_texture_format() const;
  253. OS();
  254. virtual ~OS();
  255. };
  256. #endif // OS_H