1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game.Tests/Visual/Online/TestSceneScoresContainer.cs

285 lines
10 KiB
C#
Raw Normal View History

// 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 System.Collections.Generic;
2020-02-04 19:52:26 +08:00
using osu.Framework.Allocation;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
2019-03-25 00:02:36 +08:00
using osu.Framework.Graphics.Containers;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Shapes;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
using osu.Game.Online.API;
2019-07-08 17:02:10 +08:00
using osu.Game.Online.API.Requests.Responses;
2020-02-04 19:52:26 +08:00
using osu.Game.Overlays;
2018-04-13 17:19:50 +08:00
using osu.Game.Overlays.BeatmapSet.Scores;
using osu.Game.Rulesets.Osu.Mods;
2018-11-28 15:12:57 +08:00
using osu.Game.Scoring;
2019-03-25 00:02:36 +08:00
using osu.Game.Users;
2019-07-09 17:16:58 +08:00
using osuTK.Graphics;
using APIUser = osu.Game.Online.API.Requests.Responses.APIUser;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Tests.Visual.Online
2018-04-13 17:19:50 +08:00
{
public class TestSceneScoresContainer : OsuTestScene
2018-04-13 17:19:50 +08:00
{
2020-02-04 19:52:26 +08:00
[Cached]
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
public TestSceneScoresContainer()
2018-04-13 17:19:50 +08:00
{
TestScoresContainer scoresContainer;
2018-04-13 17:19:50 +08:00
2019-03-08 15:44:39 +08:00
Child = new Container
2018-04-13 17:19:50 +08:00
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2019-06-20 04:15:00 +08:00
RelativeSizeAxes = Axes.Both,
2018-04-13 17:19:50 +08:00
Width = 0.8f,
Children = new Drawable[]
{
2019-07-09 17:28:59 +08:00
new Box
2019-07-09 17:16:58 +08:00
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
},
scoresContainer = new TestScoresContainer(),
2018-04-13 17:19:50 +08:00
}
};
2021-10-28 16:48:56 +08:00
var allScores = new APIScoresCollection
2018-04-13 17:19:50 +08:00
{
2021-12-10 15:01:41 +08:00
Scores = new List<APIScore>
2018-04-13 17:19:50 +08:00
{
2021-12-10 15:01:41 +08:00
new APIScore
2018-04-13 17:19:50 +08:00
{
User = new APIUser
2018-04-13 17:19:50 +08:00
{
Id = 6602580,
Username = @"waaiiru",
Country = new Country
{
FullName = @"Spain",
FlagName = @"ES",
},
2018-04-13 17:19:50 +08:00
},
Mods = new[]
2018-04-13 17:19:50 +08:00
{
new APIMod { Acronym = new OsuModDoubleTime().Acronym },
new APIMod { Acronym = new OsuModHidden().Acronym },
new APIMod { Acronym = new OsuModFlashlight().Acronym },
new APIMod { Acronym = new OsuModHardRock().Acronym },
2018-04-13 17:19:50 +08:00
},
Rank = ScoreRank.XH,
PP = 200,
MaxCombo = 1234,
TotalScore = 1234567890,
Accuracy = 1,
2018-04-13 17:19:50 +08:00
},
2021-12-10 15:01:41 +08:00
new APIScore
2018-04-13 17:19:50 +08:00
{
User = new APIUser
{
Id = 4608074,
Username = @"Skycries",
Country = new Country
{
FullName = @"Brazil",
FlagName = @"BR",
},
},
Mods = new[]
2018-04-13 17:19:50 +08:00
{
new APIMod { Acronym = new OsuModDoubleTime().Acronym },
new APIMod { Acronym = new OsuModHidden().Acronym },
new APIMod { Acronym = new OsuModFlashlight().Acronym },
2018-04-13 17:19:50 +08:00
},
Rank = ScoreRank.S,
PP = 190,
MaxCombo = 1234,
TotalScore = 1234789,
Accuracy = 0.9997,
2018-04-13 17:19:50 +08:00
},
2021-12-10 15:01:41 +08:00
new APIScore
2018-04-13 17:19:50 +08:00
{
User = new APIUser
2018-04-13 17:19:50 +08:00
{
Id = 1014222,
Username = @"eLy",
Country = new Country
{
FullName = @"Japan",
FlagName = @"JP",
},
2018-04-13 17:19:50 +08:00
},
Mods = new[]
{
new APIMod { Acronym = new OsuModDoubleTime().Acronym },
new APIMod { Acronym = new OsuModHidden().Acronym },
},
Rank = ScoreRank.B,
PP = 180,
MaxCombo = 1234,
TotalScore = 12345678,
Accuracy = 0.9854,
2018-04-13 17:19:50 +08:00
},
2021-12-10 15:01:41 +08:00
new APIScore
2018-04-13 17:19:50 +08:00
{
User = new APIUser
{
Id = 1541390,
Username = @"Toukai",
Country = new Country
{
FullName = @"Canada",
FlagName = @"CA",
},
},
Mods = new[]
{
new APIMod { Acronym = new OsuModDoubleTime().Acronym },
},
Rank = ScoreRank.C,
PP = 170,
MaxCombo = 1234,
TotalScore = 1234567,
Accuracy = 0.8765,
2018-04-13 17:19:50 +08:00
},
2021-12-10 15:01:41 +08:00
new APIScore
2018-04-13 17:19:50 +08:00
{
User = new APIUser
2018-04-13 17:19:50 +08:00
{
Id = 7151382,
Username = @"Mayuri Hana",
Country = new Country
{
FullName = @"Thailand",
FlagName = @"TH",
},
2018-04-13 17:19:50 +08:00
},
Rank = ScoreRank.D,
PP = 160,
MaxCombo = 1234,
TotalScore = 123456,
Accuracy = 0.6543,
2018-04-13 17:19:50 +08:00
},
}
2018-04-13 17:19:50 +08:00
};
2021-10-28 16:48:56 +08:00
var myBestScore = new APIScoreWithPosition
2019-07-08 17:02:10 +08:00
{
2021-12-10 15:01:41 +08:00
Score = new APIScore
2019-07-08 17:02:10 +08:00
{
User = new APIUser
2019-07-08 17:02:10 +08:00
{
Id = 7151382,
Username = @"Mayuri Hana",
Country = new Country
{
FullName = @"Thailand",
FlagName = @"TH",
},
},
Rank = ScoreRank.D,
PP = 160,
MaxCombo = 1234,
TotalScore = 123456,
Accuracy = 0.6543,
},
Position = 1337,
};
2021-10-28 16:48:56 +08:00
var myBestScoreWithNullPosition = new APIScoreWithPosition
{
2021-12-10 15:01:41 +08:00
Score = new APIScore
{
User = new APIUser
{
Id = 7151382,
Username = @"Mayuri Hana",
Country = new Country
{
FullName = @"Thailand",
FlagName = @"TH",
},
},
Rank = ScoreRank.D,
PP = 160,
MaxCombo = 1234,
TotalScore = 123456,
Accuracy = 0.6543,
},
Position = null,
};
2021-10-28 16:48:56 +08:00
var oneScore = new APIScoresCollection
{
2021-12-10 15:01:41 +08:00
Scores = new List<APIScore>
{
2021-12-10 15:01:41 +08:00
new APIScore
{
User = new APIUser
{
Id = 6602580,
Username = @"waaiiru",
Country = new Country
{
FullName = @"Spain",
FlagName = @"ES",
},
},
Mods = new[]
{
new APIMod { Acronym = new OsuModDoubleTime().Acronym },
new APIMod { Acronym = new OsuModHidden().Acronym },
new APIMod { Acronym = new OsuModFlashlight().Acronym },
new APIMod { Acronym = new OsuModHardRock().Acronym },
},
Rank = ScoreRank.XH,
PP = 200,
MaxCombo = 1234,
TotalScore = 1234567890,
Accuracy = 1,
}
}
};
foreach (var s in allScores.Scores)
2018-04-13 17:19:50 +08:00
{
2019-12-03 15:18:36 +08:00
s.Statistics = new Dictionary<string, int>
{
{ "count_300", RNG.Next(2000) },
{ "count_100", RNG.Next(2000) },
{ "count_50", RNG.Next(2000) },
{ "count_miss", RNG.Next(2000) }
};
2018-04-13 17:19:50 +08:00
}
2019-07-08 17:02:10 +08:00
AddStep("Load all scores", () =>
{
allScores.UserScore = null;
scoresContainer.Scores = allScores;
2019-07-08 17:02:10 +08:00
});
AddStep("Load null scores", () => scoresContainer.Scores = null);
AddStep("Load only one score", () => scoresContainer.Scores = oneScore);
AddStep("Load scores with my best", () =>
2019-07-08 17:02:10 +08:00
{
allScores.UserScore = myBestScore;
scoresContainer.Scores = allScores;
2019-07-08 17:02:10 +08:00
});
AddStep("Load scores with null my best position", () =>
{
allScores.UserScore = myBestScoreWithNullPosition;
scoresContainer.Scores = allScores;
});
2018-04-13 17:19:50 +08:00
}
private class TestScoresContainer : ScoresContainer
{
2021-10-28 16:48:56 +08:00
public new APIScoresCollection Scores
{
set => base.Scores = value;
}
}
2018-04-13 17:19:50 +08:00
}
}