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
|
|
|
|
|
2020-04-14 20:05:42 +08:00
|
|
|
|
using osu.Framework.Audio;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Audio.Track;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2019-11-21 17:50:54 +08:00
|
|
|
|
using osu.Game.Storyboards;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Beatmaps
|
|
|
|
|
{
|
|
|
|
|
public class TestWorkingBeatmap : WorkingBeatmap
|
|
|
|
|
{
|
2019-02-19 11:16:44 +08:00
|
|
|
|
private readonly IBeatmap beatmap;
|
2019-11-21 17:50:54 +08:00
|
|
|
|
private readonly Storyboard storyboard;
|
2019-02-19 11:16:44 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Create an instance which provides the <see cref="IBeatmap"/> when requested.
|
|
|
|
|
/// </summary>
|
2019-11-21 17:50:54 +08:00
|
|
|
|
/// <param name="beatmap">The beatmap.</param>
|
|
|
|
|
/// <param name="storyboard">An optional storyboard.</param>
|
2020-04-14 20:05:42 +08:00
|
|
|
|
/// <param name="audioManager">The <see cref="AudioManager"/>.</param>
|
|
|
|
|
public TestWorkingBeatmap(IBeatmap beatmap, Storyboard storyboard = null, AudioManager audioManager = null)
|
|
|
|
|
: base(beatmap.BeatmapInfo, audioManager)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
this.beatmap = beatmap;
|
2019-11-21 17:50:54 +08:00
|
|
|
|
this.storyboard = storyboard;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-21 14:05:56 +08:00
|
|
|
|
public override bool TrackLoaded => true;
|
|
|
|
|
|
2020-04-30 15:42:38 +08:00
|
|
|
|
public override bool BeatmapLoaded => true;
|
|
|
|
|
|
2018-04-19 19:44:38 +08:00
|
|
|
|
protected override IBeatmap GetBeatmap() => beatmap;
|
2019-02-19 11:16:44 +08:00
|
|
|
|
|
2019-11-21 17:50:54 +08:00
|
|
|
|
protected override Storyboard GetStoryboard() => storyboard ?? base.GetStoryboard();
|
|
|
|
|
|
2019-05-31 13:40:53 +08:00
|
|
|
|
protected override Texture GetBackground() => null;
|
2019-02-19 11:35:52 +08:00
|
|
|
|
|
2020-08-07 21:31:41 +08:00
|
|
|
|
protected override Track GetBeatmapTrack() => null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|