1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestCaseSliderInput.cs

431 lines
19 KiB
C#
Raw Normal View History

2019-01-21 13:40:28 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Replays;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces;
using osu.Game.Rulesets.Osu.Replays;
using osu.Game.Rulesets.Replays;
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring;
using osu.Game.Screens.Play;
using osu.Game.Tests.Beatmaps;
using osu.Game.Tests.Visual;
using osuTK;
namespace osu.Game.Rulesets.Osu.Tests
{
public class TestCaseSliderInput : OsuTestCase
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(Slider),
typeof(SliderBall),
typeof(SliderBody),
typeof(SliderTick),
typeof(DrawableSlider),
typeof(DrawableSliderTick),
typeof(DrawableRepeatPoint),
typeof(DrawableOsuHitObject)
};
[SetUp]
2019-01-22 09:49:25 +08:00
public void Setup() => Schedule(() =>
2019-01-21 13:40:28 +08:00
{
2019-01-22 09:49:25 +08:00
allJudgedFired = false;
2019-01-21 13:40:28 +08:00
judgementResults = new List<JudgementResult>();
private readonly Container content;
protected override Container<Drawable> Content => content;
private List<JudgementResult> judgementResults;
private bool allJudgedFired;
public TestCaseSliderInput()
{
base.Content.Add(content = new OsuInputManager(new RulesetInfo { ID = 0 }));
}
2019-01-22 09:47:11 +08:00
private const double time_before_slider = 250;
private const double time_slider_start = 1500;
private const double time_during_slide_1 = 2500;
private const double time_during_slide_2 = 3000;
private const double time_during_slide_3 = 3500;
private const double time_during_slide_4 = 4000;
2019-01-21 13:40:28 +08:00
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key before a slider starts
/// - Press the other key on the slider head timed correctly while holding the original key
/// - Release the latter pressed key
/// Expected Result:
2019-01-22 09:47:11 +08:00
/// A passing test case will have the cursor lose tracking on replay frame 3.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
public void TestLeftBeforeSliderThenRight()
{
AddStep("Invalid key transfer test", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_before_slider },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton, OsuAction.RightButton }, Time = time_slider_start },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_1 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 1");
AddAssert("Tracking lost", assertMehJudge);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key on the slider head timed correctly
/// - Press the other key in the middle of the slider while holding the original key
/// - Release the original key used to hit the slider
/// Expected Result:
2019-01-22 09:47:11 +08:00
/// A passing test case will have the cursor continue tracking on replay frame 3.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
public void TestLeftBeforeSliderThenRightThenLettingGoOfLeft()
{
AddStep("Left to both to right test", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_slider_start },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton, OsuAction.RightButton }, Time = time_during_slide_1 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.RightButton }, Time = time_during_slide_2 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 2");
AddAssert("Tracking retained", assertGreatJudge);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key on the slider head timed correctly
/// - Press the other key in the middle of the slider while holding the original key
/// - Release the new key that was pressed second
/// Expected Result:
2019-01-22 09:47:11 +08:00
/// A passing test case will have the cursor continue tracking on replay frame 3.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
public void TestTrackingRetentionLeftRightLeft()
{
AddStep("Tracking retention test", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_before_slider },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton, OsuAction.RightButton }, Time = time_slider_start },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.RightButton }, Time = time_during_slide_1 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 3");
AddAssert("Tracking retained", assertGreatJudge);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key before a slider starts
/// - Press the other key on the slider head timed correctly while holding the original key
/// - Release the key that was held down before the slider started.
/// Expected Result:
2019-01-22 09:47:11 +08:00
/// A passing test case will have the cursor continue tracking on replay frame 3
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
public void TestTrackingLeftBeforeSliderToRight()
{
AddStep("Tracking retention test", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_before_slider },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton, OsuAction.RightButton }, Time = time_slider_start },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.RightButton }, Time = time_during_slide_1 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 4");
AddAssert("Tracking retained", assertGreatJudge);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key before a slider starts
/// - Hold the key down throughout the slider without pressing any other buttons.
/// Expected Result:
/// A passing test case will have the cursor track the slider, but miss the slider head.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
public void TestTrackingPreclicked()
{
AddStep("Tracking retention test", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_before_slider },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 5");
AddAssert("Tracking retained, sliderhead miss", assertHeadMissTailMeh);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key before a slider starts
/// - Hold the key down after the slider starts
/// - Move the cursor away from the slider body
/// - Move the cursor back onto the body
/// Expected Result:
/// A passing test case will have the cursor track the slider, miss the head, miss the ticks where its outside of the body, and resume tracking when the cursor returns.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
public void TestTrackingReturnMidSlider()
{
AddStep("Mid-sldier tracking re-acquisition", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_slider_start },
new OsuReplayFrame { Position = new Vector2(150, 150), Actions = { OsuAction.LeftButton }, Time = time_during_slide_1 },
new OsuReplayFrame { Position = new Vector2(200, 200), Actions = { OsuAction.LeftButton }, Time = time_during_slide_2 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_3 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_4 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 6");
AddAssert("Tracking re-acquired", assertMidSliderJudgements);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key before a slider starts
/// - Press the other key on the slider head timed correctly while holding the original key
/// - Release the key used to hit the slider head
/// - While holding the first key, move the cursor away from the slider body
/// - Still holding the first key, move the cursor back to the slider body
/// Expected Result:
/// A passing test case will have the slider not track despite having the cursor return to the slider body.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
public void TestTrackingReturnMidSliderKeyDownBefore()
{
AddStep("Key held down before slider, mid-slider tracking re-acquisition", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_before_slider },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton, OsuAction.RightButton }, Time = time_slider_start },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_1 },
new OsuReplayFrame { Position = new Vector2(200, 200), Actions = { OsuAction.LeftButton }, Time = time_during_slide_2 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_3 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_4 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 7");
AddAssert("Tracking lost", assertMidSliderJudgementFail);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Wait for the slider to reach a mid-point
/// - Press a key away from the slider body
/// - While holding down the key, move into the slider body
/// Expected Result:
/// A passing test case will have the slider track the cursor after the cursor enters the slider body.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
public void TestTrackingMidSlider()
{
AddStep("Mid-slider new tracking acquisition", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(150, 150), Actions = { OsuAction.LeftButton }, Time = time_during_slide_1 },
new OsuReplayFrame { Position = new Vector2(200, 200), Actions = { OsuAction.LeftButton }, Time = time_during_slide_2 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_3 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_4 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 8");
AddAssert("Tracking acquired", assertMidSliderJudgements);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key before the slider starts
/// - Press another key on the slider head while holding the original key
/// - Move out of the slider body while releasing the two pressed keys
/// - Move back into the slider body while pressing any key.
/// Expected Result:
/// A passing test case will have the slider track the cursor after the cursor enters the slider body.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
2019-01-21 23:54:22 +08:00
public void TestTrackingReleasedKeys()
2019-01-21 13:40:28 +08:00
{
AddStep("Mid-slider new tracking acquisition", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_before_slider },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton, OsuAction.RightButton }, Time = time_slider_start },
new OsuReplayFrame { Position = new Vector2(100, 100), Time = time_during_slide_1 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_2 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 9");
AddAssert("Tracking acquired", assertMidSliderJudgements);
}
/// <summary>
2019-01-21 23:54:22 +08:00
/// Scenario:
/// - Press a key on the slider head
/// - While holding the key, move outside of the slider body with the cursor
/// - Release the key while outside of the slider body
/// - Press the key again while outside of the slider body
/// - Move back into the slider body while holding the pressed key
/// Expected Result:
/// A passing test case will have the slider track the cursor after the cursor enters the slider body.
2019-01-21 13:40:28 +08:00
/// </summary>
[Test]
2019-01-21 23:54:22 +08:00
public void TestTrackingReleasedValidKey()
2019-01-21 13:40:28 +08:00
{
AddStep("Mid-slider new tracking acquisition", () =>
{
var frames = new List<ReplayFrame>
{
2019-01-22 09:47:11 +08:00
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_slider_start },
new OsuReplayFrame { Position = new Vector2(100, 100), Actions = { OsuAction.LeftButton }, Time = time_during_slide_1 },
new OsuReplayFrame { Position = new Vector2(100, 100), Time = time_during_slide_2 },
new OsuReplayFrame { Position = new Vector2(100, 100), Actions = { OsuAction.LeftButton }, Time = time_during_slide_3 },
new OsuReplayFrame { Position = new Vector2(0, 0), Actions = { OsuAction.LeftButton }, Time = time_during_slide_4 },
2019-01-21 13:40:28 +08:00
};
2019-01-22 09:47:11 +08:00
performTest(frames);
2019-01-21 13:40:28 +08:00
});
AddUntilStep(() => allJudgedFired, "Wait for test 10");
AddAssert("Tracking acquired", assertMidSliderJudgements);
}
private bool assertMehJudge()
{
return judgementResults.Last().Type == HitResult.Meh;
}
private bool assertGreatJudge()
{
return judgementResults.Last().Type == HitResult.Great;
}
private bool assertHeadMissTailMeh()
{
return judgementResults.Last().Type == HitResult.Meh && judgementResults.First().Type == HitResult.Miss;
}
private bool assertMidSliderJudgements()
{
return judgementResults[judgementResults.Count - 2].Type == HitResult.Great;
}
private bool assertMidSliderJudgementFail()
{
return judgementResults[judgementResults.Count - 2].Type == HitResult.Miss;
}
2019-01-22 09:47:11 +08:00
private void performTest(List<ReplayFrame> frames)
2019-01-21 13:40:28 +08:00
{
var slider = new Slider
{
2019-01-22 09:47:11 +08:00
StartTime = time_slider_start,
2019-01-21 13:40:28 +08:00
Position = new Vector2(0, 0),
Path = new SliderPath(PathType.PerfectCurve, new[]
{
Vector2.Zero,
new Vector2(25, 0),
}, 25),
};
// Empty frame to be added as a workaround for first frame behavior.
// If an input exists on the first frame, the input would apply to the entire intro lead-in
// Likely requires some discussion regarding how first frame inputs should be handled.
frames.Insert(0, new OsuReplayFrame { Position = slider.Position, Time = 0, Actions = new List<OsuAction>() });
Beatmap.Value = new TestWorkingBeatmap(new Beatmap<OsuHitObject>
{
HitObjects = { slider },
ControlPointInfo =
{
DifficultyPoints = { new DifficultyControlPoint { SpeedMultiplier = 0.1f } }
},
BeatmapInfo =
{
BaseDifficulty = new BeatmapDifficulty { SliderTickRate = 3 },
Ruleset = new OsuRuleset().RulesetInfo
},
});
var player = new ScoreAccessibleReplayPlayer(new Score { Replay = new Replay { Frames = frames } })
{
AllowPause = false,
AllowLeadIn = false,
AllowResults = false
};
Child = player;
player.ScoreProcessor.NewJudgement += result => judgementResults.Add(result);
player.ScoreProcessor.AllJudged += () => { allJudgedFired = true; };
}
private class ScoreAccessibleReplayPlayer : ReplayPlayer
{
public new ScoreProcessor ScoreProcessor => base.ScoreProcessor;
public ScoreAccessibleReplayPlayer(Score score)
: base(score)
{
}
}
}
}