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
|
|
|
|
|
|
2017-02-10 07:08:23 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-03-02 19:20:27 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-03-22 20:27:04 +08:00
|
|
|
|
using osu.Framework.MathUtils;
|
2017-04-07 08:40:35 +08:00
|
|
|
|
using osu.Framework.Testing;
|
2017-04-14 13:40:52 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2017-02-07 13:49:41 +08:00
|
|
|
|
|
2017-03-02 19:20:27 +08:00
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
2017-02-07 13:49:41 +08:00
|
|
|
|
{
|
2017-03-22 19:50:17 +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
|
|
|
|
|
2017-02-10 07:08:23 +08:00
|
|
|
|
private SongProgress progress;
|
|
|
|
|
|
2017-02-07 13:49:41 +08:00
|
|
|
|
public override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
2017-02-10 07:08:23 +08:00
|
|
|
|
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,
|
2017-02-07 13:49:41 +08:00
|
|
|
|
});
|
2017-02-10 07:08:23 +08:00
|
|
|
|
|
2017-04-07 14:20:39 +08:00
|
|
|
|
AddStep("Toggle Bar", progress.ToggleBar);
|
|
|
|
|
AddWaitStep(5);
|
|
|
|
|
//AddStep("Toggle Bar", progress.ToggleVisibility);
|
|
|
|
|
//AddStep("New Values", displayNewValues);
|
2017-02-10 08:12:15 +08:00
|
|
|
|
|
|
|
|
|
displayNewValues();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void displayNewValues()
|
|
|
|
|
{
|
2017-02-10 07:08:23 +08:00
|
|
|
|
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));
|
2017-02-10 07:08:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 18:15:53 +08:00
|
|
|
|
progress.Values = newValues.ToArray();
|
2017-04-07 14:20:39 +08:00
|
|
|
|
progress.Progress = RNG.NextDouble();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-07 13:49:41 +08:00
|
|
|
|
}
|