2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using NUnit.Framework;
|
2019-03-05 12:26:54 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.MathUtils;
|
|
|
|
|
using osu.Framework.Timing;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestCaseSongProgress : OsuTestCase
|
|
|
|
|
{
|
|
|
|
|
private readonly SongProgress progress;
|
2019-02-27 18:11:09 +08:00
|
|
|
|
private readonly TestSongProgressGraph graph;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private readonly StopwatchClock clock;
|
|
|
|
|
|
2019-03-05 12:26:54 +08:00
|
|
|
|
[Cached]
|
|
|
|
|
private readonly GameplayClock gameplayClock;
|
|
|
|
|
|
|
|
|
|
private readonly FramedClock framedClock;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public TestCaseSongProgress()
|
|
|
|
|
{
|
|
|
|
|
clock = new StopwatchClock(true);
|
|
|
|
|
|
2019-03-05 12:26:54 +08:00
|
|
|
|
gameplayClock = new GameplayClock(framedClock = new FramedClock(clock));
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Add(progress = new SongProgress
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-27 18:11:09 +08:00
|
|
|
|
Add(graph = new TestSongProgressGraph
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 200,
|
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
});
|
|
|
|
|
|
2019-03-19 16:24:26 +08:00
|
|
|
|
AddWaitStep("wait some", 5);
|
2019-02-27 18:11:09 +08:00
|
|
|
|
AddAssert("ensure not created", () => graph.CreationCount == 0);
|
|
|
|
|
|
|
|
|
|
AddStep("display values", displayNewValues);
|
2019-03-19 16:24:26 +08:00
|
|
|
|
AddWaitStep("wait some", 5);
|
|
|
|
|
AddUntilStep("wait for creation count", () => graph.CreationCount == 1);
|
2019-02-27 18:11:09 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
AddStep("Toggle Bar", () => progress.AllowSeeking = !progress.AllowSeeking);
|
2019-03-19 16:24:26 +08:00
|
|
|
|
AddWaitStep("wait some", 5);
|
|
|
|
|
AddUntilStep("wait for creation count", () => graph.CreationCount == 1);
|
2019-02-27 18:11:09 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
AddStep("Toggle Bar", () => progress.AllowSeeking = !progress.AllowSeeking);
|
2019-03-19 16:24:26 +08:00
|
|
|
|
AddWaitStep("wait some", 5);
|
|
|
|
|
AddUntilStep("wait for creation count", () => graph.CreationCount == 1);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
AddRepeatStep("New Values", displayNewValues, 5);
|
|
|
|
|
|
2019-03-19 16:24:26 +08:00
|
|
|
|
AddWaitStep("wait some", 5);
|
2019-02-27 18:11:09 +08:00
|
|
|
|
AddAssert("ensure debounced", () => graph.CreationCount == 2);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void displayNewValues()
|
|
|
|
|
{
|
|
|
|
|
List<HitObject> objects = new List<HitObject>();
|
|
|
|
|
for (double i = 0; i < 5000; i += RNG.NextDouble() * 10 + i / 1000)
|
|
|
|
|
objects.Add(new HitObject { StartTime = i });
|
|
|
|
|
|
|
|
|
|
progress.Objects = objects;
|
|
|
|
|
graph.Objects = objects;
|
|
|
|
|
|
2019-03-05 12:26:54 +08:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|