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;
|
2021-03-31 05:57:28 +00:00
|
|
|
using System.Collections.Generic;
|
2022-03-02 08:11:24 +00:00
|
|
|
using System.Diagnostics;
|
2017-03-04 10:02:36 +00:00
|
|
|
using System.IO;
|
2017-09-18 13:32:49 +00:00
|
|
|
using System.Linq;
|
2018-03-26 09:55:55 +00:00
|
|
|
using System.Reflection;
|
2020-11-20 09:06:08 +00:00
|
|
|
using System.Runtime.Versioning;
|
2017-03-04 07:47:37 +00:00
|
|
|
using System.Threading.Tasks;
|
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;
|
2022-01-14 22:16:07 +00:00
|
|
|
using osu.Framework.Input.Handlers;
|
|
|
|
using osu.Framework.Input.Handlers.Joystick;
|
|
|
|
using osu.Framework.Input.Handlers.Mouse;
|
|
|
|
using osu.Framework.Input.Handlers.Tablet;
|
2021-03-31 05:57:28 +00:00
|
|
|
using osu.Framework.Threading;
|
2021-01-24 18:18:16 +00:00
|
|
|
using osu.Game.IO;
|
2022-06-20 19:21:16 +00:00
|
|
|
using osu.Game.IPC;
|
2022-01-14 22:16:07 +00:00
|
|
|
using osu.Game.Overlays.Settings;
|
|
|
|
using osu.Game.Overlays.Settings.Sections.Input;
|
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 class OsuGameDesktop : OsuGame
|
2017-02-04 21:03:39 +00:00
|
|
|
{
|
2022-06-20 19:21:16 +00:00
|
|
|
private OsuSchemeLinkIPCChannel? osuSchemeLinkIPCChannel;
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
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
|
|
|
|
2020-10-03 03:28:43 +00:00
|
|
|
var iconStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(GetType(), "lazer.ico");
|
|
|
|
|
2021-03-12 09:35:42 +00:00
|
|
|
var desktopWindow = (SDL2DesktopWindow)host.Window;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2021-03-12 09:35:42 +00:00
|
|
|
desktopWindow.CursorState |= CursorState.Hidden;
|
|
|
|
desktopWindow.SetIconFromStream(iconStream);
|
|
|
|
desktopWindow.Title = Name;
|
|
|
|
desktopWindow.DragDrop += f => fileDrop(new[] { f });
|
2017-02-04 21:03:39 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-01-14 22:16:07 +00:00
|
|
|
public override SettingsSubsection CreateSettingsSubsectionFor(InputHandler handler)
|
|
|
|
{
|
|
|
|
switch (handler)
|
|
|
|
{
|
|
|
|
case ITabletHandler th:
|
|
|
|
return new TabletSettings(th);
|
|
|
|
|
|
|
|
case MouseHandler mh:
|
|
|
|
return new MouseSettings(mh);
|
|
|
|
|
2022-06-20 20:53:32 +00:00
|
|
|
case JoystickHandler jh:
|
|
|
|
return new JoystickSettings(jh);
|
2022-01-14 22:16:07 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return base.CreateSettingsSubsectionFor(handler);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-31 05:57:28 +00:00
|
|
|
private readonly List<string> importableFiles = new List<string>();
|
2022-06-20 19:21:16 +00:00
|
|
|
private ScheduledDelegate? importSchedule;
|
2021-03-31 05:57:28 +00:00
|
|
|
|
2020-06-12 00:16:21 +00:00
|
|
|
private void fileDrop(string[] filePaths)
|
2017-02-04 21:03:39 +00:00
|
|
|
{
|
2021-03-31 05:57:28 +00:00
|
|
|
lock (importableFiles)
|
|
|
|
{
|
2021-10-27 04:04:41 +00:00
|
|
|
string firstExtension = Path.GetExtension(filePaths.First());
|
2021-03-31 05:57:28 +00:00
|
|
|
|
|
|
|
if (filePaths.Any(f => Path.GetExtension(f) != firstExtension)) return;
|
|
|
|
|
|
|
|
importableFiles.AddRange(filePaths);
|
|
|
|
|
|
|
|
Logger.Log($"Adding {filePaths.Length} files for import");
|
|
|
|
|
|
|
|
// File drag drop operations can potentially trigger hundreds or thousands of these calls on some platforms.
|
|
|
|
// In order to avoid spawning multiple import tasks for a single drop operation, debounce a touch.
|
|
|
|
importSchedule?.Cancel();
|
|
|
|
importSchedule = Scheduler.AddDelayed(handlePendingImports, 100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handlePendingImports()
|
|
|
|
{
|
|
|
|
lock (importableFiles)
|
|
|
|
{
|
|
|
|
Logger.Log($"Handling batch import of {importableFiles.Count} files");
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2021-10-27 04:04:41 +00:00
|
|
|
string[] paths = importableFiles.ToArray();
|
2021-03-31 05:57:28 +00:00
|
|
|
importableFiles.Clear();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2021-03-31 05:57:28 +00:00
|
|
|
Task.Factory.StartNew(() => Import(paths), TaskCreationOptions.LongRunning);
|
|
|
|
}
|
2017-02-04 21:03:39 +00:00
|
|
|
}
|
2022-06-20 19:21:16 +00:00
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
osuSchemeLinkIPCChannel?.Dispose();
|
|
|
|
}
|
2017-02-04 21:03:39 +00:00
|
|
|
}
|
|
|
|
}
|