2021-02-20 01:34:41 +01:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Drawing;
|
2022-04-10 19:04:22 +02:00
|
|
|
|
using System.Globalization;
|
2021-02-20 01:34:41 +01:00
|
|
|
|
using System.Runtime.InteropServices;
|
2021-11-28 21:24:17 +01:00
|
|
|
|
using System.Runtime.Versioning;
|
2021-02-20 01:34:41 +01:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Common.System
|
|
|
|
|
{
|
|
|
|
|
public static class ForceDpiAware
|
|
|
|
|
{
|
|
|
|
|
[DllImport("user32.dll")]
|
|
|
|
|
private static extern bool SetProcessDPIAware();
|
|
|
|
|
|
2022-04-10 19:04:22 +02:00
|
|
|
|
private const string X11LibraryName = "libX11.so.6";
|
|
|
|
|
|
|
|
|
|
[DllImport(X11LibraryName)]
|
|
|
|
|
private static extern IntPtr XOpenDisplay(string display);
|
|
|
|
|
|
|
|
|
|
[DllImport(X11LibraryName)]
|
|
|
|
|
private static extern IntPtr XGetDefault(IntPtr display, string program, string option);
|
|
|
|
|
|
|
|
|
|
[DllImport(X11LibraryName)]
|
|
|
|
|
private static extern int XDisplayWidth(IntPtr display, int screenNumber);
|
|
|
|
|
|
|
|
|
|
[DllImport(X11LibraryName)]
|
|
|
|
|
private static extern int XDisplayWidthMM(IntPtr display, int screenNumber);
|
|
|
|
|
|
|
|
|
|
[DllImport(X11LibraryName)]
|
|
|
|
|
private static extern int XCloseDisplay(IntPtr display);
|
|
|
|
|
|
2021-02-20 01:34:41 +01:00
|
|
|
|
private static readonly double _standardDpiScale = 96.0;
|
|
|
|
|
private static readonly double _maxScaleFactor = 1.25;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Marks the application as DPI-Aware when running on the Windows operating system.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static void Windows()
|
|
|
|
|
{
|
|
|
|
|
// Make process DPI aware for proper window sizing on high-res screens.
|
2021-11-28 21:24:17 +01:00
|
|
|
|
if (OperatingSystem.IsWindowsVersionAtLeast(6))
|
2021-02-20 01:34:41 +01:00
|
|
|
|
{
|
|
|
|
|
SetProcessDPIAware();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static double GetWindowScaleFactor()
|
|
|
|
|
{
|
2021-11-28 21:24:17 +01:00
|
|
|
|
double userDpiScale = 96.0;
|
2021-02-20 01:34:41 +01:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2021-11-28 21:24:17 +01:00
|
|
|
|
if (OperatingSystem.IsWindows())
|
|
|
|
|
{
|
|
|
|
|
userDpiScale = Graphics.FromHwnd(IntPtr.Zero).DpiX;
|
|
|
|
|
}
|
2022-04-10 19:04:22 +02:00
|
|
|
|
else if (OperatingSystem.IsLinux())
|
2021-11-28 21:24:17 +01:00
|
|
|
|
{
|
2022-04-10 19:04:22 +02:00
|
|
|
|
string xdgSessionType = Environment.GetEnvironmentVariable("XDG_SESSION_TYPE")?.ToLower();
|
|
|
|
|
|
|
|
|
|
if (xdgSessionType == null || xdgSessionType == "x11")
|
|
|
|
|
{
|
|
|
|
|
IntPtr display = XOpenDisplay(null);
|
|
|
|
|
string dpiString = Marshal.PtrToStringAnsi(XGetDefault(display, "Xft", "dpi"));
|
|
|
|
|
if (dpiString == null || !double.TryParse(dpiString, NumberStyles.Any, CultureInfo.InvariantCulture, out userDpiScale))
|
|
|
|
|
{
|
|
|
|
|
userDpiScale = (double)XDisplayWidth(display, 0) * 25.4 / (double)XDisplayWidthMM(display, 0);
|
|
|
|
|
}
|
|
|
|
|
XCloseDisplay(display);
|
|
|
|
|
}
|
|
|
|
|
else if (xdgSessionType == "wayland")
|
|
|
|
|
{
|
|
|
|
|
// TODO
|
|
|
|
|
Logger.Warning?.Print(LogClass.Application, $"Couldn't determine monitor DPI: Wayland not yet supported");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Logger.Warning?.Print(LogClass.Application, $"Couldn't determine monitor DPI: Unrecognised XDG_SESSION_TYPE: {xdgSessionType}");
|
|
|
|
|
}
|
2021-11-28 21:24:17 +01:00
|
|
|
|
}
|
2021-02-20 01:34:41 +01:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warning?.Print(LogClass.Application, $"Couldn't determine monitor DPI: {e.Message}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Math.Min(userDpiScale / _standardDpiScale, _maxScaleFactor);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|