1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-09 02:47:28 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseSongProgress.cs

50 lines
1.4 KiB
C#
Raw Normal View History

2017-02-08 01:26:17 +08: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 20:27:04 +08:00
using osu.Framework.MathUtils;
using osu.Framework.Screens.Testing;
using osu.Game.Screens.Play;
2017-02-07 13:49:41 +08:00
namespace osu.Desktop.VisualTests.Tests
2017-02-07 13:49:41 +08:00
{
internal class TestCaseSongProgress : TestCase
2017-02-07 13:49:41 +08:00
{
2017-03-24 10:38:23 +08:00
public override string Description => @"With fake data";
2017-02-07 13:49:41 +08:00
private SongProgress progress;
2017-02-07 13:49:41 +08:00
public override void Reset()
{
base.Reset();
Add(progress = new SongProgress
2017-02-04 03:22:02 +08:00
{
2017-03-23 17:20:00 +08:00
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
RelativeSizeAxes = Axes.X,
Length = 100,
2017-03-23 20:07:13 +08:00
OnSeek = time => progress.CurrentTime = time,
2017-02-07 13:49:41 +08:00
});
AddButton("Toggle Bar", progress.ToggleVisibility);
AddButton("New Values", displayNewValues);
displayNewValues();
}
private void displayNewValues()
{
List<int> newValues = new List<int>();
for (int i = 0; i < 1000; i++)
{
2017-03-23 19:13:03 +08:00
newValues.Add(RNG.Next(0, 6));
}
progress.Values = newValues.ToArray();
progress.CurrentTime = RNG.Next(0, 100);
2017-02-07 13:49:41 +08:00
}
}
}