2019-06-13 17:44:00 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using NUnit.Framework;
|
2020-02-05 05:39:51 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-06-13 17:44:00 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2020-01-09 12:43:44 +08:00
|
|
|
using osu.Framework.Utils;
|
2019-06-13 17:44:00 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2020-02-05 05:39:51 +08:00
|
|
|
using osu.Game.Overlays;
|
2019-06-13 17:44:00 +08:00
|
|
|
using osu.Game.Overlays.BeatmapSet;
|
|
|
|
using osu.Game.Screens.Select.Details;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
|
|
{
|
|
|
|
public class TestSceneBeatmapSetOverlaySuccessRate : OsuTestScene
|
|
|
|
{
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
{
|
|
|
|
typeof(Details)
|
|
|
|
};
|
|
|
|
|
|
|
|
private GraphExposingSuccessRate successRate;
|
|
|
|
|
2020-02-05 05:39:51 +08:00
|
|
|
[Cached]
|
|
|
|
private OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
|
2019-06-13 17:44:00 +08:00
|
|
|
[SetUp]
|
|
|
|
public void Setup() => Schedule(() =>
|
|
|
|
{
|
|
|
|
Child = new Container
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Size = new Vector2(275, 220),
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = Color4.Gray,
|
|
|
|
},
|
|
|
|
successRate = new GraphExposingSuccessRate
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Size = new Vector2(275, 220),
|
|
|
|
Padding = new MarginPadding(20)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestMetrics()
|
|
|
|
{
|
|
|
|
var firstBeatmap = createBeatmap();
|
|
|
|
var secondBeatmap = createBeatmap();
|
|
|
|
|
|
|
|
AddStep("set first set", () => successRate.Beatmap = firstBeatmap);
|
|
|
|
AddAssert("ratings set", () => successRate.Graph.Metrics == firstBeatmap.Metrics);
|
|
|
|
|
|
|
|
AddStep("set second set", () => successRate.Beatmap = secondBeatmap);
|
|
|
|
AddAssert("ratings set", () => successRate.Graph.Metrics == secondBeatmap.Metrics);
|
|
|
|
|
2019-11-12 18:37:20 +08:00
|
|
|
static BeatmapInfo createBeatmap() => new BeatmapInfo
|
2019-06-13 17:44:00 +08:00
|
|
|
{
|
|
|
|
Metrics = new BeatmapMetrics
|
|
|
|
{
|
|
|
|
Fails = Enumerable.Range(1, 100).Select(_ => RNG.Next(10)).ToArray(),
|
|
|
|
Retries = Enumerable.Range(-2, 100).Select(_ => RNG.Next(10)).ToArray(),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
private class GraphExposingSuccessRate : SuccessRate
|
|
|
|
{
|
|
|
|
public new FailRetryGraph Graph => base.Graph;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|