2019-01-24 16:43:03 +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.
2018-04-13 17:19:50 +08:00
using System ;
using System.Linq ;
using osu.Framework.Audio ;
using osu.Framework.Audio.Track ;
using osu.Framework.Graphics.Textures ;
using osu.Framework.IO.Stores ;
using osu.Framework.Logging ;
2020-10-16 13:39:02 +08:00
using osu.Framework.Testing ;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps.Formats ;
2019-09-10 06:43:30 +08:00
using osu.Game.IO ;
2018-04-13 17:19:50 +08:00
using osu.Game.Skinning ;
using osu.Game.Storyboards ;
namespace osu.Game.Beatmaps
{
public partial class BeatmapManager
{
2020-10-16 13:39:02 +08:00
[ExcludeFromDynamicCompile]
2020-08-11 12:48:57 +08:00
private class BeatmapManagerWorkingBeatmap : WorkingBeatmap
2018-04-13 17:19:50 +08:00
{
private readonly IResourceStore < byte [ ] > store ;
2020-08-11 12:16:06 +08:00
private readonly TextureStore textureStore ;
private readonly ITrackStore trackStore ;
2018-04-13 17:19:50 +08:00
2020-08-11 12:16:06 +08:00
public BeatmapManagerWorkingBeatmap ( IResourceStore < byte [ ] > store , TextureStore textureStore , ITrackStore trackStore , BeatmapInfo beatmapInfo , AudioManager audioManager )
2019-05-31 13:40:53 +08:00
: base ( beatmapInfo , audioManager )
2018-04-13 17:19:50 +08:00
{
this . store = store ;
2020-08-11 12:16:06 +08:00
this . textureStore = textureStore ;
this . trackStore = trackStore ;
2018-04-13 17:19:50 +08:00
}
2018-04-19 19:44:38 +08:00
protected override IBeatmap GetBeatmap ( )
2018-04-13 17:19:50 +08:00
{
2020-08-24 18:38:05 +08:00
if ( BeatmapInfo . Path = = null )
2020-09-04 12:13:53 +08:00
return new Beatmap { BeatmapInfo = BeatmapInfo } ;
2020-08-24 18:38:05 +08:00
2018-04-13 17:19:50 +08:00
try
{
2019-09-10 06:43:30 +08:00
using ( var stream = new LineBufferedReader ( store . GetStream ( getPathForFile ( BeatmapInfo . Path ) ) ) )
2018-04-13 17:19:50 +08:00
return Decoder . GetDecoder < Beatmap > ( stream ) . Decode ( stream ) ;
}
2020-02-10 16:25:11 +08:00
catch ( Exception e )
2018-04-13 17:19:50 +08:00
{
2020-02-10 16:25:11 +08:00
Logger . Error ( e , "Beatmap failed to load" ) ;
2018-04-13 17:19:50 +08:00
return null ;
}
}
2020-06-05 18:18:00 +08:00
private string getPathForFile ( string filename ) = > BeatmapSetInfo . Files . SingleOrDefault ( f = > string . Equals ( f . Filename , filename , StringComparison . OrdinalIgnoreCase ) ) ? . FileInfo . StoragePath ;
2018-04-13 17:19:50 +08:00
2018-09-06 12:15:43 +08:00
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 17:19:50 +08:00
protected override Texture GetBackground ( )
{
if ( Metadata ? . BackgroundFile = = null )
return null ;
try
{
2020-08-11 12:16:06 +08:00
return textureStore . Get ( getPathForFile ( Metadata . BackgroundFile ) ) ;
2018-04-13 17:19:50 +08:00
}
2020-02-10 16:25:11 +08:00
catch ( Exception e )
2018-04-13 17:19:50 +08:00
{
2020-02-10 16:25:11 +08:00
Logger . Error ( e , "Background failed to load" ) ;
2018-04-13 17:19:50 +08:00
return null ;
}
}
2019-08-31 04:19:34 +08:00
2020-08-07 21:31:41 +08:00
protected override Track GetBeatmapTrack ( )
2018-04-13 17:19:50 +08:00
{
2020-09-01 14:48:13 +08:00
if ( Metadata ? . AudioFile = = null )
return null ;
2018-04-13 17:19:50 +08:00
try
{
2020-08-11 12:16:06 +08:00
return trackStore . Get ( getPathForFile ( Metadata . AudioFile ) ) ;
2018-04-13 17:19:50 +08:00
}
2020-02-10 16:25:11 +08:00
catch ( Exception e )
2018-04-13 17:19:50 +08:00
{
2020-02-10 16:25:11 +08:00
Logger . Error ( e , "Track failed to load" ) ;
2018-06-27 15:02:49 +08:00
return null ;
2018-04-13 17:19:50 +08:00
}
}
2018-06-27 15:07:18 +08:00
protected override Waveform GetWaveform ( )
{
2020-09-01 14:48:13 +08:00
if ( Metadata ? . AudioFile = = null )
return null ;
2018-06-27 15:07:18 +08:00
try
{
var trackData = store . GetStream ( getPathForFile ( Metadata . AudioFile ) ) ;
return trackData = = null ? null : new Waveform ( trackData ) ;
}
2020-02-10 16:25:11 +08:00
catch ( Exception e )
2018-06-27 15:07:18 +08:00
{
2020-02-10 16:25:11 +08:00
Logger . Error ( e , "Waveform failed to load" ) ;
2018-06-27 15:07:18 +08:00
return null ;
}
}
2018-04-13 17:19:50 +08:00
protected override Storyboard GetStoryboard ( )
{
Storyboard storyboard ;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
try
{
2019-09-10 06:43:30 +08:00
using ( var stream = new LineBufferedReader ( store . GetStream ( getPathForFile ( BeatmapInfo . Path ) ) ) )
2018-04-13 17:19:50 +08:00
{
var decoder = Decoder . GetDecoder < Storyboard > ( stream ) ;
// todo: support loading from both set-wide storyboard *and* beatmap specific.
if ( BeatmapSetInfo ? . StoryboardFile = = null )
storyboard = decoder . Decode ( stream ) ;
else
{
2019-09-10 06:43:30 +08:00
using ( var secondaryStream = new LineBufferedReader ( store . GetStream ( getPathForFile ( BeatmapSetInfo . StoryboardFile ) ) ) )
2018-04-13 17:19:50 +08:00
storyboard = decoder . Decode ( stream , secondaryStream ) ;
}
}
}
catch ( Exception e )
{
Logger . Error ( e , "Storyboard failed to load" ) ;
storyboard = new Storyboard ( ) ;
}
storyboard . BeatmapInfo = BeatmapInfo ;
return storyboard ;
}
2019-08-28 18:57:17 +08:00
protected override ISkin GetSkin ( )
2018-04-13 17:19:50 +08:00
{
try
{
2019-08-26 13:25:35 +08:00
return new LegacyBeatmapSkin ( BeatmapInfo , store , AudioManager ) ;
2018-04-13 17:19:50 +08:00
}
catch ( Exception e )
{
Logger . Error ( e , "Skin failed to load" ) ;
2019-08-26 13:25:35 +08:00
return null ;
2018-04-13 17:19:50 +08:00
}
}
}
}
}