2015-12-18 05:12:53 +00:00
|
|
|
/**************************************************************************/
|
2020-03-03 13:36:29 +00:00
|
|
|
/* os_linuxbsd.h */
|
2015-12-18 05:12:53 +00: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 13:36:29 +00:00
|
|
|
#ifndef OS_LINUXBSD_H
|
|
|
|
#define OS_LINUXBSD_H
|
2017-01-08 20:29:57 +00:00
|
|
|
|
2020-03-03 13:36:29 +00:00
|
|
|
#include "crash_handler_linuxbsd.h"
|
2023-06-08 12:51:32 +00:00
|
|
|
#include "joypad_linux.h"
|
|
|
|
|
|
|
|
#include "core/input/input.h"
|
2020-03-03 13:36:29 +00: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 05:12:53 +00:00
|
|
|
|
2022-11-21 13:04:01 +00:00
|
|
|
#ifdef FONTCONFIG_ENABLED
|
2023-02-15 12:13:56 +00:00
|
|
|
#ifdef SOWRAP_ENABLED
|
2022-11-21 13:04:01 +00:00
|
|
|
#include "fontconfig-so_wrap.h"
|
2023-02-15 12:13:56 +00:00
|
|
|
#else
|
|
|
|
#include <fontconfig/fontconfig.h>
|
|
|
|
#endif
|
2022-11-21 13:04:01 +00:00
|
|
|
#endif
|
|
|
|
|
2020-03-03 13:36:29 +00:00
|
|
|
class OS_LinuxBSD : public OS_Unix {
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual void delete_main_loop() override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2022-07-27 18:07:21 +00:00
|
|
|
#ifdef FONTCONFIG_ENABLED
|
|
|
|
bool font_config_initialized = false;
|
2022-11-21 13:04:01 +00:00
|
|
|
FcConfig *config = nullptr;
|
|
|
|
FcObjectSet *object_set = nullptr;
|
2022-12-05 05:56:44 +00:00
|
|
|
|
|
|
|
int _weight_to_fc(int p_weight) const;
|
|
|
|
int _stretch_to_fc(int p_stretch) const;
|
2022-07-27 18:07:21 +00:00
|
|
|
#endif
|
|
|
|
|
2020-03-03 13:36:29 +00:00
|
|
|
#ifdef JOYDEV_ENABLED
|
2020-08-02 18:30:56 +00:00
|
|
|
JoypadLinux *joypad = nullptr;
|
2020-03-03 13:36:29 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ALSA_ENABLED
|
|
|
|
AudioDriverALSA driver_alsa;
|
2016-02-14 14:13:11 +00:00
|
|
|
#endif
|
2015-12-18 05:12:53 +00:00
|
|
|
|
2020-03-03 13:36:29 +00:00
|
|
|
#ifdef ALSAMIDI_ENABLED
|
|
|
|
MIDIDriverALSAMidi driver_alsamidi;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PULSEAUDIO_ENABLED
|
|
|
|
AudioDriverPulseAudio driver_pulseaudio;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CrashHandler crash_handler;
|
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
MainLoop *main_loop = nullptr;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2022-09-16 09:14:14 +00:00
|
|
|
String get_systemd_os_release_info_value(const String &key) const;
|
|
|
|
|
2022-10-11 10:39:41 +00: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 06:38:32 +00:00
|
|
|
String system_dir_desktop_cache;
|
|
|
|
|
2020-03-03 13:36:29 +00:00
|
|
|
protected:
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual void initialize() override;
|
|
|
|
virtual void finalize() override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual void initialize_joypads() override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual void set_main_loop(MainLoop *p_main_loop) override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
|
|
|
public:
|
2023-04-28 11:15:36 +00:00
|
|
|
virtual String get_identifier() const override;
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual String get_name() const override;
|
2022-09-16 09:14:14 +00:00
|
|
|
virtual String get_distribution_name() const override;
|
|
|
|
virtual String get_version() const override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2022-10-11 10:39:41 +00:00
|
|
|
virtual Vector<String> get_video_adapter_driver_info() const override;
|
|
|
|
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual MainLoop *get_main_loop() const override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2021-12-20 09:28:54 +00:00
|
|
|
virtual uint64_t get_embedded_pck_offset() const override;
|
|
|
|
|
2022-07-08 12:38:30 +00:00
|
|
|
virtual Vector<String> get_system_fonts() const override;
|
2022-11-21 13:04:01 +00: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 12:38:30 +00:00
|
|
|
|
2020-12-17 17:15:59 +00: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 13:36:29 +00:00
|
|
|
|
2021-07-11 01:39:31 +00:00
|
|
|
virtual String get_system_dir(SystemDir p_dir, bool p_shared_storage = true) const override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2024-01-09 01:36:19 +00:00
|
|
|
virtual Error shell_open(const String &p_uri) override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual String get_unique_id() const override;
|
2020-12-27 00:50:21 +00:00
|
|
|
virtual String get_processor_name() const override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2023-08-01 07:18:41 +00:00
|
|
|
virtual bool is_sandboxed() const override;
|
|
|
|
|
2021-07-22 16:23:48 +00:00
|
|
|
virtual void alert(const String &p_alert, const String &p_title = "ALERT!") override;
|
|
|
|
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual bool _check_internal_feature_support(const String &p_feature) override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
|
|
|
void run();
|
|
|
|
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual void disable_crash_handler() override;
|
|
|
|
virtual bool is_disable_crash_handler() const override;
|
2020-03-03 13:36:29 +00:00
|
|
|
|
2020-12-17 17:15:59 +00:00
|
|
|
virtual Error move_to_trash(const String &p_path) override;
|
2016-06-15 05:25:35 +00:00
|
|
|
|
2023-04-13 19:17:55 +00:00
|
|
|
virtual String get_system_ca_certificates() override;
|
|
|
|
|
2020-03-03 13:36:29 +00:00
|
|
|
OS_LinuxBSD();
|
2022-11-21 13:04:01 +00:00
|
|
|
~OS_LinuxBSD();
|
2015-12-18 05:12:53 +00:00
|
|
|
};
|
|
|
|
|
2022-07-23 21:41:51 +00:00
|
|
|
#endif // OS_LINUXBSD_H
|