2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-06 17:56:20 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2016-10-14 11:33:58 +08:00
|
|
|
|
using System.IO;
|
2016-10-05 04:29:08 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Beatmaps.Formats;
|
|
|
|
|
using osu.Game.Beatmaps.IO;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2016-10-19 01:35:01 +08:00
|
|
|
|
using osu.Game.Database;
|
2016-10-05 04:29:08 +08:00
|
|
|
|
|
2016-10-14 11:33:58 +08:00
|
|
|
|
namespace osu.Desktop.Beatmaps.IO
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads an extracted legacy beatmap from disk.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class LegacyFilesystemReader : ArchiveReader
|
|
|
|
|
{
|
2016-11-16 10:53:10 +08:00
|
|
|
|
public static void Register() => AddReader<LegacyFilesystemReader>((storage, path) => Directory.Exists(path));
|
2016-11-15 02:08:02 +08:00
|
|
|
|
|
2016-10-14 11:33:58 +08:00
|
|
|
|
private string basePath { get; set; }
|
2016-10-13 22:15:08 +08:00
|
|
|
|
private Beatmap firstMap { get; set; }
|
2016-10-14 11:33:58 +08:00
|
|
|
|
|
|
|
|
|
public LegacyFilesystemReader(string path)
|
|
|
|
|
{
|
|
|
|
|
basePath = path;
|
2017-02-13 17:30:47 +08:00
|
|
|
|
BeatmapFilenames = Directory.GetFiles(basePath, @"*.osu").Select(f => Path.GetFileName(f)).ToArray();
|
|
|
|
|
if (BeatmapFilenames.Length == 0)
|
2016-10-14 11:33:58 +08:00
|
|
|
|
throw new FileNotFoundException(@"This directory contains no beatmaps");
|
2017-02-13 17:30:47 +08:00
|
|
|
|
StoryboardFilename = Directory.GetFiles(basePath, @"*.osb").Select(f => Path.GetFileName(f)).FirstOrDefault();
|
|
|
|
|
using (var stream = new StreamReader(GetStream(BeatmapFilenames[0])))
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
|
|
|
|
var decoder = BeatmapDecoder.GetDecoder(stream);
|
2016-10-19 01:35:01 +08:00
|
|
|
|
firstMap = decoder.Decode(stream);
|
2016-10-14 11:33:58 +08:00
|
|
|
|
}
|
2016-10-05 04:29:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-05 19:00:14 +08:00
|
|
|
|
public override Stream GetStream(string name)
|
2016-10-05 04:29:08 +08:00
|
|
|
|
{
|
2016-10-11 02:00:33 +08:00
|
|
|
|
return File.OpenRead(Path.Combine(basePath, name));
|
2016-10-05 04:29:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-08 01:50:34 +08:00
|
|
|
|
public override BeatmapMetadata ReadMetadata()
|
2016-10-05 04:29:08 +08:00
|
|
|
|
{
|
2016-10-19 01:35:01 +08:00
|
|
|
|
return firstMap.BeatmapInfo.Metadata;
|
2016-10-14 11:33:58 +08:00
|
|
|
|
}
|
2016-11-15 02:08:02 +08:00
|
|
|
|
|
2016-10-10 21:26:34 +08:00
|
|
|
|
public override void Dispose()
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
2016-10-10 21:26:34 +08:00
|
|
|
|
// no-op
|
2016-10-19 01:35:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-15 02:08:02 +08:00
|
|
|
|
}
|