2021-01-25 02:18:16 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.IO
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A storage pointing to an osu-stable installation.
|
|
|
|
|
/// Provides methods for handling installations with a custom Song folder location.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StableStorage : DesktopStorage
|
|
|
|
|
{
|
|
|
|
|
private const string stable_songs_path = "Songs";
|
|
|
|
|
|
|
|
|
|
private readonly DesktopGameHost host;
|
|
|
|
|
private string songs_path;
|
|
|
|
|
|
|
|
|
|
public StableStorage(string path, DesktopGameHost host)
|
|
|
|
|
: base(path, host)
|
|
|
|
|
{
|
|
|
|
|
this.host = host;
|
|
|
|
|
songs_path = locateSongsDirectory();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns a <see cref="Storage"/> pointing to the osu-stable Songs directory.
|
|
|
|
|
/// </summary>
|
2021-01-25 05:04:46 +08:00
|
|
|
|
public Storage GetSongStorage() => new DesktopStorage(songs_path, host);
|
2021-01-25 02:18:16 +08:00
|
|
|
|
|
|
|
|
|
private string locateSongsDirectory()
|
|
|
|
|
{
|
|
|
|
|
var configFile = GetStream(GetFiles(".", "osu!.*.cfg").First());
|
|
|
|
|
var textReader = new StreamReader(configFile);
|
|
|
|
|
|
2021-01-25 05:04:46 +08:00
|
|
|
|
var songs_directory_path = Path.Combine(BasePath, stable_songs_path);
|
2021-01-25 02:18:16 +08:00
|
|
|
|
|
|
|
|
|
while (!textReader.EndOfStream)
|
|
|
|
|
{
|
|
|
|
|
var line = textReader.ReadLine();
|
|
|
|
|
|
|
|
|
|
if (line?.StartsWith("BeatmapDirectory", StringComparison.OrdinalIgnoreCase) == true)
|
|
|
|
|
{
|
|
|
|
|
var directory = line.Split('=')[1].TrimStart();
|
2021-01-25 05:04:46 +08:00
|
|
|
|
if (Path.IsPathFullyQualified(directory))
|
2021-01-25 02:18:16 +08:00
|
|
|
|
songs_directory_path = directory;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return songs_directory_path;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|