using System; using System.IO; using System.Collections.Generic; using System.Linq; using osu.Game.Beatmaps.Formats; using osu.Game.Beatmaps.IO; using osu.Game.Beatmaps; namespace osu.Desktop.Beatmaps.IO { /// /// Reads an extracted legacy beatmap from disk. /// public class LegacyFilesystemReader : ArchiveReader { static LegacyFilesystemReader() { AddReader((storage, path) => Directory.Exists(path)); } private string BasePath { get; set; } private string[] Beatmaps { get; set; } private Beatmap FirstMap { get; set; } public LegacyFilesystemReader(string path) { BasePath = path; Beatmaps = Directory.GetFiles(BasePath, "*.osu").Select(f => Path.GetFileName(f)).ToArray(); if (Beatmaps.Length == 0) throw new FileNotFoundException("This directory contains no beatmaps"); using (var stream = new StreamReader(ReadFile(Beatmaps[0]))) { var decoder = BeatmapDecoder.GetDecoder(stream); FirstMap = decoder.Decode(stream); } } public override string[] ReadBeatmaps() { return Beatmaps; } public override Stream ReadFile(string name) { return File.OpenRead(Path.Combine(BasePath, name)); } public override BeatmapMetadata ReadMetadata() { return FirstMap.Metadata; } public override void Dispose() { // no-op } } }