class_os.rst 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  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:`delay_msec<class_OS_delay_msec>` **(** :ref:`int<class_int>` msec **)** const |
  22. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  23. | void | :ref:`delay_usec<class_OS_delay_usec>` **(** :ref:`int<class_int>` usec **)** const |
  24. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  25. | void | :ref:`dump_memory_to_file<class_OS_dump_memory_to_file>` **(** :ref:`String<class_string>` file **)** |
  26. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  27. | void | :ref:`dump_resources_to_file<class_OS_dump_resources_to_file>` **(** :ref:`String<class_string>` file **)** |
  28. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  29. | :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=[ ] **)** |
  30. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  31. | :ref:`int<class_int>` | :ref:`find_scancode_from_string<class_OS_find_scancode_from_string>` **(** :ref:`String<class_string>` string **)** const |
  32. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  33. | :ref:`PoolStringArray<class_poolstringarray>` | :ref:`get_cmdline_args<class_OS_get_cmdline_args>` **(** **)** |
  34. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`Dictionary<class_dictionary>` | :ref:`get_date<class_OS_get_date>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  36. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  37. | :ref:`Dictionary<class_dictionary>` | :ref:`get_datetime<class_OS_get_datetime>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  38. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :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 |
  40. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`int<class_int>` | :ref:`get_dynamic_memory_usage<class_OS_get_dynamic_memory_usage>` **(** **)** const |
  42. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`String<class_string>` | :ref:`get_environment<class_OS_get_environment>` **(** :ref:`String<class_string>` environment **)** const |
  44. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`String<class_string>` | :ref:`get_executable_path<class_OS_get_executable_path>` **(** **)** const |
  46. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`String<class_string>` | :ref:`get_latin_keyboard_variant<class_OS_get_latin_keyboard_variant>` **(** **)** const |
  48. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`String<class_string>` | :ref:`get_locale<class_OS_get_locale>` **(** **)** const |
  50. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`String<class_string>` | :ref:`get_model_name<class_OS_get_model_name>` **(** **)** const |
  52. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`String<class_string>` | :ref:`get_name<class_OS_get_name>` **(** **)** const |
  54. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`int<class_int>` | :ref:`get_power_percent_left<class_OS_get_power_percent_left>` **(** **)** |
  56. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`int<class_int>` | :ref:`get_power_seconds_left<class_OS_get_power_seconds_left>` **(** **)** |
  58. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`int<class_int>` | :ref:`get_power_state<class_OS_get_power_state>` **(** **)** |
  60. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`int<class_int>` | :ref:`get_process_id<class_OS_get_process_id>` **(** **)** const |
  62. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`int<class_int>` | :ref:`get_processor_count<class_OS_get_processor_count>` **(** **)** const |
  64. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`String<class_string>` | :ref:`get_scancode_string<class_OS_get_scancode_string>` **(** :ref:`int<class_int>` code **)** const |
  66. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`int<class_int>` | :ref:`get_screen_count<class_OS_get_screen_count>` **(** **)** const |
  68. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`int<class_int>` | :ref:`get_screen_dpi<class_OS_get_screen_dpi>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  70. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`Vector2<class_vector2>` | :ref:`get_screen_position<class_OS_get_screen_position>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  72. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`Vector2<class_vector2>` | :ref:`get_screen_size<class_OS_get_screen_size>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  74. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`int<class_int>` | :ref:`get_splash_tick_msec<class_OS_get_splash_tick_msec>` **(** **)** const |
  76. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`int<class_int>` | :ref:`get_static_memory_peak_usage<class_OS_get_static_memory_peak_usage>` **(** **)** const |
  78. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | :ref:`int<class_int>` | :ref:`get_static_memory_usage<class_OS_get_static_memory_usage>` **(** **)** const |
  80. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`String<class_string>` | :ref:`get_system_dir<class_OS_get_system_dir>` **(** :ref:`int<class_int>` dir **)** const |
  82. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`int<class_int>` | :ref:`get_system_time_secs<class_OS_get_system_time_secs>` **(** **)** const |
  84. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`int<class_int>` | :ref:`get_ticks_msec<class_OS_get_ticks_msec>` **(** **)** const |
  86. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`Dictionary<class_dictionary>` | :ref:`get_time<class_OS_get_time>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  88. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`Dictionary<class_dictionary>` | :ref:`get_time_zone_info<class_OS_get_time_zone_info>` **(** **)** const |
  90. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`String<class_string>` | :ref:`get_unique_id<class_OS_get_unique_id>` **(** **)** const |
  92. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`int<class_int>` | :ref:`get_unix_time<class_OS_get_unix_time>` **(** **)** const |
  94. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`int<class_int>` | :ref:`get_unix_time_from_datetime<class_OS_get_unix_time_from_datetime>` **(** :ref:`Dictionary<class_dictionary>` datetime **)** const |
  96. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`String<class_string>` | :ref:`get_user_data_dir<class_OS_get_user_data_dir>` **(** **)** const |
  98. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`int<class_int>` | :ref:`get_virtual_keyboard_height<class_OS_get_virtual_keyboard_height>` **(** **)** |
  100. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`bool<class_bool>` | :ref:`has_environment<class_OS_has_environment>` **(** :ref:`String<class_string>` environment **)** const |
  102. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  103. | :ref:`bool<class_bool>` | :ref:`has_feature<class_OS_has_feature>` **(** :ref:`String<class_string>` tag_name **)** const |
  104. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  105. | :ref:`bool<class_bool>` | :ref:`has_touchscreen_ui_hint<class_OS_has_touchscreen_ui_hint>` **(** **)** const |
  106. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  107. | :ref:`bool<class_bool>` | :ref:`has_virtual_keyboard<class_OS_has_virtual_keyboard>` **(** **)** const |
  108. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  109. | void | :ref:`hide_virtual_keyboard<class_OS_hide_virtual_keyboard>` **(** **)** |
  110. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  111. | :ref:`bool<class_bool>` | :ref:`is_debug_build<class_OS_is_debug_build>` **(** **)** const |
  112. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  113. | :ref:`bool<class_bool>` | :ref:`is_ok_left_and_cancel_right<class_OS_is_ok_left_and_cancel_right>` **(** **)** const |
  114. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  115. | :ref:`bool<class_bool>` | :ref:`is_scancode_unicode<class_OS_is_scancode_unicode>` **(** :ref:`int<class_int>` code **)** const |
  116. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  117. | :ref:`bool<class_bool>` | :ref:`is_stdout_verbose<class_OS_is_stdout_verbose>` **(** **)** const |
  118. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  119. | :ref:`bool<class_bool>` | :ref:`is_userfs_persistent<class_OS_is_userfs_persistent>` **(** **)** const |
  120. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  121. | :ref:`int<class_int>` | :ref:`kill<class_OS_kill>` **(** :ref:`int<class_int>` pid **)** |
  122. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  123. | :ref:`bool<class_bool>` | :ref:`native_video_is_playing<class_OS_native_video_is_playing>` **(** **)** |
  124. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  125. | void | :ref:`native_video_pause<class_OS_native_video_pause>` **(** **)** |
  126. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  127. | :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 **)** |
  128. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  129. | void | :ref:`native_video_stop<class_OS_native_video_stop>` **(** **)** |
  130. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  131. | void | :ref:`native_video_unpause<class_OS_native_video_unpause>` **(** **)** |
  132. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  133. | void | :ref:`print_all_resources<class_OS_print_all_resources>` **(** :ref:`String<class_string>` tofile="" **)** |
  134. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  135. | void | :ref:`print_all_textures_by_size<class_OS_print_all_textures_by_size>` **(** **)** |
  136. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  137. | void | :ref:`print_resources_by_type<class_OS_print_resources_by_type>` **(** :ref:`PoolStringArray<class_poolstringarray>` types **)** |
  138. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  139. | void | :ref:`print_resources_in_use<class_OS_print_resources_in_use>` **(** :ref:`bool<class_bool>` short=false **)** |
  140. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  141. | void | :ref:`request_attention<class_OS_request_attention>` **(** **)** |
  142. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  143. | void | :ref:`set_icon<class_OS_set_icon>` **(** :ref:`Image<class_image>` icon **)** |
  144. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  145. | void | :ref:`set_ime_position<class_OS_set_ime_position>` **(** :ref:`Vector2<class_vector2>` position **)** |
  146. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  147. | :ref:`int<class_int>` | :ref:`set_thread_name<class_OS_set_thread_name>` **(** :ref:`String<class_string>` name **)** |
  148. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  149. | void | :ref:`set_use_file_access_save_and_swap<class_OS_set_use_file_access_save_and_swap>` **(** :ref:`bool<class_bool>` enabled **)** |
  150. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  151. | void | :ref:`set_window_title<class_OS_set_window_title>` **(** :ref:`String<class_string>` title **)** |
  152. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  153. | :ref:`int<class_int>` | :ref:`shell_open<class_OS_shell_open>` **(** :ref:`String<class_string>` uri **)** |
  154. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  155. | void | :ref:`show_virtual_keyboard<class_OS_show_virtual_keyboard>` **(** :ref:`String<class_string>` existing_text="" **)** |
  156. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  157. Member Variables
  158. ----------------
  159. .. _class_OS_clipboard:
  160. - :ref:`String<class_string>` **clipboard** - The clipboard from the host OS. Might be unavailable on some platforms.
  161. .. _class_OS_current_screen:
  162. - :ref:`int<class_int>` **current_screen** - The current screen index (starting from 0).
  163. .. _class_OS_exit_code:
  164. - :ref:`int<class_int>` **exit_code**
  165. .. _class_OS_keep_screen_on:
  166. - :ref:`bool<class_bool>` **keep_screen_on**
  167. .. _class_OS_low_processor_usage_mode:
  168. - :ref:`bool<class_bool>` **low_processor_usage_mode**
  169. .. _class_OS_screen_orientation:
  170. - _OS.ScreenOrientation **screen_orientation** - The current screen orientation.
  171. .. _class_OS_vsync_enabled:
  172. - :ref:`bool<class_bool>` **vsync_enabled**
  173. .. _class_OS_window_borderless:
  174. - :ref:`bool<class_bool>` **window_borderless** - If ``true``, removes the window frame.
  175. .. _class_OS_window_fullscreen:
  176. - :ref:`bool<class_bool>` **window_fullscreen** - If ``true``, the window is fullscreen.
  177. .. _class_OS_window_maximized:
  178. - :ref:`bool<class_bool>` **window_maximized** - If ``true``, the window is maximized.
  179. .. _class_OS_window_minimized:
  180. - :ref:`bool<class_bool>` **window_minimized** - If ``true``, the window is minimized.
  181. .. _class_OS_window_position:
  182. - :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.
  183. .. _class_OS_window_resizable:
  184. - :ref:`bool<class_bool>` **window_resizable** - If ``true``, the window is resizable by the user.
  185. .. _class_OS_window_size:
  186. - :ref:`Vector2<class_vector2>` **window_size** - The size of the window (without counting window manager decorations).
  187. Enums
  188. -----
  189. .. _enum_OS_SystemDir:
  190. enum **SystemDir**
  191. - **SYSTEM_DIR_DESKTOP** = **0**
  192. - **SYSTEM_DIR_DCIM** = **1**
  193. - **SYSTEM_DIR_DOCUMENTS** = **2**
  194. - **SYSTEM_DIR_DOWNLOADS** = **3**
  195. - **SYSTEM_DIR_MOVIES** = **4**
  196. - **SYSTEM_DIR_MUSIC** = **5**
  197. - **SYSTEM_DIR_PICTURES** = **6**
  198. - **SYSTEM_DIR_RINGTONES** = **7**
  199. .. _enum_OS_ScreenOrientation:
  200. enum **ScreenOrientation**
  201. - **SCREEN_ORIENTATION_LANDSCAPE** = **0**
  202. - **SCREEN_ORIENTATION_PORTRAIT** = **1**
  203. - **SCREEN_ORIENTATION_REVERSE_LANDSCAPE** = **2**
  204. - **SCREEN_ORIENTATION_REVERSE_PORTRAIT** = **3**
  205. - **SCREEN_ORIENTATION_SENSOR_LANDSCAPE** = **4**
  206. - **SCREEN_ORIENTATION_SENSOR_PORTRAIT** = **5**
  207. - **SCREEN_ORIENTATION_SENSOR** = **6**
  208. .. _enum_OS_PowerState:
  209. enum **PowerState**
  210. - **POWERSTATE_UNKNOWN** = **0**
  211. - **POWERSTATE_ON_BATTERY** = **1**
  212. - **POWERSTATE_NO_BATTERY** = **2**
  213. - **POWERSTATE_CHARGING** = **3**
  214. - **POWERSTATE_CHARGED** = **4**
  215. .. _enum_OS_Weekday:
  216. enum **Weekday**
  217. - **DAY_SUNDAY** = **0**
  218. - **DAY_MONDAY** = **1**
  219. - **DAY_TUESDAY** = **2**
  220. - **DAY_WEDNESDAY** = **3**
  221. - **DAY_THURSDAY** = **4**
  222. - **DAY_FRIDAY** = **5**
  223. - **DAY_SATURDAY** = **6**
  224. .. _enum_OS_Month:
  225. enum **Month**
  226. - **MONTH_JANUARY** = **1**
  227. - **MONTH_FEBRUARY** = **2**
  228. - **MONTH_MARCH** = **3**
  229. - **MONTH_APRIL** = **4**
  230. - **MONTH_MAY** = **5**
  231. - **MONTH_JUNE** = **6**
  232. - **MONTH_JULY** = **7**
  233. - **MONTH_AUGUST** = **8**
  234. - **MONTH_SEPTEMBER** = **9**
  235. - **MONTH_OCTOBER** = **10**
  236. - **MONTH_NOVEMBER** = **11**
  237. - **MONTH_DECEMBER** = **12**
  238. Description
  239. -----------
  240. 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.
  241. Member Function Description
  242. ---------------------------
  243. .. _class_OS_alert:
  244. - void **alert** **(** :ref:`String<class_string>` text, :ref:`String<class_string>` title="Alert!" **)**
  245. Displays a modal dialog box utilizing the host OS.
  246. .. _class_OS_can_draw:
  247. - :ref:`bool<class_bool>` **can_draw** **(** **)** const
  248. Returns ``true`` if the host OS allows drawing.
  249. .. _class_OS_can_use_threads:
  250. - :ref:`bool<class_bool>` **can_use_threads** **(** **)** const
  251. Returns ``true`` if the current host platform is using multiple threads.
  252. .. _class_OS_delay_msec:
  253. - void **delay_msec** **(** :ref:`int<class_int>` msec **)** const
  254. Delay executing of the current thread by given milliseconds.
  255. .. _class_OS_delay_usec:
  256. - void **delay_usec** **(** :ref:`int<class_int>` usec **)** const
  257. Delay executing of the current thread by given microseconds.
  258. .. _class_OS_dump_memory_to_file:
  259. - void **dump_memory_to_file** **(** :ref:`String<class_string>` file **)**
  260. Dumps the memory allocation ringlist to a file (only works in debug).
  261. Entry format per line: "Address - Size - Description"
  262. .. _class_OS_dump_resources_to_file:
  263. - void **dump_resources_to_file** **(** :ref:`String<class_string>` file **)**
  264. Dumps all used resources to file (only works in debug).
  265. Entry format per line: "Resource Type : Resource Location"
  266. At the end of the file is a statistic of all used Resource Types.
  267. .. _class_OS_execute:
  268. - :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=[ ] **)**
  269. Execute the binary file in given path, optionally blocking until it returns. A process ID is returned.
  270. .. _class_OS_find_scancode_from_string:
  271. - :ref:`int<class_int>` **find_scancode_from_string** **(** :ref:`String<class_string>` string **)** const
  272. Returns the scancode of the given string (e.g. "Escape")
  273. .. _class_OS_get_cmdline_args:
  274. - :ref:`PoolStringArray<class_poolstringarray>` **get_cmdline_args** **(** **)**
  275. Returns the command line arguments passed to the engine.
  276. .. _class_OS_get_date:
  277. - :ref:`Dictionary<class_dictionary>` **get_date** **(** :ref:`bool<class_bool>` utc=false **)** const
  278. Returns current date as a dictionary of keys: year, month, day, weekday, dst (daylight savings time).
  279. .. _class_OS_get_datetime:
  280. - :ref:`Dictionary<class_dictionary>` **get_datetime** **(** :ref:`bool<class_bool>` utc=false **)** const
  281. Returns current datetime as a dictionary of keys: year, month, day, weekday, dst (daylight savings time), hour, minute, second.
  282. .. _class_OS_get_datetime_from_unix_time:
  283. - :ref:`Dictionary<class_dictionary>` **get_datetime_from_unix_time** **(** :ref:`int<class_int>` unix_time_val **)** const
  284. Get a dictionary of time values when given epoch time.
  285. 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).
  286. .. _class_OS_get_dynamic_memory_usage:
  287. - :ref:`int<class_int>` **get_dynamic_memory_usage** **(** **)** const
  288. Returns the total amount of dynamic memory used (only works in debug).
  289. .. _class_OS_get_environment:
  290. - :ref:`String<class_string>` **get_environment** **(** :ref:`String<class_string>` environment **)** const
  291. Returns an environment variable.
  292. .. _class_OS_get_executable_path:
  293. - :ref:`String<class_string>` **get_executable_path** **(** **)** const
  294. Returns the path to the current engine executable.
  295. .. _class_OS_get_latin_keyboard_variant:
  296. - :ref:`String<class_string>` **get_latin_keyboard_variant** **(** **)** const
  297. Returns the current latin keyboard variant as a String.
  298. Possible return values are: "QWERTY", "AZERTY", "QZERTY", "DVORAK", "NEO", "COLEMAK" or "ERROR".
  299. .. _class_OS_get_locale:
  300. - :ref:`String<class_string>` **get_locale** **(** **)** const
  301. Returns the host OS locale.
  302. .. _class_OS_get_model_name:
  303. - :ref:`String<class_string>` **get_model_name** **(** **)** const
  304. Returns the model name of the current device.
  305. .. _class_OS_get_name:
  306. - :ref:`String<class_string>` **get_name** **(** **)** const
  307. Returns the name of the host OS. Possible values are: "Android", "Haiku", "iOS", "HTML5", "OSX", "Server", "Windows", "UWP", "X11".
  308. .. _class_OS_get_power_percent_left:
  309. - :ref:`int<class_int>` **get_power_percent_left** **(** **)**
  310. Returns the amount of battery left in the device as a percentage.
  311. .. _class_OS_get_power_seconds_left:
  312. - :ref:`int<class_int>` **get_power_seconds_left** **(** **)**
  313. Returns the time in seconds before the device runs out of battery.
  314. .. _class_OS_get_power_state:
  315. - :ref:`int<class_int>` **get_power_state** **(** **)**
  316. Returns the current state of the device regarding battery and power. See ``POWERSTATE\_\*`` constants.
  317. .. _class_OS_get_process_id:
  318. - :ref:`int<class_int>` **get_process_id** **(** **)** const
  319. Returns the game process ID
  320. .. _class_OS_get_processor_count:
  321. - :ref:`int<class_int>` **get_processor_count** **(** **)** const
  322. Returns the number of cores available in the host machine.
  323. .. _class_OS_get_scancode_string:
  324. - :ref:`String<class_string>` **get_scancode_string** **(** :ref:`int<class_int>` code **)** const
  325. Returns the given scancode as a string (e.g. Return values: "Escape", "Shift+Escape").
  326. .. _class_OS_get_screen_count:
  327. - :ref:`int<class_int>` **get_screen_count** **(** **)** const
  328. Returns the number of displays attached to the host machine.
  329. .. _class_OS_get_screen_dpi:
  330. - :ref:`int<class_int>` **get_screen_dpi** **(** :ref:`int<class_int>` screen=-1 **)** const
  331. Returns the dots per inch density of the specified screen.
  332. On Android Devices, the actual screen densities are grouped into six generalized densities:
  333. ldpi - 120 dpi
  334. mdpi - 160 dpi
  335. hdpi - 240 dpi
  336. xhdpi - 320 dpi
  337. xxhdpi - 480 dpi
  338. xxxhdpi - 640 dpi
  339. .. _class_OS_get_screen_position:
  340. - :ref:`Vector2<class_vector2>` **get_screen_position** **(** :ref:`int<class_int>` screen=-1 **)** const
  341. Returns the position of the specified screen by index. If no screen index is provided, the current screen will be used.
  342. .. _class_OS_get_screen_size:
  343. - :ref:`Vector2<class_vector2>` **get_screen_size** **(** :ref:`int<class_int>` screen=-1 **)** const
  344. Returns the dimensions in pixels of the specified screen.
  345. .. _class_OS_get_splash_tick_msec:
  346. - :ref:`int<class_int>` **get_splash_tick_msec** **(** **)** const
  347. .. _class_OS_get_static_memory_peak_usage:
  348. - :ref:`int<class_int>` **get_static_memory_peak_usage** **(** **)** const
  349. Returns the max amount of static memory used (only works in debug).
  350. .. _class_OS_get_static_memory_usage:
  351. - :ref:`int<class_int>` **get_static_memory_usage** **(** **)** const
  352. Returns the amount of static memory being used by the program in bytes.
  353. .. _class_OS_get_system_dir:
  354. - :ref:`String<class_string>` **get_system_dir** **(** :ref:`int<class_int>` dir **)** const
  355. Returns the actual path to commonly used folders across different platforms. Available locations are specified in OS.SystemDir.
  356. .. _class_OS_get_system_time_secs:
  357. - :ref:`int<class_int>` **get_system_time_secs** **(** **)** const
  358. Returns the epoch time of the operating system in seconds.
  359. .. _class_OS_get_ticks_msec:
  360. - :ref:`int<class_int>` **get_ticks_msec** **(** **)** const
  361. Returns the amount of time passed in milliseconds since the engine started.
  362. .. _class_OS_get_time:
  363. - :ref:`Dictionary<class_dictionary>` **get_time** **(** :ref:`bool<class_bool>` utc=false **)** const
  364. Returns current time as a dictionary of keys: hour, minute, second.
  365. .. _class_OS_get_time_zone_info:
  366. - :ref:`Dictionary<class_dictionary>` **get_time_zone_info** **(** **)** const
  367. Returns the current time zone as a dictionary with the keys: bias and name.
  368. .. _class_OS_get_unique_id:
  369. - :ref:`String<class_string>` **get_unique_id** **(** **)** const
  370. Returns a string that is unique to the device. Currently only works on Android and iOS. Returns empty string on other platforms.
  371. .. _class_OS_get_unix_time:
  372. - :ref:`int<class_int>` **get_unix_time** **(** **)** const
  373. Return the current unix timestamp.
  374. .. _class_OS_get_unix_time_from_datetime:
  375. - :ref:`int<class_int>` **get_unix_time_from_datetime** **(** :ref:`Dictionary<class_dictionary>` datetime **)** const
  376. Get an epoch time value from a dictionary of time values.
  377. ``datetime`` must be populated with the following keys: year, month, day, hour, minute, second.
  378. 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.
  379. .. _class_OS_get_user_data_dir:
  380. - :ref:`String<class_string>` **get_user_data_dir** **(** **)** const
  381. Returns the absolute directory path where user data is written (``user://``).
  382. .. _class_OS_get_virtual_keyboard_height:
  383. - :ref:`int<class_int>` **get_virtual_keyboard_height** **(** **)**
  384. .. _class_OS_has_environment:
  385. - :ref:`bool<class_bool>` **has_environment** **(** :ref:`String<class_string>` environment **)** const
  386. Returns ``true`` if an environment variable exists.
  387. .. _class_OS_has_feature:
  388. - :ref:`bool<class_bool>` **has_feature** **(** :ref:`String<class_string>` tag_name **)** const
  389. .. _class_OS_has_touchscreen_ui_hint:
  390. - :ref:`bool<class_bool>` **has_touchscreen_ui_hint** **(** **)** const
  391. Returns ``true`` if the device has a touchscreen or emulates one.
  392. .. _class_OS_has_virtual_keyboard:
  393. - :ref:`bool<class_bool>` **has_virtual_keyboard** **(** **)** const
  394. Returns ``true`` if the platform has a virtual keyboard, ``false`` otherwise.
  395. .. _class_OS_hide_virtual_keyboard:
  396. - void **hide_virtual_keyboard** **(** **)**
  397. Hides the virtual keyboard if it is shown, does nothing otherwise.
  398. .. _class_OS_is_debug_build:
  399. - :ref:`bool<class_bool>` **is_debug_build** **(** **)** const
  400. Returns ``true`` if the build is a debug build.
  401. Returns ``true`` when running in the editor.
  402. Returns ``false`` if the build is a release build.
  403. .. _class_OS_is_ok_left_and_cancel_right:
  404. - :ref:`bool<class_bool>` **is_ok_left_and_cancel_right** **(** **)** const
  405. Returns ``true`` if the "Okay" button should appear on the left and "Cancel" on the right.
  406. .. _class_OS_is_scancode_unicode:
  407. - :ref:`bool<class_bool>` **is_scancode_unicode** **(** :ref:`int<class_int>` code **)** const
  408. Returns ``true`` if the input code has a unicode character.
  409. .. _class_OS_is_stdout_verbose:
  410. - :ref:`bool<class_bool>` **is_stdout_verbose** **(** **)** const
  411. Returns ``true`` if the engine was executed with -v (verbose stdout).
  412. .. _class_OS_is_userfs_persistent:
  413. - :ref:`bool<class_bool>` **is_userfs_persistent** **(** **)** const
  414. 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.
  415. .. _class_OS_kill:
  416. - :ref:`int<class_int>` **kill** **(** :ref:`int<class_int>` pid **)**
  417. Kill a process ID (this method can be used to kill processes that were not spawned by the game).
  418. .. _class_OS_native_video_is_playing:
  419. - :ref:`bool<class_bool>` **native_video_is_playing** **(** **)**
  420. Returns ``true`` if native video is playing.
  421. .. _class_OS_native_video_pause:
  422. - void **native_video_pause** **(** **)**
  423. Pauses native video playback.
  424. .. _class_OS_native_video_play:
  425. - :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 **)**
  426. Plays native video from the specified path, at the given volume and with audio and subtitle tracks.
  427. .. _class_OS_native_video_stop:
  428. - void **native_video_stop** **(** **)**
  429. Stops native video playback.
  430. .. _class_OS_native_video_unpause:
  431. - void **native_video_unpause** **(** **)**
  432. Resumes native video playback.
  433. .. _class_OS_print_all_resources:
  434. - void **print_all_resources** **(** :ref:`String<class_string>` tofile="" **)**
  435. Shows all resources in the game. Optionally the list can be written to a file.
  436. .. _class_OS_print_all_textures_by_size:
  437. - void **print_all_textures_by_size** **(** **)**
  438. Shows the list of loaded textures sorted by size in memory.
  439. .. _class_OS_print_resources_by_type:
  440. - void **print_resources_by_type** **(** :ref:`PoolStringArray<class_poolstringarray>` types **)**
  441. Shows the number of resources loaded by the game of the given types.
  442. .. _class_OS_print_resources_in_use:
  443. - void **print_resources_in_use** **(** :ref:`bool<class_bool>` short=false **)**
  444. Shows all resources currently used by the game.
  445. .. _class_OS_request_attention:
  446. - void **request_attention** **(** **)**
  447. Request the user attention to the window. It'll flash the taskbar button on Windows or bounce the dock icon on OSX.
  448. .. _class_OS_set_icon:
  449. - void **set_icon** **(** :ref:`Image<class_image>` icon **)**
  450. Sets the game's icon.
  451. .. _class_OS_set_ime_position:
  452. - void **set_ime_position** **(** :ref:`Vector2<class_vector2>` position **)**
  453. .. _class_OS_set_thread_name:
  454. - :ref:`int<class_int>` **set_thread_name** **(** :ref:`String<class_string>` name **)**
  455. Sets the name of the current thread.
  456. .. _class_OS_set_use_file_access_save_and_swap:
  457. - void **set_use_file_access_save_and_swap** **(** :ref:`bool<class_bool>` enabled **)**
  458. Enables backup saves if ``enabled`` is ``true``.
  459. .. _class_OS_set_window_title:
  460. - void **set_window_title** **(** :ref:`String<class_string>` title **)**
  461. Sets the window title to the specified string.
  462. .. _class_OS_shell_open:
  463. - :ref:`int<class_int>` **shell_open** **(** :ref:`String<class_string>` uri **)**
  464. Requests the OS to open a resource with the most appropriate program. For example.
  465. ``OS.shell_open("C:\\Users\name\Downloads")`` on Windows opens the file explorer at the downloads folders of the user.
  466. ``OS.shell_open("http://godotengine.org")`` opens the default web browser on the official Godot website.
  467. .. _class_OS_show_virtual_keyboard:
  468. - void **show_virtual_keyboard** **(** :ref:`String<class_string>` existing_text="" **)**
  469. 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).