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 osu.Framework.Audio.Track ;
using osu.Framework.Graphics.Textures ;
using osu.Game.Rulesets.Mods ;
using System ;
using System.Collections.Generic ;
using osu.Game.Storyboards ;
using osu.Framework.IO.File ;
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-02-21 18:04:31 +08:00
using osu.Framework.Bindables ;
2018-04-13 17:19:50 +08:00
using osu.Game.IO.Serialization ;
2018-04-19 21:04:12 +08:00
using osu.Game.Rulesets ;
2018-07-21 10:38:28 +08:00
using osu.Game.Rulesets.Objects ;
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 ;
namespace osu.Game.Beatmaps
{
2018-06-27 15:02:49 +08:00
public abstract partial class WorkingBeatmap : IDisposable
2018-04-13 17:19:50 +08:00
{
public readonly BeatmapInfo BeatmapInfo ;
public readonly BeatmapSetInfo BeatmapSetInfo ;
public readonly BeatmapMetadata Metadata ;
public readonly Bindable < IEnumerable < Mod > > Mods = new Bindable < IEnumerable < Mod > > ( new Mod [ ] { } ) ;
protected WorkingBeatmap ( BeatmapInfo beatmapInfo )
{
BeatmapInfo = beatmapInfo ;
BeatmapSetInfo = beatmapInfo . BeatmapSet ;
Metadata = beatmapInfo . Metadata ? ? BeatmapSetInfo ? . Metadata ? ? new BeatmapMetadata ( ) ;
2019-02-22 16:06:49 +08:00
Mods . ValueChanged + = _ = > applyRateAdjustments ( ) ;
2018-04-13 17:19:50 +08:00
2018-09-06 11:51:23 +08:00
beatmap = new RecyclableLazy < IBeatmap > ( ( ) = >
{
var b = GetBeatmap ( ) ? ? new Beatmap ( ) ;
2018-10-23 13:38:27 +08:00
// 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)
2018-09-06 11:51:23 +08:00
b . BeatmapInfo = BeatmapInfo ;
2018-10-23 13:38:27 +08:00
2018-09-06 11:51:23 +08:00
return b ;
} ) ;
track = new RecyclableLazy < Track > ( ( ) = >
{
// we want to ensure that we always have a track, even if it's a fake one.
var t = GetTrack ( ) ? ? new VirtualBeatmapTrack ( Beatmap ) ;
applyRateAdjustments ( t ) ;
return t ;
} ) ;
background = new RecyclableLazy < Texture > ( GetBackground , BackgroundStillValid ) ;
waveform = new RecyclableLazy < Waveform > ( GetWaveform ) ;
storyboard = new RecyclableLazy < Storyboard > ( GetStoryboard ) ;
skin = new RecyclableLazy < Skin > ( GetSkin ) ;
2018-04-13 17:19:50 +08:00
}
/// <summary>
2018-05-07 09:29:38 +08:00
/// Saves the <see cref="Beatmaps.Beatmap"/>.
2018-04-13 17:19:50 +08:00
/// </summary>
2018-06-19 19:19:52 +08:00
/// <returns>The absolute path of the output file.</returns>
public string Save ( )
2018-04-13 17:19:50 +08:00
{
var path = FileSafety . GetTempPath ( Guid . NewGuid ( ) . ToString ( ) . Replace ( "-" , string . Empty ) + ".json" ) ;
using ( var sw = new StreamWriter ( path ) )
2018-05-07 09:29:38 +08:00
sw . WriteLine ( Beatmap . Serialize ( ) ) ;
2018-06-19 19:19:52 +08:00
return path ;
2018-04-13 17:19:50 +08:00
}
2018-05-07 09:23:32 +08:00
/// <summary>
2018-05-07 09:40:30 +08:00
/// Constructs a playable <see cref="IBeatmap"/> from <see cref="Beatmap"/> using the applicable converters for a specific <see cref="RulesetInfo"/>.
/// <para>
/// The returned <see cref="IBeatmap"/> is in a playable state - all <see cref="HitObject"/> and <see cref="BeatmapDifficulty"/> <see cref="Mod"/>s
/// have been applied, and <see cref="HitObject"/>s have been fully constructed.
/// </para>
2018-05-07 09:23:32 +08:00
/// </summary>
2018-05-07 09:40:30 +08:00
/// <param name="ruleset">The <see cref="RulesetInfo"/> to create a playable <see cref="IBeatmap"/> for.</param>
2018-05-07 09:23:32 +08:00
/// <returns>The converted <see cref="IBeatmap"/>.</returns>
2018-05-07 09:29:38 +08:00
/// <exception cref="BeatmapInvalidForRulesetException">If <see cref="Beatmap"/> could not be converted to <paramref name="ruleset"/>.</exception>
2018-05-07 09:40:30 +08:00
public IBeatmap GetPlayableBeatmap ( RulesetInfo ruleset )
2018-04-19 21:04:12 +08:00
{
var rulesetInstance = ruleset . CreateInstance ( ) ;
2018-05-07 09:29:38 +08:00
IBeatmapConverter converter = rulesetInstance . CreateBeatmapConverter ( Beatmap ) ;
2018-04-19 21:04:12 +08:00
// Check if the beatmap can be converted
if ( ! converter . CanConvert )
2018-05-07 13:28:30 +08:00
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
// Apply conversion mods
foreach ( var mod in Mods . Value . OfType < IApplicableToBeatmapConverter > ( ) )
mod . ApplyToBeatmapConverter ( converter ) ;
// Convert
IBeatmap converted = converter . Convert ( ) ;
// Apply difficulty mods
2018-05-18 17:11:52 +08:00
if ( Mods . Value . Any ( m = > m is IApplicableToDifficulty ) )
{
converted . BeatmapInfo = converted . BeatmapInfo . Clone ( ) ;
converted . BeatmapInfo . BaseDifficulty = converted . BeatmapInfo . BaseDifficulty . Clone ( ) ;
foreach ( var mod in Mods . Value . OfType < IApplicableToDifficulty > ( ) )
mod . ApplyToDifficulty ( converted . BeatmapInfo . BaseDifficulty ) ;
}
2018-04-19 21:04:12 +08:00
2018-06-29 11:45:48 +08:00
IBeatmapProcessor processor = rulesetInstance . CreateBeatmapProcessor ( converted ) ;
processor ? . PreProcess ( ) ;
2018-04-19 21:04:12 +08:00
// Compute default values for hitobjects, including creating nested hitobjects in-case they're needed
foreach ( var obj in converted . HitObjects )
obj . ApplyDefaults ( converted . ControlPointInfo , converted . BeatmapInfo . BaseDifficulty ) ;
foreach ( var mod in Mods . Value . OfType < IApplicableToHitObject > ( ) )
foreach ( var obj in converted . HitObjects )
mod . ApplyToHitObject ( obj ) ;
2018-06-29 11:45:48 +08:00
processor ? . PostProcess ( ) ;
2018-05-25 15:21:51 +08:00
2018-04-19 21:04:12 +08:00
return converted ;
}
2018-07-19 17:43:11 +08:00
public override string ToString ( ) = > BeatmapInfo . ToString ( ) ;
2018-09-06 11:51:23 +08:00
public bool BeatmapLoaded = > beatmap . IsResultAvailable ;
public IBeatmap Beatmap = > beatmap . Value ;
protected abstract IBeatmap GetBeatmap ( ) ;
private readonly RecyclableLazy < IBeatmap > beatmap ;
2018-04-13 17:19:50 +08:00
2018-09-06 11:51:23 +08:00
public bool BackgroundLoaded = > background . IsResultAvailable ;
public Texture Background = > background . Value ;
2018-09-11 10:28:02 +08:00
protected virtual bool BackgroundStillValid ( Texture b ) = > b = = null | | b . Available ;
2018-09-06 11:51:23 +08:00
protected abstract Texture GetBackground ( ) ;
private readonly RecyclableLazy < Texture > background ;
2018-04-13 17:19:50 +08:00
public bool TrackLoaded = > track . IsResultAvailable ;
2018-09-06 11:51:23 +08:00
public Track Track = > track . Value ;
protected abstract Track GetTrack ( ) ;
private RecyclableLazy < Track > track ;
2018-04-13 17:19:50 +08:00
public bool WaveformLoaded = > waveform . IsResultAvailable ;
2018-09-06 11:51:23 +08:00
public Waveform Waveform = > waveform . Value ;
2019-01-07 17:50:27 +08:00
protected virtual Waveform GetWaveform ( ) = > new Waveform ( null ) ;
2018-09-06 11:51:23 +08:00
private readonly RecyclableLazy < Waveform > waveform ;
2018-04-13 17:19:50 +08:00
public bool StoryboardLoaded = > storyboard . IsResultAvailable ;
2018-09-06 11:51:23 +08:00
public Storyboard Storyboard = > storyboard . Value ;
protected virtual Storyboard GetStoryboard ( ) = > new Storyboard { BeatmapInfo = BeatmapInfo } ;
private readonly RecyclableLazy < Storyboard > storyboard ;
2018-04-13 17:19:50 +08:00
public bool SkinLoaded = > skin . IsResultAvailable ;
2018-09-06 11:51:23 +08:00
public Skin Skin = > skin . Value ;
protected virtual Skin GetSkin ( ) = > new DefaultSkin ( ) ;
private readonly RecyclableLazy < Skin > skin ;
2018-04-13 17:19:50 +08:00
2018-09-06 11:51:23 +08:00
/// <summary>
/// Transfer pieces of a beatmap to a new one, where possible, to save on loading.
/// </summary>
/// <param name="other">The new beatmap which is being switched to.</param>
public virtual void TransferTo ( WorkingBeatmap other )
2018-04-13 17:19:50 +08:00
{
if ( track . IsResultAvailable & & Track ! = null & & BeatmapInfo . AudioEquals ( other . BeatmapInfo ) )
other . track = track ;
}
public virtual void Dispose ( )
{
2018-09-06 11:51:23 +08:00
background . Recycle ( ) ;
waveform . Recycle ( ) ;
storyboard . Recycle ( ) ;
skin . Recycle ( ) ;
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// Eagerly dispose of the audio track associated with this <see cref="WorkingBeatmap"/> (if any).
/// Accessing track again will load a fresh instance.
/// </summary>
public void RecycleTrack ( ) = > track . Recycle ( ) ;
private void applyRateAdjustments ( Track t = null )
{
if ( t = = null & & track . IsResultAvailable ) t = Track ;
if ( t = = null ) return ;
t . ResetSpeedAdjustments ( ) ;
foreach ( var mod in Mods . Value . OfType < IApplicableToClock > ( ) )
mod . ApplyToClock ( t ) ;
}
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
}
}
}