1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 04:07:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Gameplay/TestSceneSongProgress.cs

160 lines
4.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 17:19:50 +08:00
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Allocation;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Testing;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
2018-04-13 17:19:50 +08:00
using osu.Framework.Timing;
using osu.Game.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Objects;
using osu.Game.Screens.Play;
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Gameplay
2018-04-13 17:19:50 +08:00
{
[TestFixture]
public class TestSceneSongProgress : OsuTestScene
2018-04-13 17:19:50 +08:00
{
2019-07-05 14:05:23 +08:00
private SongProgress progress;
private TestSongProgressGraph graph;
private readonly Container progressContainer;
2018-04-13 17:19:50 +08:00
private readonly StopwatchClock clock;
2019-07-05 14:05:23 +08:00
private readonly FramedClock framedClock;
2018-04-13 17:19:50 +08:00
[Cached]
private readonly GameplayClock gameplayClock;
public TestSceneSongProgress()
2018-04-13 17:19:50 +08:00
{
2019-07-05 14:05:23 +08:00
clock = new StopwatchClock();
gameplayClock = new GameplayClock(framedClock = new FramedClock(clock));
Add(progressContainer = new Container
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
Height = 100,
Y = -100,
Child = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(1),
}
});
2019-07-05 14:05:23 +08:00
}
2019-07-05 14:05:23 +08:00
[SetUpSteps]
public void SetupSteps()
{
AddStep("add new song progress", () =>
2018-04-13 17:19:50 +08:00
{
2019-07-05 14:05:23 +08:00
if (progress != null)
{
progress.Expire();
progress = null;
}
progressContainer.Add(progress = new SongProgress
2019-07-05 14:05:23 +08:00
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
});
2018-04-13 17:19:50 +08:00
});
2019-07-05 14:05:23 +08:00
AddStep("add new big graph", () =>
2018-04-13 17:19:50 +08:00
{
2019-07-05 14:05:23 +08:00
if (graph != null)
{
graph.Expire();
graph = null;
}
Add(graph = new TestSongProgressGraph
{
RelativeSizeAxes = Axes.X,
Height = 200,
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,
});
2018-04-13 17:19:50 +08:00
});
2019-07-05 14:05:23 +08:00
AddStep("reset clock", clock.Reset);
}
2019-02-27 18:11:09 +08:00
2019-07-05 14:05:23 +08:00
[Test]
public void TestGraphRecreation()
{
AddAssert("ensure not created", () => graph.CreationCount == 0);
AddStep("display values", displayRandomValues);
2019-03-19 16:24:26 +08:00
AddUntilStep("wait for creation count", () => graph.CreationCount == 1);
2019-07-05 14:05:23 +08:00
AddRepeatStep("new values", displayRandomValues, 5);
2019-03-19 16:24:26 +08:00
AddWaitStep("wait some", 5);
2019-07-05 14:05:23 +08:00
AddAssert("ensure recreation debounced", () => graph.CreationCount == 2);
}
2019-07-05 14:05:23 +08:00
[Test]
public void TestDisplay()
{
AddStep("display max values", displayMaxValues);
AddUntilStep("wait for graph", () => graph.CreationCount == 1);
2019-07-05 14:05:23 +08:00
AddStep("start", clock.Start);
2020-01-24 13:37:37 +08:00
AddStep("allow seeking", () => progress.AllowSeeking.Value = true);
AddStep("hide graph", () => progress.ShowGraph.Value = false);
2020-01-24 13:37:37 +08:00
AddStep("disallow seeking", () => progress.AllowSeeking.Value = false);
AddStep("allow seeking", () => progress.AllowSeeking.Value = true);
AddStep("show graph", () => progress.ShowGraph.Value = true);
2019-07-05 14:05:23 +08:00
AddStep("stop", clock.Stop);
2018-04-13 17:19:50 +08:00
}
2019-07-05 14:05:23 +08:00
private void displayRandomValues()
2018-04-13 17:19:50 +08:00
{
2019-07-05 14:05:23 +08:00
var objects = new List<HitObject>();
2018-04-13 17:19:50 +08:00
for (double i = 0; i < 5000; i += RNG.NextDouble() * 10 + i / 1000)
objects.Add(new HitObject { StartTime = i });
2019-07-05 14:05:23 +08:00
replaceObjects(objects);
}
private void displayMaxValues()
{
var objects = new List<HitObject>();
for (double i = 0; i < 5000; i++)
objects.Add(new HitObject { StartTime = i });
replaceObjects(objects);
}
private void replaceObjects(List<HitObject> objects)
{
2018-04-13 17:19:50 +08:00
progress.Objects = objects;
graph.Objects = objects;
progress.RequestSeek = pos => clock.Seek(pos);
}
protected override void Update()
{
base.Update();
framedClock.ProcessFrame();
2018-04-13 17:19:50 +08:00
}
2019-02-27 18:11:09 +08:00
private class TestSongProgressGraph : SongProgressGraph
{
public int CreationCount { get; private set; }
protected override void RecreateGraph()
{
base.RecreateGraph();
CreationCount++;
}
}
2018-04-13 17:19:50 +08:00
}
}