Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/core/os/os.h
9903 views
1
/**************************************************************************/
2
/* os.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/config/engine.h"
34
#include "core/io/logger.h"
35
#include "core/io/remote_filesystem_client.h"
36
#include "core/os/time_enums.h"
37
#include "core/string/ustring.h"
38
#include "core/templates/list.h"
39
#include "core/templates/vector.h"
40
41
#include <cstdlib>
42
43
class OS {
44
static OS *singleton;
45
static uint64_t target_ticks;
46
String _execpath;
47
List<String> _cmdline;
48
List<String> _user_args;
49
bool _keep_screen_on = true; // set default value to true, because this had been true before godot 2.0.
50
bool low_processor_usage_mode = false;
51
int low_processor_usage_mode_sleep_usec = 10000;
52
bool _delta_smoothing_enabled = false;
53
bool _verbose_stdout = false;
54
bool _debug_stdout = false;
55
String _local_clipboard;
56
// Assume success by default, all failure cases need to set EXIT_FAILURE explicitly.
57
int _exit_code = EXIT_SUCCESS;
58
bool _allow_hidpi = false;
59
bool _allow_layered = false;
60
bool _stdout_enabled = true;
61
bool _stderr_enabled = true;
62
bool _writing_movie = false;
63
bool _in_editor = false;
64
bool _embedded_in_editor = false;
65
66
CompositeLogger *_logger = nullptr;
67
68
bool restart_on_exit = false;
69
List<String> restart_commandline;
70
71
String _current_rendering_driver_name;
72
String _current_rendering_method;
73
bool _is_gles_over_gl = false;
74
75
RemoteFilesystemClient default_rfs;
76
77
// For tracking benchmark data
78
bool use_benchmark = false;
79
String benchmark_file;
80
HashMap<Pair<String, String>, uint64_t> benchmark_marks_from;
81
HashMap<Pair<String, String>, double> benchmark_marks_final;
82
83
protected:
84
void _set_logger(CompositeLogger *p_logger);
85
86
public:
87
typedef void (*ImeCallback)(void *p_inp, const String &p_text, Point2 p_selection);
88
typedef bool (*HasServerFeatureCallback)(const String &p_feature);
89
90
enum RenderThreadMode {
91
RENDER_THREAD_UNSAFE,
92
RENDER_THREAD_SAFE,
93
RENDER_SEPARATE_THREAD,
94
};
95
96
enum StdHandleType {
97
STD_HANDLE_INVALID,
98
STD_HANDLE_CONSOLE,
99
STD_HANDLE_FILE,
100
STD_HANDLE_PIPE,
101
STD_HANDLE_UNKNOWN,
102
};
103
104
protected:
105
friend class Main;
106
// Needed by tests to setup command-line args.
107
friend int test_main(int argc, char *argv[]);
108
109
HasServerFeatureCallback has_server_feature_callback = nullptr;
110
bool _separate_thread_render = false;
111
bool _silent_crash_handler = false;
112
113
// Functions used by Main to initialize/deinitialize the OS.
114
115
virtual void initialize() = 0;
116
virtual void initialize_joypads() = 0;
117
118
virtual void set_main_loop(MainLoop *p_main_loop) = 0;
119
virtual void delete_main_loop() = 0;
120
121
virtual void finalize() = 0;
122
virtual void finalize_core() = 0;
123
124
virtual void set_cmdline(const char *p_execpath, const List<String> &p_args, const List<String> &p_user_args);
125
126
virtual bool _check_internal_feature_support(const String &p_feature) = 0;
127
128
public:
129
typedef int64_t ProcessID;
130
131
static OS *get_singleton();
132
133
void set_current_rendering_driver_name(const String &p_driver_name) { _current_rendering_driver_name = p_driver_name; }
134
void set_current_rendering_method(const String &p_name) { _current_rendering_method = p_name; }
135
void set_gles_over_gl(bool p_enabled) { _is_gles_over_gl = p_enabled; }
136
137
String get_current_rendering_driver_name() const { return _current_rendering_driver_name; }
138
String get_current_rendering_method() const { return _current_rendering_method; }
139
bool get_gles_over_gl() const { return _is_gles_over_gl; }
140
141
virtual Vector<String> get_video_adapter_driver_info() const = 0;
142
virtual bool get_user_prefers_integrated_gpu() const { return false; }
143
144
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, const Vector<Ref<ScriptBacktrace>> &p_script_backtraces = {});
145
void print(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3;
146
void print_rich(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3;
147
void printerr(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_2_3;
148
149
virtual String get_stdin_string(int64_t p_buffer_size = 1024) = 0;
150
virtual PackedByteArray get_stdin_buffer(int64_t p_buffer_size = 1024) = 0;
151
152
virtual StdHandleType get_stdin_type() const { return STD_HANDLE_UNKNOWN; }
153
virtual StdHandleType get_stdout_type() const { return STD_HANDLE_UNKNOWN; }
154
virtual StdHandleType get_stderr_type() const { return STD_HANDLE_UNKNOWN; }
155
156
virtual Error get_entropy(uint8_t *r_buffer, int p_bytes) = 0; // Should return cryptographically-safe random bytes.
157
virtual String get_system_ca_certificates() { return ""; } // Concatenated certificates in PEM format.
158
159
virtual PackedStringArray get_connected_midi_inputs();
160
virtual void open_midi_inputs();
161
virtual void close_midi_inputs();
162
163
virtual Rect2 calculate_boot_screen_rect(const Size2 &p_window_size, const Size2 &p_imgrect_size) const;
164
165
virtual void alert(const String &p_alert, const String &p_title = "ALERT!");
166
167
struct GDExtensionData {
168
bool also_set_library_path = false;
169
String *r_resolved_path = nullptr;
170
bool generate_temp_files = false;
171
PackedStringArray *library_dependencies = nullptr;
172
};
173
174
virtual Error open_dynamic_library(const String &p_path, void *&p_library_handle, GDExtensionData *p_data = nullptr) { return ERR_UNAVAILABLE; }
175
virtual Error close_dynamic_library(void *p_library_handle) { return ERR_UNAVAILABLE; }
176
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; }
177
178
virtual void set_low_processor_usage_mode(bool p_enabled);
179
virtual bool is_in_low_processor_usage_mode() const;
180
virtual void set_low_processor_usage_mode_sleep_usec(int p_usec);
181
virtual int get_low_processor_usage_mode_sleep_usec() const;
182
183
void set_delta_smoothing(bool p_enabled);
184
bool is_delta_smoothing_enabled() const;
185
186
virtual Vector<String> get_system_fonts() const { return Vector<String>(); }
187
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(); }
188
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>(); }
189
virtual String get_executable_path() const;
190
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;
191
virtual Dictionary execute_with_pipe(const String &p_path, const List<String> &p_arguments, bool p_blocking = true) { return Dictionary(); }
192
virtual Error create_process(const String &p_path, const List<String> &p_arguments, ProcessID *r_child_id = nullptr, bool p_open_console = false) = 0;
193
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); }
194
virtual Error open_with_program(const String &p_program_path, const List<String> &p_paths) { return create_process(p_program_path, p_paths); }
195
virtual Error kill(const ProcessID &p_pid) = 0;
196
virtual int get_process_id() const;
197
virtual bool is_process_running(const ProcessID &p_pid) const = 0;
198
virtual int get_process_exit_code(const ProcessID &p_pid) const = 0;
199
virtual void vibrate_handheld(int p_duration_ms = 500, float p_amplitude = -1.0) {}
200
201
virtual Error shell_open(const String &p_uri);
202
virtual Error shell_show_in_file_manager(String p_path, bool p_open_folder = true);
203
virtual Error set_cwd(const String &p_cwd);
204
205
virtual bool has_environment(const String &p_var) const = 0;
206
virtual String get_environment(const String &p_var) const = 0;
207
virtual void set_environment(const String &p_var, const String &p_value) const = 0;
208
virtual void unset_environment(const String &p_var) const = 0;
209
virtual void load_shell_environment() const {}
210
211
virtual String get_name() const = 0;
212
virtual String get_identifier() const;
213
virtual String get_distribution_name() const = 0;
214
virtual String get_version() const = 0;
215
virtual String get_version_alias() const { return get_version(); }
216
virtual List<String> get_cmdline_args() const { return _cmdline; }
217
virtual List<String> get_cmdline_user_args() const { return _user_args; }
218
virtual List<String> get_cmdline_platform_args() const { return List<String>(); }
219
virtual String get_model_name() const;
220
221
bool is_layered_allowed() const { return _allow_layered; }
222
bool is_hidpi_allowed() const { return _allow_hidpi; }
223
224
void ensure_user_data_dir();
225
226
virtual MainLoop *get_main_loop() const = 0;
227
228
virtual void yield();
229
230
struct DateTime {
231
int64_t year;
232
Month month;
233
uint8_t day;
234
Weekday weekday;
235
uint8_t hour;
236
uint8_t minute;
237
uint8_t second;
238
bool dst;
239
};
240
241
struct TimeZoneInfo {
242
int bias;
243
String name;
244
};
245
246
virtual DateTime get_datetime(bool utc = false) const = 0;
247
virtual TimeZoneInfo get_time_zone_info() const = 0;
248
virtual double get_unix_time() const;
249
250
virtual void delay_usec(uint32_t p_usec) const = 0;
251
virtual void add_frame_delay(bool p_can_draw, bool p_wake_for_events);
252
virtual uint64_t get_frame_delay(bool p_can_draw) const;
253
254
virtual uint64_t get_ticks_usec() const = 0;
255
uint64_t get_ticks_msec() const;
256
257
virtual bool is_userfs_persistent() const { return true; }
258
259
bool is_stdout_verbose() const;
260
bool is_stdout_debug_enabled() const;
261
262
bool is_stdout_enabled() const;
263
bool is_stderr_enabled() const;
264
void set_stdout_enabled(bool p_enabled);
265
void set_stderr_enabled(bool p_enabled);
266
267
virtual void set_crash_handler_silent() { _silent_crash_handler = true; }
268
virtual bool is_crash_handler_silent() { return _silent_crash_handler; }
269
270
virtual String multibyte_to_string(const String &p_encoding, const PackedByteArray &p_array) const;
271
virtual PackedByteArray string_to_multibyte(const String &p_encoding, const String &p_string) const;
272
273
virtual void disable_crash_handler() {}
274
virtual bool is_disable_crash_handler() const { return false; }
275
virtual void initialize_debugging() {}
276
277
virtual uint64_t get_static_memory_usage() const;
278
virtual uint64_t get_static_memory_peak_usage() const;
279
virtual Dictionary get_memory_info() const;
280
281
bool is_separate_thread_rendering_enabled() const { return _separate_thread_render; }
282
283
virtual String get_locale() const;
284
String get_locale_language() const;
285
286
virtual uint64_t get_embedded_pck_offset() const;
287
288
String get_safe_dir_name(const String &p_dir_name, bool p_allow_paths = false) const;
289
virtual String get_godot_dir_name() const;
290
291
virtual String get_data_path() const;
292
virtual String get_config_path() const;
293
virtual String get_cache_path() const;
294
virtual String get_temp_path() const;
295
virtual String get_bundle_resource_dir() const;
296
virtual String get_bundle_icon_path() const;
297
298
virtual String get_user_data_dir(const String &p_user_dir) const;
299
virtual String get_user_data_dir() const;
300
virtual String get_resource_dir() const;
301
302
enum SystemDir {
303
SYSTEM_DIR_DESKTOP,
304
SYSTEM_DIR_DCIM,
305
SYSTEM_DIR_DOCUMENTS,
306
SYSTEM_DIR_DOWNLOADS,
307
SYSTEM_DIR_MOVIES,
308
SYSTEM_DIR_MUSIC,
309
SYSTEM_DIR_PICTURES,
310
SYSTEM_DIR_RINGTONES,
311
};
312
313
virtual String get_system_dir(SystemDir p_dir, bool p_shared_storage = true) const;
314
315
virtual Error move_to_trash(const String &p_path) { return FAILED; }
316
317
void create_lock_file();
318
void remove_lock_file();
319
320
virtual int get_exit_code() const;
321
// `set_exit_code` should only be used from `SceneTree` (or from a similar
322
// level, e.g. from the `Main::start` if leaving without creating a `SceneTree`).
323
// For other components, `SceneTree.quit()` should be used instead.
324
virtual void set_exit_code(int p_code);
325
326
virtual int get_processor_count() const;
327
virtual String get_processor_name() const;
328
virtual int get_default_thread_pool_size() const { return get_processor_count(); }
329
330
virtual String get_unique_id() const;
331
332
bool has_feature(const String &p_feature);
333
334
virtual bool is_sandboxed() const;
335
336
void set_has_server_feature_callback(HasServerFeatureCallback p_callback);
337
338
void set_restart_on_exit(bool p_restart, const List<String> &p_restart_arguments);
339
bool is_restart_on_exit_set() const;
340
List<String> get_restart_on_exit_arguments() const;
341
342
virtual bool request_permission(const String &p_name) { return true; }
343
virtual bool request_permissions() { return true; }
344
virtual Vector<String> get_granted_permissions() const { return Vector<String>(); }
345
virtual void revoke_granted_permissions() {}
346
347
// For recording / measuring benchmark data. Only enabled with tools
348
void set_use_benchmark(bool p_use_benchmark);
349
bool is_use_benchmark_set();
350
void set_benchmark_file(const String &p_benchmark_file);
351
String get_benchmark_file();
352
virtual void benchmark_begin_measure(const String &p_context, const String &p_what);
353
virtual void benchmark_end_measure(const String &p_context, const String &p_what);
354
virtual void benchmark_dump();
355
356
virtual Error setup_remote_filesystem(const String &p_server_host, int p_port, const String &p_password, String &r_project_path);
357
358
void add_logger(Logger *p_logger);
359
360
enum PreferredTextureFormat {
361
PREFERRED_TEXTURE_FORMAT_S3TC_BPTC,
362
PREFERRED_TEXTURE_FORMAT_ETC2_ASTC
363
};
364
365
virtual PreferredTextureFormat get_preferred_texture_format() const;
366
367
// Load GDExtensions specific to this platform.
368
// This is invoked by the GDExtensionManager after loading GDExtensions specified by the project.
369
virtual void load_platform_gdextensions() const {}
370
371
#ifdef TOOLS_ENABLED
372
// Tests OpenGL context and Rendering Device simultaneous creation. This function is expected to crash on some NVIDIA drivers.
373
virtual bool _test_create_rendering_device_and_gl(const String &p_display_driver) const { return true; }
374
virtual bool _test_create_rendering_device(const String &p_display_driver) const { return true; }
375
#endif
376
377
OS();
378
virtual ~OS();
379
};
380
381