| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  os.h                                                                  */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifndef OS_H
 | 
					
						
							|  |  |  | #define OS_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/config/engine.h"
 | 
					
						
							|  |  |  | #include "core/io/image.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/io/logger.h"
 | 
					
						
							| 
									
										
										
										
											2023-04-28 13:15:36 +02:00
										 |  |  | #include "core/io/remote_filesystem_client.h"
 | 
					
						
							| 
									
										
										
										
											2022-10-20 16:54:39 -05:00
										 |  |  | #include "core/os/time_enums.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/string/ustring.h"
 | 
					
						
							|  |  |  | #include "core/templates/list.h"
 | 
					
						
							|  |  |  | #include "core/templates/vector.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include <stdarg.h>
 | 
					
						
							| 
									
										
										
										
											2020-05-21 18:08:48 +02:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2015-01-04 21:16:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | class OS { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	static OS *singleton; | 
					
						
							| 
									
										
										
										
											2020-06-29 20:46:21 +02:00
										 |  |  | 	static uint64_t target_ticks; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String _execpath; | 
					
						
							|  |  |  | 	List<String> _cmdline; | 
					
						
							| 
									
										
										
										
											2022-07-29 15:30:52 +02:00
										 |  |  | 	List<String> _user_args; | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	bool _keep_screen_on = true; // set default value to true, because this had been true before godot 2.0.
 | 
					
						
							|  |  |  | 	bool low_processor_usage_mode = false; | 
					
						
							|  |  |  | 	int low_processor_usage_mode_sleep_usec = 10000; | 
					
						
							| 
									
										
										
										
											2021-09-01 15:47:12 +01:00
										 |  |  | 	bool _delta_smoothing_enabled = false; | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	bool _verbose_stdout = false; | 
					
						
							| 
									
										
										
										
											2020-07-09 09:32:42 +02:00
										 |  |  | 	bool _debug_stdout = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String _local_clipboard; | 
					
						
							| 
									
										
										
										
											2020-05-21 18:08:48 +02:00
										 |  |  | 	int _exit_code = EXIT_FAILURE; // unexpected exit is marked as failure
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	bool _allow_hidpi = false; | 
					
						
							|  |  |  | 	bool _allow_layered = false; | 
					
						
							| 
									
										
										
										
											2020-03-07 12:38:06 -03:00
										 |  |  | 	bool _stdout_enabled = true; | 
					
						
							|  |  |  | 	bool _stderr_enabled = true; | 
					
						
							| 
									
										
											  
											
												Implement Running Godot as Movie Writer
* Allows running the game in "movie writer" mode.
* It ensures entirely stable framerate, so your run can be saved stable and with proper sound (which is impossible if your CPU/GPU can't sustain doing this in real-time).
* If disabling vsync, it can save movies faster than the game is run, but if you want to control the interaction it can get difficult.
* Implements a simple, default MJPEG writer.
This new features has two main use cases, which have high demand:
* Saving game videos in high quality and ensuring the frame rate is *completely* stable, always.
* Using Godot as a tool to make movies and animations (which is ideal if you want interaction, or creating them procedurally. No other software is as good for this).
**Note**: This feature **IS NOT** for capturing real-time footage. Use something like OBS, SimpleScreenRecorder or FRAPS to achieve that, as they do a much better job at intercepting the compositor than Godot can probably do using Vulkan or OpenGL natively. If your game runs near real-time when capturing, you can still use this feature but it will play no sound (sound will be saved directly).
Usage:
$ godot --write-movie movie.avi [scene_file.tscn]
Missing:
* Options for configuring video writing via GLOBAL_DEF
* UI Menu for launching with this mode from the editor.
* Add to list of command line options.
* Add a feature tag to override configurations when movie writing (fantastic for saving videos with highest quality settings).
											
										 
											2022-06-17 00:55:19 +02:00
										 |  |  | 	bool _writing_movie = false; | 
					
						
							| 
									
										
										
										
											2019-11-06 20:18:55 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	CompositeLogger *_logger = nullptr; | 
					
						
							| 
									
										
										
										
											2017-09-22 12:56:02 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	bool restart_on_exit = false; | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	List<String> restart_commandline; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 18:11:30 +00:00
										 |  |  | 	// for the user interface we keep a record of the current display driver
 | 
					
						
							|  |  |  | 	// so we can retrieve the rendering drivers available
 | 
					
						
							|  |  |  | 	int _display_driver_id = -1; | 
					
						
							| 
									
										
										
										
											2022-05-02 16:28:25 +02:00
										 |  |  | 	String _current_rendering_driver_name; | 
					
						
							| 
									
										
										
										
											2022-09-07 17:44:36 -07:00
										 |  |  | 	String _current_rendering_method; | 
					
						
							| 
									
										
										
										
											2020-11-18 18:11:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-28 13:15:36 +02:00
										 |  |  | 	RemoteFilesystemClient default_rfs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-22 12:56:02 +07:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2017-11-21 16:35:01 +07:00
										 |  |  | 	void _set_logger(CompositeLogger *p_logger); | 
					
						
							| 
									
										
										
										
											2017-09-22 12:56:02 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-08-07 14:09:56 +03:00
										 |  |  | 	typedef void (*ImeCallback)(void *p_inp, String p_text, Point2 p_selection); | 
					
						
							| 
									
										
										
										
											2019-02-26 11:58:47 -03:00
										 |  |  | 	typedef bool (*HasServerFeatureCallback)(const String &p_feature); | 
					
						
							| 
									
										
										
										
											2017-08-07 14:09:56 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	enum RenderThreadMode { | 
					
						
							|  |  |  | 		RENDER_THREAD_UNSAFE, | 
					
						
							|  |  |  | 		RENDER_THREAD_SAFE, | 
					
						
							|  |  |  | 		RENDER_SEPARATE_THREAD | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	friend class Main; | 
					
						
							| 
									
										
										
										
											2020-08-18 17:24:45 +03:00
										 |  |  | 	// Needed by tests to setup command-line args.
 | 
					
						
							|  |  |  | 	friend int test_main(int argc, char *argv[]); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	HasServerFeatureCallback has_server_feature_callback = nullptr; | 
					
						
							|  |  |  | 	RenderThreadMode _render_thread_mode = RENDER_THREAD_SAFE; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-18 17:24:45 +03:00
										 |  |  | 	// Functions used by Main to initialize/deinitialize the OS.
 | 
					
						
							| 
									
										
										
										
											2017-11-21 16:35:01 +07:00
										 |  |  | 	void add_logger(Logger *p_logger); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 10:36:29 -03:00
										 |  |  | 	virtual void initialize() = 0; | 
					
						
							|  |  |  | 	virtual void initialize_joypads() = 0; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 18:11:30 +00:00
										 |  |  | 	void set_current_rendering_driver_name(String p_driver_name) { _current_rendering_driver_name = p_driver_name; } | 
					
						
							| 
									
										
										
										
											2022-09-07 17:44:36 -07:00
										 |  |  | 	void set_current_rendering_method(String p_name) { _current_rendering_method = p_name; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 18:11:30 +00:00
										 |  |  | 	void set_display_driver_id(int p_display_driver_id) { _display_driver_id = p_display_driver_id; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void set_main_loop(MainLoop *p_main_loop) = 0; | 
					
						
							|  |  |  | 	virtual void delete_main_loop() = 0; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void finalize() = 0; | 
					
						
							|  |  |  | 	virtual void finalize_core() = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-29 15:30:52 +02:00
										 |  |  | 	virtual void set_cmdline(const char *p_execpath, const List<String> &p_args, const List<String> &p_user_args); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	virtual bool _check_internal_feature_support(const String &p_feature) = 0; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | public: | 
					
						
							|  |  |  | 	typedef int64_t ProcessID; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	static OS *get_singleton(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 18:11:30 +00:00
										 |  |  | 	String get_current_rendering_driver_name() const { return _current_rendering_driver_name; } | 
					
						
							| 
									
										
										
										
											2022-09-07 17:44:36 -07:00
										 |  |  | 	String get_current_rendering_method() const { return _current_rendering_method; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 18:11:30 +00:00
										 |  |  | 	int get_display_driver_id() const { return _display_driver_id; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-11 12:39:41 +02:00
										 |  |  | 	virtual Vector<String> get_video_adapter_driver_info() const = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 17:36:40 +02:00
										 |  |  | 	void print_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify = false, Logger::ErrorType p_type = Logger::ERR_ERROR); | 
					
						
							| 
									
										
										
										
											2019-02-22 15:38:49 +01:00
										 |  |  | 	void print(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3; | 
					
						
							| 
									
										
										
										
											2022-05-03 08:29:38 +09:00
										 |  |  | 	void print_rich(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3; | 
					
						
							| 
									
										
										
										
											2019-02-22 15:38:49 +01:00
										 |  |  | 	void printerr(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-29 21:06:11 +01:00
										 |  |  | 	virtual String get_stdin_string() = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-07 17:33:55 +01:00
										 |  |  | 	virtual Error get_entropy(uint8_t *r_buffer, int p_bytes) = 0; // Should return cryptographically-safe random bytes.
 | 
					
						
							| 
									
										
										
										
											2023-04-13 21:17:55 +02:00
										 |  |  | 	virtual String get_system_ca_certificates() { return ""; } // Concatenated certificates in PEM format.
 | 
					
						
							| 
									
										
										
										
											2022-02-07 17:33:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	virtual PackedStringArray get_connected_midi_inputs(); | 
					
						
							| 
									
										
										
										
											2018-08-03 21:17:33 -03:00
										 |  |  | 	virtual void open_midi_inputs(); | 
					
						
							|  |  |  | 	virtual void close_midi_inputs(); | 
					
						
							| 
									
										
										
										
											2018-07-14 09:11:28 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-22 19:23:48 +03:00
										 |  |  | 	virtual void alert(const String &p_alert, const String &p_title = "ALERT!"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-29 00:51:04 +02:00
										 |  |  | 	virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false, String *r_resolved_path = nullptr) { return ERR_UNAVAILABLE; } | 
					
						
							| 
									
										
										
										
											2017-07-27 09:23:21 +02:00
										 |  |  | 	virtual Error close_dynamic_library(void *p_library_handle) { return ERR_UNAVAILABLE; } | 
					
						
							|  |  |  | 	virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional = false) { return ERR_UNAVAILABLE; } | 
					
						
							| 
									
										
										
										
											2017-03-08 02:50:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual void set_low_processor_usage_mode(bool p_enabled); | 
					
						
							|  |  |  | 	virtual bool is_in_low_processor_usage_mode() const; | 
					
						
							| 
									
										
										
										
											2017-11-22 14:40:43 -03:00
										 |  |  | 	virtual void set_low_processor_usage_mode_sleep_usec(int p_usec); | 
					
						
							|  |  |  | 	virtual int get_low_processor_usage_mode_sleep_usec() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 15:47:12 +01:00
										 |  |  | 	void set_delta_smoothing(bool p_enabled); | 
					
						
							|  |  |  | 	bool is_delta_smoothing_enabled() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-08 15:38:30 +03:00
										 |  |  | 	virtual Vector<String> get_system_fonts() const { return Vector<String>(); }; | 
					
						
							| 
									
										
										
										
											2022-11-21 15:04:01 +02:00
										 |  |  | 	virtual String get_system_font_path(const String &p_font_name, int p_weight = 400, int p_stretch = 100, bool p_italic = false) const { return String(); }; | 
					
						
							|  |  |  | 	virtual Vector<String> get_system_font_path_for_text(const String &p_font_name, const String &p_text, const String &p_locale = String(), const String &p_script = String(), int p_weight = 400, int p_stretch = 100, bool p_italic = false) const { return Vector<String>(); }; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual String get_executable_path() const; | 
					
						
							| 
									
										
										
										
											2021-12-16 15:00:55 +02:00
										 |  |  | 	virtual Error execute(const String &p_path, const List<String> &p_arguments, String *r_pipe = nullptr, int *r_exitcode = nullptr, bool read_stderr = false, Mutex *p_pipe_mutex = nullptr, bool p_open_console = false) = 0; | 
					
						
							|  |  |  | 	virtual Error create_process(const String &p_path, const List<String> &p_arguments, ProcessID *r_child_id = nullptr, bool p_open_console = false) = 0; | 
					
						
							| 
									
										
										
										
											2021-11-01 11:12:52 +02:00
										 |  |  | 	virtual Error create_instance(const List<String> &p_arguments, ProcessID *r_child_id = nullptr) { return create_process(get_executable_path(), p_arguments, r_child_id); }; | 
					
						
							| 
									
										
										
										
											2018-08-27 17:32:43 +02:00
										 |  |  | 	virtual Error kill(const ProcessID &p_pid) = 0; | 
					
						
							| 
									
										
										
										
											2017-08-07 17:17:31 +07:00
										 |  |  | 	virtual int get_process_id() const; | 
					
						
							| 
									
										
										
										
											2021-08-12 20:36:23 -07:00
										 |  |  | 	virtual bool is_process_running(const ProcessID &p_pid) const = 0; | 
					
						
							| 
									
										
										
										
											2022-12-15 19:29:12 +01:00
										 |  |  | 	virtual void vibrate_handheld(int p_duration_ms = 500) {} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	virtual Error shell_open(String p_uri); | 
					
						
							| 
									
										
										
										
											2022-12-07 11:33:35 +08:00
										 |  |  | 	virtual Error shell_show_in_file_manager(String p_path, bool p_open_folder = true); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual Error set_cwd(const String &p_cwd); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual bool has_environment(const String &p_var) const = 0; | 
					
						
							|  |  |  | 	virtual String get_environment(const String &p_var) const = 0; | 
					
						
							| 
									
										
										
										
											2023-01-16 14:26:14 +01:00
										 |  |  | 	virtual void set_environment(const String &p_var, const String &p_value) const = 0; | 
					
						
							|  |  |  | 	virtual void unset_environment(const String &p_var) const = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-20 13:36:24 -04:00
										 |  |  | 	virtual String get_name() const = 0; | 
					
						
							| 
									
										
										
										
											2023-04-28 13:15:36 +02:00
										 |  |  | 	virtual String get_identifier() const; | 
					
						
							| 
									
										
										
										
											2022-09-16 11:14:14 +02:00
										 |  |  | 	virtual String get_distribution_name() const = 0; | 
					
						
							|  |  |  | 	virtual String get_version() const = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual List<String> get_cmdline_args() const { return _cmdline; } | 
					
						
							| 
									
										
										
										
											2022-07-29 15:30:52 +02:00
										 |  |  | 	virtual List<String> get_cmdline_user_args() const { return _user_args; } | 
					
						
							| 
									
										
										
										
											2022-07-07 10:57:22 +03:00
										 |  |  | 	virtual List<String> get_cmdline_platform_args() const { return List<String>(); } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual String get_model_name() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 18:02:54 +02:00
										 |  |  | 	bool is_layered_allowed() const { return _allow_layered; } | 
					
						
							|  |  |  | 	bool is_hidpi_allowed() const { return _allow_hidpi; } | 
					
						
							| 
									
										
										
										
											2020-05-19 23:34:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 10:36:29 -03:00
										 |  |  | 	void ensure_user_data_dir(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual MainLoop *get_main_loop() const = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	virtual void yield(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 13:36:10 +08:00
										 |  |  | 	struct DateTime { | 
					
						
							| 
									
										
										
										
											2021-05-24 07:54:05 -04:00
										 |  |  | 		int64_t year; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Month month; | 
					
						
							| 
									
										
										
										
											2021-05-24 07:54:05 -04:00
										 |  |  | 		uint8_t day; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Weekday weekday; | 
					
						
							| 
									
										
										
										
											2021-05-24 07:54:05 -04:00
										 |  |  | 		uint8_t hour; | 
					
						
							|  |  |  | 		uint8_t minute; | 
					
						
							|  |  |  | 		uint8_t second; | 
					
						
							| 
									
										
										
										
											2022-09-08 13:36:10 +08:00
										 |  |  | 		bool dst; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2015-06-06 05:35:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct TimeZoneInfo { | 
					
						
							|  |  |  | 		int bias; | 
					
						
							|  |  |  | 		String name; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 13:36:10 +08:00
										 |  |  | 	virtual DateTime get_datetime(bool utc = false) const = 0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual TimeZoneInfo get_time_zone_info() const = 0; | 
					
						
							| 
									
										
										
										
											2020-05-31 14:19:31 +02:00
										 |  |  | 	virtual double get_unix_time() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void delay_usec(uint32_t p_usec) const = 0; | 
					
						
							| 
									
										
										
										
											2020-06-29 20:46:21 +02:00
										 |  |  | 	virtual void add_frame_delay(bool p_can_draw); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual uint64_t get_ticks_usec() const = 0; | 
					
						
							| 
									
										
										
										
											2021-05-24 07:54:05 -04:00
										 |  |  | 	uint64_t get_ticks_msec() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 16:09:24 +02:00
										 |  |  | 	virtual bool is_userfs_persistent() const { return true; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool is_stdout_verbose() const; | 
					
						
							| 
									
										
										
										
											2020-07-09 09:32:42 +02:00
										 |  |  | 	bool is_stdout_debug_enabled() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 12:38:06 -03:00
										 |  |  | 	bool is_stdout_enabled() const; | 
					
						
							|  |  |  | 	bool is_stderr_enabled() const; | 
					
						
							|  |  |  | 	void set_stdout_enabled(bool p_enabled); | 
					
						
							|  |  |  | 	void set_stderr_enabled(bool p_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-07 22:01:49 -03:00
										 |  |  | 	virtual void disable_crash_handler() {} | 
					
						
							|  |  |  | 	virtual bool is_disable_crash_handler() const { return false; } | 
					
						
							| 
									
										
										
										
											2018-02-11 06:08:37 -05:00
										 |  |  | 	virtual void initialize_debugging() {} | 
					
						
							| 
									
										
										
										
											2017-09-07 22:01:49 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-30 19:07:46 +01:00
										 |  |  | 	virtual uint64_t get_static_memory_usage() const; | 
					
						
							|  |  |  | 	virtual uint64_t get_static_memory_peak_usage() const; | 
					
						
							| 
									
										
										
										
											2023-04-03 11:46:29 +03:00
										 |  |  | 	virtual Dictionary get_memory_info() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RenderThreadMode get_render_thread_mode() const { return _render_thread_mode; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual String get_locale() const; | 
					
						
							| 
									
										
										
										
											2021-09-16 09:27:56 +02:00
										 |  |  | 	String get_locale_language() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-20 11:28:54 +02:00
										 |  |  | 	virtual uint64_t get_embedded_pck_offset() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-14 15:07:28 +01:00
										 |  |  | 	String get_safe_dir_name(const String &p_dir_name, bool p_allow_paths = false) const; | 
					
						
							| 
									
										
											  
											
												Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
											
										 
											2017-11-17 17:11:41 +01:00
										 |  |  | 	virtual String get_godot_dir_name() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual String get_data_path() const; | 
					
						
							|  |  |  | 	virtual String get_config_path() const; | 
					
						
							|  |  |  | 	virtual String get_cache_path() const; | 
					
						
							| 
									
										
										
										
											2020-01-10 18:02:29 +02:00
										 |  |  | 	virtual String get_bundle_resource_dir() const; | 
					
						
							| 
									
										
										
										
											2021-05-13 09:25:09 +03:00
										 |  |  | 	virtual String get_bundle_icon_path() const; | 
					
						
							| 
									
										
											  
											
												Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
											
										 
											2017-11-17 17:11:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 15:25:22 +01:00
										 |  |  | 	virtual String get_user_data_dir() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual String get_resource_dir() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 	enum SystemDir { | 
					
						
							|  |  |  | 		SYSTEM_DIR_DESKTOP, | 
					
						
							|  |  |  | 		SYSTEM_DIR_DCIM, | 
					
						
							|  |  |  | 		SYSTEM_DIR_DOCUMENTS, | 
					
						
							|  |  |  | 		SYSTEM_DIR_DOWNLOADS, | 
					
						
							|  |  |  | 		SYSTEM_DIR_MOVIES, | 
					
						
							|  |  |  | 		SYSTEM_DIR_MUSIC, | 
					
						
							|  |  |  | 		SYSTEM_DIR_PICTURES, | 
					
						
							|  |  |  | 		SYSTEM_DIR_RINGTONES, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-10 18:39:31 -07:00
										 |  |  | 	virtual String get_system_dir(SystemDir p_dir, bool p_shared_storage = true) const; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
											
										 
											2017-11-17 17:11:41 +01:00
										 |  |  | 	virtual Error move_to_trash(const String &p_path) { return FAILED; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual int get_exit_code() const; | 
					
						
							| 
									
										
										
										
											2022-01-18 12:48:12 +01:00
										 |  |  | 	// `set_exit_code` should only be used from `SceneTree` (or from a similar
 | 
					
						
							|  |  |  | 	// level, e.g. from the `Main::start` if leaving without creating a `SceneTree`).
 | 
					
						
							|  |  |  | 	// For other components, `SceneTree.quit()` should be used instead.
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual void set_exit_code(int p_code); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual int get_processor_count() const; | 
					
						
							| 
									
										
										
										
											2020-12-27 01:50:21 +01:00
										 |  |  | 	virtual String get_processor_name() const; | 
					
						
							| 
									
										
										
										
											2021-11-02 01:51:43 +01:00
										 |  |  | 	virtual int get_default_thread_pool_size() const { return get_processor_count(); } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-07 17:17:31 +07:00
										 |  |  | 	virtual String get_unique_id() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 16:38:39 -03:00
										 |  |  | 	bool has_feature(const String &p_feature); | 
					
						
							| 
									
										
										
										
											2017-02-06 00:38:39 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-26 11:58:47 -03:00
										 |  |  | 	void set_has_server_feature_callback(HasServerFeatureCallback p_callback); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	void set_restart_on_exit(bool p_restart, const List<String> &p_restart_arguments); | 
					
						
							|  |  |  | 	bool is_restart_on_exit_set() const; | 
					
						
							| 
									
										
										
										
											2018-07-20 08:37:10 +02:00
										 |  |  | 	List<String> get_restart_on_exit_arguments() const; | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-04 23:06:37 -03:00
										 |  |  | 	virtual bool request_permission(const String &p_name) { return true; } | 
					
						
							| 
									
										
										
										
											2019-10-06 21:17:44 +03:00
										 |  |  | 	virtual bool request_permissions() { return true; } | 
					
						
							|  |  |  | 	virtual Vector<String> get_granted_permissions() const { return Vector<String>(); } | 
					
						
							| 
									
										
										
										
											2019-03-04 23:06:37 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-04 10:11:29 +01:00
										 |  |  | 	virtual void process_and_drop_events() {} | 
					
						
							| 
									
										
										
										
											2023-01-25 12:17:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-28 13:15:36 +02:00
										 |  |  | 	virtual Error setup_remote_filesystem(const String &p_server_host, int p_port, const String &p_password, String &r_project_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-25 12:17:11 +01:00
										 |  |  | 	enum PreferredTextureFormat { | 
					
						
							|  |  |  | 		PREFERRED_TEXTURE_FORMAT_S3TC_BPTC, | 
					
						
							|  |  |  | 		PREFERRED_TEXTURE_FORMAT_ETC2_ASTC | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual PreferredTextureFormat get_preferred_texture_format() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	OS(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual ~OS(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-25 11:10:34 +01:00
										 |  |  | #endif // OS_H
 |