2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
using NUnit.Framework;
|
2020-02-03 00:03:41 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Graphics;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-02-03 00:03:41 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2019-04-26 12:49:44 +08:00
|
|
|
|
using osu.Game.Overlays.Profile.Header.Components;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Users;
|
2019-03-25 00:02:36 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneRankGraph : OsuTestScene
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-02-03 00:03:41 +08:00
|
|
|
|
[Cached]
|
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Pink);
|
|
|
|
|
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public TestSceneRankGraph()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RankGraph graph;
|
|
|
|
|
|
2021-10-27 12:04:41 +08:00
|
|
|
|
int[] data = new int[89];
|
|
|
|
|
int[] dataWithZeros = new int[89];
|
|
|
|
|
int[] smallData = new int[89];
|
|
|
|
|
int[] edgyData = new int[89];
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 89; i++)
|
|
|
|
|
data[i] = dataWithZeros[i] = (i + 1) * 1000;
|
|
|
|
|
|
|
|
|
|
for (int i = 20; i < 60; i++)
|
|
|
|
|
dataWithZeros[i] = 0;
|
|
|
|
|
|
|
|
|
|
for (int i = 79; i < 89; i++)
|
|
|
|
|
smallData[i] = 100000 - i * 1000;
|
|
|
|
|
|
2019-05-25 00:43:53 +08:00
|
|
|
|
bool edge = true;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 20; i++)
|
|
|
|
|
{
|
|
|
|
|
edgyData[i] = 100000 + (edge ? 1000 : -1000) * (i + 1);
|
|
|
|
|
edge = !edge;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Add(new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Size = new Vector2(300, 150),
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = OsuColour.Gray(0.2f)
|
|
|
|
|
},
|
|
|
|
|
graph = new RankGraph
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2019-08-04 19:35:26 +08:00
|
|
|
|
AddStep("null user", () => graph.Statistics.Value = null);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
AddStep("rank only", () =>
|
|
|
|
|
{
|
2019-08-04 19:35:26 +08:00
|
|
|
|
graph.Statistics.Value = new UserStatistics
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-17 13:50:48 +08:00
|
|
|
|
GlobalRank = 123456,
|
2019-08-04 19:35:26 +08:00
|
|
|
|
PP = 12345,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep("with rank history", () =>
|
|
|
|
|
{
|
2019-08-04 19:35:26 +08:00
|
|
|
|
graph.Statistics.Value = new UserStatistics
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-17 13:50:48 +08:00
|
|
|
|
GlobalRank = 89000,
|
2019-08-04 19:35:26 +08:00
|
|
|
|
PP = 12345,
|
2021-11-05 12:38:37 +08:00
|
|
|
|
RankHistory = new APIRankHistory
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Data = data,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep("with zero values", () =>
|
|
|
|
|
{
|
2019-08-04 19:35:26 +08:00
|
|
|
|
graph.Statistics.Value = new UserStatistics
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-17 13:50:48 +08:00
|
|
|
|
GlobalRank = 89000,
|
2019-08-04 19:35:26 +08:00
|
|
|
|
PP = 12345,
|
2021-11-05 12:38:37 +08:00
|
|
|
|
RankHistory = new APIRankHistory
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Data = dataWithZeros,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep("small amount of data", () =>
|
|
|
|
|
{
|
2019-08-04 19:35:26 +08:00
|
|
|
|
graph.Statistics.Value = new UserStatistics
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-17 13:50:48 +08:00
|
|
|
|
GlobalRank = 12000,
|
2019-08-04 19:35:26 +08:00
|
|
|
|
PP = 12345,
|
2021-11-05 12:38:37 +08:00
|
|
|
|
RankHistory = new APIRankHistory
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Data = smallData,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
});
|
2019-05-25 00:43:53 +08:00
|
|
|
|
|
|
|
|
|
AddStep("graph with edges", () =>
|
|
|
|
|
{
|
2019-08-04 19:35:26 +08:00
|
|
|
|
graph.Statistics.Value = new UserStatistics
|
2019-05-25 00:43:53 +08:00
|
|
|
|
{
|
2021-02-17 13:50:48 +08:00
|
|
|
|
GlobalRank = 12000,
|
2019-08-04 19:35:26 +08:00
|
|
|
|
PP = 12345,
|
2021-11-05 12:38:37 +08:00
|
|
|
|
RankHistory = new APIRankHistory
|
2019-05-25 00:43:53 +08:00
|
|
|
|
{
|
|
|
|
|
Data = edgyData,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|