2019-03-26 15:13:58 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2019-11-21 17:21:49 +08:00
|
|
|
using System.Linq;
|
2019-03-26 15:13:58 +08:00
|
|
|
using NUnit.Framework;
|
2019-11-21 17:50:54 +08:00
|
|
|
using osu.Framework.Graphics;
|
2022-03-04 19:22:39 +08:00
|
|
|
using osu.Framework.Timing;
|
2019-03-26 15:13:58 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2019-11-15 13:47:28 +08:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2019-03-26 15:13:58 +08:00
|
|
|
using osu.Game.Screens.Play;
|
2019-11-21 17:50:54 +08:00
|
|
|
using osu.Game.Storyboards;
|
2019-03-26 15:13:58 +08:00
|
|
|
using osu.Game.Tests.Beatmaps;
|
2019-11-21 17:50:54 +08:00
|
|
|
using osuTK;
|
2019-03-26 15:13:58 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
|
|
{
|
2019-11-15 13:15:09 +08:00
|
|
|
public class TestSceneLeadIn : RateAdjustedBeatmapTestScene
|
2019-03-26 15:13:58 +08:00
|
|
|
{
|
2022-08-18 15:32:43 +08:00
|
|
|
private LeadInPlayer player = null!;
|
2019-03-26 15:13:58 +08:00
|
|
|
|
2022-08-18 17:55:36 +08:00
|
|
|
private const double lenience_ms = 100;
|
2019-03-26 15:13:58 +08:00
|
|
|
|
2019-11-21 17:21:49 +08:00
|
|
|
private const double first_hit_object = 2170;
|
2019-03-26 15:13:58 +08:00
|
|
|
|
2019-11-21 17:21:49 +08:00
|
|
|
[TestCase(1000, 0)]
|
|
|
|
[TestCase(2000, 0)]
|
|
|
|
[TestCase(3000, first_hit_object - 3000)]
|
|
|
|
[TestCase(10000, first_hit_object - 10000)]
|
|
|
|
public void TestLeadInProducesCorrectStartTime(double leadIn, double expectedStartTime)
|
2019-03-26 15:13:58 +08:00
|
|
|
{
|
2019-11-15 13:47:28 +08:00
|
|
|
loadPlayerWithBeatmap(new TestBeatmap(new OsuRuleset().RulesetInfo)
|
|
|
|
{
|
2019-11-21 17:21:49 +08:00
|
|
|
BeatmapInfo = { AudioLeadIn = leadIn }
|
2019-11-15 13:47:28 +08:00
|
|
|
});
|
|
|
|
|
2022-08-18 15:32:43 +08:00
|
|
|
checkFirstFrameTime(expectedStartTime);
|
2019-03-26 15:13:58 +08:00
|
|
|
}
|
|
|
|
|
2019-11-21 17:50:54 +08:00
|
|
|
[TestCase(1000, 0)]
|
|
|
|
[TestCase(0, 0)]
|
|
|
|
[TestCase(-1000, -1000)]
|
|
|
|
[TestCase(-10000, -10000)]
|
2021-03-09 14:45:03 +08:00
|
|
|
public void TestStoryboardProducesCorrectStartTimeSimpleAlpha(double firstStoryboardEvent, double expectedStartTime)
|
2019-11-21 17:50:54 +08:00
|
|
|
{
|
|
|
|
var storyboard = new Storyboard();
|
|
|
|
|
|
|
|
var sprite = new StoryboardSprite("unknown", Anchor.TopLeft, Vector2.Zero);
|
2021-03-09 14:45:03 +08:00
|
|
|
|
2019-11-21 17:50:54 +08:00
|
|
|
sprite.TimelineGroup.Alpha.Add(Easing.None, firstStoryboardEvent, firstStoryboardEvent + 500, 0, 1);
|
|
|
|
|
|
|
|
storyboard.GetLayer("Background").Add(sprite);
|
|
|
|
|
|
|
|
loadPlayerWithBeatmap(new TestBeatmap(new OsuRuleset().RulesetInfo), storyboard);
|
2021-03-09 14:45:03 +08:00
|
|
|
|
2022-08-18 15:32:43 +08:00
|
|
|
checkFirstFrameTime(expectedStartTime);
|
2021-03-09 14:45:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[TestCase(1000, 0, false)]
|
|
|
|
[TestCase(0, 0, false)]
|
|
|
|
[TestCase(-1000, -1000, false)]
|
|
|
|
[TestCase(-10000, -10000, false)]
|
|
|
|
[TestCase(1000, 0, true)]
|
|
|
|
[TestCase(0, 0, true)]
|
|
|
|
[TestCase(-1000, -1000, true)]
|
|
|
|
[TestCase(-10000, -10000, true)]
|
|
|
|
public void TestStoryboardProducesCorrectStartTimeFadeInAfterOtherEvents(double firstStoryboardEvent, double expectedStartTime, bool addEventToLoop)
|
|
|
|
{
|
2022-09-06 16:45:53 +08:00
|
|
|
const double loop_start_time = -20000;
|
|
|
|
|
2021-03-09 14:45:03 +08:00
|
|
|
var storyboard = new Storyboard();
|
|
|
|
|
|
|
|
var sprite = new StoryboardSprite("unknown", Anchor.TopLeft, Vector2.Zero);
|
|
|
|
|
|
|
|
// these should be ignored as we have an alpha visibility blocker proceeding this command.
|
2022-09-06 16:45:53 +08:00
|
|
|
sprite.TimelineGroup.Scale.Add(Easing.None, loop_start_time, -18000, 0, 1);
|
|
|
|
var loopGroup = sprite.AddLoop(loop_start_time, 50);
|
|
|
|
loopGroup.Scale.Add(Easing.None, loop_start_time, -18000, 0, 1);
|
2021-03-09 14:45:03 +08:00
|
|
|
|
|
|
|
var target = addEventToLoop ? loopGroup : sprite.TimelineGroup;
|
2022-09-06 16:45:53 +08:00
|
|
|
double loopRelativeOffset = addEventToLoop ? -loop_start_time : 0;
|
|
|
|
target.Alpha.Add(Easing.None, loopRelativeOffset + firstStoryboardEvent, loopRelativeOffset + firstStoryboardEvent + 500, 0, 1);
|
2021-03-09 14:45:03 +08:00
|
|
|
|
|
|
|
// these should be ignored due to being in the future.
|
|
|
|
sprite.TimelineGroup.Alpha.Add(Easing.None, 18000, 20000, 0, 1);
|
2021-12-14 14:08:00 +08:00
|
|
|
loopGroup.Alpha.Add(Easing.None, 38000, 40000, 0, 1);
|
2021-03-09 14:45:03 +08:00
|
|
|
|
|
|
|
storyboard.GetLayer("Background").Add(sprite);
|
|
|
|
|
|
|
|
loadPlayerWithBeatmap(new TestBeatmap(new OsuRuleset().RulesetInfo), storyboard);
|
2019-11-21 17:50:54 +08:00
|
|
|
|
2022-08-18 15:32:43 +08:00
|
|
|
checkFirstFrameTime(expectedStartTime);
|
2019-11-21 17:50:54 +08:00
|
|
|
}
|
|
|
|
|
2022-08-18 15:32:43 +08:00
|
|
|
private void checkFirstFrameTime(double expectedStartTime) =>
|
|
|
|
AddAssert("check first frame time", () => player.FirstFrameClockTime, () => Is.EqualTo(expectedStartTime).Within(lenience_ms));
|
|
|
|
|
|
|
|
private void loadPlayerWithBeatmap(IBeatmap beatmap, Storyboard? storyboard = null)
|
2019-03-26 15:13:58 +08:00
|
|
|
{
|
2019-11-15 13:47:28 +08:00
|
|
|
AddStep("create player", () =>
|
|
|
|
{
|
2022-03-04 19:22:39 +08:00
|
|
|
Beatmap.Value = new ClockBackedTestWorkingBeatmap(beatmap, storyboard, new FramedClock(new ManualClock { Rate = 1 }), Audio);
|
2019-11-15 13:47:28 +08:00
|
|
|
LoadScreen(player = new LeadInPlayer());
|
|
|
|
});
|
2019-03-26 15:13:58 +08:00
|
|
|
|
2019-11-15 13:47:28 +08:00
|
|
|
AddUntilStep("player loaded", () => player.IsLoaded && player.Alpha == 1);
|
2019-03-26 15:13:58 +08:00
|
|
|
}
|
|
|
|
|
2019-11-15 13:47:28 +08:00
|
|
|
private class LeadInPlayer : TestPlayer
|
2019-03-26 15:13:58 +08:00
|
|
|
{
|
2019-05-31 14:58:46 +08:00
|
|
|
public LeadInPlayer()
|
|
|
|
: base(false, false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-03-26 15:13:58 +08:00
|
|
|
public double? FirstFrameClockTime;
|
|
|
|
|
|
|
|
public new GameplayClockContainer GameplayClockContainer => base.GameplayClockContainer;
|
|
|
|
|
2019-11-21 17:21:49 +08:00
|
|
|
public double FirstHitObjectTime => DrawableRuleset.Objects.First().StartTime;
|
|
|
|
|
2022-03-02 13:45:39 +08:00
|
|
|
protected override void UpdateAfterChildren()
|
2019-03-26 15:13:58 +08:00
|
|
|
{
|
2022-03-02 13:45:39 +08:00
|
|
|
base.UpdateAfterChildren();
|
2019-05-31 14:58:46 +08:00
|
|
|
|
2019-03-26 15:13:58 +08:00
|
|
|
if (!FirstFrameClockTime.HasValue)
|
|
|
|
{
|
2022-08-15 16:06:24 +08:00
|
|
|
FirstFrameClockTime = GameplayClockContainer.CurrentTime;
|
2019-03-26 15:13:58 +08:00
|
|
|
AddInternal(new OsuSpriteText
|
|
|
|
{
|
|
|
|
Text = $"GameplayStartTime: {DrawableRuleset.GameplayStartTime} "
|
2019-11-21 17:21:49 +08:00
|
|
|
+ $"FirstHitObjectTime: {FirstHitObjectTime} "
|
2019-03-26 15:13:58 +08:00
|
|
|
+ $"LeadInTime: {Beatmap.Value.BeatmapInfo.AudioLeadIn} "
|
|
|
|
+ $"FirstFrameClockTime: {FirstFrameClockTime}"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|