2
0

os.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  1. /*************************************************************************/
  2. /* os.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 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/os/dir_access.h"
  32. #include "core/os/file_access.h"
  33. #include "core/os/input.h"
  34. #include "core/os/midi_driver.h"
  35. #include "core/project_settings.h"
  36. #include "core/version_generated.gen.h"
  37. #include "servers/audio_server.h"
  38. #include <stdarg.h>
  39. OS *OS::singleton = nullptr;
  40. uint64_t OS::target_ticks = 0;
  41. OS *OS::get_singleton() {
  42. return singleton;
  43. }
  44. uint32_t OS::get_ticks_msec() const {
  45. return get_ticks_usec() / 1000;
  46. }
  47. String OS::get_iso_date_time(bool local) const {
  48. OS::Date date = get_date(local);
  49. OS::Time time = get_time(local);
  50. String timezone;
  51. if (!local) {
  52. TimeZoneInfo zone = get_time_zone_info();
  53. if (zone.bias >= 0) {
  54. timezone = "+";
  55. }
  56. timezone = timezone + itos(zone.bias / 60).pad_zeros(2) + itos(zone.bias % 60).pad_zeros(2);
  57. } else {
  58. timezone = "Z";
  59. }
  60. return itos(date.year).pad_zeros(2) +
  61. "-" +
  62. itos(date.month).pad_zeros(2) +
  63. "-" +
  64. itos(date.day).pad_zeros(2) +
  65. "T" +
  66. itos(time.hour).pad_zeros(2) +
  67. ":" +
  68. itos(time.min).pad_zeros(2) +
  69. ":" +
  70. itos(time.sec).pad_zeros(2) +
  71. timezone;
  72. }
  73. uint64_t OS::get_splash_tick_msec() const {
  74. return _msec_splash;
  75. }
  76. uint64_t OS::get_unix_time() const {
  77. return 0;
  78. };
  79. uint64_t OS::get_system_time_secs() const {
  80. return 0;
  81. }
  82. uint64_t OS::get_system_time_msecs() const {
  83. return 0;
  84. }
  85. void OS::debug_break(){
  86. // something
  87. };
  88. void OS::_set_logger(CompositeLogger *p_logger) {
  89. if (_logger) {
  90. memdelete(_logger);
  91. }
  92. _logger = p_logger;
  93. }
  94. void OS::add_logger(Logger *p_logger) {
  95. if (!_logger) {
  96. Vector<Logger *> loggers;
  97. loggers.push_back(p_logger);
  98. _logger = memnew(CompositeLogger(loggers));
  99. } else {
  100. _logger->add_logger(p_logger);
  101. }
  102. }
  103. void OS::print_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, Logger::ErrorType p_type) {
  104. _logger->log_error(p_function, p_file, p_line, p_code, p_rationale, p_type);
  105. }
  106. void OS::print(const char *p_format, ...) {
  107. va_list argp;
  108. va_start(argp, p_format);
  109. _logger->logv(p_format, argp, false);
  110. va_end(argp);
  111. };
  112. void OS::printerr(const char *p_format, ...) {
  113. va_list argp;
  114. va_start(argp, p_format);
  115. _logger->logv(p_format, argp, true);
  116. va_end(argp);
  117. };
  118. void OS::set_keep_screen_on(bool p_enabled) {
  119. _keep_screen_on = p_enabled;
  120. }
  121. bool OS::is_keep_screen_on() const {
  122. return _keep_screen_on;
  123. }
  124. void OS::set_low_processor_usage_mode(bool p_enabled) {
  125. low_processor_usage_mode = p_enabled;
  126. }
  127. bool OS::is_in_low_processor_usage_mode() const {
  128. return low_processor_usage_mode;
  129. }
  130. void OS::set_low_processor_usage_mode_sleep_usec(int p_usec) {
  131. low_processor_usage_mode_sleep_usec = p_usec;
  132. }
  133. int OS::get_low_processor_usage_mode_sleep_usec() const {
  134. return low_processor_usage_mode_sleep_usec;
  135. }
  136. void OS::set_clipboard(const String &p_text) {
  137. _local_clipboard = p_text;
  138. }
  139. String OS::get_clipboard() const {
  140. return _local_clipboard;
  141. }
  142. String OS::get_executable_path() const {
  143. return _execpath;
  144. }
  145. int OS::get_process_id() const {
  146. return -1;
  147. };
  148. void OS::vibrate_handheld(int p_duration_ms) {
  149. WARN_PRINTS("vibrate_handheld() only works with Android and iOS");
  150. }
  151. bool OS::is_stdout_verbose() const {
  152. return _verbose_stdout;
  153. }
  154. bool OS::is_stdout_debug_enabled() const {
  155. return _debug_stdout;
  156. }
  157. void OS::dump_memory_to_file(const char *p_file) {
  158. //Memory::dump_static_mem_to_file(p_file);
  159. }
  160. static FileAccess *_OSPRF = nullptr;
  161. static void _OS_printres(Object *p_obj) {
  162. Resource *res = Object::cast_to<Resource>(p_obj);
  163. if (!res) {
  164. return;
  165. }
  166. String str = itos(res->get_instance_id()) + String(res->get_class()) + ":" + String(res->get_name()) + " - " + res->get_path();
  167. if (_OSPRF) {
  168. _OSPRF->store_line(str);
  169. } else {
  170. print_line(str);
  171. }
  172. }
  173. bool OS::has_virtual_keyboard() const {
  174. return false;
  175. }
  176. void OS::show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect, bool p_multiline, int p_max_input_length, int p_cursor_start, int p_cursor_end) {
  177. }
  178. void OS::hide_virtual_keyboard() {
  179. }
  180. int OS::get_virtual_keyboard_height() const {
  181. return 0;
  182. }
  183. void OS::set_cursor_shape(CursorShape p_shape) {
  184. }
  185. OS::CursorShape OS::get_cursor_shape() const {
  186. return CURSOR_ARROW;
  187. }
  188. void OS::set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shape, const Vector2 &p_hotspot) {
  189. }
  190. void OS::print_all_resources(String p_to_file) {
  191. ERR_FAIL_COND(p_to_file != "" && _OSPRF);
  192. if (p_to_file != "") {
  193. Error err;
  194. _OSPRF = FileAccess::open(p_to_file, FileAccess::WRITE, &err);
  195. if (err != OK) {
  196. _OSPRF = nullptr;
  197. ERR_FAIL_MSG("Can't print all resources to file: " + String(p_to_file) + ".");
  198. }
  199. }
  200. ObjectDB::debug_objects(_OS_printres);
  201. if (p_to_file != "") {
  202. if (_OSPRF) {
  203. memdelete(_OSPRF);
  204. }
  205. _OSPRF = nullptr;
  206. }
  207. }
  208. void OS::print_resources_in_use(bool p_short) {
  209. ResourceCache::dump(nullptr, p_short);
  210. }
  211. void OS::dump_resources_to_file(const char *p_file) {
  212. ResourceCache::dump(p_file);
  213. }
  214. void OS::set_no_window_mode(bool p_enable) {
  215. _no_window = p_enable;
  216. }
  217. bool OS::is_no_window_mode_enabled() const {
  218. return _no_window;
  219. }
  220. int OS::get_exit_code() const {
  221. return _exit_code;
  222. }
  223. void OS::set_exit_code(int p_code) {
  224. _exit_code = p_code;
  225. _is_custom_exit_code = true;
  226. }
  227. bool OS::is_custom_exit_code() {
  228. return _is_custom_exit_code;
  229. }
  230. String OS::get_locale() const {
  231. return "en";
  232. }
  233. // Helper function to ensure that a dir name/path will be valid on the OS
  234. String OS::get_safe_dir_name(const String &p_dir_name, bool p_allow_dir_separator) const {
  235. Vector<String> invalid_chars = String(": * ? \" < > |").split(" ");
  236. if (p_allow_dir_separator) {
  237. // Dir separators are allowed, but disallow ".." to avoid going up the filesystem
  238. invalid_chars.push_back("..");
  239. } else {
  240. invalid_chars.push_back("/");
  241. }
  242. String safe_dir_name = p_dir_name.replace("\\", "/").strip_edges();
  243. for (int i = 0; i < invalid_chars.size(); i++) {
  244. safe_dir_name = safe_dir_name.replace(invalid_chars[i], "-");
  245. }
  246. return safe_dir_name;
  247. }
  248. // Path to data, config, cache, etc. OS-specific folders
  249. // Get properly capitalized engine name for system paths
  250. String OS::get_godot_dir_name() const {
  251. // Default to lowercase, so only override when different case is needed
  252. return String(VERSION_SHORT_NAME).to_lower();
  253. }
  254. // OS equivalent of XDG_DATA_HOME
  255. String OS::get_data_path() const {
  256. return ".";
  257. }
  258. // OS equivalent of XDG_CONFIG_HOME
  259. String OS::get_config_path() const {
  260. return ".";
  261. }
  262. // OS equivalent of XDG_CACHE_HOME
  263. String OS::get_cache_path() const {
  264. return ".";
  265. }
  266. // Path to macOS .app bundle resources
  267. String OS::get_bundle_resource_dir() const {
  268. return ".";
  269. };
  270. // OS specific path for user://
  271. String OS::get_user_data_dir() const {
  272. return ".";
  273. };
  274. // Absolute path to res://
  275. String OS::get_resource_dir() const {
  276. return ProjectSettings::get_singleton()->get_resource_path();
  277. }
  278. // Access system-specific dirs like Documents, Downloads, etc.
  279. String OS::get_system_dir(SystemDir p_dir) const {
  280. return ".";
  281. }
  282. Error OS::shell_open(String p_uri) {
  283. return ERR_UNAVAILABLE;
  284. };
  285. // implement these with the canvas?
  286. Error OS::dialog_show(String p_title, String p_description, Vector<String> p_buttons, Object *p_obj, String p_callback) {
  287. while (true) {
  288. print("%ls\n--------\n%ls\n", p_title.c_str(), p_description.c_str());
  289. for (int i = 0; i < p_buttons.size(); i++) {
  290. if (i > 0) {
  291. print(", ");
  292. }
  293. print("%i=%ls", i + 1, p_buttons[i].c_str());
  294. };
  295. print("\n");
  296. String res = get_stdin_string().strip_edges();
  297. if (!res.is_numeric()) {
  298. continue;
  299. }
  300. int n = res.to_int();
  301. if (n < 0 || n >= p_buttons.size()) {
  302. continue;
  303. }
  304. if (p_obj && p_callback != "") {
  305. p_obj->call_deferred(p_callback, n);
  306. }
  307. break;
  308. };
  309. return OK;
  310. };
  311. Error OS::dialog_input_text(String p_title, String p_description, String p_partial, Object *p_obj, String p_callback) {
  312. ERR_FAIL_COND_V(!p_obj, FAILED);
  313. ERR_FAIL_COND_V(p_callback == "", FAILED);
  314. print("%ls\n---------\n%ls\n[%ls]:\n", p_title.c_str(), p_description.c_str(), p_partial.c_str());
  315. String res = get_stdin_string().strip_edges();
  316. bool success = true;
  317. if (res == "") {
  318. res = p_partial;
  319. };
  320. p_obj->call_deferred(p_callback, success, res);
  321. return OK;
  322. };
  323. uint64_t OS::get_static_memory_usage() const {
  324. return Memory::get_mem_usage();
  325. }
  326. uint64_t OS::get_dynamic_memory_usage() const {
  327. return MemoryPool::total_memory;
  328. }
  329. uint64_t OS::get_static_memory_peak_usage() const {
  330. return Memory::get_mem_max_usage();
  331. }
  332. Error OS::set_cwd(const String &p_cwd) {
  333. return ERR_CANT_OPEN;
  334. }
  335. bool OS::has_touchscreen_ui_hint() const {
  336. //return false;
  337. return Input::get_singleton() && Input::get_singleton()->is_emulating_touch_from_mouse();
  338. }
  339. uint64_t OS::get_free_static_memory() const {
  340. return Memory::get_mem_available();
  341. }
  342. void OS::yield() {
  343. }
  344. void OS::set_screen_orientation(ScreenOrientation p_orientation) {
  345. _orientation = p_orientation;
  346. }
  347. OS::ScreenOrientation OS::get_screen_orientation() const {
  348. return (OS::ScreenOrientation)_orientation;
  349. }
  350. // Internal helper function that returns the screen orientation enum value from a string
  351. // (generally coming from the Project Settings).
  352. // This is required to keep compatibility with existing projects.
  353. OS::ScreenOrientation OS::get_screen_orientation_from_string(const String &p_orientation) const {
  354. if (p_orientation == "portrait") {
  355. return OS::SCREEN_PORTRAIT;
  356. } else if (p_orientation == "reverse_landscape") {
  357. return OS::SCREEN_REVERSE_LANDSCAPE;
  358. } else if (p_orientation == "reverse_portrait") {
  359. return OS::SCREEN_REVERSE_PORTRAIT;
  360. } else if (p_orientation == "sensor_landscape") {
  361. return OS::SCREEN_SENSOR_LANDSCAPE;
  362. } else if (p_orientation == "sensor_portrait") {
  363. return OS::SCREEN_SENSOR_PORTRAIT;
  364. } else if (p_orientation == "sensor") {
  365. return OS::SCREEN_SENSOR;
  366. }
  367. return OS::SCREEN_LANDSCAPE;
  368. }
  369. void OS::ensure_user_data_dir() {
  370. String dd = get_user_data_dir();
  371. DirAccess *da = DirAccess::open(dd);
  372. if (da) {
  373. memdelete(da);
  374. return;
  375. }
  376. da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  377. Error err = da->make_dir_recursive(dd);
  378. ERR_FAIL_COND_MSG(err != OK, "Error attempting to create data dir: " + dd + ".");
  379. memdelete(da);
  380. }
  381. void OS::set_native_icon(const String &p_filename) {
  382. }
  383. void OS::set_icon(const Ref<Image> &p_icon) {
  384. }
  385. String OS::get_model_name() const {
  386. return "GenericDevice";
  387. }
  388. void OS::set_cmdline(const char *p_execpath, const List<String> &p_args) {
  389. _execpath = p_execpath;
  390. _cmdline = p_args;
  391. };
  392. void OS::release_rendering_thread() {
  393. }
  394. void OS::make_rendering_thread() {
  395. }
  396. void OS::swap_buffers() {
  397. }
  398. String OS::get_unique_id() const {
  399. ERR_FAIL_V("");
  400. }
  401. int OS::get_processor_count() const {
  402. return 1;
  403. }
  404. Error OS::native_video_play(String p_path, float p_volume, String p_audio_track, String p_subtitle_track) {
  405. return FAILED;
  406. }
  407. bool OS::native_video_is_playing() const {
  408. return false;
  409. }
  410. void OS::native_video_pause() {
  411. }
  412. void OS::native_video_unpause() {
  413. }
  414. void OS::native_video_stop() {
  415. }
  416. void OS::set_mouse_mode(MouseMode p_mode) {
  417. }
  418. bool OS::can_use_threads() const {
  419. #ifdef NO_THREADS
  420. return false;
  421. #else
  422. return true;
  423. #endif
  424. }
  425. OS::MouseMode OS::get_mouse_mode() const {
  426. return MOUSE_MODE_VISIBLE;
  427. }
  428. OS::LatinKeyboardVariant OS::get_latin_keyboard_variant() const {
  429. return LATIN_KEYBOARD_QWERTY;
  430. }
  431. int OS::keyboard_get_layout_count() const {
  432. return 0;
  433. }
  434. int OS::keyboard_get_current_layout() const {
  435. return -1;
  436. }
  437. void OS::keyboard_set_current_layout(int p_index) {}
  438. String OS::keyboard_get_layout_language(int p_index) const {
  439. return "";
  440. }
  441. String OS::keyboard_get_layout_name(int p_index) const {
  442. return "";
  443. }
  444. bool OS::is_joy_known(int p_device) {
  445. return true;
  446. }
  447. String OS::get_joy_guid(int p_device) const {
  448. return "Default Joypad";
  449. }
  450. void OS::set_context(int p_context) {
  451. }
  452. OS::SwitchVSyncCallbackInThread OS::switch_vsync_function = nullptr;
  453. void OS::set_use_vsync(bool p_enable) {
  454. _use_vsync = p_enable;
  455. if (switch_vsync_function) { //if a function was set, use function
  456. switch_vsync_function(p_enable);
  457. } else { //otherwise just call here
  458. _set_use_vsync(p_enable);
  459. }
  460. }
  461. bool OS::is_vsync_enabled() const {
  462. return _use_vsync;
  463. }
  464. void OS::set_vsync_via_compositor(bool p_enable) {
  465. _vsync_via_compositor = p_enable;
  466. }
  467. bool OS::is_vsync_via_compositor_enabled() const {
  468. return _vsync_via_compositor;
  469. }
  470. OS::PowerState OS::get_power_state() {
  471. return POWERSTATE_UNKNOWN;
  472. }
  473. int OS::get_power_seconds_left() {
  474. return -1;
  475. }
  476. int OS::get_power_percent_left() {
  477. return -1;
  478. }
  479. void OS::set_has_server_feature_callback(HasServerFeatureCallback p_callback) {
  480. has_server_feature_callback = p_callback;
  481. }
  482. bool OS::has_feature(const String &p_feature) {
  483. if (p_feature == get_name()) {
  484. return true;
  485. }
  486. #ifdef DEBUG_ENABLED
  487. if (p_feature == "debug") {
  488. return true;
  489. }
  490. #else
  491. if (p_feature == "release") {
  492. return true;
  493. }
  494. #endif
  495. #ifdef TOOLS_ENABLED
  496. if (p_feature == "editor") {
  497. return true;
  498. }
  499. #else
  500. if (p_feature == "standalone") {
  501. return true;
  502. }
  503. #endif
  504. if (sizeof(void *) == 8 && p_feature == "64") {
  505. return true;
  506. }
  507. if (sizeof(void *) == 4 && p_feature == "32") {
  508. return true;
  509. }
  510. #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__)
  511. if (p_feature == "x86_64") {
  512. return true;
  513. }
  514. #elif (defined(__i386) || defined(__i386__))
  515. if (p_feature == "x86") {
  516. return true;
  517. }
  518. #elif defined(__aarch64__)
  519. if (p_feature == "arm64") {
  520. return true;
  521. }
  522. #elif defined(__arm__)
  523. #if defined(__ARM_ARCH_7A__)
  524. if (p_feature == "armv7a" || p_feature == "armv7") {
  525. return true;
  526. }
  527. #endif
  528. #if defined(__ARM_ARCH_7S__)
  529. if (p_feature == "armv7s" || p_feature == "armv7") {
  530. return true;
  531. }
  532. #endif
  533. if (p_feature == "arm") {
  534. return true;
  535. }
  536. #endif
  537. if (_check_internal_feature_support(p_feature)) {
  538. return true;
  539. }
  540. if (has_server_feature_callback && has_server_feature_callback(p_feature)) {
  541. return true;
  542. }
  543. if (ProjectSettings::get_singleton()->has_custom_feature(p_feature)) {
  544. return true;
  545. }
  546. return false;
  547. }
  548. void OS::center_window() {
  549. if (is_window_fullscreen()) {
  550. return;
  551. }
  552. Point2 sp = get_screen_position(get_current_screen());
  553. Size2 scr = get_screen_size(get_current_screen());
  554. Size2 wnd = get_real_window_size();
  555. int x = sp.width + (scr.width - wnd.width) / 2;
  556. int y = sp.height + (scr.height - wnd.height) / 2;
  557. set_window_position(Vector2(x, y));
  558. }
  559. int OS::get_video_driver_count() const {
  560. return 2;
  561. }
  562. const char *OS::get_video_driver_name(int p_driver) const {
  563. switch (p_driver) {
  564. case VIDEO_DRIVER_GLES2:
  565. return "GLES2";
  566. case VIDEO_DRIVER_GLES3:
  567. default:
  568. return "GLES3";
  569. }
  570. }
  571. int OS::get_audio_driver_count() const {
  572. return AudioDriverManager::get_driver_count();
  573. }
  574. const char *OS::get_audio_driver_name(int p_driver) const {
  575. AudioDriver *driver = AudioDriverManager::get_driver(p_driver);
  576. ERR_FAIL_COND_V_MSG(!driver, "", "Cannot get audio driver at index '" + itos(p_driver) + "'.");
  577. return AudioDriverManager::get_driver(p_driver)->get_name();
  578. }
  579. void OS::set_restart_on_exit(bool p_restart, const List<String> &p_restart_arguments) {
  580. restart_on_exit = p_restart;
  581. restart_commandline = p_restart_arguments;
  582. }
  583. bool OS::is_restart_on_exit_set() const {
  584. return restart_on_exit;
  585. }
  586. List<String> OS::get_restart_on_exit_arguments() const {
  587. return restart_commandline;
  588. }
  589. PoolStringArray OS::get_connected_midi_inputs() {
  590. if (MIDIDriver::get_singleton()) {
  591. return MIDIDriver::get_singleton()->get_connected_inputs();
  592. }
  593. PoolStringArray list;
  594. ERR_FAIL_V_MSG(list, vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  595. }
  596. void OS::open_midi_inputs() {
  597. if (MIDIDriver::get_singleton()) {
  598. MIDIDriver::get_singleton()->open();
  599. } else {
  600. ERR_PRINT(vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  601. }
  602. }
  603. void OS::close_midi_inputs() {
  604. if (MIDIDriver::get_singleton()) {
  605. MIDIDriver::get_singleton()->close();
  606. } else {
  607. ERR_PRINT(vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  608. }
  609. }
  610. void OS::add_frame_delay(bool p_can_draw) {
  611. const uint32_t frame_delay = Engine::get_singleton()->get_frame_delay();
  612. if (frame_delay) {
  613. // Add fixed frame delay to decrease CPU/GPU usage. This doesn't take
  614. // the actual frame time into account.
  615. // Due to the high fluctuation of the actual sleep duration, it's not recommended
  616. // to use this as a FPS limiter.
  617. delay_usec(frame_delay * 1000);
  618. }
  619. // Add a dynamic frame delay to decrease CPU/GPU usage. This takes the
  620. // previous frame time into account for a smoother result.
  621. uint64_t dynamic_delay = 0;
  622. if (is_in_low_processor_usage_mode() || !p_can_draw) {
  623. dynamic_delay = get_low_processor_usage_mode_sleep_usec();
  624. }
  625. const int target_fps = Engine::get_singleton()->get_target_fps();
  626. if (target_fps > 0 && !Engine::get_singleton()->is_editor_hint()) {
  627. // Override the low processor usage mode sleep delay if the target FPS is lower.
  628. dynamic_delay = MAX(dynamic_delay, (uint64_t)(1000000 / target_fps));
  629. }
  630. if (dynamic_delay > 0) {
  631. target_ticks += dynamic_delay;
  632. uint64_t current_ticks = get_ticks_usec();
  633. if (current_ticks < target_ticks) {
  634. delay_usec(target_ticks - current_ticks);
  635. }
  636. current_ticks = get_ticks_usec();
  637. target_ticks = MIN(MAX(target_ticks, current_ticks - dynamic_delay), current_ticks + dynamic_delay);
  638. }
  639. }
  640. OS::OS() {
  641. void *volatile stack_bottom;
  642. restart_on_exit = false;
  643. singleton = this;
  644. _keep_screen_on = true; // set default value to true, because this had been true before godot 2.0.
  645. low_processor_usage_mode = false;
  646. low_processor_usage_mode_sleep_usec = 10000;
  647. _verbose_stdout = false;
  648. _debug_stdout = false;
  649. _no_window = false;
  650. _exit_code = 0;
  651. _orientation = SCREEN_LANDSCAPE;
  652. _render_thread_mode = RENDER_THREAD_SAFE;
  653. _allow_hidpi = false;
  654. _allow_layered = false;
  655. _stack_bottom = (void *)(&stack_bottom);
  656. _logger = nullptr;
  657. has_server_feature_callback = nullptr;
  658. Vector<Logger *> loggers;
  659. loggers.push_back(memnew(StdLogger));
  660. _set_logger(memnew(CompositeLogger(loggers)));
  661. }
  662. OS::~OS() {
  663. memdelete(_logger);
  664. singleton = nullptr;
  665. }