class_os.rst 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the OS.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_OS:
  5. OS
  6. ==
  7. **Inherits:** :ref:`Object<class_object>`
  8. **Category:** Core
  9. Brief Description
  10. -----------------
  11. Operating System functions.
  12. Member Functions
  13. ----------------
  14. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  15. | void | :ref:`alert<class_OS_alert>` **(** :ref:`String<class_string>` text, :ref:`String<class_string>` title="Alert!" **)** |
  16. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  17. | :ref:`bool<class_bool>` | :ref:`can_draw<class_OS_can_draw>` **(** **)** const |
  18. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  19. | :ref:`bool<class_bool>` | :ref:`can_use_threads<class_OS_can_use_threads>` **(** **)** const |
  20. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  21. | void | :ref:`center_window<class_OS_center_window>` **(** **)** |
  22. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  23. | void | :ref:`delay_msec<class_OS_delay_msec>` **(** :ref:`int<class_int>` msec **)** const |
  24. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  25. | void | :ref:`delay_usec<class_OS_delay_usec>` **(** :ref:`int<class_int>` usec **)** const |
  26. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  27. | void | :ref:`dump_memory_to_file<class_OS_dump_memory_to_file>` **(** :ref:`String<class_string>` file **)** |
  28. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  29. | void | :ref:`dump_resources_to_file<class_OS_dump_resources_to_file>` **(** :ref:`String<class_string>` file **)** |
  30. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  31. | :ref:`int<class_int>` | :ref:`execute<class_OS_execute>` **(** :ref:`String<class_string>` path, :ref:`PoolStringArray<class_poolstringarray>` arguments, :ref:`bool<class_bool>` blocking, :ref:`Array<class_array>` output=[ ] **)** |
  32. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  33. | :ref:`int<class_int>` | :ref:`find_scancode_from_string<class_OS_find_scancode_from_string>` **(** :ref:`String<class_string>` string **)** const |
  34. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`int<class_int>` | :ref:`get_audio_driver_count<class_OS_get_audio_driver_count>` **(** **)** const |
  36. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  37. | :ref:`String<class_string>` | :ref:`get_audio_driver_name<class_OS_get_audio_driver_name>` **(** :ref:`int<class_int>` arg0 **)** const |
  38. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`PoolStringArray<class_poolstringarray>` | :ref:`get_cmdline_args<class_OS_get_cmdline_args>` **(** **)** |
  40. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`Dictionary<class_dictionary>` | :ref:`get_date<class_OS_get_date>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  42. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`Dictionary<class_dictionary>` | :ref:`get_datetime<class_OS_get_datetime>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  44. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`Dictionary<class_dictionary>` | :ref:`get_datetime_from_unix_time<class_OS_get_datetime_from_unix_time>` **(** :ref:`int<class_int>` unix_time_val **)** const |
  46. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`int<class_int>` | :ref:`get_dynamic_memory_usage<class_OS_get_dynamic_memory_usage>` **(** **)** const |
  48. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`String<class_string>` | :ref:`get_environment<class_OS_get_environment>` **(** :ref:`String<class_string>` environment **)** const |
  50. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`String<class_string>` | :ref:`get_executable_path<class_OS_get_executable_path>` **(** **)** const |
  52. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`String<class_string>` | :ref:`get_latin_keyboard_variant<class_OS_get_latin_keyboard_variant>` **(** **)** const |
  54. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`String<class_string>` | :ref:`get_locale<class_OS_get_locale>` **(** **)** const |
  56. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`String<class_string>` | :ref:`get_model_name<class_OS_get_model_name>` **(** **)** const |
  58. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`String<class_string>` | :ref:`get_name<class_OS_get_name>` **(** **)** const |
  60. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`int<class_int>` | :ref:`get_power_percent_left<class_OS_get_power_percent_left>` **(** **)** |
  62. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`int<class_int>` | :ref:`get_power_seconds_left<class_OS_get_power_seconds_left>` **(** **)** |
  64. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`int<class_int>` | :ref:`get_power_state<class_OS_get_power_state>` **(** **)** |
  66. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`int<class_int>` | :ref:`get_process_id<class_OS_get_process_id>` **(** **)** const |
  68. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`int<class_int>` | :ref:`get_processor_count<class_OS_get_processor_count>` **(** **)** const |
  70. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`Vector2<class_vector2>` | :ref:`get_real_window_size<class_OS_get_real_window_size>` **(** **)** const |
  72. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`String<class_string>` | :ref:`get_scancode_string<class_OS_get_scancode_string>` **(** :ref:`int<class_int>` code **)** const |
  74. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`int<class_int>` | :ref:`get_screen_count<class_OS_get_screen_count>` **(** **)** const |
  76. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`int<class_int>` | :ref:`get_screen_dpi<class_OS_get_screen_dpi>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  78. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | :ref:`Vector2<class_vector2>` | :ref:`get_screen_position<class_OS_get_screen_position>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  80. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`Vector2<class_vector2>` | :ref:`get_screen_size<class_OS_get_screen_size>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  82. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`int<class_int>` | :ref:`get_splash_tick_msec<class_OS_get_splash_tick_msec>` **(** **)** const |
  84. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`int<class_int>` | :ref:`get_static_memory_peak_usage<class_OS_get_static_memory_peak_usage>` **(** **)** const |
  86. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`int<class_int>` | :ref:`get_static_memory_usage<class_OS_get_static_memory_usage>` **(** **)** const |
  88. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`String<class_string>` | :ref:`get_system_dir<class_OS_get_system_dir>` **(** :ref:`int<class_int>` dir **)** const |
  90. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`int<class_int>` | :ref:`get_system_time_secs<class_OS_get_system_time_secs>` **(** **)** const |
  92. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`int<class_int>` | :ref:`get_ticks_msec<class_OS_get_ticks_msec>` **(** **)** const |
  94. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`Dictionary<class_dictionary>` | :ref:`get_time<class_OS_get_time>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  96. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`Dictionary<class_dictionary>` | :ref:`get_time_zone_info<class_OS_get_time_zone_info>` **(** **)** const |
  98. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`String<class_string>` | :ref:`get_unique_id<class_OS_get_unique_id>` **(** **)** const |
  100. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`int<class_int>` | :ref:`get_unix_time<class_OS_get_unix_time>` **(** **)** const |
  102. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  103. | :ref:`int<class_int>` | :ref:`get_unix_time_from_datetime<class_OS_get_unix_time_from_datetime>` **(** :ref:`Dictionary<class_dictionary>` datetime **)** const |
  104. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  105. | :ref:`String<class_string>` | :ref:`get_user_data_dir<class_OS_get_user_data_dir>` **(** **)** const |
  106. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  107. | :ref:`int<class_int>` | :ref:`get_virtual_keyboard_height<class_OS_get_virtual_keyboard_height>` **(** **)** |
  108. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  109. | :ref:`bool<class_bool>` | :ref:`has_environment<class_OS_has_environment>` **(** :ref:`String<class_string>` environment **)** const |
  110. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  111. | :ref:`bool<class_bool>` | :ref:`has_feature<class_OS_has_feature>` **(** :ref:`String<class_string>` tag_name **)** const |
  112. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  113. | :ref:`bool<class_bool>` | :ref:`has_touchscreen_ui_hint<class_OS_has_touchscreen_ui_hint>` **(** **)** const |
  114. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  115. | :ref:`bool<class_bool>` | :ref:`has_virtual_keyboard<class_OS_has_virtual_keyboard>` **(** **)** const |
  116. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  117. | void | :ref:`hide_virtual_keyboard<class_OS_hide_virtual_keyboard>` **(** **)** |
  118. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  119. | :ref:`bool<class_bool>` | :ref:`is_debug_build<class_OS_is_debug_build>` **(** **)** const |
  120. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  121. | :ref:`bool<class_bool>` | :ref:`is_ok_left_and_cancel_right<class_OS_is_ok_left_and_cancel_right>` **(** **)** const |
  122. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  123. | :ref:`bool<class_bool>` | :ref:`is_scancode_unicode<class_OS_is_scancode_unicode>` **(** :ref:`int<class_int>` code **)** const |
  124. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  125. | :ref:`bool<class_bool>` | :ref:`is_stdout_verbose<class_OS_is_stdout_verbose>` **(** **)** const |
  126. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  127. | :ref:`bool<class_bool>` | :ref:`is_userfs_persistent<class_OS_is_userfs_persistent>` **(** **)** const |
  128. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  129. | :ref:`bool<class_bool>` | :ref:`is_window_always_on_top<class_OS_is_window_always_on_top>` **(** **)** const |
  130. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  131. | :ref:`int<class_int>` | :ref:`kill<class_OS_kill>` **(** :ref:`int<class_int>` pid **)** |
  132. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  133. | :ref:`bool<class_bool>` | :ref:`native_video_is_playing<class_OS_native_video_is_playing>` **(** **)** |
  134. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  135. | void | :ref:`native_video_pause<class_OS_native_video_pause>` **(** **)** |
  136. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  137. | :ref:`int<class_int>` | :ref:`native_video_play<class_OS_native_video_play>` **(** :ref:`String<class_string>` path, :ref:`float<class_float>` volume, :ref:`String<class_string>` audio_track, :ref:`String<class_string>` subtitle_track **)** |
  138. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  139. | void | :ref:`native_video_stop<class_OS_native_video_stop>` **(** **)** |
  140. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  141. | void | :ref:`native_video_unpause<class_OS_native_video_unpause>` **(** **)** |
  142. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  143. | void | :ref:`print_all_resources<class_OS_print_all_resources>` **(** :ref:`String<class_string>` tofile="" **)** |
  144. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  145. | void | :ref:`print_all_textures_by_size<class_OS_print_all_textures_by_size>` **(** **)** |
  146. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  147. | void | :ref:`print_resources_by_type<class_OS_print_resources_by_type>` **(** :ref:`PoolStringArray<class_poolstringarray>` types **)** |
  148. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  149. | void | :ref:`print_resources_in_use<class_OS_print_resources_in_use>` **(** :ref:`bool<class_bool>` short=false **)** |
  150. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  151. | void | :ref:`request_attention<class_OS_request_attention>` **(** **)** |
  152. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  153. | void | :ref:`set_icon<class_OS_set_icon>` **(** :ref:`Image<class_image>` icon **)** |
  154. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  155. | void | :ref:`set_ime_position<class_OS_set_ime_position>` **(** :ref:`Vector2<class_vector2>` position **)** |
  156. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  157. | :ref:`int<class_int>` | :ref:`set_thread_name<class_OS_set_thread_name>` **(** :ref:`String<class_string>` name **)** |
  158. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  159. | void | :ref:`set_use_file_access_save_and_swap<class_OS_set_use_file_access_save_and_swap>` **(** :ref:`bool<class_bool>` enabled **)** |
  160. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  161. | void | :ref:`set_window_always_on_top<class_OS_set_window_always_on_top>` **(** :ref:`bool<class_bool>` enabled **)** |
  162. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  163. | void | :ref:`set_window_title<class_OS_set_window_title>` **(** :ref:`String<class_string>` title **)** |
  164. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  165. | :ref:`int<class_int>` | :ref:`shell_open<class_OS_shell_open>` **(** :ref:`String<class_string>` uri **)** |
  166. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  167. | void | :ref:`show_virtual_keyboard<class_OS_show_virtual_keyboard>` **(** :ref:`String<class_string>` existing_text="" **)** |
  168. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  169. Member Variables
  170. ----------------
  171. .. _class_OS_clipboard:
  172. - :ref:`String<class_string>` **clipboard** - The clipboard from the host OS. Might be unavailable on some platforms.
  173. .. _class_OS_current_screen:
  174. - :ref:`int<class_int>` **current_screen** - The current screen index (starting from 0).
  175. .. _class_OS_exit_code:
  176. - :ref:`int<class_int>` **exit_code** - The exit code passed to the OS when the main loop exits.
  177. .. _class_OS_keep_screen_on:
  178. - :ref:`bool<class_bool>` **keep_screen_on** - If ``true`` the engine tries to keep the screen on while the game is running. Useful on mobile.
  179. .. _class_OS_low_processor_usage_mode:
  180. - :ref:`bool<class_bool>` **low_processor_usage_mode** - If ``true`` the engine optimizes for low processor usage by only refreshing the screen if needed. Can improve battery consumption on mobile.
  181. .. _class_OS_screen_orientation:
  182. - :ref:`ScreenOrientation<enum_os_screenorientation>` **screen_orientation** - The current screen orientation.
  183. .. _class_OS_vsync_enabled:
  184. - :ref:`bool<class_bool>` **vsync_enabled** - If ``true`` vertical synchronization (Vsync) is enabled.
  185. .. _class_OS_window_borderless:
  186. - :ref:`bool<class_bool>` **window_borderless** - If ``true`` removes the window frame.
  187. .. _class_OS_window_fullscreen:
  188. - :ref:`bool<class_bool>` **window_fullscreen** - If ``true`` the window is fullscreen.
  189. .. _class_OS_window_maximized:
  190. - :ref:`bool<class_bool>` **window_maximized** - If ``true`` the window is maximized.
  191. .. _class_OS_window_minimized:
  192. - :ref:`bool<class_bool>` **window_minimized** - If ``true`` the window is minimized.
  193. .. _class_OS_window_position:
  194. - :ref:`Vector2<class_vector2>` **window_position** - The window position relative to the screen, the origin is the top left corner, +Y axis goes to the bottom and +X axis goes to the right.
  195. .. _class_OS_window_resizable:
  196. - :ref:`bool<class_bool>` **window_resizable** - If ``true``, the window is resizable by the user.
  197. .. _class_OS_window_size:
  198. - :ref:`Vector2<class_vector2>` **window_size** - The size of the window (without counting window manager decorations).
  199. Enums
  200. -----
  201. .. _enum_OS_SystemDir:
  202. enum **SystemDir**
  203. - **SYSTEM_DIR_DESKTOP** = **0** --- Desktop directory path.
  204. - **SYSTEM_DIR_DCIM** = **1** --- DCIM (Digital Camera Images) directory path.
  205. - **SYSTEM_DIR_DOCUMENTS** = **2** --- Documents directory path.
  206. - **SYSTEM_DIR_DOWNLOADS** = **3** --- Downloads directory path.
  207. - **SYSTEM_DIR_MOVIES** = **4** --- Movies directory path.
  208. - **SYSTEM_DIR_MUSIC** = **5** --- Music directory path.
  209. - **SYSTEM_DIR_PICTURES** = **6** --- Pictures directory path.
  210. - **SYSTEM_DIR_RINGTONES** = **7** --- Ringtones directory path.
  211. .. _enum_OS_ScreenOrientation:
  212. enum **ScreenOrientation**
  213. - **SCREEN_ORIENTATION_LANDSCAPE** = **0** --- Landscape screen orientation.
  214. - **SCREEN_ORIENTATION_PORTRAIT** = **1** --- Portrait screen orientation.
  215. - **SCREEN_ORIENTATION_REVERSE_LANDSCAPE** = **2** --- Reverse landscape screen orientation.
  216. - **SCREEN_ORIENTATION_REVERSE_PORTRAIT** = **3** --- Reverse portrait screen orientation.
  217. - **SCREEN_ORIENTATION_SENSOR_LANDSCAPE** = **4** --- Uses landscape or reverse landscape based on the hardware sensor.
  218. - **SCREEN_ORIENTATION_SENSOR_PORTRAIT** = **5** --- Uses portrait or reverse portrait based on the hardware sensor.
  219. - **SCREEN_ORIENTATION_SENSOR** = **6** --- Uses most suitable orientation based on the hardware sensor.
  220. .. _enum_OS_PowerState:
  221. enum **PowerState**
  222. - **POWERSTATE_UNKNOWN** = **0** --- Unknown powerstate.
  223. - **POWERSTATE_ON_BATTERY** = **1** --- Unplugged, running on battery.
  224. - **POWERSTATE_NO_BATTERY** = **2** --- Plugged in, no battery available.
  225. - **POWERSTATE_CHARGING** = **3** --- Plugged in, battery charging.
  226. - **POWERSTATE_CHARGED** = **4** --- Plugged in, battery fully charged.
  227. .. _enum_OS_Weekday:
  228. enum **Weekday**
  229. - **DAY_SUNDAY** = **0** --- Sunday.
  230. - **DAY_MONDAY** = **1** --- Monday.
  231. - **DAY_TUESDAY** = **2** --- Tuesday.
  232. - **DAY_WEDNESDAY** = **3** --- Wednesday.
  233. - **DAY_THURSDAY** = **4** --- Thursday.
  234. - **DAY_FRIDAY** = **5** --- Friday.
  235. - **DAY_SATURDAY** = **6** --- Saturday.
  236. .. _enum_OS_Month:
  237. enum **Month**
  238. - **MONTH_JANUARY** = **1** --- January.
  239. - **MONTH_FEBRUARY** = **2** --- February.
  240. - **MONTH_MARCH** = **3** --- March.
  241. - **MONTH_APRIL** = **4** --- April.
  242. - **MONTH_MAY** = **5** --- May.
  243. - **MONTH_JUNE** = **6** --- June.
  244. - **MONTH_JULY** = **7** --- July.
  245. - **MONTH_AUGUST** = **8** --- August.
  246. - **MONTH_SEPTEMBER** = **9** --- September.
  247. - **MONTH_OCTOBER** = **10** --- October.
  248. - **MONTH_NOVEMBER** = **11** --- November.
  249. - **MONTH_DECEMBER** = **12** --- December.
  250. Description
  251. -----------
  252. Operating System functions. OS Wraps the most common functionality to communicate with the host Operating System, such as: mouse grabbing, mouse cursors, clipboard, video mode, date and time, timers, environment variables, execution of binaries, command line, etc.
  253. Member Function Description
  254. ---------------------------
  255. .. _class_OS_alert:
  256. - void **alert** **(** :ref:`String<class_string>` text, :ref:`String<class_string>` title="Alert!" **)**
  257. Displays a modal dialog box utilizing the host OS.
  258. .. _class_OS_can_draw:
  259. - :ref:`bool<class_bool>` **can_draw** **(** **)** const
  260. Returns ``true`` if the host OS allows drawing.
  261. .. _class_OS_can_use_threads:
  262. - :ref:`bool<class_bool>` **can_use_threads** **(** **)** const
  263. Returns ``true`` if the current host platform is using multiple threads.
  264. .. _class_OS_center_window:
  265. - void **center_window** **(** **)**
  266. Centers the window on the screen if in windowed mode.
  267. .. _class_OS_delay_msec:
  268. - void **delay_msec** **(** :ref:`int<class_int>` msec **)** const
  269. Delay execution of the current thread by given milliseconds.
  270. .. _class_OS_delay_usec:
  271. - void **delay_usec** **(** :ref:`int<class_int>` usec **)** const
  272. Delay execution of the current thread by given microseconds.
  273. .. _class_OS_dump_memory_to_file:
  274. - void **dump_memory_to_file** **(** :ref:`String<class_string>` file **)**
  275. Dumps the memory allocation ringlist to a file (only works in debug).
  276. Entry format per line: "Address - Size - Description".
  277. .. _class_OS_dump_resources_to_file:
  278. - void **dump_resources_to_file** **(** :ref:`String<class_string>` file **)**
  279. Dumps all used resources to file (only works in debug).
  280. Entry format per line: "Resource Type : Resource Location".
  281. At the end of the file is a statistic of all used Resource Types.
  282. .. _class_OS_execute:
  283. - :ref:`int<class_int>` **execute** **(** :ref:`String<class_string>` path, :ref:`PoolStringArray<class_poolstringarray>` arguments, :ref:`bool<class_bool>` blocking, :ref:`Array<class_array>` output=[ ] **)**
  284. Execute the file at the given path, optionally blocking until it returns.
  285. Platform path resolution will take place. The resolved file must exist and be executable.
  286. Returns a process id.
  287. For example:
  288. ::
  289. var output = []
  290. var pid = OS.execute('ls', [], true, output)
  291. If you wish to access a shell built-in or perform a composite command, a platform specific shell can be invoked. For example:
  292. ::
  293. var pid = OS.execute('CMD.exe', ['/C', 'cd %TEMP% && dir'], true, output)
  294. .. _class_OS_find_scancode_from_string:
  295. - :ref:`int<class_int>` **find_scancode_from_string** **(** :ref:`String<class_string>` string **)** const
  296. Returns the scancode of the given string (e.g. "Escape")
  297. .. _class_OS_get_audio_driver_count:
  298. - :ref:`int<class_int>` **get_audio_driver_count** **(** **)** const
  299. Returns the total number of available audio drivers.
  300. .. _class_OS_get_audio_driver_name:
  301. - :ref:`String<class_string>` **get_audio_driver_name** **(** :ref:`int<class_int>` arg0 **)** const
  302. Returns the audio driver name for the given index.
  303. .. _class_OS_get_cmdline_args:
  304. - :ref:`PoolStringArray<class_poolstringarray>` **get_cmdline_args** **(** **)**
  305. Returns the command line arguments passed to the engine.
  306. .. _class_OS_get_date:
  307. - :ref:`Dictionary<class_dictionary>` **get_date** **(** :ref:`bool<class_bool>` utc=false **)** const
  308. Returns current date as a dictionary of keys: year, month, day, weekday, dst (daylight savings time).
  309. .. _class_OS_get_datetime:
  310. - :ref:`Dictionary<class_dictionary>` **get_datetime** **(** :ref:`bool<class_bool>` utc=false **)** const
  311. Returns current datetime as a dictionary of keys: year, month, day, weekday, dst (daylight savings time), hour, minute, second.
  312. .. _class_OS_get_datetime_from_unix_time:
  313. - :ref:`Dictionary<class_dictionary>` **get_datetime_from_unix_time** **(** :ref:`int<class_int>` unix_time_val **)** const
  314. Get a dictionary of time values when given epoch time.
  315. Dictionary Time values will be a union of values from :ref:`get_time<class_OS_get_time>` and :ref:`get_date<class_OS_get_date>` dictionaries (with the exception of dst = day light standard time, as it cannot be determined from epoch).
  316. .. _class_OS_get_dynamic_memory_usage:
  317. - :ref:`int<class_int>` **get_dynamic_memory_usage** **(** **)** const
  318. Returns the total amount of dynamic memory used (only works in debug).
  319. .. _class_OS_get_environment:
  320. - :ref:`String<class_string>` **get_environment** **(** :ref:`String<class_string>` environment **)** const
  321. Returns an environment variable.
  322. .. _class_OS_get_executable_path:
  323. - :ref:`String<class_string>` **get_executable_path** **(** **)** const
  324. Returns the path to the current engine executable.
  325. .. _class_OS_get_latin_keyboard_variant:
  326. - :ref:`String<class_string>` **get_latin_keyboard_variant** **(** **)** const
  327. Returns the current latin keyboard variant as a String.
  328. Possible return values are: "QWERTY", "AZERTY", "QZERTY", "DVORAK", "NEO", "COLEMAK" or "ERROR".
  329. .. _class_OS_get_locale:
  330. - :ref:`String<class_string>` **get_locale** **(** **)** const
  331. Returns the host OS locale.
  332. .. _class_OS_get_model_name:
  333. - :ref:`String<class_string>` **get_model_name** **(** **)** const
  334. Returns the model name of the current device.
  335. .. _class_OS_get_name:
  336. - :ref:`String<class_string>` **get_name** **(** **)** const
  337. Returns the name of the host OS. Possible values are: "Android", "Haiku", "iOS", "HTML5", "OSX", "Server", "Windows", "UWP", "X11".
  338. .. _class_OS_get_power_percent_left:
  339. - :ref:`int<class_int>` **get_power_percent_left** **(** **)**
  340. Returns the amount of battery left in the device as a percentage.
  341. .. _class_OS_get_power_seconds_left:
  342. - :ref:`int<class_int>` **get_power_seconds_left** **(** **)**
  343. Returns the time in seconds before the device runs out of battery.
  344. .. _class_OS_get_power_state:
  345. - :ref:`int<class_int>` **get_power_state** **(** **)**
  346. Returns the current state of the device regarding battery and power. See ``POWERSTATE_*`` constants.
  347. .. _class_OS_get_process_id:
  348. - :ref:`int<class_int>` **get_process_id** **(** **)** const
  349. Returns the game process ID
  350. .. _class_OS_get_processor_count:
  351. - :ref:`int<class_int>` **get_processor_count** **(** **)** const
  352. Returns the number of cores available in the host machine.
  353. .. _class_OS_get_real_window_size:
  354. - :ref:`Vector2<class_vector2>` **get_real_window_size** **(** **)** const
  355. Returns the window size including decorations like window borders.
  356. .. _class_OS_get_scancode_string:
  357. - :ref:`String<class_string>` **get_scancode_string** **(** :ref:`int<class_int>` code **)** const
  358. Returns the given scancode as a string (e.g. Return values: "Escape", "Shift+Escape").
  359. .. _class_OS_get_screen_count:
  360. - :ref:`int<class_int>` **get_screen_count** **(** **)** const
  361. Returns the number of displays attached to the host machine.
  362. .. _class_OS_get_screen_dpi:
  363. - :ref:`int<class_int>` **get_screen_dpi** **(** :ref:`int<class_int>` screen=-1 **)** const
  364. Returns the dots per inch density of the specified screen.
  365. On Android Devices, the actual screen densities are grouped into six generalized densities:
  366. ldpi - 120 dpi
  367. mdpi - 160 dpi
  368. hdpi - 240 dpi
  369. xhdpi - 320 dpi
  370. xxhdpi - 480 dpi
  371. xxxhdpi - 640 dpi
  372. .. _class_OS_get_screen_position:
  373. - :ref:`Vector2<class_vector2>` **get_screen_position** **(** :ref:`int<class_int>` screen=-1 **)** const
  374. Returns the position of the specified screen by index. If no screen index is provided, the current screen will be used.
  375. .. _class_OS_get_screen_size:
  376. - :ref:`Vector2<class_vector2>` **get_screen_size** **(** :ref:`int<class_int>` screen=-1 **)** const
  377. Returns the dimensions in pixels of the specified screen.
  378. .. _class_OS_get_splash_tick_msec:
  379. - :ref:`int<class_int>` **get_splash_tick_msec** **(** **)** const
  380. .. _class_OS_get_static_memory_peak_usage:
  381. - :ref:`int<class_int>` **get_static_memory_peak_usage** **(** **)** const
  382. Returns the max amount of static memory used (only works in debug).
  383. .. _class_OS_get_static_memory_usage:
  384. - :ref:`int<class_int>` **get_static_memory_usage** **(** **)** const
  385. Returns the amount of static memory being used by the program in bytes.
  386. .. _class_OS_get_system_dir:
  387. - :ref:`String<class_string>` **get_system_dir** **(** :ref:`int<class_int>` dir **)** const
  388. Returns the actual path to commonly used folders across different platforms. Available locations are specified in OS.SystemDir.
  389. .. _class_OS_get_system_time_secs:
  390. - :ref:`int<class_int>` **get_system_time_secs** **(** **)** const
  391. Returns the epoch time of the operating system in seconds.
  392. .. _class_OS_get_ticks_msec:
  393. - :ref:`int<class_int>` **get_ticks_msec** **(** **)** const
  394. Returns the amount of time passed in milliseconds since the engine started.
  395. .. _class_OS_get_time:
  396. - :ref:`Dictionary<class_dictionary>` **get_time** **(** :ref:`bool<class_bool>` utc=false **)** const
  397. Returns current time as a dictionary of keys: hour, minute, second.
  398. .. _class_OS_get_time_zone_info:
  399. - :ref:`Dictionary<class_dictionary>` **get_time_zone_info** **(** **)** const
  400. Returns the current time zone as a dictionary with the keys: bias and name.
  401. .. _class_OS_get_unique_id:
  402. - :ref:`String<class_string>` **get_unique_id** **(** **)** const
  403. Returns a string that is unique to the device. Currently only works on Android and iOS. Returns empty string on other platforms.
  404. .. _class_OS_get_unix_time:
  405. - :ref:`int<class_int>` **get_unix_time** **(** **)** const
  406. Returns the current unix epoch timestamp.
  407. .. _class_OS_get_unix_time_from_datetime:
  408. - :ref:`int<class_int>` **get_unix_time_from_datetime** **(** :ref:`Dictionary<class_dictionary>` datetime **)** const
  409. Get an epoch time value from a dictionary of time values.
  410. ``datetime`` must be populated with the following keys: year, month, day, hour, minute, second.
  411. You can pass the output from :ref:`get_datetime_from_unix_time<class_OS_get_datetime_from_unix_time>` directly into this function. Daylight savings time (dst), if present, is ignored.
  412. .. _class_OS_get_user_data_dir:
  413. - :ref:`String<class_string>` **get_user_data_dir** **(** **)** const
  414. Returns the absolute directory path where user data is written (``user://``).
  415. On Linux, this is ``~/.local/share/godot/app_userdata/[project_name]``, or ``~/.local/share/[custom_name]`` if ``use_custom_user_dir`` is set.
  416. On macOS, this is ``~/Library/Application Support/Godot/app_userdata/[project_name]``, or ``~/Library/Application Support/[custom_name]`` if ``use_custom_user_dir`` is set.
  417. On Windows, this is ``%APPDATA%/Godot/app_userdata/[project_name]``, or ``%APPDATA%/[custom_name]`` if ``use_custom_user_dir`` is set.
  418. If the project name is empty, ``user://`` falls back to ``res://``.
  419. .. _class_OS_get_virtual_keyboard_height:
  420. - :ref:`int<class_int>` **get_virtual_keyboard_height** **(** **)**
  421. Returns the on-screen keyboard's height in pixels. Returns 0 if there is no keyboard or it is currently hidden.
  422. .. _class_OS_has_environment:
  423. - :ref:`bool<class_bool>` **has_environment** **(** :ref:`String<class_string>` environment **)** const
  424. Returns ``true`` if an environment variable exists.
  425. .. _class_OS_has_feature:
  426. - :ref:`bool<class_bool>` **has_feature** **(** :ref:`String<class_string>` tag_name **)** const
  427. Returns ``true`` if the feature for the given feature tag is supported in the currently running instance, depending on platform, build etc. Can be used to check whether you're currently running a debug build, on a certain platform or arch, etc. See feature tags documentation.
  428. .. _class_OS_has_touchscreen_ui_hint:
  429. - :ref:`bool<class_bool>` **has_touchscreen_ui_hint** **(** **)** const
  430. Returns ``true`` if the device has a touchscreen or emulates one.
  431. .. _class_OS_has_virtual_keyboard:
  432. - :ref:`bool<class_bool>` **has_virtual_keyboard** **(** **)** const
  433. Returns ``true`` if the platform has a virtual keyboard, ``false`` otherwise.
  434. .. _class_OS_hide_virtual_keyboard:
  435. - void **hide_virtual_keyboard** **(** **)**
  436. Hides the virtual keyboard if it is shown, does nothing otherwise.
  437. .. _class_OS_is_debug_build:
  438. - :ref:`bool<class_bool>` **is_debug_build** **(** **)** const
  439. Returns ``true`` if the build is a debug build.
  440. Returns ``true`` when running in the editor.
  441. Returns ``false`` if the build is a release build.
  442. .. _class_OS_is_ok_left_and_cancel_right:
  443. - :ref:`bool<class_bool>` **is_ok_left_and_cancel_right** **(** **)** const
  444. Returns ``true`` if the "Okay" button should appear on the left and "Cancel" on the right.
  445. .. _class_OS_is_scancode_unicode:
  446. - :ref:`bool<class_bool>` **is_scancode_unicode** **(** :ref:`int<class_int>` code **)** const
  447. Returns ``true`` if the input code has a unicode character.
  448. .. _class_OS_is_stdout_verbose:
  449. - :ref:`bool<class_bool>` **is_stdout_verbose** **(** **)** const
  450. Returns ``true`` if the engine was executed with -v (verbose stdout).
  451. .. _class_OS_is_userfs_persistent:
  452. - :ref:`bool<class_bool>` **is_userfs_persistent** **(** **)** const
  453. If ``true``, the ``user://`` file system is persistent, so that its state is the same after a player quits and starts the game again. Relevant to the HTML5 platform, where this persistence may be unavailable.
  454. .. _class_OS_is_window_always_on_top:
  455. - :ref:`bool<class_bool>` **is_window_always_on_top** **(** **)** const
  456. Returns ``true`` if the window should always be on top of other windows.
  457. .. _class_OS_kill:
  458. - :ref:`int<class_int>` **kill** **(** :ref:`int<class_int>` pid **)**
  459. Kill a process ID (this method can be used to kill processes that were not spawned by the game).
  460. .. _class_OS_native_video_is_playing:
  461. - :ref:`bool<class_bool>` **native_video_is_playing** **(** **)**
  462. Returns ``true`` if native video is playing.
  463. .. _class_OS_native_video_pause:
  464. - void **native_video_pause** **(** **)**
  465. Pauses native video playback.
  466. .. _class_OS_native_video_play:
  467. - :ref:`int<class_int>` **native_video_play** **(** :ref:`String<class_string>` path, :ref:`float<class_float>` volume, :ref:`String<class_string>` audio_track, :ref:`String<class_string>` subtitle_track **)**
  468. Plays native video from the specified path, at the given volume and with audio and subtitle tracks.
  469. .. _class_OS_native_video_stop:
  470. - void **native_video_stop** **(** **)**
  471. Stops native video playback.
  472. .. _class_OS_native_video_unpause:
  473. - void **native_video_unpause** **(** **)**
  474. Resumes native video playback.
  475. .. _class_OS_print_all_resources:
  476. - void **print_all_resources** **(** :ref:`String<class_string>` tofile="" **)**
  477. Shows all resources in the game. Optionally the list can be written to a file.
  478. .. _class_OS_print_all_textures_by_size:
  479. - void **print_all_textures_by_size** **(** **)**
  480. Shows the list of loaded textures sorted by size in memory.
  481. .. _class_OS_print_resources_by_type:
  482. - void **print_resources_by_type** **(** :ref:`PoolStringArray<class_poolstringarray>` types **)**
  483. Shows the number of resources loaded by the game of the given types.
  484. .. _class_OS_print_resources_in_use:
  485. - void **print_resources_in_use** **(** :ref:`bool<class_bool>` short=false **)**
  486. Shows all resources currently used by the game.
  487. .. _class_OS_request_attention:
  488. - void **request_attention** **(** **)**
  489. Request the user attention to the window. It'll flash the taskbar button on Windows or bounce the dock icon on OSX.
  490. .. _class_OS_set_icon:
  491. - void **set_icon** **(** :ref:`Image<class_image>` icon **)**
  492. Sets the game's icon.
  493. .. _class_OS_set_ime_position:
  494. - void **set_ime_position** **(** :ref:`Vector2<class_vector2>` position **)**
  495. .. _class_OS_set_thread_name:
  496. - :ref:`int<class_int>` **set_thread_name** **(** :ref:`String<class_string>` name **)**
  497. Sets the name of the current thread.
  498. .. _class_OS_set_use_file_access_save_and_swap:
  499. - void **set_use_file_access_save_and_swap** **(** :ref:`bool<class_bool>` enabled **)**
  500. Enables backup saves if ``enabled`` is ``true``.
  501. .. _class_OS_set_window_always_on_top:
  502. - void **set_window_always_on_top** **(** :ref:`bool<class_bool>` enabled **)**
  503. Sets whether the window should always be on top.
  504. .. _class_OS_set_window_title:
  505. - void **set_window_title** **(** :ref:`String<class_string>` title **)**
  506. Sets the window title to the specified string.
  507. .. _class_OS_shell_open:
  508. - :ref:`int<class_int>` **shell_open** **(** :ref:`String<class_string>` uri **)**
  509. Requests the OS to open a resource with the most appropriate program. For example.
  510. ``OS.shell_open("C:\\Users\name\Downloads")`` on Windows opens the file explorer at the downloads folders of the user.
  511. ``OS.shell_open("http://godotengine.org")`` opens the default web browser on the official Godot website.
  512. .. _class_OS_show_virtual_keyboard:
  513. - void **show_virtual_keyboard** **(** :ref:`String<class_string>` existing_text="" **)**
  514. Shows the virtual keyboard if the platform has one. The *existing_text* parameter is useful for implementing your own LineEdit, as it tells the virtual keyboard what text has already been typed (the virtual keyboard uses it for auto-correct and predictions).