2017-02-28 19:14:48 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-03-06 09:05:42 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-09-12 11:20:42 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2017-03-01 21:56:20 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2017-09-12 11:20:42 +08:00
|
|
|
|
using System.Linq;
|
2017-02-28 19:14:48 +08:00
|
|
|
|
|
2017-08-04 14:37:31 +08:00
|
|
|
|
namespace osu.Desktop.Tests.Visual
|
2017-02-28 19:14:48 +08:00
|
|
|
|
{
|
2017-03-09 12:55:29 +08:00
|
|
|
|
internal class TestCaseReplay : TestCasePlayer
|
2017-02-28 19:14:48 +08:00
|
|
|
|
{
|
2017-03-01 21:56:20 +08:00
|
|
|
|
public override string Description => @"Testing replay playback.";
|
|
|
|
|
|
2017-09-12 11:20:42 +08:00
|
|
|
|
protected override Player CreatePlayer(WorkingBeatmap beatmap, Ruleset ruleset)
|
2017-03-04 14:29:15 +08:00
|
|
|
|
{
|
2017-09-12 11:20:42 +08:00
|
|
|
|
beatmap.Mods.Value = beatmap.Mods.Value.Concat(new[] { ruleset.GetAutoplayMod() });
|
|
|
|
|
return base.CreatePlayer(beatmap, ruleset);
|
2017-03-04 14:29:15 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-28 19:14:48 +08:00
|
|
|
|
}
|