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.Collections.Generic ;
2021-11-18 22:26:45 +08:00
using System.Diagnostics ;
2021-04-17 23:47:13 +08:00
using System.IO ;
2019-02-21 18:04:31 +08:00
using System.Linq ;
2018-09-06 11:51:23 +08:00
using System.Threading ;
2019-06-24 11:42:21 +08:00
using System.Threading.Tasks ;
2020-08-11 23:48:45 +08:00
using JetBrains.Annotations ;
2019-05-28 22:54:42 +08:00
using osu.Framework.Audio ;
2020-03-08 13:32:03 +08:00
using osu.Framework.Audio.Track ;
using osu.Framework.Graphics.Textures ;
using osu.Framework.Logging ;
2020-09-04 19:34:26 +08:00
using osu.Framework.Testing ;
2018-04-19 21:04:12 +08:00
using osu.Game.Rulesets ;
2020-03-08 13:32:03 +08:00
using osu.Game.Rulesets.Mods ;
2019-05-29 15:43:27 +08:00
using osu.Game.Rulesets.Objects.Types ;
2018-04-19 21:04:12 +08:00
using osu.Game.Rulesets.UI ;
2018-04-13 17:19:50 +08:00
using osu.Game.Skinning ;
2020-03-08 13:32:03 +08:00
using osu.Game.Storyboards ;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Beatmaps
{
2020-09-04 19:34:26 +08:00
[ExcludeFromDynamicCompile]
2020-02-10 16:01:41 +08:00
public abstract class WorkingBeatmap : IWorkingBeatmap
2018-04-13 17:19:50 +08:00
{
public readonly BeatmapInfo BeatmapInfo ;
public readonly BeatmapSetInfo BeatmapSetInfo ;
2021-12-22 16:35:18 +08:00
// TODO: remove once the fallback lookup is not required (and access via `working.BeatmapInfo.Metadata` directly).
public BeatmapMetadata Metadata = > BeatmapInfo . Metadata ? ? BeatmapSetInfo ? . Metadata ? ? new BeatmapMetadata ( ) ;
2018-04-13 17:19:50 +08:00
2021-12-22 16:39:13 +08:00
private AudioManager audioManager { get ; }
private CancellationTokenSource loadCancellationSource = new CancellationTokenSource ( ) ;
private readonly object beatmapFetchLock = new object ( ) ;
2019-05-31 13:40:53 +08:00
protected WorkingBeatmap ( BeatmapInfo beatmapInfo , AudioManager audioManager )
2018-04-13 17:19:50 +08:00
{
2021-12-22 16:39:13 +08:00
this . audioManager = audioManager ;
2018-04-13 17:19:50 +08:00
BeatmapInfo = beatmapInfo ;
BeatmapSetInfo = beatmapInfo . BeatmapSet ;
2018-09-06 11:51:23 +08:00
background = new RecyclableLazy < Texture > ( GetBackground , BackgroundStillValid ) ;
waveform = new RecyclableLazy < Waveform > ( GetWaveform ) ;
storyboard = new RecyclableLazy < Storyboard > ( GetStoryboard ) ;
2019-08-28 18:57:17 +08:00
skin = new RecyclableLazy < ISkin > ( GetSkin ) ;
2018-04-13 17:19:50 +08:00
}
2021-12-22 17:01:09 +08:00
#region Load checks
public virtual bool TrackLoaded = > loadedTrack ! = null ;
public virtual bool BeatmapLoaded = > beatmapLoadTask ? . IsCompleted ? ? false ;
#endregion
#region Resource getters
protected virtual Waveform GetWaveform ( ) = > new Waveform ( null ) ;
protected virtual Storyboard GetStoryboard ( ) = > new Storyboard { BeatmapInfo = BeatmapInfo } ;
protected abstract IBeatmap GetBeatmap ( ) ;
protected abstract Texture GetBackground ( ) ;
protected abstract Track GetBeatmapTrack ( ) ;
/// <summary>
/// Creates a new skin instance for this beatmap.
/// </summary>
/// <remarks>
/// This should only be called externally in scenarios where it is explicitly desired to get a new instance of a skin
/// (e.g. for editing purposes, to avoid state pollution).
/// For standard reading purposes, <see cref="Skin"/> should always be used directly.
/// </remarks>
protected internal abstract ISkin GetSkin ( ) ;
#endregion
#region Async load control
public void BeginAsyncLoad ( ) = > loadBeatmapAsync ( ) ;
public void CancelAsyncLoad ( )
{
lock ( beatmapFetchLock )
{
loadCancellationSource ? . Cancel ( ) ;
loadCancellationSource = new CancellationTokenSource ( ) ;
if ( beatmapLoadTask ? . IsCompleted ! = true )
beatmapLoadTask = null ;
}
}
#endregion
#region Background
public Texture Background = > background . Value ;
private readonly RecyclableLazy < Texture > background ;
protected virtual bool BackgroundStillValid ( Texture b ) = > b = = null | | b . Available ;
#endregion
#region Track
private Track loadedTrack ;
public Track LoadTrack ( ) = > loadedTrack = GetBeatmapTrack ( ) ? ? GetVirtualTrack ( 1000 ) ;
public void PrepareTrackForPreviewLooping ( )
{
Track . Looping = true ;
Track . RestartPoint = Metadata . PreviewTime ;
if ( Track . RestartPoint = = - 1 )
{
if ( ! Track . IsLoaded )
{
// force length to be populated (https://github.com/ppy/osu-framework/issues/4202)
Track . Seek ( Track . CurrentTime ) ;
}
Track . RestartPoint = 0.4f * Track . Length ;
}
}
/// <summary>
/// Transfer a valid audio track into this working beatmap. Used as an optimisation to avoid reload / track swap
/// across difficulties in the same beatmap set.
/// </summary>
/// <param name="track">The track to transfer.</param>
public void TransferTrack ( [ NotNull ] Track track ) = > loadedTrack = track ? ? throw new ArgumentNullException ( nameof ( track ) ) ;
/// <summary>
/// Get the loaded audio track instance. <see cref="LoadTrack"/> must have first been called.
/// This generally happens via MusicController when changing the global beatmap.
/// </summary>
public Track Track
{
get
{
if ( ! TrackLoaded )
throw new InvalidOperationException ( $"Cannot access {nameof(Track)} without first calling {nameof(LoadTrack)}." ) ;
return loadedTrack ;
}
}
2021-12-22 16:39:13 +08:00
protected Track GetVirtualTrack ( double emptyLength = 0 )
2019-05-29 15:43:27 +08:00
{
const double excess_length = 1000 ;
2020-09-03 18:20:42 +08:00
var lastObject = Beatmap ? . HitObjects . LastOrDefault ( ) ;
2019-05-29 15:43:27 +08:00
double length ;
switch ( lastObject )
{
case null :
2020-02-09 20:34:56 +08:00
length = emptyLength ;
2019-05-29 15:43:27 +08:00
break ;
2020-05-27 11:38:39 +08:00
case IHasDuration endTime :
2019-05-29 15:43:27 +08:00
length = endTime . EndTime + excess_length ;
break ;
default :
length = lastObject . StartTime + excess_length ;
break ;
}
2021-12-22 16:39:13 +08:00
return audioManager . Tracks . GetVirtual ( length ) ;
2019-05-29 15:43:27 +08:00
}
2021-12-22 17:01:09 +08:00
#endregion
#region Waveform
public Waveform Waveform = > waveform . Value ;
private readonly RecyclableLazy < Waveform > waveform ;
#endregion
#region Storyboard
public Storyboard Storyboard = > storyboard . Value ;
private readonly RecyclableLazy < Storyboard > storyboard ;
#endregion
#region Skin
private readonly RecyclableLazy < ISkin > skin ;
public ISkin Skin = > skin . Value ;
#endregion
#region Beatmap
public IBeatmap Beatmap
{
get
{
try
{
return loadBeatmapAsync ( ) . Result ;
}
catch ( AggregateException ae )
{
// This is the exception that is generally expected here, which occurs via natural cancellation of the asynchronous load
if ( ae . InnerExceptions . FirstOrDefault ( ) is TaskCanceledException )
return null ;
Logger . Error ( ae , "Beatmap failed to load" ) ;
return null ;
}
catch ( Exception e )
{
Logger . Error ( e , "Beatmap failed to load" ) ;
return null ;
}
}
}
private Task < IBeatmap > beatmapLoadTask ;
private Task < IBeatmap > loadBeatmapAsync ( )
{
lock ( beatmapFetchLock )
{
return beatmapLoadTask ? ? = Task . Factory . StartNew ( ( ) = >
{
// Todo: Handle cancellation during beatmap parsing
var b = GetBeatmap ( ) ? ? new Beatmap ( ) ;
// The original beatmap version needs to be preserved as the database doesn't contain it
BeatmapInfo . BeatmapVersion = b . BeatmapInfo . BeatmapVersion ;
// Use the database-backed info for more up-to-date values (beatmap id, ranked status, etc)
b . BeatmapInfo = BeatmapInfo ;
return b ;
} , loadCancellationSource . Token , TaskCreationOptions . LongRunning , TaskScheduler . Default ) ;
}
}
#endregion
#region Playable beatmap
2019-07-31 18:48:50 +08:00
2021-12-22 16:52:12 +08:00
public IBeatmap GetPlayableBeatmap ( IRulesetInfo ruleset , IReadOnlyList < Mod > mods = null )
2018-04-19 21:04:12 +08:00
{
2021-11-21 00:23:55 +08:00
try
{
using ( var cancellationTokenSource = new CancellationTokenSource ( 10_000 ) )
{
// don't apply the default timeout when debugger is attached (may be breakpointing / debugging).
2021-11-21 18:30:45 +08:00
return GetPlayableBeatmap ( ruleset , mods ? ? Array . Empty < Mod > ( ) , Debugger . IsAttached ? new CancellationToken ( ) : cancellationTokenSource . Token ) ;
2021-11-21 00:23:55 +08:00
}
}
catch ( OperationCanceledException )
{
throw new BeatmapLoadTimeoutException ( BeatmapInfo ) ;
}
}
2019-12-12 14:58:11 +08:00
2021-12-22 17:01:09 +08:00
public virtual IBeatmap GetPlayableBeatmap ( IRulesetInfo ruleset , IReadOnlyList < Mod > mods , CancellationToken token )
2021-11-21 00:23:55 +08:00
{
2021-11-08 13:33:32 +08:00
var rulesetInstance = ruleset . CreateInstance ( ) ;
2018-04-19 21:04:12 +08:00
2021-11-16 13:43:13 +08:00
if ( rulesetInstance = = null )
throw new RulesetLoadException ( "Creating ruleset instance failed when attempting to create playable beatmap." ) ;
2018-04-19 21:04:12 +08:00
2021-11-18 05:00:09 +08:00
IBeatmapConverter converter = CreateBeatmapConverter ( Beatmap , rulesetInstance ) ;
2021-11-08 13:33:32 +08:00
// Check if the beatmap can be converted
if ( Beatmap . HitObjects . Count > 0 & & ! converter . CanConvert ( ) )
throw new BeatmapInvalidForRulesetException ( $"{nameof(Beatmaps.Beatmap)} can not be converted for the ruleset (ruleset: {ruleset.InstantiationInfo}, converter: {converter})." ) ;
2018-04-19 21:04:12 +08:00
2021-11-08 13:33:32 +08:00
// Apply conversion mods
foreach ( var mod in mods . OfType < IApplicableToBeatmapConverter > ( ) )
{
2021-11-21 00:23:55 +08:00
token . ThrowIfCancellationRequested ( ) ;
2021-11-08 13:33:32 +08:00
mod . ApplyToBeatmapConverter ( converter ) ;
}
2018-04-19 21:04:12 +08:00
2021-11-08 13:33:32 +08:00
// Convert
2021-11-17 09:48:33 +08:00
IBeatmap converted = converter . Convert ( token ) ;
2018-05-18 17:11:52 +08:00
2021-11-08 13:33:32 +08:00
// Apply conversion mods to the result
foreach ( var mod in mods . OfType < IApplicableAfterBeatmapConversion > ( ) )
{
2021-11-21 00:23:55 +08:00
token . ThrowIfCancellationRequested ( ) ;
2021-11-08 13:33:32 +08:00
mod . ApplyToBeatmap ( converted ) ;
}
2020-08-18 00:40:55 +08:00
2021-11-08 13:33:32 +08:00
// Apply difficulty mods
if ( mods . Any ( m = > m is IApplicableToDifficulty ) )
{
foreach ( var mod in mods . OfType < IApplicableToDifficulty > ( ) )
2020-03-13 12:52:40 +08:00
{
2021-11-21 00:23:55 +08:00
token . ThrowIfCancellationRequested ( ) ;
2021-11-08 13:33:32 +08:00
mod . ApplyToDifficulty ( converted . Difficulty ) ;
2020-03-13 12:52:40 +08:00
}
2021-11-08 13:33:32 +08:00
}
2018-06-29 11:45:48 +08:00
2021-11-08 13:33:32 +08:00
IBeatmapProcessor processor = rulesetInstance . CreateBeatmapProcessor ( converted ) ;
2018-04-19 21:04:12 +08:00
2021-11-08 13:33:32 +08:00
foreach ( var mod in mods . OfType < IApplicableToBeatmapProcessor > ( ) )
mod . ApplyToBeatmapProcessor ( processor ) ;
2021-06-23 13:08:24 +08:00
2021-11-08 13:33:32 +08:00
processor ? . PreProcess ( ) ;
2018-04-19 21:04:12 +08:00
2021-11-08 13:33:32 +08:00
// Compute default values for hitobjects, including creating nested hitobjects in-case they're needed
2021-11-21 00:23:55 +08:00
foreach ( var obj in converted . HitObjects )
2021-11-08 13:33:32 +08:00
{
2021-11-21 00:23:55 +08:00
token . ThrowIfCancellationRequested ( ) ;
obj . ApplyDefaults ( converted . ControlPointInfo , converted . Difficulty , token ) ;
2021-11-08 13:33:32 +08:00
}
2018-05-25 15:21:51 +08:00
2021-11-08 13:33:32 +08:00
foreach ( var mod in mods . OfType < IApplicableToHitObject > ( ) )
{
foreach ( var obj in converted . HitObjects )
2020-03-13 12:52:40 +08:00
{
2021-11-21 00:23:55 +08:00
token . ThrowIfCancellationRequested ( ) ;
2021-11-08 13:33:32 +08:00
mod . ApplyToHitObject ( obj ) ;
2020-03-13 12:52:40 +08:00
}
2021-11-08 13:33:32 +08:00
}
2020-03-13 12:52:40 +08:00
2021-11-08 13:33:32 +08:00
processor ? . PostProcess ( ) ;
2019-08-01 11:41:46 +08:00
2021-11-08 13:33:32 +08:00
foreach ( var mod in mods . OfType < IApplicableToBeatmap > ( ) )
{
2021-11-17 09:48:33 +08:00
token . ThrowIfCancellationRequested ( ) ;
2021-11-08 13:33:32 +08:00
mod . ApplyToBeatmap ( converted ) ;
2019-11-11 19:53:22 +08:00
}
2021-11-08 13:33:32 +08:00
return converted ;
2018-04-19 21:04:12 +08:00
}
2020-08-17 14:38:16 +08:00
/// <summary>
2021-12-22 17:01:09 +08:00
/// Creates a <see cref="IBeatmapConverter"/> to convert a <see cref="IBeatmap"/> for a specified <see cref="Ruleset"/>.
2020-08-17 14:38:16 +08:00
/// </summary>
2021-12-22 17:01:09 +08:00
/// <param name="beatmap">The <see cref="IBeatmap"/> to be converted.</param>
/// <param name="ruleset">The <see cref="Ruleset"/> for which <paramref name="beatmap"/> should be converted.</param>
/// <returns>The applicable <see cref="IBeatmapConverter"/>.</returns>
protected virtual IBeatmapConverter CreateBeatmapConverter ( IBeatmap beatmap , Ruleset ruleset ) = > ruleset . CreateBeatmapConverter ( beatmap ) ;
2018-04-13 17:19:50 +08:00
2021-12-22 17:01:09 +08:00
#endregion
2019-05-28 22:54:42 +08:00
2021-12-22 17:01:09 +08:00
public override string ToString ( ) = > BeatmapInfo . ToString ( ) ;
2021-05-30 14:19:47 +08:00
2021-12-22 17:01:09 +08:00
IBeatmapInfo IWorkingBeatmap . BeatmapInfo = > BeatmapInfo ;
2018-04-13 17:19:50 +08:00
2021-04-17 23:47:13 +08:00
public abstract Stream GetStream ( string storagePath ) ;
2018-09-06 11:51:23 +08:00
public class RecyclableLazy < T >
2018-04-13 17:19:50 +08:00
{
2018-09-06 11:51:23 +08:00
private Lazy < T > lazy ;
2018-04-13 17:19:50 +08:00
private readonly Func < T > valueFactory ;
private readonly Func < T , bool > stillValidFunction ;
2018-09-06 12:27:53 +08:00
private readonly object fetchLock = new object ( ) ;
2018-04-13 17:19:50 +08:00
2018-09-06 11:51:23 +08:00
public RecyclableLazy ( Func < T > valueFactory , Func < T , bool > stillValidFunction = null )
2018-04-13 17:19:50 +08:00
{
this . valueFactory = valueFactory ;
this . stillValidFunction = stillValidFunction ;
recreate ( ) ;
}
public void Recycle ( )
{
if ( ! IsResultAvailable ) return ;
2018-09-06 11:51:23 +08:00
( lazy . Value as IDisposable ) ? . Dispose ( ) ;
2018-04-13 17:19:50 +08:00
recreate ( ) ;
}
2018-09-06 11:51:23 +08:00
public bool IsResultAvailable = > stillValid ;
2018-04-13 17:19:50 +08:00
2018-09-06 11:51:23 +08:00
public T Value
2018-04-13 17:19:50 +08:00
{
get
{
2018-09-06 12:27:53 +08:00
lock ( fetchLock )
{
if ( ! stillValid )
recreate ( ) ;
return lazy . Value ;
}
2018-04-13 17:19:50 +08:00
}
}
2018-09-06 11:51:23 +08:00
private bool stillValid = > lazy . IsValueCreated & & ( stillValidFunction ? . Invoke ( lazy . Value ) ? ? true ) ;
private void recreate ( ) = > lazy = new Lazy < T > ( valueFactory , LazyThreadSafetyMode . ExecutionAndPublication ) ;
2018-04-13 17:19:50 +08:00
}
2020-03-16 10:33:26 +08:00
private class BeatmapLoadTimeoutException : TimeoutException
{
public BeatmapLoadTimeoutException ( BeatmapInfo beatmapInfo )
: base ( $"Timed out while loading beatmap ({beatmapInfo})." )
{
}
}
2018-04-13 17:19:50 +08:00
}
}