1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneSliderSnaking.cs

254 lines
9.5 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2020-03-29 22:00:26 +08:00
// See the LICENCE file in the repository root for full licence text.
2020-04-05 21:26:32 +08:00
using System;
2020-03-29 22:00:26 +08:00
using System.Collections.Generic;
using System.Linq;
2020-04-04 20:10:54 +08:00
using Humanizer;
2020-03-29 22:00:26 +08:00
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Containers;
using osu.Framework.Testing;
using osu.Framework.Timing;
using osu.Framework.Utils;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Osu.Configuration;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces;
using osu.Game.Storyboards;
using osuTK;
using static osu.Game.Tests.Visual.OsuTestScene.ClockBackedTestWorkingBeatmap;
namespace osu.Game.Rulesets.Osu.Tests
{
[TestFixture]
public class TestSceneSliderSnaking : TestSceneOsuPlayer
{
[Resolved]
private AudioManager audioManager { get; set; }
private TrackVirtualManual track;
2020-03-29 22:43:18 +08:00
protected override bool Autoplay => autoplay;
private bool autoplay;
2020-03-29 22:00:26 +08:00
2020-04-04 20:35:35 +08:00
private readonly BindableBool snakingIn = new BindableBool();
private readonly BindableBool snakingOut = new BindableBool();
2020-03-29 22:00:26 +08:00
2020-04-04 20:10:54 +08:00
private const double duration_of_span = 3605;
private const double fade_in_modifier = -1200;
2020-03-29 22:00:26 +08:00
protected override WorkingBeatmap CreateWorkingBeatmap(IBeatmap beatmap, Storyboard storyboard = null)
{
var working = new ClockBackedTestWorkingBeatmap(beatmap, storyboard, new FramedClock(new ManualClock { Rate = 1 }), audioManager);
track = (TrackVirtualManual)working.Track;
return working;
}
[BackgroundDependencyLoader]
private void load(RulesetConfigCache configCache)
{
var config = (OsuRulesetConfigManager)configCache.GetConfigFor(Ruleset.Value.CreateInstance());
config.BindWith(OsuRulesetSetting.SnakingInSliders, snakingIn);
config.BindWith(OsuRulesetSetting.SnakingOutSliders, snakingOut);
}
private DrawableSlider slider;
[SetUpSteps]
2020-03-29 22:43:18 +08:00
public override void SetUpSteps() { }
2020-03-29 22:00:26 +08:00
2020-04-05 16:22:52 +08:00
[TestCase(0)]
[TestCase(1)]
[TestCase(2)]
2020-04-05 21:26:32 +08:00
public void TestSnakingEnabled(int sliderIndex)
2020-03-29 22:00:26 +08:00
{
2020-04-05 21:26:32 +08:00
AddStep("enable autoplay", () => autoplay = true);
2020-03-29 22:43:18 +08:00
base.SetUpSteps();
AddUntilStep("wait for track to start running", () => track.IsRunning);
2020-04-05 21:26:32 +08:00
double startTime = hitObjects[sliderIndex].StartTime;
retrieveDrawableSlider(sliderIndex);
2020-04-05 21:26:32 +08:00
setSnaking(true);
ensureSnakingIn(startTime + fade_in_modifier);
for (int i = 0; i < sliderIndex; i++)
{
// non-final repeats should not snake out
ensureNoSnakingOut(startTime, i);
}
// final repeat should snake out
ensureSnakingOut(startTime, sliderIndex);
2020-04-05 16:22:52 +08:00
}
[TestCase(0)]
[TestCase(1)]
[TestCase(2)]
2020-04-05 21:26:32 +08:00
public void TestSnakingDisabled(int sliderIndex)
2020-04-05 16:22:52 +08:00
{
AddStep("have autoplay", () => autoplay = true);
base.SetUpSteps();
AddUntilStep("wait for track to start running", () => track.IsRunning);
2020-04-05 21:26:32 +08:00
double startTime = hitObjects[sliderIndex].StartTime;
retrieveDrawableSlider(sliderIndex);
2020-04-05 21:26:32 +08:00
setSnaking(false);
ensureNoSnakingIn(startTime + fade_in_modifier);
for (int i = 0; i <= sliderIndex; i++)
{
// no snaking out ever, including final repeat
ensureNoSnakingOut(startTime, i);
}
2020-03-29 22:43:18 +08:00
}
2020-04-05 21:37:31 +08:00
[Test]
public void TestRepeatArrowDoesNotMoveWhenHit()
2020-03-29 22:43:18 +08:00
{
2020-04-05 21:37:31 +08:00
AddStep("enable autoplay", () => autoplay = true);
2020-03-29 22:00:26 +08:00
setSnaking(true);
2020-03-29 22:43:18 +08:00
base.SetUpSteps();
2020-04-05 21:53:56 +08:00
// repeat might have a chance to update its position depending on where in the frame its hit,
// so some leniency is allowed here instead of checking strict equality
2020-04-05 21:37:31 +08:00
checkPositionChange(16600, sliderRepeat, positionAlmostSame);
}
2020-04-04 20:35:35 +08:00
2020-04-05 21:37:31 +08:00
[Test]
public void TestRepeatArrowMovesWhenNotHit()
{
AddStep("disable autoplay", () => autoplay = false);
setSnaking(true);
base.SetUpSteps();
2020-04-04 20:35:35 +08:00
2020-04-05 21:37:31 +08:00
checkPositionChange(16600, sliderRepeat, positionDecreased);
2020-03-29 22:00:26 +08:00
}
private void retrieveDrawableSlider(int index) => AddStep($"retrieve {(index + 1).ToOrdinalWords()} slider", () =>
2020-03-29 22:00:26 +08:00
{
2020-04-05 21:26:32 +08:00
slider = (DrawableSlider)Player.DrawableRuleset.Playfield.AllHitObjects.ElementAt(index);
});
2020-04-04 20:35:35 +08:00
2020-04-05 21:26:32 +08:00
private void ensureSnakingIn(double startTime) => checkPositionChange(startTime, sliderEnd, positionIncreased);
private void ensureNoSnakingIn(double startTime) => checkPositionChange(startTime, sliderEnd, positionRemainsSame);
2020-03-29 22:00:26 +08:00
2020-04-05 21:26:32 +08:00
private void ensureSnakingOut(double startTime, int repeatIndex)
2020-03-29 22:00:26 +08:00
{
2020-04-05 21:26:32 +08:00
var repeatTime = timeAtRepeat(startTime, repeatIndex);
if (repeatIndex % 2 == 0)
checkPositionChange(repeatTime, sliderStart, positionIncreased);
else
checkPositionChange(repeatTime, sliderEnd, positionDecreased);
2020-03-29 22:00:26 +08:00
}
2020-04-05 21:26:32 +08:00
private void ensureNoSnakingOut(double startTime, int repeatIndex) =>
checkPositionChange(timeAtRepeat(startTime, repeatIndex), positionAtRepeat(repeatIndex), positionRemainsSame);
2020-04-04 20:35:35 +08:00
2020-04-05 21:26:32 +08:00
private double timeAtRepeat(double startTime, int repeatIndex) => startTime + 100 + duration_of_span * repeatIndex;
private Func<Vector2> positionAtRepeat(int repeatIndex) => repeatIndex % 2 == 0 ? (Func<Vector2>)sliderStart : sliderEnd;
2020-04-04 20:35:35 +08:00
2020-04-05 21:26:32 +08:00
private List<Vector2> sliderCurve => ((PlaySliderBody)slider.Body.Drawable).CurrentCurve;
private Vector2 sliderStart() => sliderCurve.First();
private Vector2 sliderEnd() => sliderCurve.Last();
2020-04-05 21:39:32 +08:00
2020-04-05 21:37:31 +08:00
private Vector2 sliderRepeat()
{
var drawable = Player.DrawableRuleset.Playfield.AllHitObjects.ElementAt(1);
var repeat = drawable.ChildrenOfType<Container<DrawableSliderRepeat>>().First().Children.First();
return repeat.Position;
}
2020-04-04 20:35:35 +08:00
2020-04-05 21:26:32 +08:00
private bool positionRemainsSame(Vector2 previous, Vector2 current) => previous == current;
private bool positionIncreased(Vector2 previous, Vector2 current) => current.X > previous.X && current.Y > previous.Y;
private bool positionDecreased(Vector2 previous, Vector2 current) => current.X < previous.X && current.Y < previous.Y;
2020-04-05 21:37:31 +08:00
private bool positionAlmostSame(Vector2 previous, Vector2 current) => Precision.AlmostEquals(previous, current, 1);
2020-03-29 22:00:26 +08:00
2020-04-05 21:26:32 +08:00
private void checkPositionChange(double startTime, Func<Vector2> positionToCheck, Func<Vector2, Vector2, bool> positionAssertion)
2020-04-04 20:10:54 +08:00
{
2020-04-05 21:26:32 +08:00
Vector2 previousPosition = Vector2.Zero;
string positionDescription = positionToCheck.Method.Name.Humanize(LetterCasing.LowerCase);
string assertionDescription = positionAssertion.Method.Name.Humanize(LetterCasing.LowerCase);
addSeekStep(startTime);
AddStep($"save {positionDescription} position", () => previousPosition = positionToCheck.Invoke());
addSeekStep(startTime + 100);
AddAssert($"{positionDescription} {assertionDescription}", () =>
{
var currentPosition = positionToCheck.Invoke();
return positionAssertion.Invoke(previousPosition, currentPosition);
});
2020-04-04 20:10:54 +08:00
}
2020-03-29 22:00:26 +08:00
private void setSnaking(bool value)
{
2020-04-05 21:39:32 +08:00
AddStep($"{(value ? "enable" : "disable")} snaking", () =>
2020-03-29 22:00:26 +08:00
{
snakingIn.Value = value;
snakingOut.Value = value;
});
}
private void addSeekStep(double time)
{
AddStep($"seek to {time}", () => track.Seek(time));
AddUntilStep("wait for seek to finish", () => Precision.AlmostEquals(time, Player.DrawableRuleset.FrameStableClock.CurrentTime, 100));
}
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset) => new Beatmap
{
HitObjects = hitObjects
};
private readonly List<HitObject> hitObjects = new List<HitObject>
{
new Slider
2020-03-29 22:00:26 +08:00
{
StartTime = 3000,
Position = new Vector2(100, 100),
Path = new SliderPath(PathType.PerfectCurve, new[]
2020-03-29 22:00:26 +08:00
{
Vector2.Zero,
new Vector2(300, 200)
}),
},
new Slider
{
StartTime = 13000,
Position = new Vector2(100, 100),
Path = new SliderPath(PathType.PerfectCurve, new[]
2020-03-29 22:00:26 +08:00
{
Vector2.Zero,
new Vector2(300, 200)
}),
RepeatCount = 1,
},
new Slider
{
StartTime = 23000,
Position = new Vector2(100, 100),
Path = new SliderPath(PathType.PerfectCurve, new[]
2020-03-29 22:00:26 +08:00
{
Vector2.Zero,
new Vector2(300, 200)
}),
RepeatCount = 2,
},
new HitCircle
{
StartTime = 199999,
2020-03-29 22:00:26 +08:00
}
};
}
}