2016-12-06 17:56:20 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
2016-10-05 04:29:08 +08:00
|
|
|
|
using System.IO;
|
2016-10-05 05:08:43 +08:00
|
|
|
|
using System.Linq;
|
2016-10-13 22:15:08 +08:00
|
|
|
|
using System.Security.Cryptography;
|
2016-10-05 05:08:43 +08:00
|
|
|
|
using Ionic.Zip;
|
|
|
|
|
using osu.Game.Beatmaps.Formats;
|
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.Game.Beatmaps.IO
|
|
|
|
|
{
|
|
|
|
|
public sealed class OszArchiveReader : ArchiveReader
|
|
|
|
|
{
|
|
|
|
|
public static void Register()
|
|
|
|
|
{
|
2016-10-05 04:29:08 +08:00
|
|
|
|
AddReader<OszArchiveReader>((storage, path) =>
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
|
|
|
|
using (var stream = storage.GetStream(path))
|
2016-10-11 22:53:16 +08:00
|
|
|
|
return ZipFile.IsZipFile(stream, false);
|
2016-10-14 11:33:58 +08:00
|
|
|
|
});
|
|
|
|
|
OsuLegacyDecoder.Register();
|
|
|
|
|
}
|
2016-10-19 23:00:11 +08:00
|
|
|
|
|
|
|
|
|
private Stream archiveStream;
|
|
|
|
|
private ZipFile archive;
|
|
|
|
|
private string[] beatmaps;
|
|
|
|
|
private Beatmap firstMap;
|
2016-10-14 11:33:58 +08:00
|
|
|
|
|
|
|
|
|
public OszArchiveReader(Stream archiveStream)
|
|
|
|
|
{
|
2016-10-19 23:00:11 +08:00
|
|
|
|
this.archiveStream = archiveStream;
|
2016-10-14 11:33:58 +08:00
|
|
|
|
archive = ZipFile.Read(archiveStream);
|
|
|
|
|
beatmaps = archive.Entries.Where(e => e.FileName.EndsWith(@".osu"))
|
|
|
|
|
.Select(e => e.FileName).ToArray();
|
|
|
|
|
if (beatmaps.Length == 0)
|
|
|
|
|
throw new FileNotFoundException(@"This directory contains no beatmaps");
|
2016-11-05 19:00:14 +08:00
|
|
|
|
using (var stream = new StreamReader(GetStream(beatmaps[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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string[] ReadBeatmaps()
|
|
|
|
|
{
|
2016-10-11 02:00:33 +08:00
|
|
|
|
return beatmaps;
|
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-14 11:33:58 +08:00
|
|
|
|
ZipEntry entry = archive.Entries.SingleOrDefault(e => e.FileName == name);
|
|
|
|
|
if (entry == null)
|
|
|
|
|
throw new FileNotFoundException();
|
2016-10-05 05:08:43 +08:00
|
|
|
|
return entry.OpenReader();
|
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-05 04:29:08 +08:00
|
|
|
|
}
|
2016-10-19 01:35:01 +08:00
|
|
|
|
|
|
|
|
|
public override void Dispose()
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
|
|
|
|
archive.Dispose();
|
2016-10-19 23:00:11 +08:00
|
|
|
|
archiveStream.Dispose();
|
2016-10-10 21:26:34 +08:00
|
|
|
|
}
|
2016-10-14 11:33:58 +08:00
|
|
|
|
}
|
2016-10-05 04:29:08 +08:00
|
|
|
|
}
|