2019-07-29 12:49:12 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-08-01 06:12:12 +00:00
|
|
|
using System;
|
2022-03-02 08:11:24 +00:00
|
|
|
using System.Diagnostics;
|
2017-03-04 10:02:36 +00:00
|
|
|
using System.IO;
|
2018-03-26 09:55:55 +00:00
|
|
|
using System.Reflection;
|
2020-11-20 09:06:08 +00:00
|
|
|
using System.Runtime.Versioning;
|
2020-05-08 01:38:31 +00:00
|
|
|
using Microsoft.Win32;
|
2021-04-27 02:37:08 +00:00
|
|
|
using osu.Desktop.Security;
|
2017-09-18 13:32:49 +00:00
|
|
|
using osu.Framework.Platform;
|
2017-10-13 17:10:21 +00:00
|
|
|
using osu.Game;
|
2018-07-06 07:39:27 +00:00
|
|
|
using osu.Desktop.Updater;
|
2018-07-31 17:58:39 +00:00
|
|
|
using osu.Framework;
|
2019-03-30 14:56:38 +00:00
|
|
|
using osu.Framework.Logging;
|
2019-09-24 09:03:01 +00:00
|
|
|
using osu.Game.Updater;
|
2020-07-01 15:15:41 +00:00
|
|
|
using osu.Desktop.Windows;
|
2021-01-24 18:18:16 +00:00
|
|
|
using osu.Game.IO;
|
2022-06-20 19:21:16 +00:00
|
|
|
using osu.Game.IPC;
|
2023-06-21 09:29:34 +00:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2022-07-30 12:26:19 +00:00
|
|
|
using osu.Game.Utils;
|
|
|
|
using SDL2;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-10-13 17:10:21 +00:00
|
|
|
namespace osu.Desktop
|
2017-02-04 21:03:39 +00:00
|
|
|
{
|
2017-03-07 01:59:19 +00:00
|
|
|
internal partial class OsuGameDesktop : OsuGame
|
2017-02-04 21:03:39 +00:00
|
|
|
{
|
2022-06-20 19:21:16 +00:00
|
|
|
private OsuSchemeLinkIPCChannel? osuSchemeLinkIPCChannel;
|
2023-02-03 17:57:50 +00:00
|
|
|
private ArchiveImportIPCChannel? archiveImportIPCChannel;
|
2022-06-20 19:21:16 +00:00
|
|
|
|
|
|
|
public OsuGameDesktop(string[]? args = null)
|
2017-02-04 21:03:39 +00:00
|
|
|
: base(args)
|
|
|
|
{
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-06-20 19:21:16 +00:00
|
|
|
public override StableStorage? GetStorageForStableInstall()
|
2017-08-01 06:12:12 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2019-03-30 14:56:38 +00:00
|
|
|
if (Host is DesktopGameHost desktopHost)
|
2020-05-08 01:38:31 +00:00
|
|
|
{
|
2022-06-20 19:21:16 +00:00
|
|
|
string? stablePath = getStableInstallPath();
|
2020-05-08 01:38:31 +00:00
|
|
|
if (!string.IsNullOrEmpty(stablePath))
|
2021-01-24 18:18:16 +00:00
|
|
|
return new StableStorage(stablePath, desktopHost);
|
2020-05-08 01:38:31 +00:00
|
|
|
}
|
2017-08-01 06:12:12 +00:00
|
|
|
}
|
2019-07-30 03:44:08 +00:00
|
|
|
catch (Exception)
|
2017-08-01 06:12:12 +00:00
|
|
|
{
|
2019-07-30 03:44:08 +00:00
|
|
|
Logger.Log("Could not find a stable install", LoggingTarget.Runtime, LogLevel.Important);
|
2017-08-01 06:12:12 +00:00
|
|
|
}
|
2019-03-30 14:56:38 +00:00
|
|
|
|
|
|
|
return null;
|
2017-08-01 06:12:12 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-06-20 19:21:16 +00:00
|
|
|
private string? getStableInstallPath()
|
2020-05-08 01:38:31 +00:00
|
|
|
{
|
2021-06-02 06:13:21 +00:00
|
|
|
static bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs")) || File.Exists(Path.Combine(p, "osu!.cfg"));
|
2020-05-08 01:38:31 +00:00
|
|
|
|
2022-06-20 19:21:16 +00:00
|
|
|
string? stableInstallPath;
|
2020-05-08 01:38:31 +00:00
|
|
|
|
2020-11-20 09:06:08 +00:00
|
|
|
if (OperatingSystem.IsWindows())
|
2020-05-08 01:38:31 +00:00
|
|
|
{
|
2021-01-15 06:17:38 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
stableInstallPath = getStableInstallPathFromRegistry();
|
2020-05-08 01:38:31 +00:00
|
|
|
|
2021-01-15 06:17:38 +00:00
|
|
|
if (!string.IsNullOrEmpty(stableInstallPath) && checkExists(stableInstallPath))
|
|
|
|
return stableInstallPath;
|
|
|
|
}
|
2021-12-13 03:48:40 +00:00
|
|
|
catch
|
|
|
|
{
|
|
|
|
}
|
2020-05-08 01:38:31 +00: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 09:06:08 +00:00
|
|
|
[SupportedOSPlatform("windows")]
|
2022-06-20 19:21:16 +00:00
|
|
|
private string? getStableInstallPathFromRegistry()
|
2020-11-20 09:06:08 +00:00
|
|
|
{
|
2022-06-20 19:21:16 +00:00
|
|
|
using (RegistryKey? key = Registry.ClassesRoot.OpenSubKey("osu"))
|
2020-11-20 23:06:20 +00:00
|
|
|
return key?.OpenSubKey(@"shell\open\command")?.GetValue(string.Empty)?.ToString()?.Split('"')[1].Replace("osu!.exe", "");
|
2020-11-20 09:06:08 +00:00
|
|
|
}
|
|
|
|
|
2020-03-05 04:34:04 +00:00
|
|
|
protected override UpdateManager CreateUpdateManager()
|
|
|
|
{
|
2022-06-20 19:21:16 +00:00
|
|
|
string? packageManaged = Environment.GetEnvironmentVariable("OSU_EXTERNAL_UPDATE_PROVIDER");
|
2021-11-16 03:11:11 +00:00
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(packageManaged))
|
|
|
|
return new NoActionUpdateManager();
|
|
|
|
|
2020-03-05 04:34:04 +00:00
|
|
|
switch (RuntimeInfo.OS)
|
|
|
|
{
|
|
|
|
case RuntimeInfo.Platform.Windows:
|
2022-03-02 08:11:24 +00:00
|
|
|
Debug.Assert(OperatingSystem.IsWindows());
|
|
|
|
|
2020-03-05 04:34:04 +00:00
|
|
|
return new SquirrelUpdateManager();
|
|
|
|
|
|
|
|
default:
|
|
|
|
return new SimpleUpdateManager();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-21 09:29:34 +00: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 05:54:56 +00:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2019-12-18 05:07:32 +00:00
|
|
|
LoadComponentAsync(new DiscordRichPresence(), Add);
|
2020-07-01 15:15:41 +00:00
|
|
|
|
|
|
|
if (RuntimeInfo.OS == RuntimeInfo.Platform.Windows)
|
2020-07-24 07:38:48 +00:00
|
|
|
LoadComponentAsync(new GameplayWinKeyBlocker(), Add);
|
2021-04-26 21:41:04 +00:00
|
|
|
|
2021-04-27 01:05:18 +00:00
|
|
|
LoadComponentAsync(new ElevatedPrivilegesChecker(), Add);
|
2022-06-20 19:21:16 +00:00
|
|
|
|
|
|
|
osuSchemeLinkIPCChannel = new OsuSchemeLinkIPCChannel(Host, this);
|
2023-02-03 17:57:50 +00:00
|
|
|
archiveImportIPCChannel = new ArchiveImportIPCChannel(Host, this);
|
2017-02-12 05:54:56 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-02-23 06:38:17 +00:00
|
|
|
public override void SetHost(GameHost host)
|
2017-02-04 21:03:39 +00:00
|
|
|
{
|
|
|
|
base.SetHost(host);
|
2019-04-01 03:16:05 +00:00
|
|
|
|
2021-03-12 09:35:42 +00:00
|
|
|
var desktopWindow = (SDL2DesktopWindow)host.Window;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-10-05 05:15:54 +00:00
|
|
|
var iconStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(GetType(), "lazer.ico");
|
|
|
|
if (iconStream != null)
|
|
|
|
desktopWindow.SetIconFromStream(iconStream);
|
|
|
|
|
2021-03-12 09:35:42 +00:00
|
|
|
desktopWindow.CursorState |= CursorState.Hidden;
|
|
|
|
desktopWindow.Title = Name;
|
2017-02-04 21:03:39 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-07-30 12:26:19 +00:00
|
|
|
protected override BatteryInfo CreateBatteryInfo() => new SDL2BatteryInfo();
|
|
|
|
|
2022-06-20 19:21:16 +00:00
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
osuSchemeLinkIPCChannel?.Dispose();
|
2023-02-03 17:57:50 +00:00
|
|
|
archiveImportIPCChannel?.Dispose();
|
2022-06-20 19:21:16 +00:00
|
|
|
}
|
2022-07-30 12:26:19 +00:00
|
|
|
|
|
|
|
private class SDL2BatteryInfo : BatteryInfo
|
|
|
|
{
|
|
|
|
public override double? ChargeLevel
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
SDL.SDL_GetPowerInfo(out _, out int percentage);
|
|
|
|
|
|
|
|
if (percentage == -1)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
return percentage / 100.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool OnBattery => SDL.SDL_GetPowerInfo(out _, out _) == SDL.SDL_PowerState.SDL_POWERSTATE_ON_BATTERY;
|
|
|
|
}
|
2017-02-04 21:03:39 +00:00
|
|
|
}
|
|
|
|
}
|