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 System.Collections.Generic;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
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;
|
|
|
|
|
using osu.Framework.MathUtils;
|
2019-03-25 00:02:36 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2019-03-25 00:02:36 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Overlays.BeatmapSet.Scores;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2019-03-25 00:02:36 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-11-28 15:12:57 +08:00
|
|
|
|
using osu.Game.Scoring;
|
2019-03-25 00:02:36 +08:00
|
|
|
|
using osu.Game.Users;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.SongSelect
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
[System.ComponentModel.Description("in BeatmapOverlay")]
|
|
|
|
|
public class TestCaseBeatmapScoresContainer : OsuTestCase
|
|
|
|
|
{
|
|
|
|
|
private readonly Box background;
|
|
|
|
|
|
|
|
|
|
public TestCaseBeatmapScoresContainer()
|
|
|
|
|
{
|
|
|
|
|
Container container;
|
|
|
|
|
ScoresContainer scoresContainer;
|
|
|
|
|
|
|
|
|
|
Child = container = new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Width = 0.8f,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
background = new Box { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
scoresContainer = new ScoresContainer(),
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-02 13:34:56 +08:00
|
|
|
|
IEnumerable<APIScoreInfo> scores = new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 6602580,
|
|
|
|
|
Username = @"waaiiru",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Spain",
|
|
|
|
|
FlagName = @"ES",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModHidden(),
|
|
|
|
|
new OsuModFlashlight(),
|
|
|
|
|
new OsuModHardRock(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.XH,
|
|
|
|
|
TotalScore = 1234567890,
|
|
|
|
|
Accuracy = 1,
|
|
|
|
|
},
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 4608074,
|
|
|
|
|
Username = @"Skycries",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Brazil",
|
|
|
|
|
FlagName = @"BR",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModHidden(),
|
|
|
|
|
new OsuModFlashlight(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.S,
|
|
|
|
|
TotalScore = 1234789,
|
|
|
|
|
Accuracy = 0.9997,
|
|
|
|
|
},
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 1014222,
|
|
|
|
|
Username = @"eLy",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Japan",
|
|
|
|
|
FlagName = @"JP",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModHidden(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.B,
|
|
|
|
|
TotalScore = 12345678,
|
|
|
|
|
Accuracy = 0.9854,
|
|
|
|
|
},
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 1541390,
|
|
|
|
|
Username = @"Toukai",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Canada",
|
|
|
|
|
FlagName = @"CA",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.C,
|
|
|
|
|
TotalScore = 1234567,
|
|
|
|
|
Accuracy = 0.8765,
|
|
|
|
|
},
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 7151382,
|
|
|
|
|
Username = @"Mayuri Hana",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Thailand",
|
|
|
|
|
FlagName = @"TH",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.F,
|
|
|
|
|
TotalScore = 123456,
|
|
|
|
|
Accuracy = 0.6543,
|
|
|
|
|
},
|
|
|
|
|
};
|
2019-02-27 20:07:17 +08:00
|
|
|
|
|
|
|
|
|
foreach (var s in scores)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
s.Statistics.Add(HitResult.Great, RNG.Next(2000));
|
|
|
|
|
s.Statistics.Add(HitResult.Good, RNG.Next(2000));
|
|
|
|
|
s.Statistics.Add(HitResult.Meh, RNG.Next(2000));
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-02 13:34:56 +08:00
|
|
|
|
IEnumerable<APIScoreInfo> anotherScores = new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 4608074,
|
|
|
|
|
Username = @"Skycries",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Brazil",
|
|
|
|
|
FlagName = @"BR",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModHidden(),
|
|
|
|
|
new OsuModFlashlight(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.S,
|
|
|
|
|
TotalScore = 1234789,
|
|
|
|
|
Accuracy = 0.9997,
|
|
|
|
|
},
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 6602580,
|
|
|
|
|
Username = @"waaiiru",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Spain",
|
|
|
|
|
FlagName = @"ES",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModHidden(),
|
|
|
|
|
new OsuModFlashlight(),
|
|
|
|
|
new OsuModHardRock(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.XH,
|
|
|
|
|
TotalScore = 1234567890,
|
|
|
|
|
Accuracy = 1,
|
|
|
|
|
},
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 7151382,
|
|
|
|
|
Username = @"Mayuri Hana",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Thailand",
|
|
|
|
|
FlagName = @"TH",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.F,
|
|
|
|
|
TotalScore = 123456,
|
|
|
|
|
Accuracy = 0.6543,
|
|
|
|
|
},
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 1014222,
|
|
|
|
|
Username = @"eLy",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Japan",
|
|
|
|
|
FlagName = @"JP",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModHidden(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.B,
|
|
|
|
|
TotalScore = 12345678,
|
|
|
|
|
Accuracy = 0.9854,
|
|
|
|
|
},
|
2018-11-28 17:33:01 +08:00
|
|
|
|
new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 1541390,
|
|
|
|
|
Username = @"Toukai",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"Canada",
|
|
|
|
|
FlagName = @"CA",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.C,
|
|
|
|
|
TotalScore = 1234567,
|
|
|
|
|
Accuracy = 0.8765,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
foreach (var s in anotherScores)
|
|
|
|
|
{
|
|
|
|
|
s.Statistics.Add(HitResult.Great, RNG.Next(2000));
|
|
|
|
|
s.Statistics.Add(HitResult.Good, RNG.Next(2000));
|
|
|
|
|
s.Statistics.Add(HitResult.Meh, RNG.Next(2000));
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-02 13:34:56 +08:00
|
|
|
|
var topScoreInfo = new APIScoreInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
User = new User
|
|
|
|
|
{
|
|
|
|
|
Id = 2705430,
|
|
|
|
|
Username = @"Mooha",
|
|
|
|
|
Country = new Country
|
|
|
|
|
{
|
|
|
|
|
FullName = @"France",
|
|
|
|
|
FlagName = @"FR",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModFlashlight(),
|
|
|
|
|
new OsuModHardRock(),
|
|
|
|
|
},
|
|
|
|
|
Rank = ScoreRank.B,
|
|
|
|
|
TotalScore = 987654321,
|
|
|
|
|
Accuracy = 0.8487,
|
|
|
|
|
};
|
2018-11-28 17:33:01 +08:00
|
|
|
|
topScoreInfo.Statistics.Add(HitResult.Great, RNG.Next(2000));
|
|
|
|
|
topScoreInfo.Statistics.Add(HitResult.Good, RNG.Next(2000));
|
|
|
|
|
topScoreInfo.Statistics.Add(HitResult.Meh, RNG.Next(2000));
|
2019-03-02 13:34:56 +08:00
|
|
|
|
|
|
|
|
|
AddStep("scores pack 1", () => scoresContainer.Scores = scores);
|
|
|
|
|
AddStep("scores pack 2", () => scoresContainer.Scores = anotherScores);
|
|
|
|
|
AddStep("only top score", () => scoresContainer.Scores = new[] { topScoreInfo });
|
|
|
|
|
AddStep("remove scores", () => scoresContainer.Scores = null);
|
|
|
|
|
AddStep("resize to big", () => container.ResizeWidthTo(1, 300));
|
|
|
|
|
AddStep("resize to normal", () => container.ResizeWidthTo(0.8f, 300));
|
|
|
|
|
AddStep("online scores", () => scoresContainer.Beatmap = new BeatmapInfo { OnlineBeatmapID = 75, Ruleset = new OsuRuleset().RulesetInfo });
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
background.Colour = colours.Gray2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|