2026-01-12 05:18:12 -05:00
|
|
|
// SPDX-FileCopyrightText: 2002-2026 PCSX2 Dev Team
|
2024-07-30 13:42:36 +02:00
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2009-10-04 20:28:08 +00:00
|
|
|
|
2021-09-03 06:43:33 -04:00
|
|
|
#include "common/Pcsx2Types.h"
|
2024-04-26 18:14:27 +10:00
|
|
|
#include "common/Console.h"
|
2023-12-26 21:25:10 +10:00
|
|
|
#include "common/HostSys.h"
|
2024-04-26 18:14:27 +10:00
|
|
|
#include "common/Path.h"
|
2023-07-12 01:23:36 +03:00
|
|
|
#include "common/ScopedGuard.h"
|
2024-04-26 18:14:27 +10:00
|
|
|
#include "common/SmallString.h"
|
2022-10-02 23:42:59 +10:00
|
|
|
#include "common/StringUtil.h"
|
2022-12-04 14:52:26 +10:00
|
|
|
#include "common/Threading.h"
|
2022-10-02 23:05:05 +10:00
|
|
|
#include "common/WindowInfo.h"
|
2021-09-03 06:43:33 -04:00
|
|
|
|
2025-01-15 21:26:10 +00:00
|
|
|
#include "fmt/format.h"
|
2023-09-16 15:01:13 +10:00
|
|
|
|
2026-07-08 21:46:23 -04:00
|
|
|
#if !defined(__ANDROID__)
|
2025-02-17 10:41:31 -05:00
|
|
|
#include <dbus/dbus.h>
|
2026-07-08 21:46:23 -04:00
|
|
|
#endif
|
2023-09-16 15:01:13 +10:00
|
|
|
#include <spawn.h>
|
2025-04-19 10:23:33 +02:00
|
|
|
#include <sys/sysinfo.h>
|
2023-09-16 15:01:13 +10:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
#include <unistd.h>
|
2026-06-20 20:27:55 -07:00
|
|
|
#if defined(X11_API)
|
2025-02-17 10:41:31 -05:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
#include <X11/extensions/XInput2.h>
|
2026-07-08 21:46:23 -04:00
|
|
|
#endif
|
2025-02-17 10:41:31 -05:00
|
|
|
|
2026-07-03 11:45:16 -07:00
|
|
|
#include <cerrno>
|
2025-01-09 15:07:09 +01:00
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <cstring>
|
2025-02-17 10:41:31 -05:00
|
|
|
#include <ctime>
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <optional>
|
|
|
|
|
#include <thread>
|
2023-04-29 10:18:36 +03:00
|
|
|
|
2010-11-23 21:32:52 +00:00
|
|
|
// Returns 0 on failure (not supported by the operating system).
|
|
|
|
|
u64 GetPhysicalMemory()
|
|
|
|
|
{
|
2021-08-18 13:28:47 +01:00
|
|
|
u64 pages = 0;
|
2010-11-23 21:32:52 +00:00
|
|
|
|
|
|
|
|
#ifdef _SC_PHYS_PAGES
|
2021-08-18 13:28:47 +01:00
|
|
|
pages = sysconf(_SC_PHYS_PAGES);
|
2010-11-23 21:32:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
2021-08-18 13:28:47 +01:00
|
|
|
return pages * getpagesize();
|
2010-11-23 21:32:52 +00:00
|
|
|
}
|
2009-10-04 21:49:23 +00:00
|
|
|
|
2025-04-19 10:23:33 +02:00
|
|
|
u64 GetAvailablePhysicalMemory()
|
|
|
|
|
{
|
2025-04-21 11:03:01 +02:00
|
|
|
// Try to read MemAvailable from /proc/meminfo.
|
|
|
|
|
FILE* file = fopen("/proc/meminfo", "r");
|
|
|
|
|
if (file)
|
|
|
|
|
{
|
|
|
|
|
u64 mem_available = 0;
|
|
|
|
|
u64 mem_free = 0, buffers = 0, cached = 0, sreclaimable = 0, shmem = 0;
|
|
|
|
|
char line[256];
|
|
|
|
|
|
|
|
|
|
while (fgets(line, sizeof(line), file))
|
|
|
|
|
{
|
|
|
|
|
// Modern kernels provide MemAvailable directly - preferred and most accurate.
|
2025-04-30 19:36:54 +02:00
|
|
|
if (sscanf(line, "MemAvailable: %lu kB", &mem_available) == 1)
|
2025-04-21 11:03:01 +02:00
|
|
|
{
|
|
|
|
|
fclose(file);
|
|
|
|
|
return mem_available * _1kb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Fallback values for manual approximation.
|
2025-04-30 19:36:54 +02:00
|
|
|
sscanf(line, "MemFree: %lu kB", &mem_free);
|
|
|
|
|
sscanf(line, "Buffers: %lu kB", &buffers);
|
|
|
|
|
sscanf(line, "Cached: %lu kB", &cached);
|
|
|
|
|
sscanf(line, "SReclaimable: %lu kB", &sreclaimable);
|
|
|
|
|
sscanf(line, "Shmem: %lu kB", &shmem);
|
2025-04-21 11:03:01 +02:00
|
|
|
}
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
|
|
// Fallback approximation: Linux-like heuristic.
|
|
|
|
|
// available = MemFree + Buffers + Cached + SReclaimable - Shmem.
|
|
|
|
|
const u64 available_kb = mem_free + buffers + cached + sreclaimable - shmem;
|
|
|
|
|
return available_kb * _1kb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Fallback to sysinfo if /proc/meminfo couldn't be read.
|
|
|
|
|
struct sysinfo info = {};
|
2025-04-19 10:23:33 +02:00
|
|
|
if (sysinfo(&info) != 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2025-04-21 11:03:01 +02:00
|
|
|
// Note: This does NOT include cached memory - only free + buffer.
|
|
|
|
|
return (static_cast<u64>(info.freeram) + static_cast<u64>(info.bufferram)) * static_cast<u64>(info.mem_unit);
|
2025-04-19 10:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
2009-03-01 03:30:19 +00:00
|
|
|
u64 GetTickFrequency()
|
|
|
|
|
{
|
2026-07-03 11:45:16 -07:00
|
|
|
#if defined(__aarch64__)
|
|
|
|
|
// Frequency of the architected virtual counter read by GetCPUTicks() (e.g. 19.2MHz on
|
|
|
|
|
// Snapdragon 865, 24MHz on Apple M2, 1GHz on ARMv8.6+ with FEAT_ECV).
|
|
|
|
|
u64 freq;
|
|
|
|
|
asm volatile("mrs %0, cntfrq_el0" : "=r"(freq));
|
|
|
|
|
return freq;
|
|
|
|
|
#else
|
2022-10-02 23:42:59 +10:00
|
|
|
return 1000000000; // unix measures in nanoseconds
|
2026-07-03 11:45:16 -07:00
|
|
|
#endif
|
2009-03-01 03:30:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
u64 GetCPUTicks()
|
|
|
|
|
{
|
2026-07-03 11:45:16 -07:00
|
|
|
#if defined(__aarch64__)
|
|
|
|
|
// Read the architected virtual counter directly (a single mrs) rather than going through the
|
|
|
|
|
// vDSO clock_gettime() (function call + seqlock + isb + ns conversion) - this is the same
|
|
|
|
|
// counter the vDSO reads underneath. CNTVCT_EL0 is monotonic and consistent across cores, and
|
|
|
|
|
// Linux always enables EL0 counter access since its own vDSO fast path requires it. Resolution
|
|
|
|
|
// is coarser than 1ns (~52ns at 19.2MHz), which is ample for every consumer of this clock; all
|
|
|
|
|
// consumers must convert through GetTickFrequency() rather than assuming nanoseconds.
|
|
|
|
|
u64 val;
|
|
|
|
|
asm volatile("mrs %0, cntvct_el0" : "=r"(val)::"memory");
|
|
|
|
|
return val;
|
|
|
|
|
#else
|
2022-04-07 22:41:07 +10:00
|
|
|
struct timespec ts;
|
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
|
return (static_cast<u64>(ts.tv_sec) * 1000000000ULL) + ts.tv_nsec;
|
2026-07-03 11:45:16 -07:00
|
|
|
#endif
|
2009-03-01 03:30:19 +00:00
|
|
|
}
|
2009-11-26 03:37:10 +00:00
|
|
|
|
2022-05-18 23:27:23 +10:00
|
|
|
std::string GetOSVersionString()
|
2009-11-26 03:37:10 +00:00
|
|
|
{
|
2021-10-03 16:21:44 -04:00
|
|
|
#if defined(__linux__)
|
2024-02-17 15:23:45 -05:00
|
|
|
FILE* file = fopen("/etc/os-release", "r");
|
|
|
|
|
if (file)
|
|
|
|
|
{
|
|
|
|
|
char line[256];
|
|
|
|
|
std::string distro;
|
|
|
|
|
std::string version = "";
|
|
|
|
|
while (fgets(line, sizeof(line), file))
|
|
|
|
|
{
|
|
|
|
|
std::string_view line_view(line);
|
|
|
|
|
if (line_view.starts_with("NAME="))
|
|
|
|
|
{
|
|
|
|
|
distro = line_view.substr(5, line_view.size() - 6);
|
|
|
|
|
}
|
|
|
|
|
else if (line_view.starts_with("BUILD_ID="))
|
|
|
|
|
{
|
|
|
|
|
version = line_view.substr(9, line_view.size() - 10);
|
|
|
|
|
}
|
|
|
|
|
else if (line_view.starts_with("VERSION_ID="))
|
|
|
|
|
{
|
|
|
|
|
version = line_view.substr(11, line_view.size() - 12);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
|
|
// Some distros put quotes around the name and or version.
|
|
|
|
|
if (distro.starts_with("\"") && distro.ends_with("\""))
|
|
|
|
|
distro = distro.substr(1, distro.size() - 2);
|
|
|
|
|
|
|
|
|
|
if (version.starts_with("\"") && version.ends_with("\""))
|
|
|
|
|
version = version.substr(1, version.size() - 2);
|
|
|
|
|
|
|
|
|
|
if (!distro.empty() && !version.empty())
|
|
|
|
|
return fmt::format("{} {}", distro, version);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-18 23:27:23 +10:00
|
|
|
return "Linux";
|
2021-10-03 16:21:44 -04:00
|
|
|
#else // freebsd
|
2022-05-18 23:27:23 +10:00
|
|
|
return "Other Unix";
|
2021-10-03 16:21:44 -04:00
|
|
|
#endif
|
2009-11-26 03:37:10 +00:00
|
|
|
}
|
|
|
|
|
|
2026-07-08 21:46:23 -04:00
|
|
|
#if !defined(__ANDROID__)
|
2023-07-12 01:23:36 +03:00
|
|
|
static bool SetScreensaverInhibitDBus(const bool inhibit_requested, const char* program_name, const char* reason)
|
2023-04-29 10:18:36 +03:00
|
|
|
{
|
2023-05-03 17:08:00 +03:00
|
|
|
static dbus_uint32_t s_cookie;
|
2023-07-12 01:23:36 +03:00
|
|
|
const char* bus_method = (inhibit_requested) ? "Inhibit" : "UnInhibit";
|
2023-04-29 10:18:36 +03:00
|
|
|
DBusError error_dbus;
|
|
|
|
|
DBusConnection* connection = nullptr;
|
2023-07-12 01:23:36 +03:00
|
|
|
static DBusConnection* s_comparison_connection;
|
2023-04-29 10:18:36 +03:00
|
|
|
DBusMessage* message = nullptr;
|
|
|
|
|
DBusMessage* response = nullptr;
|
|
|
|
|
DBusMessageIter message_itr;
|
2025-01-09 15:07:09 +01:00
|
|
|
char* desktop_session = nullptr;
|
2023-07-12 01:23:36 +03:00
|
|
|
|
|
|
|
|
ScopedGuard cleanup = [&]() {
|
|
|
|
|
if (dbus_error_is_set(&error_dbus))
|
|
|
|
|
dbus_error_free(&error_dbus);
|
|
|
|
|
if (message)
|
|
|
|
|
dbus_message_unref(message);
|
|
|
|
|
if (response)
|
|
|
|
|
dbus_message_unref(response);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
dbus_error_init(&error_dbus);
|
|
|
|
|
// Calling dbus_bus_get() after the first time returns a pointer to the existing connection.
|
|
|
|
|
connection = dbus_bus_get(DBUS_BUS_SESSION, &error_dbus);
|
|
|
|
|
if (!connection || (dbus_error_is_set(&error_dbus)))
|
|
|
|
|
return false;
|
|
|
|
|
if (s_comparison_connection != connection)
|
|
|
|
|
{
|
|
|
|
|
dbus_connection_set_exit_on_disconnect(connection, false);
|
|
|
|
|
s_cookie = 0;
|
|
|
|
|
s_comparison_connection = connection;
|
|
|
|
|
}
|
2025-01-09 15:07:09 +01:00
|
|
|
|
|
|
|
|
desktop_session = std::getenv("DESKTOP_SESSION");
|
|
|
|
|
if (desktop_session && std::strncmp(desktop_session, "mate", 4) == 0)
|
|
|
|
|
{
|
|
|
|
|
message = dbus_message_new_method_call("org.mate.ScreenSaver", "/org/mate/ScreenSaver", "org.mate.ScreenSaver", bus_method);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
message = dbus_message_new_method_call("org.freedesktop.ScreenSaver", "/org/freedesktop/ScreenSaver", "org.freedesktop.ScreenSaver", bus_method);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-12 01:23:36 +03:00
|
|
|
if (!message)
|
|
|
|
|
return false;
|
|
|
|
|
// Initialize an append iterator for the message, gets freed with the message.
|
2023-04-29 10:18:36 +03:00
|
|
|
dbus_message_iter_init_append(message, &message_itr);
|
|
|
|
|
if (inhibit_requested)
|
|
|
|
|
{
|
2023-07-12 01:23:36 +03:00
|
|
|
// Guard against repeat inhibitions which would add extra inhibitors each generating a different cookie.
|
|
|
|
|
if (s_cookie)
|
|
|
|
|
return false;
|
2023-04-29 10:18:36 +03:00
|
|
|
// Append process/window name.
|
|
|
|
|
if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_STRING, &program_name))
|
2023-07-12 01:23:36 +03:00
|
|
|
return false;
|
2023-04-29 10:18:36 +03:00
|
|
|
// Append reason for inhibiting the screensaver.
|
|
|
|
|
if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_STRING, &reason))
|
2023-07-12 01:23:36 +03:00
|
|
|
return false;
|
2023-04-29 10:18:36 +03:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Only Append the cookie.
|
2023-05-03 17:08:00 +03:00
|
|
|
if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_UINT32, &s_cookie))
|
2023-07-12 01:23:36 +03:00
|
|
|
return false;
|
2023-04-29 10:18:36 +03:00
|
|
|
}
|
|
|
|
|
// Send message and get response.
|
2023-07-12 01:23:36 +03:00
|
|
|
response = dbus_connection_send_with_reply_and_block(connection, message, DBUS_TIMEOUT_USE_DEFAULT, &error_dbus);
|
|
|
|
|
if (!response || dbus_error_is_set(&error_dbus))
|
|
|
|
|
return false;
|
|
|
|
|
s_cookie = 0;
|
2023-04-29 10:18:36 +03:00
|
|
|
if (inhibit_requested)
|
|
|
|
|
{
|
|
|
|
|
// Get the cookie from the response message.
|
2023-07-12 01:23:36 +03:00
|
|
|
if (!dbus_message_get_args(response, &error_dbus, DBUS_TYPE_UINT32, &s_cookie, DBUS_TYPE_INVALID) || dbus_error_is_set(&error_dbus))
|
|
|
|
|
return false;
|
2023-04-29 10:18:36 +03:00
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-23 23:35:34 +10:00
|
|
|
bool Common::InhibitScreensaver(bool inhibit)
|
2015-02-26 04:08:58 +02:00
|
|
|
{
|
2023-07-12 01:23:36 +03:00
|
|
|
return SetScreensaverInhibitDBus(inhibit, "PCSX2", "PCSX2 VM is running.");
|
2015-02-26 04:08:58 +02:00
|
|
|
}
|
2022-04-18 23:35:14 +10:00
|
|
|
|
2026-06-20 20:27:55 -07:00
|
|
|
#if defined(X11_API)
|
2025-02-17 10:41:31 -05:00
|
|
|
void Common::SetMousePosition(int x, int y)
|
|
|
|
|
{
|
|
|
|
|
Display* display = XOpenDisplay(nullptr);
|
|
|
|
|
if (!display)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Window root = DefaultRootWindow(display);
|
|
|
|
|
XWarpPointer(display, None, root, 0, 0, 0, 0, x, y);
|
|
|
|
|
XFlush(display);
|
|
|
|
|
|
|
|
|
|
XCloseDisplay(display);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static std::function<void(int, int)> fnMouseMoveCb;
|
|
|
|
|
static std::atomic<bool> trackingMouse = false;
|
|
|
|
|
static std::thread mouseThread;
|
|
|
|
|
|
|
|
|
|
void mouseEventLoop()
|
|
|
|
|
{
|
|
|
|
|
Threading::SetNameOfCurrentThread("X11 Mouse Thread");
|
|
|
|
|
Display* display = XOpenDisplay(nullptr);
|
|
|
|
|
if (!display)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int opcode, eventcode, error;
|
|
|
|
|
if (!XQueryExtension(display, "XInputExtension", &opcode, &eventcode, &error))
|
|
|
|
|
{
|
|
|
|
|
XCloseDisplay(display);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const Window root = DefaultRootWindow(display);
|
|
|
|
|
XIEventMask evmask;
|
|
|
|
|
unsigned char mask[(XI_LASTEVENT + 7) / 8] = {0};
|
|
|
|
|
|
|
|
|
|
evmask.deviceid = XIAllDevices;
|
|
|
|
|
evmask.mask_len = sizeof(mask);
|
|
|
|
|
evmask.mask = mask;
|
|
|
|
|
XISetMask(mask, XI_RawMotion);
|
|
|
|
|
|
|
|
|
|
XISelectEvents(display, root, &evmask, 1);
|
|
|
|
|
XSync(display, False);
|
|
|
|
|
|
|
|
|
|
XEvent event;
|
|
|
|
|
while (trackingMouse)
|
|
|
|
|
{
|
|
|
|
|
// XNextEvent is blocking, this is a zombie process risk if no events arrive
|
|
|
|
|
// while we are trying to shutdown.
|
|
|
|
|
// https://nrk.neocities.org/articles/x11-timeout-with-xsyncalarm might be
|
|
|
|
|
// a better solution than using XPending.
|
|
|
|
|
if (!XPending(display))
|
|
|
|
|
{
|
|
|
|
|
Threading::Sleep(1);
|
|
|
|
|
Threading::SpinWait();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XNextEvent(display, &event);
|
|
|
|
|
if (event.xcookie.type == GenericEvent &&
|
|
|
|
|
event.xcookie.extension == opcode &&
|
|
|
|
|
XGetEventData(display, &event.xcookie))
|
|
|
|
|
{
|
|
|
|
|
XIRawEvent* raw_event = reinterpret_cast<XIRawEvent*>(event.xcookie.data);
|
|
|
|
|
if (raw_event->evtype == XI_RawMotion)
|
|
|
|
|
{
|
|
|
|
|
Window w;
|
|
|
|
|
int root_x, root_y, win_x, win_y;
|
|
|
|
|
unsigned int mask;
|
|
|
|
|
XQueryPointer(display, root, &w, &w, &root_x, &root_y, &win_x, &win_y, &mask);
|
|
|
|
|
|
|
|
|
|
if (fnMouseMoveCb)
|
|
|
|
|
fnMouseMoveCb(root_x, root_y);
|
|
|
|
|
}
|
|
|
|
|
XFreeEventData(display, &event.xcookie);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XCloseDisplay(display);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Common::AttachMousePositionCb(std::function<void(int, int)> cb)
|
|
|
|
|
{
|
|
|
|
|
fnMouseMoveCb = cb;
|
|
|
|
|
|
|
|
|
|
if (trackingMouse)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
trackingMouse = true;
|
|
|
|
|
mouseThread = std::thread(mouseEventLoop);
|
|
|
|
|
mouseThread.detach();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Common::DetachMousePositionCb()
|
|
|
|
|
{
|
|
|
|
|
trackingMouse = false;
|
|
|
|
|
fnMouseMoveCb = nullptr;
|
|
|
|
|
if (mouseThread.joinable())
|
|
|
|
|
{
|
|
|
|
|
mouseThread.join();
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-06-20 20:27:55 -07:00
|
|
|
#endif // X11_API
|
2025-02-17 10:41:31 -05:00
|
|
|
|
2026-07-08 21:46:23 -04:00
|
|
|
#else // __ANDROID__
|
|
|
|
|
|
|
|
|
|
// Android has no X11 or D-Bus screensaver/session service; these are no-ops.
|
|
|
|
|
bool Common::InhibitScreensaver(bool inhibit)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Common::SetMousePosition(int x, int y)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Common::AttachMousePositionCb(std::function<void(int, int)> cb)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Common::DetachMousePositionCb()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // !__ANDROID__
|
|
|
|
|
|
|
|
|
|
// Desktop-Linux only: the aplay/gstreamer approach uses posix_spawnp (bionic API 30+)
|
|
|
|
|
// and external audio tools. Android provides its own Common::PlaySoundAsync (native-lib).
|
|
|
|
|
#ifndef __ANDROID__
|
2022-04-18 23:35:14 +10:00
|
|
|
bool Common::PlaySoundAsync(const char* path)
|
|
|
|
|
{
|
|
|
|
|
#ifdef __linux__
|
|
|
|
|
// This is... pretty awful. But I can't think of a better way without linking to e.g. gstreamer.
|
|
|
|
|
const char* cmdname = "aplay";
|
|
|
|
|
const char* argv[] = {cmdname, path, nullptr};
|
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
|
|
// Since we set SA_NOCLDWAIT in Qt, we don't need to wait here.
|
|
|
|
|
int res = posix_spawnp(&pid, cmdname, nullptr, nullptr, const_cast<char**>(argv), environ);
|
2024-04-26 18:14:27 +10:00
|
|
|
if (res == 0)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
// Try gst-play-1.0.
|
|
|
|
|
const char* gst_play_cmdname = "gst-play-1.0";
|
|
|
|
|
const char* gst_play_argv[] = {cmdname, path, nullptr};
|
|
|
|
|
res = posix_spawnp(&pid, gst_play_cmdname, nullptr, nullptr, const_cast<char**>(gst_play_argv), environ);
|
|
|
|
|
if (res == 0)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
// gst-launch? Bit messier for sure.
|
|
|
|
|
TinyString location_str = TinyString::from_format("location={}", path);
|
|
|
|
|
TinyString parse_str = TinyString::from_format("{}parse", Path::GetExtension(path));
|
|
|
|
|
const char* gst_launch_cmdname = "gst-launch-1.0";
|
|
|
|
|
const char* gst_launch_argv[] = {
|
|
|
|
|
gst_launch_cmdname, "filesrc", location_str.c_str(), "!", parse_str.c_str(), "!", "alsasink", nullptr};
|
|
|
|
|
res = posix_spawnp(&pid, gst_launch_cmdname, nullptr, nullptr, const_cast<char**>(gst_launch_argv), environ);
|
|
|
|
|
if (res == 0)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
Console.ErrorFmt("Failed to play sound effect {}. Make sure you have aplay, gst-play-1.0, or gst-launch-1.0 available.", path);
|
|
|
|
|
return false;
|
2022-04-18 23:35:14 +10:00
|
|
|
#else
|
|
|
|
|
return false;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2026-07-08 21:46:23 -04:00
|
|
|
#endif // !__ANDROID__ (PlaySoundAsync — Android impl lives in native-lib.cpp)
|
2022-04-18 23:35:14 +10:00
|
|
|
|
2022-12-04 14:52:26 +10:00
|
|
|
void Threading::Sleep(int ms)
|
|
|
|
|
{
|
|
|
|
|
usleep(1000 * ms);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Threading::SleepUntil(u64 ticks)
|
|
|
|
|
{
|
2026-07-03 11:45:16 -07:00
|
|
|
// GetCPUTicks() values are not necessarily in the CLOCK_MONOTONIC domain (on AArch64 they are
|
|
|
|
|
// raw CNTVCT_EL0 counter values with a different epoch), so we can't use TIMER_ABSTIME here.
|
|
|
|
|
// Sleep off the remaining delta instead, retrying on early wakeups, matching the Windows and
|
|
|
|
|
// Darwin implementations.
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
const s64 diff = static_cast<s64>(ticks - GetCPUTicks());
|
|
|
|
|
if (diff <= 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
const u64 freq = GetTickFrequency();
|
|
|
|
|
struct timespec ts;
|
|
|
|
|
ts.tv_sec = static_cast<time_t>(static_cast<u64>(diff) / freq);
|
|
|
|
|
ts.tv_nsec = static_cast<long>(((static_cast<u64>(diff) % freq) * 1000000000ULL) / freq);
|
|
|
|
|
|
|
|
|
|
const int err = clock_nanosleep(CLOCK_MONOTONIC, 0, &ts, nullptr);
|
|
|
|
|
if (err != 0 && err != EINTR)
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-12-04 14:52:26 +10:00
|
|
|
}
|