2021-04-14 04:04:03 +00: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.
|
|
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Screens;
|
2021-04-16 04:59:10 +00:00
|
|
|
using osu.Framework.Testing;
|
2021-04-14 04:04:03 +00:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osu.Game.Scoring;
|
2021-04-16 04:59:10 +00:00
|
|
|
using osu.Game.Screens.Play;
|
2021-04-14 04:04:03 +00:00
|
|
|
using osu.Game.Screens.Ranking;
|
|
|
|
using osu.Game.Storyboards;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
|
|
|
{
|
|
|
|
public class TestSceneStoryboardWithOutro : PlayerTestScene
|
|
|
|
{
|
|
|
|
protected new OutroPlayer Player => (OutroPlayer)base.Player;
|
|
|
|
|
|
|
|
private Storyboard storyboard;
|
|
|
|
|
|
|
|
private const double storyboard_duration = 2000;
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
{
|
|
|
|
config.SetValue(OsuSetting.ShowStoryboard, true);
|
|
|
|
storyboard = new Storyboard();
|
|
|
|
var sprite = new StoryboardSprite("unknown", Anchor.TopLeft, Vector2.Zero);
|
|
|
|
sprite.TimelineGroup.Alpha.Add(Easing.None, 0, storyboard_duration, 1, 0);
|
|
|
|
storyboard.GetLayer("Background").Add(sprite);
|
|
|
|
}
|
|
|
|
|
2021-04-16 04:59:10 +00:00
|
|
|
[SetUpSteps]
|
|
|
|
public override void SetUpSteps()
|
|
|
|
{
|
|
|
|
base.SetUpSteps();
|
|
|
|
AddStep("ignore user settings", () =>
|
|
|
|
{
|
|
|
|
Player.DimmableStoryboard.IgnoreUserSettings.Value = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-14 04:04:03 +00:00
|
|
|
[Test]
|
|
|
|
public void TestStoryboardSkipOutro()
|
|
|
|
{
|
|
|
|
AddUntilStep("storyboard loaded", () => Player.Beatmap.Value.StoryboardLoaded);
|
|
|
|
AddUntilStep("completion set by processor", () => Player.ScoreProcessor.HasCompleted.Value);
|
|
|
|
AddStep("skip outro", () => InputManager.Key(osuTK.Input.Key.Space));
|
|
|
|
AddAssert("score shown", () => Player.IsScoreShown);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestStoryboardNoSkipOutro()
|
|
|
|
{
|
|
|
|
AddUntilStep("storyboard loaded", () => Player.Beatmap.Value.StoryboardLoaded);
|
|
|
|
AddUntilStep("storyboard ends", () => Player.HUDOverlay.Progress.ReferenceClock.CurrentTime >= storyboard_duration);
|
2021-04-16 04:59:10 +00:00
|
|
|
AddUntilStep("wait for score shown", () => Player.IsScoreShown);
|
2021-04-14 04:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestStoryboardExitToSkipOutro()
|
|
|
|
{
|
|
|
|
AddUntilStep("storyboard loaded", () => Player.Beatmap.Value.StoryboardLoaded);
|
|
|
|
AddUntilStep("completion set by processor", () => Player.ScoreProcessor.HasCompleted.Value);
|
|
|
|
AddStep("exit via pause", () => Player.ExitViaPause());
|
|
|
|
AddAssert("score shown", () => Player.IsScoreShown);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool AllowFail => false;
|
|
|
|
|
|
|
|
protected override Ruleset CreatePlayerRuleset() => new OsuRuleset();
|
|
|
|
|
|
|
|
protected override TestPlayer CreatePlayer(Ruleset ruleset) => new OutroPlayer();
|
|
|
|
|
|
|
|
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset)
|
|
|
|
{
|
|
|
|
var beatmap = new Beatmap();
|
|
|
|
beatmap.HitObjects.Add(new HitCircle());
|
|
|
|
return beatmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override WorkingBeatmap CreateWorkingBeatmap(IBeatmap beatmap, Storyboard storyboard = null) =>
|
|
|
|
new ClockBackedTestWorkingBeatmap(beatmap, storyboard ?? this.storyboard, Clock, Audio);
|
|
|
|
|
|
|
|
protected class OutroPlayer : TestPlayer
|
|
|
|
{
|
|
|
|
public void ExitViaPause() => PerformExit(true);
|
|
|
|
|
|
|
|
public bool IsScoreShown => !this.IsCurrentScreen() && this.GetChildScreen() is ResultsScreen;
|
|
|
|
|
2021-04-16 04:59:10 +00:00
|
|
|
public new DimmableStoryboard DimmableStoryboard => base.DimmableStoryboard;
|
|
|
|
|
2021-04-14 04:04:03 +00:00
|
|
|
public OutroPlayer()
|
|
|
|
: base(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override Task ImportScore(Score score)
|
|
|
|
{
|
|
|
|
// avoid database errors from trying to store the score
|
|
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|