osu/osu.Game/Beatmaps/BeatmapManager_WorkingBeatm...

150 lines
5.2 KiB
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
2018-04-13 09:19:50 +00:00
using osu.Framework.Audio.Track;
using osu.Framework.Graphics.Textures;
using osu.Framework.Logging;
using osu.Framework.Testing;
2018-04-13 09:19:50 +00:00
using osu.Game.Beatmaps.Formats;
using osu.Game.IO;
2018-04-13 09:19:50 +00:00
using osu.Game.Skinning;
using osu.Game.Storyboards;
namespace osu.Game.Beatmaps
{
public partial class BeatmapManager
{
[ExcludeFromDynamicCompile]
2020-08-11 04:48:57 +00:00
private class BeatmapManagerWorkingBeatmap : WorkingBeatmap
2018-04-13 09:19:50 +00:00
{
[NotNull]
private readonly IBeatmapResourceProvider resources;
2018-04-13 09:19:50 +00:00
public BeatmapManagerWorkingBeatmap(BeatmapInfo beatmapInfo, [NotNull] IBeatmapResourceProvider resources)
: base(beatmapInfo, resources.AudioManager)
2018-04-13 09:19:50 +00:00
{
this.resources = resources;
2018-04-13 09:19:50 +00:00
}
2018-04-19 11:44:38 +00:00
protected override IBeatmap GetBeatmap()
2018-04-13 09:19:50 +00:00
{
if (BeatmapInfo.Path == null)
2020-09-04 04:13:53 +00:00
return new Beatmap { BeatmapInfo = BeatmapInfo };
2018-04-13 09:19:50 +00:00
try
{
using (var stream = new LineBufferedReader(GetStream(BeatmapSetInfo.GetPathForFile(BeatmapInfo.Path))))
2018-04-13 09:19:50 +00:00
return Decoder.GetDecoder<Beatmap>(stream).Decode(stream);
}
2020-02-10 08:25:11 +00:00
catch (Exception e)
2018-04-13 09:19:50 +00:00
{
2020-02-10 08:25:11 +00:00
Logger.Error(e, "Beatmap failed to load");
2018-04-13 09:19:50 +00:00
return null;
}
}
protected override bool BackgroundStillValid(Texture b) => false; // bypass lazy logic. we want to return a new background each time for refcounting purposes.
2018-04-13 09:19:50 +00:00
protected override Texture GetBackground()
{
if (Metadata?.BackgroundFile == null)
return null;
try
{
return resources.LargeTextureStore.Get(BeatmapSetInfo.GetPathForFile(Metadata.BackgroundFile));
2018-04-13 09:19:50 +00:00
}
2020-02-10 08:25:11 +00:00
catch (Exception e)
2018-04-13 09:19:50 +00:00
{
2020-02-10 08:25:11 +00:00
Logger.Error(e, "Background failed to load");
2018-04-13 09:19:50 +00:00
return null;
}
}
2019-08-30 20:19:34 +00:00
2020-08-07 13:31:41 +00:00
protected override Track GetBeatmapTrack()
2018-04-13 09:19:50 +00:00
{
if (Metadata?.AudioFile == null)
return null;
2018-04-13 09:19:50 +00:00
try
{
return resources.Tracks.Get(BeatmapSetInfo.GetPathForFile(Metadata.AudioFile));
2018-04-13 09:19:50 +00:00
}
2020-02-10 08:25:11 +00:00
catch (Exception e)
2018-04-13 09:19:50 +00:00
{
2020-02-10 08:25:11 +00:00
Logger.Error(e, "Track failed to load");
return null;
2018-04-13 09:19:50 +00:00
}
}
protected override Waveform GetWaveform()
{
if (Metadata?.AudioFile == null)
return null;
try
{
var trackData = GetStream(BeatmapSetInfo.GetPathForFile(Metadata.AudioFile));
return trackData == null ? null : new Waveform(trackData);
}
2020-02-10 08:25:11 +00:00
catch (Exception e)
{
2020-02-10 08:25:11 +00:00
Logger.Error(e, "Waveform failed to load");
return null;
}
}
2018-04-13 09:19:50 +00:00
protected override Storyboard GetStoryboard()
{
Storyboard storyboard;
2019-04-01 03:16:05 +00:00
2018-04-13 09:19:50 +00:00
try
{
using (var stream = new LineBufferedReader(GetStream(BeatmapSetInfo.GetPathForFile(BeatmapInfo.Path))))
2018-04-13 09:19:50 +00:00
{
var decoder = Decoder.GetDecoder<Storyboard>(stream);
var storyboardFilename = BeatmapSetInfo?.Files.FirstOrDefault(f => f.Filename.EndsWith(".osb", StringComparison.OrdinalIgnoreCase))?.Filename;
2018-04-13 09:19:50 +00:00
// todo: support loading from both set-wide storyboard *and* beatmap specific.
if (string.IsNullOrEmpty(storyboardFilename))
2018-04-13 09:19:50 +00:00
storyboard = decoder.Decode(stream);
else
{
using (var secondaryStream = new LineBufferedReader(GetStream(BeatmapSetInfo.GetPathForFile(storyboardFilename))))
2018-04-13 09:19:50 +00:00
storyboard = decoder.Decode(stream, secondaryStream);
}
}
}
catch (Exception e)
{
Logger.Error(e, "Storyboard failed to load");
storyboard = new Storyboard();
}
storyboard.BeatmapInfo = BeatmapInfo;
return storyboard;
}
protected internal override ISkin GetSkin()
2018-04-13 09:19:50 +00:00
{
try
{
return new LegacyBeatmapSkin(BeatmapInfo, resources.Files, resources);
2018-04-13 09:19:50 +00:00
}
catch (Exception e)
{
Logger.Error(e, "Skin failed to load");
return null;
2018-04-13 09:19:50 +00:00
}
}
public override Stream GetStream(string storagePath) => resources.Files.GetStream(storagePath);
2018-04-13 09:19:50 +00:00
}
}
}