// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; using osu.Framework.Testing; using osu.Framework.Utils; using osu.Game.Beatmaps; using osu.Game.Rulesets.Mods; using osu.Game.Rulesets.Objects; using osu.Game.Rulesets.Osu.Mods; using osu.Game.Rulesets.Osu.Objects; using osu.Game.Rulesets.Osu.Objects.Drawables; using osu.Game.Rulesets.Osu.Skinning.Default; using osu.Game.Screens.Play; using osuTK; namespace osu.Game.Rulesets.Osu.Tests.Mods { public class TestSceneOsuModSpunOut : OsuModTestScene { protected override bool AllowFail => true; [Test] public void TestSpinnerAutoCompleted() => CreateModTest(new ModTestData { Mod = new OsuModSpunOut(), Autoplay = false, Beatmap = singleSpinnerBeatmap, PassCondition = () => Player.ChildrenOfType().SingleOrDefault()?.Progress >= 1 }); [TestCase(null)] [TestCase(typeof(OsuModDoubleTime))] [TestCase(typeof(OsuModHalfTime))] public void TestSpinRateUnaffectedByMods(Type additionalModType) { var mods = new List { new OsuModSpunOut() }; if (additionalModType != null) mods.Add((Mod)Activator.CreateInstance(additionalModType)); CreateModTest(new ModTestData { Mods = mods, Autoplay = false, Beatmap = singleSpinnerBeatmap, PassCondition = () => { var counter = Player.ChildrenOfType().SingleOrDefault(); var spinner = Player.ChildrenOfType().FirstOrDefault(); if (counter == null || spinner == null) return false; // ignore cases where the spinner hasn't started as these lead to false-positives if (Precision.AlmostEquals(counter.Result.Value, 0, 1)) return false; float rotationSpeed = (float)(1.01 * spinner.HitObject.SpinsRequired / spinner.HitObject.Duration); return Precision.AlmostEquals(counter.Result.Value, rotationSpeed * 1000 * 60, 1); } }); } [Test] public void TestSpinnerOnlyComplete() => CreateModTest(new ModTestData { Mod = new OsuModSpunOut(), Autoplay = false, Beatmap = singleSpinnerBeatmap, PassCondition = () => { var spinner = Player.ChildrenOfType().SingleOrDefault(); var gameplayClockContainer = Player.ChildrenOfType().SingleOrDefault(); if (spinner == null || gameplayClockContainer == null) return false; if (!Precision.AlmostEquals(gameplayClockContainer.CurrentTime, spinner.HitObject.StartTime + spinner.HitObject.Duration, 200.0f)) return false; return Precision.AlmostEquals(spinner.Progress, 1.0f, 0.05f) && Precision.AlmostEquals(spinner.GainedBonus.Value, 0, 1); } }); private Beatmap singleSpinnerBeatmap => new Beatmap { HitObjects = new List { new Spinner { Position = new Vector2(256, 192), StartTime = 500, Duration = 2000 } } }; } }