1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 20:07:26 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseSongProgress.cs

51 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;
2017-02-07 13:49:41 +08:00
using OpenTK.Graphics;
using osu.Game.Screens.Play;
2017-02-07 13:49:41 +08:00
using osu.Framework.Graphics;
using osu.Framework.GameModes.Testing;
using osu.Framework.Graphics.Sprites;
using osu.Framework.GameModes.Testing;
using osu.Framework.Graphics.Colour;
using System.Collections.Generic;
2017-02-07 13:49:41 +08:00
namespace osu.Desktop.VisualTests
{
public class TestCaseSongProgress : TestCase
2017-02-07 13:49:41 +08:00
{
public override string Name => @"Song Progress";
public override string Description => @"With real 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(new Box
{
Colour = Color4.Gray,
RelativeSizeAxes = Axes.Both
});
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
});
var random = new Random();
List<int> newValues = new List<int>();
for (int i = 0; i < 1000; i++)
{
newValues.Add(random.Next(1, 11));
}
progress.DisplayValues(newValues);
2017-02-07 13:49:41 +08:00
}
}
}