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

47 lines
1.3 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;
using osu.Framework.Screens.Testing;
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-22 11:59:44 +00:00
public override string Description => @"With (half)real 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-02-07 05:49:41 +00:00
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
RelativeSizeAxes = Axes.X
});
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-22 12:27:04 +00:00
newValues.Add(RNG.Next(0, 11));
}
2017-03-22 12:27:04 +00:00
progress.DisplayValues(newValues.ToArray());
2017-02-07 05:49:41 +00:00
}
}
}