os.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  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. void OS::dump_memory_to_file(const char *p_file) {
  151. //Memory::dump_static_mem_to_file(p_file);
  152. }
  153. static Ref<FileAccess> _OSPRF;
  154. static void _OS_printres(Object *p_obj) {
  155. Resource *res = Object::cast_to<Resource>(p_obj);
  156. if (!res) {
  157. return;
  158. }
  159. String str = vformat("%s - %s - %s", res->to_string(), res->get_name(), res->get_path());
  160. if (_OSPRF.is_valid()) {
  161. _OSPRF->store_line(str);
  162. } else {
  163. print_line(str);
  164. }
  165. }
  166. void OS::print_all_resources(String p_to_file) {
  167. ERR_FAIL_COND(!p_to_file.is_empty() && _OSPRF.is_valid());
  168. if (!p_to_file.is_empty()) {
  169. Error err;
  170. _OSPRF = FileAccess::open(p_to_file, FileAccess::WRITE, &err);
  171. if (err != OK) {
  172. _OSPRF.unref();
  173. ERR_FAIL_MSG("Can't print all resources to file: " + String(p_to_file) + ".");
  174. }
  175. }
  176. ObjectDB::debug_objects(_OS_printres);
  177. _OSPRF.unref();
  178. }
  179. void OS::print_resources_in_use(bool p_short) {
  180. ResourceCache::dump(nullptr, p_short);
  181. }
  182. void OS::dump_resources_to_file(const char *p_file) {
  183. ResourceCache::dump(p_file);
  184. }
  185. int OS::get_exit_code() const {
  186. return _exit_code;
  187. }
  188. void OS::set_exit_code(int p_code) {
  189. _exit_code = p_code;
  190. }
  191. String OS::get_locale() const {
  192. return "en";
  193. }
  194. // Non-virtual helper to extract the 2 or 3-letter language code from
  195. // `get_locale()` in a way that's consistent for all platforms.
  196. String OS::get_locale_language() const {
  197. return get_locale().left(3).replace("_", "");
  198. }
  199. // Embedded PCK offset.
  200. uint64_t OS::get_embedded_pck_offset() const {
  201. return 0;
  202. }
  203. // Helper function to ensure that a dir name/path will be valid on the OS
  204. String OS::get_safe_dir_name(const String &p_dir_name, bool p_allow_dir_separator) const {
  205. Vector<String> invalid_chars = String(": * ? \" < > |").split(" ");
  206. if (p_allow_dir_separator) {
  207. // Dir separators are allowed, but disallow ".." to avoid going up the filesystem
  208. invalid_chars.push_back("..");
  209. } else {
  210. invalid_chars.push_back("/");
  211. }
  212. String safe_dir_name = p_dir_name.replace("\\", "/").strip_edges();
  213. for (int i = 0; i < invalid_chars.size(); i++) {
  214. safe_dir_name = safe_dir_name.replace(invalid_chars[i], "-");
  215. }
  216. return safe_dir_name;
  217. }
  218. // Path to data, config, cache, etc. OS-specific folders
  219. // Get properly capitalized engine name for system paths
  220. String OS::get_godot_dir_name() const {
  221. // Default to lowercase, so only override when different case is needed
  222. return String(VERSION_SHORT_NAME).to_lower();
  223. }
  224. // OS equivalent of XDG_DATA_HOME
  225. String OS::get_data_path() const {
  226. return ".";
  227. }
  228. // OS equivalent of XDG_CONFIG_HOME
  229. String OS::get_config_path() const {
  230. return ".";
  231. }
  232. // OS equivalent of XDG_CACHE_HOME
  233. String OS::get_cache_path() const {
  234. return ".";
  235. }
  236. // Path to macOS .app bundle resources
  237. String OS::get_bundle_resource_dir() const {
  238. return ".";
  239. }
  240. // Path to macOS .app bundle embedded icon
  241. String OS::get_bundle_icon_path() const {
  242. return String();
  243. }
  244. // OS specific path for user://
  245. String OS::get_user_data_dir() const {
  246. return ".";
  247. }
  248. // Absolute path to res://
  249. String OS::get_resource_dir() const {
  250. return ProjectSettings::get_singleton()->get_resource_path();
  251. }
  252. // Access system-specific dirs like Documents, Downloads, etc.
  253. String OS::get_system_dir(SystemDir p_dir, bool p_shared_storage) const {
  254. return ".";
  255. }
  256. Error OS::shell_open(String p_uri) {
  257. return ERR_UNAVAILABLE;
  258. }
  259. // implement these with the canvas?
  260. uint64_t OS::get_static_memory_usage() const {
  261. return Memory::get_mem_usage();
  262. }
  263. uint64_t OS::get_static_memory_peak_usage() const {
  264. return Memory::get_mem_max_usage();
  265. }
  266. Error OS::set_cwd(const String &p_cwd) {
  267. return ERR_CANT_OPEN;
  268. }
  269. uint64_t OS::get_free_static_memory() const {
  270. return Memory::get_mem_available();
  271. }
  272. void OS::yield() {
  273. }
  274. void OS::ensure_user_data_dir() {
  275. String dd = get_user_data_dir();
  276. if (DirAccess::exists(dd)) {
  277. return;
  278. }
  279. Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  280. Error err = da->make_dir_recursive(dd);
  281. ERR_FAIL_COND_MSG(err != OK, "Error attempting to create data dir: " + dd + ".");
  282. }
  283. String OS::get_model_name() const {
  284. return "GenericDevice";
  285. }
  286. void OS::set_cmdline(const char *p_execpath, const List<String> &p_args, const List<String> &p_user_args) {
  287. _execpath = String::utf8(p_execpath);
  288. _cmdline = p_args;
  289. _user_args = p_user_args;
  290. }
  291. String OS::get_unique_id() const {
  292. ERR_FAIL_V("");
  293. }
  294. int OS::get_processor_count() const {
  295. return 1;
  296. }
  297. String OS::get_processor_name() const {
  298. return "";
  299. }
  300. bool OS::can_use_threads() const {
  301. #ifdef NO_THREADS
  302. return false;
  303. #else
  304. return true;
  305. #endif
  306. }
  307. void OS::set_has_server_feature_callback(HasServerFeatureCallback p_callback) {
  308. has_server_feature_callback = p_callback;
  309. }
  310. bool OS::has_feature(const String &p_feature) {
  311. // Feature tags are always lowercase for consistency.
  312. if (p_feature == get_name().to_lower()) {
  313. return true;
  314. }
  315. // Catch-all `linuxbsd` feature tag that matches on both Linux and BSD.
  316. // This is the one exposed in the project settings dialog.
  317. if (p_feature == "linuxbsd" && (get_name() == "Linux" || get_name() == "FreeBSD" || get_name() == "NetBSD" || get_name() == "OpenBSD" || get_name() == "BSD")) {
  318. return true;
  319. }
  320. if (p_feature == "movie") {
  321. return _writing_movie;
  322. }
  323. #ifdef DEBUG_ENABLED
  324. if (p_feature == "debug") {
  325. return true;
  326. }
  327. #else
  328. if (p_feature == "release") {
  329. return true;
  330. }
  331. #endif
  332. #ifdef TOOLS_ENABLED
  333. if (p_feature == "editor") {
  334. return true;
  335. }
  336. #else
  337. if (p_feature == "standalone") {
  338. return true;
  339. }
  340. #endif
  341. if (sizeof(void *) == 8 && p_feature == "64") {
  342. return true;
  343. }
  344. if (sizeof(void *) == 4 && p_feature == "32") {
  345. return true;
  346. }
  347. #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__) || defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(_M_X64)
  348. #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__) || defined(_M_X64)
  349. if (p_feature == "x86_64") {
  350. return true;
  351. }
  352. #elif defined(__i386) || defined(__i386__) || defined(_M_IX86)
  353. if (p_feature == "x86_32") {
  354. return true;
  355. }
  356. #endif
  357. if (p_feature == "x86") {
  358. return true;
  359. }
  360. #elif defined(__arm__) || defined(__aarch64__) || defined(_M_ARM) || defined(_M_ARM64)
  361. #if defined(__aarch64__) || defined(_M_ARM64)
  362. if (p_feature == "arm64") {
  363. return true;
  364. }
  365. #elif defined(__arm__) || defined(_M_ARM)
  366. if (p_feature == "arm32") {
  367. return true;
  368. }
  369. #endif
  370. #if defined(__ARM_ARCH_7A__)
  371. if (p_feature == "armv7a" || p_feature == "armv7") {
  372. return true;
  373. }
  374. #endif
  375. #if defined(__ARM_ARCH_7S__)
  376. if (p_feature == "armv7s" || p_feature == "armv7") {
  377. return true;
  378. }
  379. #endif
  380. if (p_feature == "arm") {
  381. return true;
  382. }
  383. #elif defined(__riscv)
  384. #if __riscv_xlen == 8
  385. if (p_feature == "rv64") {
  386. return true;
  387. }
  388. #endif
  389. if (p_feature == "riscv") {
  390. return true;
  391. }
  392. #elif defined(__powerpc__)
  393. #if defined(__powerpc64__)
  394. if (p_feature == "ppc64") {
  395. return true;
  396. }
  397. #endif
  398. if (p_feature == "ppc") {
  399. return true;
  400. }
  401. #elif defined(__wasm__)
  402. #if defined(__wasm64__)
  403. if (p_feature == "wasm64") {
  404. return true;
  405. }
  406. #elif defined(__wasm32__)
  407. if (p_feature == "wasm32") {
  408. return true;
  409. }
  410. #endif
  411. if (p_feature == "wasm") {
  412. return true;
  413. }
  414. #endif
  415. if (_check_internal_feature_support(p_feature)) {
  416. return true;
  417. }
  418. if (has_server_feature_callback && has_server_feature_callback(p_feature)) {
  419. return true;
  420. }
  421. if (ProjectSettings::get_singleton()->has_custom_feature(p_feature)) {
  422. return true;
  423. }
  424. return false;
  425. }
  426. void OS::set_restart_on_exit(bool p_restart, const List<String> &p_restart_arguments) {
  427. restart_on_exit = p_restart;
  428. restart_commandline = p_restart_arguments;
  429. }
  430. bool OS::is_restart_on_exit_set() const {
  431. return restart_on_exit;
  432. }
  433. List<String> OS::get_restart_on_exit_arguments() const {
  434. return restart_commandline;
  435. }
  436. PackedStringArray OS::get_connected_midi_inputs() {
  437. if (MIDIDriver::get_singleton()) {
  438. return MIDIDriver::get_singleton()->get_connected_inputs();
  439. }
  440. PackedStringArray list;
  441. ERR_FAIL_V_MSG(list, vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  442. }
  443. void OS::open_midi_inputs() {
  444. if (MIDIDriver::get_singleton()) {
  445. MIDIDriver::get_singleton()->open();
  446. } else {
  447. ERR_PRINT(vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  448. }
  449. }
  450. void OS::close_midi_inputs() {
  451. if (MIDIDriver::get_singleton()) {
  452. MIDIDriver::get_singleton()->close();
  453. } else {
  454. ERR_PRINT(vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  455. }
  456. }
  457. void OS::add_frame_delay(bool p_can_draw) {
  458. const uint32_t frame_delay = Engine::get_singleton()->get_frame_delay();
  459. if (frame_delay) {
  460. // Add fixed frame delay to decrease CPU/GPU usage. This doesn't take
  461. // the actual frame time into account.
  462. // Due to the high fluctuation of the actual sleep duration, it's not recommended
  463. // to use this as a FPS limiter.
  464. delay_usec(frame_delay * 1000);
  465. }
  466. // Add a dynamic frame delay to decrease CPU/GPU usage. This takes the
  467. // previous frame time into account for a smoother result.
  468. uint64_t dynamic_delay = 0;
  469. if (is_in_low_processor_usage_mode() || !p_can_draw) {
  470. dynamic_delay = get_low_processor_usage_mode_sleep_usec();
  471. }
  472. const int target_fps = Engine::get_singleton()->get_target_fps();
  473. if (target_fps > 0 && !Engine::get_singleton()->is_editor_hint()) {
  474. // Override the low processor usage mode sleep delay if the target FPS is lower.
  475. dynamic_delay = MAX(dynamic_delay, (uint64_t)(1000000 / target_fps));
  476. }
  477. if (dynamic_delay > 0) {
  478. target_ticks += dynamic_delay;
  479. uint64_t current_ticks = get_ticks_usec();
  480. if (current_ticks < target_ticks) {
  481. delay_usec(target_ticks - current_ticks);
  482. }
  483. current_ticks = get_ticks_usec();
  484. target_ticks = MIN(MAX(target_ticks, current_ticks - dynamic_delay), current_ticks + dynamic_delay);
  485. }
  486. }
  487. OS::OS() {
  488. singleton = this;
  489. Vector<Logger *> loggers;
  490. loggers.push_back(memnew(StdLogger));
  491. _set_logger(memnew(CompositeLogger(loggers)));
  492. }
  493. OS::~OS() {
  494. if (_logger) {
  495. memdelete(_logger);
  496. }
  497. singleton = nullptr;
  498. }