2015-12-18 06:12:53 +01:00
|
|
|
/**************************************************************************/
|
2020-03-03 14:36:29 +01:00
|
|
|
/* os_linuxbsd.h */
|
2015-12-18 06:12:53 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
|
|
|
|
2020-03-03 14:36:29 +01:00
|
|
|
#ifndef OS_LINUXBSD_H
|
|
|
|
#define OS_LINUXBSD_H
|
2017-01-08 21:29:57 +01:00
|
|
|
|
2020-03-03 14:36:29 +01:00
|
|
|
#include "crash_handler_linuxbsd.h"
|
2023-06-08 14:51:32 +02:00
|
|
|
#include "joypad_linux.h"
|
|
|
|
|
|
|
|
#include "core/input/input.h"
|
2020-03-03 14:36:29 +01:00
|
|
|
#include "drivers/alsa/audio_driver_alsa.h"
|
|
|
|
#include "drivers/alsamidi/midi_driver_alsamidi.h"
|
|
|
|
#include "drivers/pulseaudio/audio_driver_pulseaudio.h"
|
|
|
|
#include "drivers/unix/os_unix.h"
|
|
|
|
#include "servers/audio_server.h"
|
2015-12-18 06:12:53 +01:00
|
|
|
|
2022-11-21 14:04:01 +01:00
|
|
|
#ifdef FONTCONFIG_ENABLED
|
2023-02-15 13:13:56 +01:00
|
|
|
#ifdef SOWRAP_ENABLED
|
2022-11-21 14:04:01 +01:00
|
|
|
#include "fontconfig-so_wrap.h"
|
2023-02-15 13:13:56 +01:00
|
|
|
#else
|
|
|
|
#include <fontconfig/fontconfig.h>
|
|
|
|
#endif
|
2022-11-21 14:04:01 +01:00
|
|
|
#endif
|
|
|
|
|
2020-03-03 14:36:29 +01:00
|
|
|
class OS_LinuxBSD : public OS_Unix {
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void delete_main_loop() override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2022-07-27 20:07:21 +02:00
|
|
|
#ifdef FONTCONFIG_ENABLED
|
|
|
|
bool font_config_initialized = false;
|
2022-11-21 14:04:01 +01:00
|
|
|
FcConfig *config = nullptr;
|
|
|
|
FcObjectSet *object_set = nullptr;
|
2022-12-05 06:56:44 +01:00
|
|
|
|
|
|
|
int _weight_to_fc(int p_weight) const;
|
|
|
|
int _stretch_to_fc(int p_stretch) const;
|
2022-07-27 20:07:21 +02:00
|
|
|
#endif
|
|
|
|
|
2020-03-03 14:36:29 +01:00
|
|
|
#ifdef JOYDEV_ENABLED
|
2020-08-02 20:30:56 +02:00
|
|
|
JoypadLinux *joypad = nullptr;
|
2020-03-03 14:36:29 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ALSA_ENABLED
|
|
|
|
AudioDriverALSA driver_alsa;
|
2016-02-14 15:13:11 +01:00
|
|
|
#endif
|
2015-12-18 06:12:53 +01:00
|
|
|
|
2020-03-03 14:36:29 +01:00
|
|
|
#ifdef ALSAMIDI_ENABLED
|
|
|
|
MIDIDriverALSAMidi driver_alsamidi;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PULSEAUDIO_ENABLED
|
|
|
|
AudioDriverPulseAudio driver_pulseaudio;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CrashHandler crash_handler;
|
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
MainLoop *main_loop = nullptr;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2022-09-16 11:14:14 +02:00
|
|
|
String get_systemd_os_release_info_value(const String &key) const;
|
|
|
|
|
2022-10-11 12:39:41 +02:00
|
|
|
Vector<String> lspci_device_filter(Vector<String> vendor_device_id_mapping, String class_suffix, String check_column, String whitelist) const;
|
|
|
|
Vector<String> lspci_get_device_value(Vector<String> vendor_device_id_mapping, String check_column, String blacklist) const;
|
|
|
|
|
2022-11-13 07:38:32 +01:00
|
|
|
String system_dir_desktop_cache;
|
|
|
|
|
2020-03-03 14:36:29 +01:00
|
|
|
protected:
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void initialize() override;
|
|
|
|
virtual void finalize() override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void initialize_joypads() override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void set_main_loop(MainLoop *p_main_loop) override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
|
|
|
public:
|
2023-04-28 13:15:36 +02:00
|
|
|
virtual String get_identifier() const override;
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual String get_name() const override;
|
2022-09-16 11:14:14 +02:00
|
|
|
virtual String get_distribution_name() const override;
|
|
|
|
virtual String get_version() const override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2022-10-11 12:39:41 +02:00
|
|
|
virtual Vector<String> get_video_adapter_driver_info() const override;
|
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual MainLoop *get_main_loop() const override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2021-12-20 10:28:54 +01:00
|
|
|
virtual uint64_t get_embedded_pck_offset() const override;
|
|
|
|
|
2022-07-08 14:38:30 +02:00
|
|
|
virtual Vector<String> get_system_fonts() const override;
|
2022-11-21 14:04:01 +01: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 override;
|
|
|
|
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 override;
|
2022-07-08 14:38:30 +02:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual String get_config_path() const override;
|
|
|
|
virtual String get_data_path() const override;
|
|
|
|
virtual String get_cache_path() const override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2021-07-11 03:39:31 +02:00
|
|
|
virtual String get_system_dir(SystemDir p_dir, bool p_shared_storage = true) const override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual Error shell_open(String p_uri) override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual String get_unique_id() const override;
|
2020-12-27 01:50:21 +01:00
|
|
|
virtual String get_processor_name() const override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2023-08-01 09:18:41 +02:00
|
|
|
virtual bool is_sandboxed() const override;
|
|
|
|
|
2021-07-22 18:23:48 +02:00
|
|
|
virtual void alert(const String &p_alert, const String &p_title = "ALERT!") override;
|
|
|
|
|
Add Wayland support
Not everything is yet implemented, either for Godot or personal
limitations (I don't have all hardware in the world). A brief list of
the most important issues follows:
- Single-window only: the `DisplayServer` API doesn't expose enough
information for properly creating XDG shell windows.
- Very dumb rendering loop: this is very complicated, just know that
the low consumption mode is forced to 2000 Hz and some clever hacks are
in place to overcome a specific Wayland limitation. This will be
improved to the extent possible both downstream and upstream.
- Features to implement yet: IME, touch input, native file dialog,
drawing tablet (commented out due to a refactor), screen recording.
- Mouse passthrough can't be implement through a poly API, we need a
rect-based one.
- The cursor doesn't yet support fractional scaling.
- Auto scale is rounded up when using fractional scaling as we don't
have a per-window scale query API (basically we need
`DisplayServer::window_get_scale`).
- Building with `x11=no wayland=yes opengl=yes openxr=yes` fails.
This also adds a new project property and editor setting for selecting the
default DisplayServer to start, to allow this backend to start first in
exported projects (X11 is still the default for now). The editor setting
always overrides the project setting.
Special thanks to Drew Devault, toger5, Sebastian Krzyszkowiak, Leandro
Benedet Garcia, Subhransu, Yury Zhuravlev and Mara Huldra.
2023-12-15 02:55:34 +01:00
|
|
|
virtual int get_low_processor_usage_mode_sleep_usec() const override;
|
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual bool _check_internal_feature_support(const String &p_feature) override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
|
|
|
void run();
|
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void disable_crash_handler() override;
|
|
|
|
virtual bool is_disable_crash_handler() const override;
|
2020-03-03 14:36:29 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual Error move_to_trash(const String &p_path) override;
|
2016-06-15 07:25:35 +02:00
|
|
|
|
2023-04-13 21:17:55 +02:00
|
|
|
virtual String get_system_ca_certificates() override;
|
|
|
|
|
2020-03-03 14:36:29 +01:00
|
|
|
OS_LinuxBSD();
|
2022-11-21 14:04:01 +01:00
|
|
|
~OS_LinuxBSD();
|
2015-12-18 06:12:53 +01:00
|
|
|
};
|
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#endif // OS_LINUXBSD_H
|