mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
103 lines
3.0 KiB
C#
103 lines
3.0 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;
|
|
using System.Collections.Generic;
|
|
using JetBrains.Annotations;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets;
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
public abstract class ModTestScene : PlayerTestScene
|
|
{
|
|
protected sealed override bool HasCustomSteps => true;
|
|
|
|
private ModTestData currentTestData;
|
|
|
|
protected void CreateModTest(ModTestData testData) => CreateTest(() =>
|
|
{
|
|
AddStep("set test data", () => currentTestData = testData);
|
|
});
|
|
|
|
public override void TearDownSteps()
|
|
{
|
|
AddUntilStep("test passed", () =>
|
|
{
|
|
if (currentTestData == null)
|
|
return true;
|
|
|
|
return currentTestData.PassCondition?.Invoke() ?? false;
|
|
});
|
|
|
|
base.TearDownSteps();
|
|
}
|
|
|
|
protected sealed override IBeatmap CreateBeatmap(RulesetInfo ruleset) => currentTestData?.Beatmap ?? base.CreateBeatmap(ruleset);
|
|
|
|
protected sealed override TestPlayer CreatePlayer(Ruleset ruleset)
|
|
{
|
|
var mods = new List<Mod>(SelectedMods.Value);
|
|
|
|
if (currentTestData.Mods != null)
|
|
mods.AddRange(currentTestData.Mods);
|
|
if (currentTestData.Autoplay)
|
|
mods.Add(ruleset.GetAutoplayMod());
|
|
|
|
SelectedMods.Value = mods;
|
|
|
|
return CreateModPlayer(ruleset);
|
|
}
|
|
|
|
protected virtual TestPlayer CreateModPlayer(Ruleset ruleset) => new ModTestPlayer(AllowFail);
|
|
|
|
protected class ModTestPlayer : TestPlayer
|
|
{
|
|
private readonly bool allowFail;
|
|
|
|
protected override bool CheckModsAllowFailure() => allowFail;
|
|
|
|
public ModTestPlayer(bool allowFail)
|
|
: base(false, false)
|
|
{
|
|
this.allowFail = allowFail;
|
|
}
|
|
}
|
|
|
|
protected class ModTestData
|
|
{
|
|
/// <summary>
|
|
/// Whether to use a replay to simulate an auto-play. True by default.
|
|
/// </summary>
|
|
public bool Autoplay = true;
|
|
|
|
/// <summary>
|
|
/// The beatmap for this test case.
|
|
/// </summary>
|
|
[CanBeNull]
|
|
public IBeatmap Beatmap;
|
|
|
|
/// <summary>
|
|
/// The conditions that cause this test case to pass.
|
|
/// </summary>
|
|
[CanBeNull]
|
|
public Func<bool> PassCondition;
|
|
|
|
/// <summary>
|
|
/// The <see cref="Mod"/>s this test case tests.
|
|
/// </summary>
|
|
public IReadOnlyList<Mod> Mods;
|
|
|
|
/// <summary>
|
|
/// Convenience property for setting <see cref="Mods"/> if only
|
|
/// a single mod is to be tested.
|
|
/// </summary>
|
|
public Mod Mod
|
|
{
|
|
set => Mods = new[] { value };
|
|
}
|
|
}
|
|
}
|
|
}
|