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;
|
2017-02-10 07:08:23 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-03-02 19:20:27 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Screens.Testing;
|
|
|
|
|
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-02-09 04:22:31 +08:00
|
|
|
|
public class TestCaseSongProgress : TestCase
|
2017-02-07 13:49:41 +08:00
|
|
|
|
{
|
2017-02-09 04:22:31 +08:00
|
|
|
|
public override string Name => @"Song Progress";
|
|
|
|
|
public override string Description => @"With real 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-02-07 13:49:41 +08:00
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
RelativeSizeAxes = Axes.X
|
|
|
|
|
});
|
2017-02-10 07:08:23 +08:00
|
|
|
|
|
2017-02-10 08:12:15 +08:00
|
|
|
|
AddButton("Toggle Bar", progress.ToggleVisibility);
|
|
|
|
|
AddButton("New Values", displayNewValues);
|
|
|
|
|
|
|
|
|
|
displayNewValues();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void displayNewValues()
|
|
|
|
|
{
|
2017-02-10 07:08:23 +08:00
|
|
|
|
var random = new Random();
|
|
|
|
|
|
|
|
|
|
List<int> newValues = new List<int>();
|
|
|
|
|
for (int i = 0; i < 1000; i++)
|
|
|
|
|
{
|
2017-02-10 07:29:12 +08:00
|
|
|
|
newValues.Add(random.Next(0, 11));
|
2017-02-10 07:08:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
progress.DisplayValues(newValues);
|
2017-02-07 13:49:41 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|