2020-06-02 22:38:50 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-06-18 21:11:03 +08:00
|
|
|
using System;
|
2020-06-02 22:38:50 +08:00
|
|
|
using System.Collections.Generic;
|
2020-06-22 19:32:04 +08:00
|
|
|
using System.Linq;
|
|
|
|
using NUnit.Framework;
|
2020-06-02 22:38:50 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2022-03-04 13:56:46 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2020-06-18 21:11:03 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2020-06-19 19:03:18 +08:00
|
|
|
using osu.Game.Screens.Ranking.Statistics;
|
2020-06-02 22:38:50 +08:00
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Ranking
|
|
|
|
{
|
2020-06-19 19:03:18 +08:00
|
|
|
public class TestSceneHitEventTimingDistributionGraph : OsuTestScene
|
2020-06-02 22:38:50 +08:00
|
|
|
{
|
2022-03-04 13:34:33 +08:00
|
|
|
private HitEventTimingDistributionGraph graph;
|
|
|
|
|
2022-03-04 13:56:46 +08:00
|
|
|
private static readonly HitObject placeholder_object = new HitCircle();
|
|
|
|
|
2020-06-22 19:32:04 +08:00
|
|
|
[Test]
|
|
|
|
public void TestManyDistributedEvents()
|
|
|
|
{
|
|
|
|
createTest(CreateDistributedHitEvents());
|
2022-03-04 13:34:33 +08:00
|
|
|
AddStep("add adjustment", () => graph.UpdateOffset(10));
|
2020-06-22 19:32:04 +08:00
|
|
|
}
|
|
|
|
|
2022-03-03 14:43:01 +08:00
|
|
|
[Test]
|
|
|
|
public void TestManyDistributedEventsOffset()
|
|
|
|
{
|
|
|
|
createTest(CreateDistributedHitEvents(-3.5));
|
|
|
|
}
|
|
|
|
|
2020-10-09 03:41:45 +08:00
|
|
|
[Test]
|
|
|
|
public void TestAroundCentre()
|
|
|
|
{
|
2022-03-04 13:56:46 +08:00
|
|
|
createTest(Enumerable.Range(-150, 300).Select(i => new HitEvent(i / 50f, HitResult.Perfect, placeholder_object, placeholder_object, null)).ToList());
|
2020-10-09 03:41:45 +08:00
|
|
|
}
|
|
|
|
|
2020-06-22 19:32:04 +08:00
|
|
|
[Test]
|
|
|
|
public void TestZeroTimeOffset()
|
|
|
|
{
|
2022-03-04 13:56:46 +08:00
|
|
|
createTest(Enumerable.Range(0, 100).Select(_ => new HitEvent(0, HitResult.Perfect, placeholder_object, placeholder_object, null)).ToList());
|
2020-06-22 19:32:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestNoEvents()
|
|
|
|
{
|
|
|
|
createTest(new List<HitEvent>());
|
|
|
|
}
|
|
|
|
|
2020-08-31 13:15:47 +08:00
|
|
|
[Test]
|
|
|
|
public void TestMissesDontShow()
|
|
|
|
{
|
|
|
|
createTest(Enumerable.Range(0, 100).Select(i =>
|
|
|
|
{
|
|
|
|
if (i % 2 == 0)
|
2022-03-04 13:56:46 +08:00
|
|
|
return new HitEvent(0, HitResult.Perfect, placeholder_object, placeholder_object, null);
|
2020-08-31 13:15:47 +08:00
|
|
|
|
2022-03-04 13:56:46 +08:00
|
|
|
return new HitEvent(30, HitResult.Miss, placeholder_object, placeholder_object, null);
|
2020-08-31 13:15:47 +08:00
|
|
|
}).ToList());
|
|
|
|
}
|
|
|
|
|
2020-06-22 19:32:04 +08:00
|
|
|
private void createTest(List<HitEvent> events) => AddStep("create test", () =>
|
2020-06-02 22:38:50 +08:00
|
|
|
{
|
2020-06-12 21:48:43 +08:00
|
|
|
Children = new Drawable[]
|
2020-06-02 22:38:50 +08:00
|
|
|
{
|
2020-06-12 21:48:43 +08:00
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = Color4Extensions.FromHex("#333")
|
|
|
|
},
|
2022-03-04 13:34:33 +08:00
|
|
|
graph = new HitEventTimingDistributionGraph(events)
|
2020-06-12 21:48:43 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
2020-06-22 19:32:04 +08:00
|
|
|
Size = new Vector2(600, 130)
|
2020-06-12 21:48:43 +08:00
|
|
|
}
|
|
|
|
};
|
2020-06-22 19:32:04 +08:00
|
|
|
});
|
2020-06-02 22:38:50 +08:00
|
|
|
|
2022-03-01 14:40:37 +08:00
|
|
|
public static List<HitEvent> CreateDistributedHitEvents(double centre = 0, double range = 25)
|
2020-06-02 22:38:50 +08:00
|
|
|
{
|
2020-06-18 21:11:03 +08:00
|
|
|
var hitEvents = new List<HitEvent>();
|
2020-06-02 22:38:50 +08:00
|
|
|
|
2022-03-01 14:40:37 +08:00
|
|
|
for (int i = 0; i < range * 2; i++)
|
2020-06-02 22:38:50 +08:00
|
|
|
{
|
2022-03-04 13:56:46 +08:00
|
|
|
int count = (int)(Math.Pow(range - Math.Abs(i - range), 2)) / 10;
|
2020-06-02 22:38:50 +08:00
|
|
|
|
2020-06-18 21:11:03 +08:00
|
|
|
for (int j = 0; j < count; j++)
|
2022-03-04 13:56:46 +08:00
|
|
|
hitEvents.Add(new HitEvent(centre + i - range, HitResult.Perfect, placeholder_object, placeholder_object, null));
|
2020-06-02 22:38:50 +08:00
|
|
|
}
|
|
|
|
|
2020-06-18 21:11:03 +08:00
|
|
|
return hitEvents;
|
2020-06-02 22:38:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|