1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 20:17:34 +08:00
osu-lazer/osu.Game.Tests/Visual/Online/TestSceneUserProfileScores.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

157 lines
5.6 KiB
C#
Raw Normal View History

2020-01-18 07:58:10 +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-01-18 07:58:10 +08:00
using System;
using osu.Framework.Allocation;
2020-01-18 07:58:10 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2022-07-25 14:28:59 +08:00
using osu.Game.Beatmaps;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
2020-01-27 17:55:19 +08:00
using osu.Game.Overlays;
using osu.Game.Overlays.Profile.Sections.Ranks;
using osu.Game.Rulesets.Osu.Mods;
using osu.Game.Scoring;
using osuTK;
2020-01-18 07:58:10 +08:00
namespace osu.Game.Tests.Visual.Online
{
public class TestSceneUserProfileScores : OsuTestScene
{
public TestSceneUserProfileScores()
{
var firstScore = new SoloScoreInfo
{
PP = 1047.21,
Rank = ScoreRank.SH,
2022-07-17 21:22:46 +08:00
Beatmap = new APIBeatmap
{
BeatmapSet = new APIBeatmapSet
{
Title = "JUSTadICE (TV Size)",
Artist = "Oomori Seiko",
},
DifficultyName = "Extreme"
},
EndedAt = DateTimeOffset.Now,
Mods = new[]
{
new APIMod { Acronym = new OsuModHidden().Acronym },
new APIMod { Acronym = new OsuModHardRock().Acronym },
new APIMod { Acronym = new OsuModDoubleTime().Acronym },
},
Accuracy = 0.9813
};
var secondScore = new SoloScoreInfo
2020-01-18 07:58:10 +08:00
{
PP = 134.32,
Rank = ScoreRank.A,
2022-07-17 21:22:46 +08:00
Beatmap = new APIBeatmap
{
BeatmapSet = new APIBeatmapSet
{
Title = "Triumph & Regret",
Artist = "typeMARS",
},
DifficultyName = "[4K] Regret"
},
EndedAt = DateTimeOffset.Now,
Mods = new[]
2020-01-18 07:58:10 +08:00
{
new APIMod { Acronym = new OsuModHardRock().Acronym },
new APIMod { Acronym = new OsuModDoubleTime().Acronym },
2020-01-18 07:58:10 +08:00
},
Accuracy = 0.998546
};
var thirdScore = new SoloScoreInfo
{
PP = 96.83,
Rank = ScoreRank.S,
2022-07-17 21:22:46 +08:00
Beatmap = new APIBeatmap
{
2022-07-17 21:22:46 +08:00
BeatmapSet = new APIBeatmapSet
{
Title = "Idolize",
Artist = "Creo",
},
DifficultyName = "Insane"
},
2022-07-17 21:22:46 +08:00
EndedAt = DateTimeOffset.Now,
Accuracy = 0.9726
};
var noPPScore = new SoloScoreInfo
2020-01-18 07:58:10 +08:00
{
Rank = ScoreRank.B,
2022-07-17 21:22:46 +08:00
Beatmap = new APIBeatmap
2020-01-18 07:58:10 +08:00
{
2022-07-17 21:22:46 +08:00
BeatmapSet = new APIBeatmapSet
{
Title = "C18H27NO3(extend)",
Artist = "Team Grimoire",
},
DifficultyName = "[4K] Cataclysmic Hypernova"
2020-01-18 07:58:10 +08:00
},
2022-07-17 21:22:46 +08:00
EndedAt = DateTimeOffset.Now,
Accuracy = 0.55879
2020-01-18 07:58:10 +08:00
};
2022-07-25 14:28:59 +08:00
var unprocessedPPScore = new SoloScoreInfo
{
Rank = ScoreRank.B,
Beatmap = new APIBeatmap
{
BeatmapSet = new APIBeatmapSet
{
Title = "C18H27NO3(extend)",
Artist = "Team Grimoire",
},
DifficultyName = "[4K] Cataclysmic Hypernova",
Status = BeatmapOnlineStatus.Ranked,
},
EndedAt = DateTimeOffset.Now,
Accuracy = 0.55879
};
2020-01-18 07:58:10 +08:00
Add(new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 10),
Children = new[]
{
2022-07-17 21:22:46 +08:00
new ColourProvidedContainer(OverlayColourScheme.Green, new DrawableProfileScore(firstScore)),
new ColourProvidedContainer(OverlayColourScheme.Green, new DrawableProfileScore(secondScore)),
new ColourProvidedContainer(OverlayColourScheme.Pink, new DrawableProfileScore(noPPScore)),
2022-07-25 14:28:59 +08:00
new ColourProvidedContainer(OverlayColourScheme.Pink, new DrawableProfileScore(unprocessedPPScore)),
2022-07-17 21:22:46 +08:00
new ColourProvidedContainer(OverlayColourScheme.Pink, new DrawableProfileWeightedScore(firstScore, 0.97)),
new ColourProvidedContainer(OverlayColourScheme.Pink, new DrawableProfileWeightedScore(secondScore, 0.85)),
new ColourProvidedContainer(OverlayColourScheme.Pink, new DrawableProfileWeightedScore(thirdScore, 0.66)),
2020-01-18 07:58:10 +08:00
}
});
}
2020-01-27 17:55:19 +08:00
private class ColourProvidedContainer : Container
{
[Cached]
private readonly OverlayColourProvider colourProvider;
public ColourProvidedContainer(OverlayColourScheme colourScheme, DrawableProfileScore score)
{
colourProvider = new OverlayColourProvider(colourScheme);
AutoSizeAxes = Axes.Y;
RelativeSizeAxes = Axes.X;
Add(score);
}
}
2020-01-18 07:58:10 +08:00
}
}