1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Desktop/OsuGameDesktop.cs

121 lines
3.8 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
2017-03-04 18:02:36 +08:00
using System.IO;
2017-09-18 21:32:49 +08:00
using System.Linq;
2018-03-26 17:55:55 +08:00
using System.Reflection;
using System.Threading.Tasks;
using osu.Desktop.Overlays;
using osu.Framework.Graphics.Containers;
2017-09-18 21:32:49 +08:00
using osu.Framework.Platform;
using osu.Game;
using OpenTK.Input;
using Microsoft.Win32;
namespace osu.Desktop
2017-02-05 05:03:39 +08:00
{
2017-03-07 09:59:19 +08:00
internal class OsuGameDesktop : OsuGame
2017-02-05 05:03:39 +08:00
{
private readonly bool noVersionOverlay;
2017-02-05 05:03:39 +08:00
public OsuGameDesktop(string[] args = null)
: base(args)
{
noVersionOverlay = args?.Any(a => a == "--no-version-overlay") ?? false;
2017-02-05 05:03:39 +08:00
}
public override Storage GetStorageForStableInstall()
{
try
{
return new StableStorage();
}
catch
{
return null;
}
}
/// <summary>
/// A method of accessing an osu-stable install in a controlled fashion.
/// </summary>
private class StableStorage : DesktopStorage
{
protected override string LocateBasePath()
{
2018-01-16 02:42:17 +08:00
bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs"));
string stableInstallPath;
try
{
using (RegistryKey key = Registry.ClassesRoot.OpenSubKey("osu"))
stableInstallPath = key?.OpenSubKey(@"shell\open\command")?.GetValue(String.Empty).ToString().Split('"')[1].Replace("osu!.exe", "");
if (checkExists(stableInstallPath))
return stableInstallPath;
}
catch
{
}
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;
}
public StableStorage()
: base(string.Empty)
{
}
}
protected override void LoadComplete()
{
base.LoadComplete();
if (!noVersionOverlay)
2017-02-18 13:16:46 +08:00
{
LoadComponentAsync(new VersionManager { Depth = int.MinValue }, v =>
{
Add(v);
v.State = Visibility.Visible;
});
}
}
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);
var desktopWindow = host.Window as DesktopGameWindow;
if (desktopWindow != null)
{
desktopWindow.CursorState |= CursorState.Hidden;
2018-03-27 17:55:27 +08:00
desktopWindow.SetIconFromStream(Assembly.GetExecutingAssembly().GetManifestResourceStream(GetType(), "lazer.ico"));
desktopWindow.Title = Name;
2017-02-12 14:03:36 +08:00
desktopWindow.FileDrop += fileDrop;
2017-02-05 05:03:39 +08:00
}
}
private void fileDrop(object sender, FileDropEventArgs e)
2017-02-05 05:03:39 +08:00
{
var filePaths = new[] { e.FileName };
2017-03-04 18:02:36 +08:00
var firstExtension = Path.GetExtension(filePaths.First());
2017-02-05 05:03:39 +08:00
if (filePaths.Any(f => Path.GetExtension(f) != firstExtension)) return;
2018-02-15 13:19:16 +08:00
Task.Factory.StartNew(() => Import(filePaths), TaskCreationOptions.LongRunning);
2017-02-05 05:03:39 +08:00
}
}
}