mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 06:37:50 +08:00
43 lines
1.2 KiB
C#
43 lines
1.2 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 osu.Framework.Graphics.Containers;
|
|
using osu.Game.Rulesets;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
{
|
|
public class TestSceneFailAnimation : TestSceneAllRulesetPlayers
|
|
{
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
|
{
|
|
SelectedMods.Value = Array.Empty<Mod>();
|
|
return new FailPlayer();
|
|
}
|
|
|
|
protected override void AddCheckSteps()
|
|
{
|
|
AddUntilStep("wait for fail", () => Player.HasFailed);
|
|
AddUntilStep("wait for fail overlay", () => ((FailPlayer)Player).FailOverlay.State.Value == Visibility.Visible);
|
|
}
|
|
|
|
private class FailPlayer : TestPlayer
|
|
{
|
|
public new FailOverlay FailOverlay => base.FailOverlay;
|
|
|
|
public FailPlayer()
|
|
: base(false, false)
|
|
{
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
HealthProcessor.FailConditions += (_, __) => true;
|
|
}
|
|
}
|
|
}
|
|
}
|