2019-07-29 20:49:12 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-08-01 14:12:12 +08:00
|
|
|
using System;
|
2022-03-02 16:11:24 +08:00
|
|
|
using System.Diagnostics;
|
2017-03-04 18:02:36 +08:00
|
|
|
using System.IO;
|
2018-03-26 17:55:55 +08:00
|
|
|
using System.Reflection;
|
2020-11-20 17:06:08 +08:00
|
|
|
using System.Runtime.Versioning;
|
2020-05-08 09:38:31 +08:00
|
|
|
using Microsoft.Win32;
|
2024-02-27 18:36:03 +08:00
|
|
|
using osu.Desktop.Performance;
|
2021-04-27 10:37:08 +08:00
|
|
|
using osu.Desktop.Security;
|
2017-09-18 21:32:49 +08:00
|
|
|
using osu.Framework.Platform;
|
2017-10-14 01:10:21 +08:00
|
|
|
using osu.Game;
|
2018-07-06 15:39:27 +08:00
|
|
|
using osu.Desktop.Updater;
|
2018-08-01 01:58:39 +08:00
|
|
|
using osu.Framework;
|
2019-03-30 22:56:38 +08:00
|
|
|
using osu.Framework.Logging;
|
2019-09-24 17:03:01 +08:00
|
|
|
using osu.Game.Updater;
|
2020-07-01 23:15:41 +08:00
|
|
|
using osu.Desktop.Windows;
|
2024-02-27 18:36:03 +08:00
|
|
|
using osu.Framework.Allocation;
|
2021-01-25 02:18:16 +08:00
|
|
|
using osu.Game.IO;
|
2022-06-21 03:21:16 +08:00
|
|
|
using osu.Game.IPC;
|
2023-06-21 17:29:34 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2024-02-27 18:36:03 +08:00
|
|
|
using osu.Game.Performance;
|
2022-07-30 20:26:19 +08:00
|
|
|
using osu.Game.Utils;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-10-14 01:10:21 +08:00
|
|
|
namespace osu.Desktop
|
2017-02-05 05:03:39 +08:00
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
internal partial class OsuGameDesktop : OsuGame
|
2017-02-05 05:03:39 +08:00
|
|
|
{
|
2022-06-21 03:21:16 +08:00
|
|
|
private OsuSchemeLinkIPCChannel? osuSchemeLinkIPCChannel;
|
2023-02-04 01:57:50 +08:00
|
|
|
private ArchiveImportIPCChannel? archiveImportIPCChannel;
|
2022-06-21 03:21:16 +08:00
|
|
|
|
2024-02-27 18:36:03 +08:00
|
|
|
[Cached(typeof(IHighPerformanceSessionManager))]
|
|
|
|
private readonly HighPerformanceSessionManager highPerformanceSessionManager = new HighPerformanceSessionManager();
|
|
|
|
|
2022-06-21 03:21:16 +08:00
|
|
|
public OsuGameDesktop(string[]? args = null)
|
2017-02-05 05:03:39 +08:00
|
|
|
: base(args)
|
|
|
|
{
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-06-21 03:21:16 +08:00
|
|
|
public override StableStorage? GetStorageForStableInstall()
|
2017-08-01 14:12:12 +08:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2019-03-30 22:56:38 +08:00
|
|
|
if (Host is DesktopGameHost desktopHost)
|
2020-05-08 09:38:31 +08:00
|
|
|
{
|
2022-06-21 03:21:16 +08:00
|
|
|
string? stablePath = getStableInstallPath();
|
2020-05-08 09:38:31 +08:00
|
|
|
if (!string.IsNullOrEmpty(stablePath))
|
2021-01-25 02:18:16 +08:00
|
|
|
return new StableStorage(stablePath, desktopHost);
|
2020-05-08 09:38:31 +08:00
|
|
|
}
|
2017-08-01 14:12:12 +08:00
|
|
|
}
|
2019-07-30 11:44:08 +08:00
|
|
|
catch (Exception)
|
2017-08-01 14:12:12 +08:00
|
|
|
{
|
2019-07-30 11:44:08 +08:00
|
|
|
Logger.Log("Could not find a stable install", LoggingTarget.Runtime, LogLevel.Important);
|
2017-08-01 14:12:12 +08:00
|
|
|
}
|
2019-03-30 22:56:38 +08:00
|
|
|
|
|
|
|
return null;
|
2017-08-01 14:12:12 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-06-21 03:21:16 +08:00
|
|
|
private string? getStableInstallPath()
|
2020-05-08 09:38:31 +08:00
|
|
|
{
|
2021-06-02 14:13:21 +08:00
|
|
|
static bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs")) || File.Exists(Path.Combine(p, "osu!.cfg"));
|
2020-05-08 09:38:31 +08:00
|
|
|
|
2022-06-21 03:21:16 +08:00
|
|
|
string? stableInstallPath;
|
2020-05-08 09:38:31 +08:00
|
|
|
|
2020-11-20 17:06:08 +08:00
|
|
|
if (OperatingSystem.IsWindows())
|
2020-05-08 09:38:31 +08:00
|
|
|
{
|
2021-01-15 14:17:38 +08:00
|
|
|
try
|
|
|
|
{
|
|
|
|
stableInstallPath = getStableInstallPathFromRegistry();
|
2020-05-08 09:38:31 +08:00
|
|
|
|
2021-01-15 14:17:38 +08:00
|
|
|
if (!string.IsNullOrEmpty(stableInstallPath) && checkExists(stableInstallPath))
|
|
|
|
return stableInstallPath;
|
|
|
|
}
|
2021-12-13 11:48:40 +08:00
|
|
|
catch
|
|
|
|
{
|
|
|
|
}
|
2020-05-08 09:38:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
stableInstallPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"osu!");
|
|
|
|
if (checkExists(stableInstallPath))
|
|
|
|
return stableInstallPath;
|
|
|
|
|
|
|
|
stableInstallPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".osu");
|
|
|
|
if (checkExists(stableInstallPath))
|
|
|
|
return stableInstallPath;
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-11-20 17:06:08 +08:00
|
|
|
[SupportedOSPlatform("windows")]
|
2022-06-21 03:21:16 +08:00
|
|
|
private string? getStableInstallPathFromRegistry()
|
2020-11-20 17:06:08 +08:00
|
|
|
{
|
2024-02-08 07:54:48 +08:00
|
|
|
using (RegistryKey? key = Registry.ClassesRoot.OpenSubKey("osu!"))
|
|
|
|
return key?.OpenSubKey(WindowsAssociationManager.SHELL_OPEN_COMMAND)?.GetValue(string.Empty)?.ToString()?.Split('"')[1].Replace("osu!.exe", "");
|
2020-11-20 17:06:08 +08:00
|
|
|
}
|
|
|
|
|
2020-03-05 12:34:04 +08:00
|
|
|
protected override UpdateManager CreateUpdateManager()
|
|
|
|
{
|
2022-06-21 03:21:16 +08:00
|
|
|
string? packageManaged = Environment.GetEnvironmentVariable("OSU_EXTERNAL_UPDATE_PROVIDER");
|
2021-11-16 11:11:11 +08:00
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(packageManaged))
|
|
|
|
return new NoActionUpdateManager();
|
|
|
|
|
2020-03-05 12:34:04 +08:00
|
|
|
switch (RuntimeInfo.OS)
|
|
|
|
{
|
|
|
|
case RuntimeInfo.Platform.Windows:
|
2022-03-02 16:11:24 +08:00
|
|
|
Debug.Assert(OperatingSystem.IsWindows());
|
|
|
|
|
2020-03-05 12:34:04 +08:00
|
|
|
return new SquirrelUpdateManager();
|
|
|
|
|
|
|
|
default:
|
|
|
|
return new SimpleUpdateManager();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-21 17:29:34 +08:00
|
|
|
public override bool RestartAppWhenExited()
|
|
|
|
{
|
|
|
|
switch (RuntimeInfo.OS)
|
|
|
|
{
|
|
|
|
case RuntimeInfo.Platform.Windows:
|
|
|
|
Debug.Assert(OperatingSystem.IsWindows());
|
|
|
|
|
|
|
|
// Of note, this is an async method in squirrel that adds an arbitrary delay before returning
|
|
|
|
// likely to ensure the external process is in a good state.
|
|
|
|
//
|
|
|
|
// We're not waiting on that here, but the outro playing before the actual exit should be enough
|
|
|
|
// to cover this.
|
|
|
|
Squirrel.UpdateManager.RestartAppWhenExited().FireAndForget();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.RestartAppWhenExited();
|
|
|
|
}
|
|
|
|
|
2017-02-12 13:54:56 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-12-18 13:07:32 +08:00
|
|
|
LoadComponentAsync(new DiscordRichPresence(), Add);
|
2020-07-01 23:15:41 +08:00
|
|
|
|
|
|
|
if (RuntimeInfo.OS == RuntimeInfo.Platform.Windows)
|
2020-07-24 15:38:48 +08:00
|
|
|
LoadComponentAsync(new GameplayWinKeyBlocker(), Add);
|
2021-04-27 05:41:04 +08:00
|
|
|
|
2021-04-27 09:05:18 +08:00
|
|
|
LoadComponentAsync(new ElevatedPrivilegesChecker(), Add);
|
2022-06-21 03:21:16 +08:00
|
|
|
|
|
|
|
osuSchemeLinkIPCChannel = new OsuSchemeLinkIPCChannel(Host, this);
|
2023-02-04 01:57:50 +08:00
|
|
|
archiveImportIPCChannel = new ArchiveImportIPCChannel(Host, this);
|
2017-02-12 13:54:56 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-02-23 14:38:17 +08:00
|
|
|
public override void SetHost(GameHost host)
|
2017-02-05 05:03:39 +08:00
|
|
|
{
|
|
|
|
base.SetHost(host);
|
2019-04-01 11:16:05 +08:00
|
|
|
|
2022-10-05 13:15:54 +08:00
|
|
|
var iconStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(GetType(), "lazer.ico");
|
|
|
|
if (iconStream != null)
|
2023-07-02 01:02:09 +08:00
|
|
|
host.Window.SetIconFromStream(iconStream);
|
2022-10-05 13:15:54 +08:00
|
|
|
|
2023-07-02 01:02:09 +08:00
|
|
|
host.Window.CursorState |= CursorState.Hidden;
|
|
|
|
host.Window.Title = Name;
|
2017-02-05 05:03:39 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2024-05-23 18:53:33 +08:00
|
|
|
protected override BatteryInfo CreateBatteryInfo() => FrameworkEnvironment.UseSDL3 ? new SDL3BatteryInfo() : new SDL2BatteryInfo();
|
2022-07-30 20:26:19 +08:00
|
|
|
|
2022-06-21 03:21:16 +08:00
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
osuSchemeLinkIPCChannel?.Dispose();
|
2023-02-04 01:57:50 +08:00
|
|
|
archiveImportIPCChannel?.Dispose();
|
2022-06-21 03:21:16 +08:00
|
|
|
}
|
2017-02-05 05:03:39 +08:00
|
|
|
}
|
|
|
|
}
|