Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game.Rulesets.Taiko.Tests/Mods/TestSceneTaikoModFlashlight.cs
2263 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System.Linq;
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Framework.Testing;
using osu.Game.Configuration;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Taiko.Mods;
using osu.Game.Rulesets.Taiko.UI;
using osuTK;

namespace osu.Game.Rulesets.Taiko.Tests.Mods
{
    public partial class TestSceneTaikoModFlashlight : TaikoModTestScene
    {
        [Test]
        public void TestAspectRatios([Values] bool withClassicMod)
        {
            if (withClassicMod)
                CreateModTest(new ModTestData { Mods = new Mod[] { new TaikoModFlashlight(), new TaikoModClassic() }, PassCondition = () => true });
            else
                CreateModTest(new ModTestData { Mod = new TaikoModFlashlight(), PassCondition = () => true });

            AddStep("clear dim", () => LocalConfig.SetValue(OsuSetting.DimLevel, 0.0));

            AddStep("reset", () => Stack.FillMode = FillMode.Stretch);
            AddStep("set to 16:9", () =>
            {
                Stack.FillAspectRatio = 16 / 9f;
                Stack.FillMode = FillMode.Fit;
            });
            AddStep("set to 4:3", () =>
            {
                Stack.FillAspectRatio = 4 / 3f;
                Stack.FillMode = FillMode.Fit;
            });
            AddSliderStep("aspect ratio", 0.01f, 5f, 1f, v =>
            {
                Stack.FillAspectRatio = v;
                Stack.FillMode = FillMode.Fit;
            });
        }

        [TestCase(1f)]
        [TestCase(0.5f)]
        [TestCase(1.25f)]
        [TestCase(1.5f)]
        public void TestSizeMultiplier(float sizeMultiplier) => CreateModTest(new ModTestData { Mod = new TaikoModFlashlight { SizeMultiplier = { Value = sizeMultiplier } }, PassCondition = () => true });

        [Test]
        public void TestComboBasedSize([Values] bool comboBasedSize) => CreateModTest(new ModTestData { Mod = new TaikoModFlashlight { ComboBasedSize = { Value = comboBasedSize } }, PassCondition = () => true });

        [Test]
        public void TestFlashlightAlwaysHasNonZeroSize()
        {
            bool failed = false;

            CreateModTest(new ModTestData
            {
                Mod = new TestTaikoModFlashlight { ComboBasedSize = { Value = true } },
                Autoplay = false,
                PassCondition = () =>
                {
                    failed |= this.ChildrenOfType<TestTaikoModFlashlight.TestTaikoFlashlight>().SingleOrDefault()?.FlashlightSize.Y == 0;
                    return !failed;
                }
            });
        }

        private partial class TestTaikoModFlashlight : TaikoModFlashlight
        {
            protected override Flashlight CreateFlashlight() => new TestTaikoFlashlight(this, Playfield);

            public partial class TestTaikoFlashlight : TaikoFlashlight
            {
                public TestTaikoFlashlight(TaikoModFlashlight modFlashlight, TaikoPlayfield taikoPlayfield)
                    : base(modFlashlight, taikoPlayfield)
                {
                }

                public new Vector2 FlashlightSize => base.FlashlightSize;
            }
        }
    }
}