os.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  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/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 "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. uint64_t OS::get_ticks_msec() const {
  45. return get_ticks_usec() / 1000ULL;
  46. }
  47. double OS::get_unix_time() const {
  48. return 0;
  49. }
  50. void OS::debug_break() {
  51. // something
  52. }
  53. void OS::_set_logger(CompositeLogger *p_logger) {
  54. if (_logger) {
  55. memdelete(_logger);
  56. }
  57. _logger = p_logger;
  58. }
  59. void OS::add_logger(Logger *p_logger) {
  60. if (!_logger) {
  61. Vector<Logger *> loggers;
  62. loggers.push_back(p_logger);
  63. _logger = memnew(CompositeLogger(loggers));
  64. } else {
  65. _logger->add_logger(p_logger);
  66. }
  67. }
  68. 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) {
  69. if (!_stderr_enabled) {
  70. return;
  71. }
  72. _logger->log_error(p_function, p_file, p_line, p_code, p_rationale, p_type);
  73. }
  74. void OS::print(const char *p_format, ...) {
  75. if (!_stdout_enabled) {
  76. return;
  77. }
  78. va_list argp;
  79. va_start(argp, p_format);
  80. _logger->logv(p_format, argp, false);
  81. va_end(argp);
  82. }
  83. void OS::printerr(const char *p_format, ...) {
  84. if (!_stderr_enabled) {
  85. return;
  86. }
  87. va_list argp;
  88. va_start(argp, p_format);
  89. _logger->logv(p_format, argp, true);
  90. va_end(argp);
  91. }
  92. void OS::alert(const String &p_alert, const String &p_title) {
  93. fprintf(stderr, "%s: %s\n", p_title.utf8().get_data(), p_alert.utf8().get_data());
  94. }
  95. void OS::set_low_processor_usage_mode(bool p_enabled) {
  96. low_processor_usage_mode = p_enabled;
  97. }
  98. bool OS::is_in_low_processor_usage_mode() const {
  99. return low_processor_usage_mode;
  100. }
  101. void OS::set_low_processor_usage_mode_sleep_usec(int p_usec) {
  102. low_processor_usage_mode_sleep_usec = p_usec;
  103. }
  104. int OS::get_low_processor_usage_mode_sleep_usec() const {
  105. return low_processor_usage_mode_sleep_usec;
  106. }
  107. String OS::get_executable_path() const {
  108. return _execpath;
  109. }
  110. int OS::get_process_id() const {
  111. return -1;
  112. }
  113. void OS::vibrate_handheld(int p_duration_ms) {
  114. WARN_PRINT("vibrate_handheld() only works with Android and iOS");
  115. }
  116. bool OS::is_stdout_verbose() const {
  117. return _verbose_stdout;
  118. }
  119. bool OS::is_stdout_debug_enabled() const {
  120. return _debug_stdout;
  121. }
  122. bool OS::is_stdout_enabled() const {
  123. return _stdout_enabled;
  124. }
  125. bool OS::is_stderr_enabled() const {
  126. return _stderr_enabled;
  127. }
  128. void OS::set_stdout_enabled(bool p_enabled) {
  129. _stdout_enabled = p_enabled;
  130. }
  131. void OS::set_stderr_enabled(bool p_enabled) {
  132. _stderr_enabled = p_enabled;
  133. }
  134. void OS::dump_memory_to_file(const char *p_file) {
  135. //Memory::dump_static_mem_to_file(p_file);
  136. }
  137. static FileAccess *_OSPRF = nullptr;
  138. static void _OS_printres(Object *p_obj) {
  139. Resource *res = Object::cast_to<Resource>(p_obj);
  140. if (!res) {
  141. return;
  142. }
  143. String str = vformat("%s - %s - %s", res->to_string(), res->get_name(), res->get_path());
  144. if (_OSPRF) {
  145. _OSPRF->store_line(str);
  146. } else {
  147. print_line(str);
  148. }
  149. }
  150. void OS::print_all_resources(String p_to_file) {
  151. ERR_FAIL_COND(p_to_file != "" && _OSPRF);
  152. if (p_to_file != "") {
  153. Error err;
  154. _OSPRF = FileAccess::open(p_to_file, FileAccess::WRITE, &err);
  155. if (err != OK) {
  156. _OSPRF = nullptr;
  157. ERR_FAIL_MSG("Can't print all resources to file: " + String(p_to_file) + ".");
  158. }
  159. }
  160. ObjectDB::debug_objects(_OS_printres);
  161. if (p_to_file != "") {
  162. if (_OSPRF) {
  163. memdelete(_OSPRF);
  164. }
  165. _OSPRF = nullptr;
  166. }
  167. }
  168. void OS::print_resources_in_use(bool p_short) {
  169. ResourceCache::dump(nullptr, p_short);
  170. }
  171. void OS::dump_resources_to_file(const char *p_file) {
  172. ResourceCache::dump(p_file);
  173. }
  174. int OS::get_exit_code() const {
  175. return _exit_code;
  176. }
  177. void OS::set_exit_code(int p_code) {
  178. _exit_code = p_code;
  179. }
  180. String OS::get_locale() const {
  181. return "en";
  182. }
  183. // Helper function to ensure that a dir name/path will be valid on the OS
  184. String OS::get_safe_dir_name(const String &p_dir_name, bool p_allow_dir_separator) const {
  185. Vector<String> invalid_chars = String(": * ? \" < > |").split(" ");
  186. if (p_allow_dir_separator) {
  187. // Dir separators are allowed, but disallow ".." to avoid going up the filesystem
  188. invalid_chars.push_back("..");
  189. } else {
  190. invalid_chars.push_back("/");
  191. }
  192. String safe_dir_name = p_dir_name.replace("\\", "/").strip_edges();
  193. for (int i = 0; i < invalid_chars.size(); i++) {
  194. safe_dir_name = safe_dir_name.replace(invalid_chars[i], "-");
  195. }
  196. return safe_dir_name;
  197. }
  198. // Path to data, config, cache, etc. OS-specific folders
  199. // Get properly capitalized engine name for system paths
  200. String OS::get_godot_dir_name() const {
  201. // Default to lowercase, so only override when different case is needed
  202. return String(VERSION_SHORT_NAME).to_lower();
  203. }
  204. // OS equivalent of XDG_DATA_HOME
  205. String OS::get_data_path() const {
  206. return ".";
  207. }
  208. // OS equivalent of XDG_CONFIG_HOME
  209. String OS::get_config_path() const {
  210. return ".";
  211. }
  212. // OS equivalent of XDG_CACHE_HOME
  213. String OS::get_cache_path() const {
  214. return ".";
  215. }
  216. // Path to macOS .app bundle resources
  217. String OS::get_bundle_resource_dir() const {
  218. return ".";
  219. }
  220. // OS specific path for user://
  221. String OS::get_user_data_dir() const {
  222. return ".";
  223. }
  224. // Absolute path to res://
  225. String OS::get_resource_dir() const {
  226. return ProjectSettings::get_singleton()->get_resource_path();
  227. }
  228. // Access system-specific dirs like Documents, Downloads, etc.
  229. String OS::get_system_dir(SystemDir p_dir, bool p_shared_storage) const {
  230. return ".";
  231. }
  232. Error OS::shell_open(String p_uri) {
  233. return ERR_UNAVAILABLE;
  234. }
  235. // implement these with the canvas?
  236. uint64_t OS::get_static_memory_usage() const {
  237. return Memory::get_mem_usage();
  238. }
  239. uint64_t OS::get_static_memory_peak_usage() const {
  240. return Memory::get_mem_max_usage();
  241. }
  242. Error OS::set_cwd(const String &p_cwd) {
  243. return ERR_CANT_OPEN;
  244. }
  245. uint64_t OS::get_free_static_memory() const {
  246. return Memory::get_mem_available();
  247. }
  248. void OS::yield() {
  249. }
  250. void OS::ensure_user_data_dir() {
  251. String dd = get_user_data_dir();
  252. DirAccess *da = DirAccess::open(dd);
  253. if (da) {
  254. memdelete(da);
  255. return;
  256. }
  257. da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  258. Error err = da->make_dir_recursive(dd);
  259. ERR_FAIL_COND_MSG(err != OK, "Error attempting to create data dir: " + dd + ".");
  260. memdelete(da);
  261. }
  262. String OS::get_model_name() const {
  263. return "GenericDevice";
  264. }
  265. void OS::set_cmdline(const char *p_execpath, const List<String> &p_args) {
  266. _execpath = p_execpath;
  267. _cmdline = p_args;
  268. }
  269. String OS::get_unique_id() const {
  270. ERR_FAIL_V("");
  271. }
  272. int OS::get_processor_count() const {
  273. return 1;
  274. }
  275. bool OS::can_use_threads() const {
  276. #ifdef NO_THREADS
  277. return false;
  278. #else
  279. return true;
  280. #endif
  281. }
  282. void OS::set_has_server_feature_callback(HasServerFeatureCallback p_callback) {
  283. has_server_feature_callback = p_callback;
  284. }
  285. bool OS::has_feature(const String &p_feature) {
  286. if (p_feature == get_name()) {
  287. return true;
  288. }
  289. #ifdef DEBUG_ENABLED
  290. if (p_feature == "debug") {
  291. return true;
  292. }
  293. #else
  294. if (p_feature == "release")
  295. return true;
  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. #endif
  305. if (sizeof(void *) == 8 && p_feature == "64") {
  306. return true;
  307. }
  308. if (sizeof(void *) == 4 && p_feature == "32") {
  309. return true;
  310. }
  311. #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__)
  312. if (p_feature == "x86_64") {
  313. return true;
  314. }
  315. #elif (defined(__i386) || defined(__i386__))
  316. if (p_feature == "x86") {
  317. return true;
  318. }
  319. #elif defined(__aarch64__)
  320. if (p_feature == "arm64") {
  321. return true;
  322. }
  323. #elif defined(__arm__)
  324. #if defined(__ARM_ARCH_7A__)
  325. if (p_feature == "armv7a" || p_feature == "armv7") {
  326. return true;
  327. }
  328. #endif
  329. #if defined(__ARM_ARCH_7S__)
  330. if (p_feature == "armv7s" || p_feature == "armv7") {
  331. return true;
  332. }
  333. #endif
  334. if (p_feature == "arm") {
  335. return true;
  336. }
  337. #endif
  338. if (_check_internal_feature_support(p_feature)) {
  339. return true;
  340. }
  341. if (has_server_feature_callback && has_server_feature_callback(p_feature)) {
  342. return true;
  343. }
  344. if (ProjectSettings::get_singleton()->has_custom_feature(p_feature)) {
  345. return true;
  346. }
  347. return false;
  348. }
  349. void OS::set_restart_on_exit(bool p_restart, const List<String> &p_restart_arguments) {
  350. restart_on_exit = p_restart;
  351. restart_commandline = p_restart_arguments;
  352. }
  353. bool OS::is_restart_on_exit_set() const {
  354. return restart_on_exit;
  355. }
  356. List<String> OS::get_restart_on_exit_arguments() const {
  357. return restart_commandline;
  358. }
  359. PackedStringArray OS::get_connected_midi_inputs() {
  360. if (MIDIDriver::get_singleton()) {
  361. return MIDIDriver::get_singleton()->get_connected_inputs();
  362. }
  363. PackedStringArray list;
  364. ERR_FAIL_V_MSG(list, vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  365. }
  366. void OS::open_midi_inputs() {
  367. if (MIDIDriver::get_singleton()) {
  368. MIDIDriver::get_singleton()->open();
  369. } else {
  370. ERR_PRINT(vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  371. }
  372. }
  373. void OS::close_midi_inputs() {
  374. if (MIDIDriver::get_singleton()) {
  375. MIDIDriver::get_singleton()->close();
  376. } else {
  377. ERR_PRINT(vformat("MIDI input isn't supported on %s.", OS::get_singleton()->get_name()));
  378. }
  379. }
  380. void OS::add_frame_delay(bool p_can_draw) {
  381. const uint32_t frame_delay = Engine::get_singleton()->get_frame_delay();
  382. if (frame_delay) {
  383. // Add fixed frame delay to decrease CPU/GPU usage. This doesn't take
  384. // the actual frame time into account.
  385. // Due to the high fluctuation of the actual sleep duration, it's not recommended
  386. // to use this as a FPS limiter.
  387. delay_usec(frame_delay * 1000);
  388. }
  389. // Add a dynamic frame delay to decrease CPU/GPU usage. This takes the
  390. // previous frame time into account for a smoother result.
  391. uint64_t dynamic_delay = 0;
  392. if (is_in_low_processor_usage_mode() || !p_can_draw) {
  393. dynamic_delay = get_low_processor_usage_mode_sleep_usec();
  394. }
  395. const int target_fps = Engine::get_singleton()->get_target_fps();
  396. if (target_fps > 0 && !Engine::get_singleton()->is_editor_hint()) {
  397. // Override the low processor usage mode sleep delay if the target FPS is lower.
  398. dynamic_delay = MAX(dynamic_delay, (uint64_t)(1000000 / target_fps));
  399. }
  400. if (dynamic_delay > 0) {
  401. target_ticks += dynamic_delay;
  402. uint64_t current_ticks = get_ticks_usec();
  403. if (current_ticks < target_ticks) {
  404. delay_usec(target_ticks - current_ticks);
  405. }
  406. current_ticks = get_ticks_usec();
  407. target_ticks = MIN(MAX(target_ticks, current_ticks - dynamic_delay), current_ticks + dynamic_delay);
  408. }
  409. }
  410. OS::OS() {
  411. singleton = this;
  412. Vector<Logger *> loggers;
  413. loggers.push_back(memnew(StdLogger));
  414. _set_logger(memnew(CompositeLogger(loggers)));
  415. }
  416. OS::~OS() {
  417. memdelete(_logger);
  418. singleton = nullptr;
  419. }