osu/osu.Game.Tests/Visual/Gameplay/TestSceneSongProgress.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
2.9 KiB
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2017-09-18 13:32:49 +00:00
using System.Collections.Generic;
using System.Linq;
2018-03-02 06:34:31 +00:00
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Extensions.IEnumerableExtensions;
2017-09-18 13:32:49 +00:00
using osu.Framework.Graphics;
using osu.Framework.Testing;
2017-09-18 13:32:49 +00:00
using osu.Game.Rulesets.Objects;
using osu.Game.Screens.Play;
2022-07-27 07:57:47 +00:00
using osu.Game.Screens.Play.HUD;
using osu.Game.Skinning;
2018-04-13 09:19:50 +00:00
2019-03-24 16:02:36 +00:00
namespace osu.Game.Tests.Visual.Gameplay
2017-09-18 13:32:49 +00:00
{
2018-03-02 06:34:31 +00:00
[TestFixture]
2022-07-27 07:57:47 +00:00
public class TestSceneSongProgress : SkinnableHUDComponentTestScene
2017-09-18 13:32:49 +00:00
{
private DefaultSongProgress progress => this.ChildrenOfType<DefaultSongProgress>().Single();
private GameplayClockContainer gameplayClockContainer;
private const double gameplay_start_time = -2000;
[BackgroundDependencyLoader]
private void load()
2017-09-18 13:32:49 +00:00
{
var working = CreateWorkingBeatmap(Ruleset.Value);
working.LoadTrack();
Add(gameplayClockContainer = new MasterGameplayClockContainer(working, gameplay_start_time));
Dependencies.CacheAs(gameplayClockContainer);
Dependencies.CacheAs(gameplayClockContainer.GameplayClock);
2019-07-05 06:05:23 +00:00
}
2019-07-05 06:05:23 +00:00
[SetUpSteps]
public void SetupSteps()
{
2022-07-28 07:30:45 +00:00
AddStep("reset clock", () => gameplayClockContainer.Reset());
2022-07-28 07:19:35 +00:00
AddStep("set hit objects", setHitObjects);
2019-07-05 06:05:23 +00:00
}
2019-02-27 10:11:09 +00:00
2019-07-05 06:05:23 +00:00
[Test]
public void TestDisplay()
{
AddStep("seek to intro", () => gameplayClockContainer.Seek(gameplay_start_time));
AddStep("start", gameplayClockContainer.Start);
AddStep("stop", gameplayClockContainer.Stop);
2017-09-18 13:32:49 +00:00
}
2018-04-13 09:19:50 +00:00
[Test]
public void TestToggleSeeking()
{
AddStep("allow seeking", () => progress.AllowSeeking.Value = true);
AddStep("hide graph", () => progress.ShowGraph.Value = false);
AddStep("disallow seeking", () => progress.AllowSeeking.Value = false);
AddStep("allow seeking", () => progress.AllowSeeking.Value = true);
AddStep("show graph", () => progress.ShowGraph.Value = true);
}
2022-07-28 07:19:35 +00:00
private void setHitObjects()
2019-07-05 06:05:23 +00:00
{
var objects = new List<HitObject>();
for (double i = 0; i < 5000; i++)
objects.Add(new HitObject { StartTime = i });
this.ChildrenOfType<SongProgress>().ForEach(progress => progress.Objects = objects);
}
protected override Drawable CreateDefaultImplementation() => new DefaultSongProgress
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
};
2019-02-27 10:11:09 +00:00
protected override Drawable CreateLegacyImplementation() => new LegacySongProgress
2019-02-27 10:11:09 +00:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
};
2017-09-18 13:32:49 +00:00
}
}