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

144 lines
4.9 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Game;
2017-02-05 05:03:39 +08:00
using System.Linq;
using System.Windows.Forms;
using osu.Framework.Platform;
using osu.Framework.Desktop.Platform;
using osu.Desktop.Overlays;
2017-02-12 14:03:36 +08:00
using System.Reflection;
using System.Drawing;
2017-03-04 18:02:36 +08:00
using System.IO;
using System.Threading.Tasks;
using Microsoft.Win32;
using osu.Framework.Graphics.Containers;
2017-02-18 13:16:46 +08:00
using osu.Game.Screens.Menu;
2017-02-05 05:03:39 +08:00
namespace osu.Desktop
{
2017-03-07 09:59:19 +08:00
internal class OsuGameDesktop : OsuGame
2017-02-05 05:03:39 +08:00
{
private VersionManager versionManager;
2017-02-05 05:03:39 +08:00
public OsuGameDesktop(string[] args = null)
: base(args)
{
}
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()
{
Func<string, bool> checkExists = 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();
LoadComponentAsync(versionManager = new VersionManager { Depth = int.MinValue });
2017-03-14 07:22:46 +08:00
ScreenChanged += s =>
2017-02-18 13:16:46 +08:00
{
if (s is Intro && s.ChildScreen == null)
{
Add(versionManager);
versionManager.State = Visibility.Visible;
}
2017-02-18 13:16:46 +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);
var desktopWindow = host.Window as DesktopGameWindow;
if (desktopWindow != null)
{
desktopWindow.CursorState |= CursorState.Hidden;
2017-06-27 09:23:58 +08:00
desktopWindow.Icon = new Icon(Assembly.GetExecutingAssembly().GetManifestResourceStream(GetType(), "lazer.ico"));
desktopWindow.Title = Name;
2017-02-12 14:03:36 +08:00
2017-02-05 05:03:39 +08:00
desktopWindow.DragEnter += dragEnter;
desktopWindow.DragDrop += dragDrop;
}
}
private void dragDrop(DragEventArgs e)
{
// this method will only be executed if e.Effect in dragEnter gets set to something other that None.
2017-03-04 18:02:36 +08:00
var dropData = (object[])e.Data.GetData(DataFormats.FileDrop);
2017-02-05 05:03:39 +08:00
var filePaths = dropData.Select(f => f.ToString()).ToArray();
2017-03-04 18:02:36 +08:00
if (filePaths.All(f => Path.GetExtension(f) == @".osz"))
Task.Run(() => BeatmapManager.Import(filePaths));
2017-03-04 18:02:36 +08:00
else if (filePaths.All(f => Path.GetExtension(f) == @".osr"))
Task.Run(() =>
{
var score = ScoreStore.ReadReplayFile(filePaths.First());
2017-03-04 18:02:36 +08:00
Schedule(() => LoadScore(score));
});
2017-02-05 05:03:39 +08:00
}
private static readonly string[] allowed_extensions = { @".osz", @".osr" };
2017-03-04 18:02:36 +08:00
2017-02-05 05:03:39 +08:00
private void dragEnter(DragEventArgs e)
{
// dragDrop will only be executed if e.Effect gets set to something other that None in this method.
bool isFile = e.Data.GetDataPresent(DataFormats.FileDrop);
if (isFile)
{
2017-03-04 18:02:36 +08:00
var paths = ((object[])e.Data.GetData(DataFormats.FileDrop)).Select(f => f.ToString()).ToArray();
2017-03-09 13:24:16 +08:00
e.Effect = allowed_extensions.Any(ext => paths.All(p => p.EndsWith(ext))) ? DragDropEffects.Copy : DragDropEffects.None;
2017-02-05 05:03:39 +08:00
}
}
}
}