// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Testing; using osu.Game.Configuration; using osu.Game.Rulesets.Scoring; using osu.Game.Screens.Play.HUD; namespace osu.Game.Tests.Visual.Gameplay { public class TestSceneFailingLayer : OsuTestScene { private FailingLayer layer; [Resolved] private OsuConfigManager config { get; set; } [SetUpSteps] public void SetUpSteps() { AddStep("create layer", () => Child = layer = new FailingLayer()); AddStep("enable layer", () => config.Set(OsuSetting.FadePlayfieldWhenHealthLow, true)); AddUntilStep("layer is visible", () => layer.IsPresent); } [Test] public void TestLayerFading() { AddSliderStep("current health", 0.0, 1.0, 1.0, val => { if (layer != null) layer.Current.Value = val; }); AddStep("set health to 0.10", () => layer.Current.Value = 0.1); AddUntilStep("layer fade is visible", () => layer.Child.Alpha > 0.1f); AddStep("set health to 1", () => layer.Current.Value = 1f); AddUntilStep("layer fade is invisible", () => !layer.Child.IsPresent); } [Test] public void TestLayerDisabledViaConfig() { AddStep("disable layer", () => config.Set(OsuSetting.FadePlayfieldWhenHealthLow, false)); AddUntilStep("layer is not visible", () => !layer.IsPresent); } [Test] public void TestLayerVisibilityWithAccumulatingProcessor() { AddStep("bind accumulating processor", () => layer.BindHealthProcessor(new AccumulatingHealthProcessor(1))); AddUntilStep("layer is not visible", () => !layer.IsPresent); } [Test] public void TestLayerVisibilityWithDrainingProcessor() { AddStep("bind accumulating processor", () => layer.BindHealthProcessor(new DrainingHealthProcessor(1))); AddWaitStep("wait for potential fade", 10); AddAssert("layer is still visible", () => layer.IsPresent); } } }