diff options
| author | Fabio Alessandrelli | 2017-12-27 01:31:51 +0100 |
|---|---|---|
| committer | K. S. Ernest (iFire) Lee | 2018-02-15 07:34:11 -0800 |
| commit | 6784d743f72f66e0e07343bdb326fa42c9f0f43c (patch) | |
| tree | e7043786faac04dee67931003fdc319c16b179c2 /platform/server/os_server.h | |
| parent | 72ef766dfa5fcf35283079ccb98d74f4dbb2d934 (diff) | |
| download | godot-6784d743f72f66e0e07343bdb326fa42c9f0f43c.tar.gz godot-6784d743f72f66e0e07343bdb326fa42c9f0f43c.tar.zst godot-6784d743f72f66e0e07343bdb326fa42c9f0f43c.zip | |
Diffstat (limited to 'platform/server/os_server.h')
| -rw-r--r-- | platform/server/os_server.h | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/platform/server/os_server.h b/platform/server/os_server.h index 7abb4565d..8ab9e028b 100644 --- a/platform/server/os_server.h +++ b/platform/server/os_server.h @@ -27,10 +27,10 @@ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ - #ifndef OS_SERVER_H #define OS_SERVER_H +#include "../x11/crash_handler_x11.h" #include "../x11/power_x11.h" #include "drivers/rtaudio/audio_driver_rtaudio.h" #include "drivers/unix/os_unix.h" @@ -63,11 +63,17 @@ class OS_Server : public OS_Unix { PowerX11 *power_manager; + CrashHandler crash_handler; + protected: virtual int get_video_driver_count() const; virtual const char *get_video_driver_name(int p_driver) const; - virtual Error initialize(const VideoMode &p_desired, int p_video_driver, int p_audio_driver); + virtual int get_audio_driver_count() const; + virtual const char *get_audio_driver_name(int p_driver) const; + + virtual void initialize_core(); + virtual void initialize(const VideoMode &p_desired, int p_video_driver, int p_audio_driver); virtual void finalize(); virtual void set_main_loop(MainLoop *p_main_loop); @@ -76,7 +82,6 @@ public: virtual String get_name(); virtual void set_cursor_shape(CursorShape p_shape); - virtual void set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shape, const Vector2 &p_hotspot); virtual void set_mouse_show(bool p_show); virtual void set_mouse_grab(bool p_grab); @@ -102,6 +107,16 @@ public: virtual OS::PowerState get_power_state(); virtual int get_power_seconds_left(); virtual int get_power_percent_left(); + virtual bool _check_internal_feature_support(const String &p_feature); + + virtual String get_config_path() const; + virtual String get_data_path() const; + virtual String get_cache_path() const; + + virtual String get_system_dir(SystemDir p_dir) const; + + void disable_crash_handler(); + bool is_disable_crash_handler() const; OS_Server(); }; |
