os.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  1. /*************************************************************************/
  2. /* os.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  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. #include "os.h"
  31. #include "core/config/project_settings.h"
  32. #include "core/input/input.h"
  33. #include "core/io/dir_access.h"
  34. #include "core/io/file_access.h"
  35. #include "core/os/midi_driver.h"
  36. #include "core/version_generated.gen.h"
  37. #include <stdarg.h>
  38. OS *OS::singleton = nullptr;
  39. uint64_t OS::target_ticks = 0;
  40. OS *OS::get_singleton() {
  41. return singleton;
  42. }
  43. uint64_t OS::get_ticks_msec() const {
  44. return get_ticks_usec() / 1000ULL;
  45. }
  46. double OS::get_unix_time() const {
  47. return 0;
  48. }
  49. void OS::debug_break() {
  50. // something
  51. }
  52. void OS::_set_logger(CompositeLogger *p_logger) {
  53. if (_logger) {
  54. memdelete(_logger);
  55. }
  56. _logger = p_logger;
  57. }
  58. void OS::add_logger(Logger *p_logger) {
  59. if (!_logger) {
  60. Vector<Logger *> loggers;
  61. loggers.push_back(p_logger);
  62. _logger = memnew(CompositeLogger(loggers));
  63. } else {
  64. _logger->add_logger(p_logger);
  65. }
  66. }
  67. void OS::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, Logger::ErrorType p_type) {
  68. if (!_stderr_enabled) {
  69. return;
  70. }
  71. if (_logger) {
  72. _logger->log_error(p_function, p_file, p_line, p_code, p_rationale, p_editor_notify, p_type);
  73. }
  74. }
  75. void OS::print(const char *p_format, ...) {
  76. if (!_stdout_enabled) {
  77. return;
  78. }
  79. va_list argp;
  80. va_start(argp, p_format);
  81. if (_logger) {
  82. _logger->logv(p_format, argp, false);
  83. }
  84. va_end(argp);
  85. }
  86. void OS::print_rich(const char *p_format, ...) {
  87. if (!_stdout_enabled) {
  88. return;
  89. }
  90. va_list argp;
  91. va_start(argp, p_format);
  92. if (_logger) {
  93. _logger->logv(p_format, argp, false);
  94. }
  95. va_end(argp);
  96. }
  97. void OS::printerr(const char *p_format, ...) {
  98. if (!_stderr_enabled) {
  99. return;
  100. }
  101. va_list argp;
  102. va_start(argp, p_format);
  103. if (_logger) {
  104. _logger->logv(p_format, argp, true);
  105. }
  106. va_end(argp);
  107. }
  108. void OS::alert(const String &p_alert, const String &p_title) {
  109. fprintf(stderr, "%s: %s\n", p_title.utf8().get_data(), p_alert.utf8().get_data());
  110. }
  111. void OS::set_low_processor_usage_mode(bool p_enabled) {
  112. low_processor_usage_mode = p_enabled;
  113. }
  114. bool OS::is_in_low_processor_usage_mode() const {
  115. return low_processor_usage_mode;
  116. }
  117. void OS::set_low_processor_usage_mode_sleep_usec(int p_usec) {
  118. low_processor_usage_mode_sleep_usec = p_usec;
  119. }
  120. int OS::get_low_processor_usage_mode_sleep_usec() const {
  121. return low_processor_usage_mode_sleep_usec;
  122. }
  123. String OS::get_executable_path() const {
  124. return _execpath;
  125. }
  126. int OS::get_process_id() const {
  127. return -1;
  128. }
  129. void OS::vibrate_handheld(int p_duration_ms) {
  130. WARN_PRINT("vibrate_handheld() only works with Android, iOS and HTML5");
  131. }
  132. bool OS::is_stdout_verbose() const {
  133. return _verbose_stdout;
  134. }
  135. bool OS::is_stdout_debug_enabled() const {
  136. return _debug_stdout;
  137. }
  138. bool OS::is_stdout_enabled() const {
  139. return _stdout_enabled;
  140. }
  141. bool OS::is_stderr_enabled() const {
  142. return _stderr_enabled;
  143. }
  144. void OS::set_stdout_enabled(bool p_enabled) {
  145. _stdout_enabled = p_enabled;
  146. }
  147. void OS::set_stderr_enabled(bool p_enabled) {
  148. _stderr_enabled = p_enabled;
  149. }
  150. int OS::get_exit_code() const {
  151. return _exit_code;
  152. }
  153. void OS::set_exit_code(int p_code) {
  154. _exit_code = p_code;
  155. }
  156. String OS::get_locale() const {
  157. return "en";
  158. }
  159. // Non-virtual helper to extract the 2 or 3-letter language code from
  160. // `get_locale()` in a way that's consistent for all platforms.
  161. String OS::get_locale_language() const {
  162. return get_locale().left(3).replace("_", "");
  163. }
  164. // Embedded PCK offset.
  165. uint64_t OS::get_embedded_pck_offset() const {
  166. return 0;
  167. }
  168. // Helper function to ensure that a dir name/path will be valid on the OS
  169. String OS::get_safe_dir_name(const String &p_dir_name, bool p_allow_dir_separator) const {
  170. Vector<String> invalid_chars = String(": * ? \" < > |").split(" ");
  171. if (p_allow_dir_separator) {
  172. // Dir separators are allowed, but disallow ".." to avoid going up the filesystem
  173. invalid_chars.push_back("..");
  174. } else {
  175. invalid_chars.push_back("/");
  176. }
  177. String safe_dir_name = p_dir_name.replace("\\", "/").strip_edges();
  178. for (int i = 0; i < invalid_chars.size(); i++) {
  179. safe_dir_name = safe_dir_name.replace(invalid_chars[i], "-");
  180. }
  181. return safe_dir_name;
  182. }
  183. // Path to data, config, cache, etc. OS-specific folders
  184. // Get properly capitalized engine name for system paths
  185. String OS::get_godot_dir_name() const {
  186. // Default to lowercase, so only override when different case is needed
  187. return String(VERSION_SHORT_NAME).to_lower();
  188. }
  189. // OS equivalent of XDG_DATA_HOME
  190. String OS::get_data_path() const {
  191. return ".";
  192. }
  193. // OS equivalent of XDG_CONFIG_HOME
  194. String OS::get_config_path() const {
  195. return ".";
  196. }
  197. // OS equivalent of XDG_CACHE_HOME
  198. String OS::get_cache_path() const {
  199. return ".";
  200. }
  201. // Path to macOS .app bundle resources
  202. String OS::get_bundle_resource_dir() const {
  203. return ".";
  204. }
  205. // Path to macOS .app bundle embedded icon
  206. String OS::get_bundle_icon_path() const {
  207. return String();
  208. }
  209. // OS specific path for user://
  210. String OS::get_user_data_dir() const {
  211. return ".";
  212. }
  213. // Absolute path to res://
  214. String OS::get_resource_dir() const {
  215. return ProjectSettings::get_singleton()->get_resource_path();
  216. }
  217. // Access system-specific dirs like Documents, Downloads, etc.
  218. String OS::get_system_dir(SystemDir p_dir, bool p_shared_storage) const {
  219. return ".";
  220. }
  221. Error OS::shell_open(String p_uri) {
  222. return ERR_UNAVAILABLE;
  223. }
  224. // implement these with the canvas?
  225. uint64_t OS::get_static_memory_usage() const {
  226. return Memory::get_mem_usage();
  227. }
  228. uint64_t OS::get_static_memory_peak_usage() const {
  229. return Memory::get_mem_max_usage();
  230. }
  231. Error OS::set_cwd(const String &p_cwd) {
  232. return ERR_CANT_OPEN;
  233. }
  234. uint64_t OS::get_free_static_memory() const {
  235. return Memory::get_mem_available();
  236. }
  237. void OS::yield() {
  238. }
  239. void OS::ensure_user_data_dir() {
  240. String dd = get_user_data_dir();
  241. if (DirAccess::exists(dd)) {
  242. return;
  243. }
  244. Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  245. Error err = da->make_dir_recursive(dd);
  246. ERR_FAIL_COND_MSG(err != OK, "Error attempting to create data dir: " + dd + ".");
  247. }
  248. String OS::get_model_name() const {
  249. return "GenericDevice";
  250. }
  251. void OS::set_cmdline(const char *p_execpath, const List<String> &p_args, const List<String> &p_user_args) {
  252. _execpath = String::utf8(p_execpath);
  253. _cmdline = p_args;
  254. _user_args = p_user_args;
  255. }
  256. String OS::get_unique_id() const {
  257. ERR_FAIL_V("");
  258. }
  259. int OS::get_processor_count() const {
  260. return 1;
  261. }
  262. String OS::get_processor_name() const {
  263. return "";
  264. }
  265. bool OS::can_use_threads() const {
  266. #ifdef NO_THREADS
  267. return false;
  268. #else
  269. return true;
  270. #endif
  271. }
  272. void OS::set_has_server_feature_callback(HasServerFeatureCallback p_callback) {
  273. has_server_feature_callback = p_callback;
  274. }
  275. bool OS::has_feature(const String &p_feature) {
  276. // Feature tags are always lowercase for consistency.
  277. if (p_feature == get_name().to_lower()) {
  278. return true;
  279. }
  280. // Catch-all `linuxbsd` feature tag that matches on both Linux and BSD.
  281. // This is the one exposed in the project settings dialog.
  282. if (p_feature == "linuxbsd" && (get_name() == "Linux" || get_name() == "FreeBSD" || get_name() == "NetBSD" || get_name() == "OpenBSD" || get_name() == "BSD")) {
  283. return true;
  284. }
  285. if (p_feature == "movie") {
  286. return _writing_movie;
  287. }
  288. #ifdef DEBUG_ENABLED
  289. if (p_feature == "debug") {
  290. return true;
  291. }
  292. #else
  293. if (p_feature == "release") {
  294. return true;
  295. }
  296. #endif
  297. #ifdef TOOLS_ENABLED
  298. if (p_feature == "editor") {
  299. return true;
  300. }
  301. #else
  302. if (p_feature == "standalone") {
  303. return true;
  304. }
  305. #endif
  306. if (sizeof(void *) == 8 && p_feature == "64") {
  307. return true;
  308. }
  309. if (sizeof(void *) == 4 && p_feature == "32") {
  310. return true;
  311. }
  312. #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__) || defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(_M_X64)
  313. #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__) || defined(_M_X64)
  314. if (p_feature == "x86_64") {
  315. return true;
  316. }
  317. #elif defined(__i386) || defined(__i386__) || defined(_M_IX86)
  318. if (p_feature == "x86_32") {
  319. return true;
  320. }
  321. #endif
  322. if (p_feature == "x86") {
  323. return true;
  324. }
  325. #elif defined(__arm__) || defined(__aarch64__) || defined(_M_ARM) || defined(_M_ARM64)
  326. #if defined(__aarch64__) || defined(_M_ARM64)
  327. if (p_feature == "arm64") {
  328. return true;
  329. }
  330. #elif defined(__arm__) || defined(_M_ARM)
  331. if (p_feature == "arm32") {
  332. return true;
  333. }
  334. #endif
  335. #if defined(__ARM_ARCH_7A__)
  336. if (p_feature == "armv7a" || p_feature == "armv7") {
  337. return true;
  338. }
  339. #endif
  340. #if defined(__ARM_ARCH_7S__)
  341. if (p_feature == "armv7s" || p_feature == "armv7") {
  342. return true;
  343. }
  344. #endif
  345. if (p_feature == "arm") {
  346. return true;
  347. }
  348. #elif defined(__riscv)
  349. #if __riscv_xlen == 8
  350. if (p_feature == "rv64") {
  351. return true;
  352. }
  353. #endif
  354. if (p_feature == "riscv") {
  355. return true;
  356. }
  357. #elif defined(__powerpc__)
  358. #if defined(__powerpc64__)
  359. if (p_feature == "ppc64") {
  360. return true;
  361. }
  362. #endif
  363. if (p_feature == "ppc") {
  364. return true;
  365. }
  366. #elif defined(__wasm__)
  367. #if defined(__wasm64__)
  368. if (p_feature == "wasm64") {
  369. return true;
  370. }
  371. #elif defined(__wasm32__)
  372. if (p_feature == "wasm32") {
  373. return true;
  374. }
  375. #endif
  376. if (p_feature == "wasm") {
  377. return true;
  378. }
  379. #endif
  380. if (_check_internal_feature_support(p_feature)) {
  381. return true;
  382. }
  383. if (has_server_feature_callback && has_server_feature_callback(p_feature)) {
  384. return true;
  385. }
  386. if (ProjectSettings::get_singleton()->has_custom_feature(p_feature)) {
  387. return true;
  388. }
  389. return false;
  390. }
  391. void OS::set_restart_on_exit(bool p_restart, const List<String> &p_restart_arguments) {
  392. restart_on_exit = p_restart;
  393. restart_commandline = p_restart_arguments;
  394. }
  395. bool OS::is_restart_on_exit_set() const {
  396. return restart_on_exit;
  397. }
  398. List<String> OS::get_restart_on_exit_arguments() const {
  399. return restart_commandline;
  400. }
  401. PackedStringArray OS::get_connected_midi_inputs() {
  402. if (MIDIDriver::get_singleton()) {
  403. return MIDIDriver::get_singleton()->get_connected_inputs();
  404. }
  405. PackedStringArray list;
  406. ERR_FAIL_V_MSG(list, vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  407. }
  408. void OS::open_midi_inputs() {
  409. if (MIDIDriver::get_singleton()) {
  410. MIDIDriver::get_singleton()->open();
  411. } else {
  412. ERR_PRINT(vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  413. }
  414. }
  415. void OS::close_midi_inputs() {
  416. if (MIDIDriver::get_singleton()) {
  417. MIDIDriver::get_singleton()->close();
  418. } else {
  419. ERR_PRINT(vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  420. }
  421. }
  422. void OS::add_frame_delay(bool p_can_draw) {
  423. const uint32_t frame_delay = Engine::get_singleton()->get_frame_delay();
  424. if (frame_delay) {
  425. // Add fixed frame delay to decrease CPU/GPU usage. This doesn't take
  426. // the actual frame time into account.
  427. // Due to the high fluctuation of the actual sleep duration, it's not recommended
  428. // to use this as a FPS limiter.
  429. delay_usec(frame_delay * 1000);
  430. }
  431. // Add a dynamic frame delay to decrease CPU/GPU usage. This takes the
  432. // previous frame time into account for a smoother result.
  433. uint64_t dynamic_delay = 0;
  434. if (is_in_low_processor_usage_mode() || !p_can_draw) {
  435. dynamic_delay = get_low_processor_usage_mode_sleep_usec();
  436. }
  437. const int target_fps = Engine::get_singleton()->get_target_fps();
  438. if (target_fps > 0 && !Engine::get_singleton()->is_editor_hint()) {
  439. // Override the low processor usage mode sleep delay if the target FPS is lower.
  440. dynamic_delay = MAX(dynamic_delay, (uint64_t)(1000000 / target_fps));
  441. }
  442. if (dynamic_delay > 0) {
  443. target_ticks += dynamic_delay;
  444. uint64_t current_ticks = get_ticks_usec();
  445. if (current_ticks < target_ticks) {
  446. delay_usec(target_ticks - current_ticks);
  447. }
  448. current_ticks = get_ticks_usec();
  449. target_ticks = MIN(MAX(target_ticks, current_ticks - dynamic_delay), current_ticks + dynamic_delay);
  450. }
  451. }
  452. OS::OS() {
  453. singleton = this;
  454. Vector<Logger *> loggers;
  455. loggers.push_back(memnew(StdLogger));
  456. _set_logger(memnew(CompositeLogger(loggers)));
  457. }
  458. OS::~OS() {
  459. if (_logger) {
  460. memdelete(_logger);
  461. }
  462. singleton = nullptr;
  463. }