osu/osu.Desktop.VisualTests/Tests/TestCaseSongProgress.cs

50 lines
1.5 KiB
C#
Raw Normal View History

2017-02-07 17:26:17 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using osu.Framework.Graphics;
2017-03-22 12:27:04 +00:00
using osu.Framework.MathUtils;
2017-04-07 00:40:35 +00:00
using osu.Framework.Testing;
2017-04-14 10:23:33 +00:00
using osu.Framework.Timing;
using osu.Game.Modes.Objects;
using osu.Game.Screens.Play;
2017-02-07 05:49:41 +00:00
namespace osu.Desktop.VisualTests.Tests
2017-02-07 05:49:41 +00:00
{
internal class TestCaseSongProgress : TestCase
2017-02-07 05:49:41 +00:00
{
2017-03-24 02:38:23 +00:00
public override string Description => @"With fake data";
2017-02-07 05:49:41 +00:00
private SongProgress progress;
2017-02-07 05:49:41 +00:00
public override void Reset()
{
base.Reset();
Add(progress = new SongProgress
2017-02-03 19:22:02 +00:00
{
2017-04-14 10:23:33 +00:00
AudioClock = new StopwatchClock(true),
2017-03-23 09:20:00 +00:00
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
2017-02-07 05:49:41 +00:00
});
2017-04-07 06:20:39 +00:00
AddStep("Toggle Bar", progress.ToggleBar);
AddWaitStep(5);
2017-04-14 10:23:33 +00:00
AddStep("Toggle Bar", progress.ToggleBar);
AddWaitStep(2);
AddRepeatStep("New Values", displayNewValues, 5);
displayNewValues();
}
private void displayNewValues()
{
List<HitObject> objects = new List<HitObject>();
2017-04-14 10:23:33 +00:00
for (double i = 0; i < 5000; i += RNG.NextDouble() * 10 + i / 1000)
objects.Add(new HitObject { StartTime = i });
progress.Objects = objects;
2017-04-07 06:20:39 +00:00
}
}
2017-02-07 05:49:41 +00:00
}