mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 03:57:25 +08:00
29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
// 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.
|
|
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using osu.Game.Rulesets;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
[Description("Player instantiated with a replay.")]
|
|
public class TestCaseReplay : TestCasePlayer
|
|
{
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
|
{
|
|
// We create a dummy RulesetContainer just to get the replay - we don't want to use mods here
|
|
// to simulate setting a replay rather than having the replay already set for us
|
|
Beatmap.Value.Mods.Value = Beatmap.Value.Mods.Value.Concat(new[] { ruleset.GetAutoplayMod() });
|
|
var dummyRulesetContainer = ruleset.CreateRulesetContainerWith(Beatmap.Value);
|
|
|
|
// Reset the mods
|
|
Beatmap.Value.Mods.Value = Beatmap.Value.Mods.Value.Where(m => !(m is ModAutoplay));
|
|
|
|
return new ReplayPlayer(dummyRulesetContainer.ReplayScore);
|
|
}
|
|
}
|
|
}
|