// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System.Collections.Generic; using osu.Framework.Graphics; using osu.Framework.MathUtils; using osu.Framework.Screens.Testing; using osu.Game.Screens.Play; namespace osu.Desktop.VisualTests.Tests { internal class TestCaseSongProgress : TestCase { public override string Description => @"With (half)real data"; private SongProgress progress; public override void Reset() { base.Reset(); Add(progress = new SongProgress { Anchor = Anchor.BottomLeft, Origin = Anchor.BottomLeft, RelativeSizeAxes = Axes.X, Length = 100, }); AddButton("Toggle Bar", progress.ToggleVisibility); AddButton("New Values", displayNewValues); displayNewValues(); } private void displayNewValues() { List newValues = new List(); for (int i = 0; i < 1000; i++) { newValues.Add(RNG.Next(0, 11)); } progress.Values = newValues.ToArray(); progress.CurrentTime = RNG.Next(0, 100); } } }