osu/osu.Game.Tests/Visual/SongSelect/TestCaseBeatmapScoresContai...

192 lines
6.2 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 09:19:50 +00:00
2019-03-26 01:21:34 +00:00
using System;
2019-03-24 16:02:36 +00:00
using System.Collections.Generic;
2018-04-13 09:19:50 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2019-03-24 16:02:36 +00:00
using osu.Framework.Graphics.Containers;
2018-04-13 09:19:50 +00:00
using osu.Framework.Graphics.Shapes;
using osu.Framework.MathUtils;
using osu.Game.Graphics;
using osu.Game.Overlays.BeatmapSet.Scores;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Osu.Mods;
using osu.Game.Rulesets.Scoring;
2018-11-28 07:12:57 +00:00
using osu.Game.Scoring;
2019-03-24 16:02:36 +00:00
using osu.Game.Users;
2019-02-08 21:56:41 +00:00
using NUnit.Framework;
2018-04-13 09:19:50 +00:00
2019-03-24 16:02:36 +00:00
namespace osu.Game.Tests.Visual.SongSelect
2018-04-13 09:19:50 +00:00
{
2019-02-08 21:56:41 +00:00
[Description("in BeatmapOverlay")]
2018-04-13 09:19:50 +00:00
public class TestCaseBeatmapScoresContainer : OsuTestCase
{
2019-03-26 01:21:34 +00:00
public override IReadOnlyList<Type> RequiredTypes => new[]
{
2019-04-03 06:20:38 +00:00
typeof(DrawableTopScore),
2019-04-03 07:36:38 +00:00
typeof(TopScoreUserSection),
typeof(TopScoreStatisticsSection),
2019-03-26 01:21:34 +00:00
typeof(ScoresContainer),
typeof(ScoreTable),
typeof(ScoreTableRow),
2019-03-26 08:38:56 +00:00
typeof(ScoreTableHeaderRow),
typeof(ScoreTableScoreRow),
typeof(ScoreTableRowBackground),
2019-03-26 01:21:34 +00:00
};
2018-04-13 09:19:50 +00:00
private readonly Box background;
public TestCaseBeatmapScoresContainer()
{
ScoresContainer scoresContainer;
2019-03-08 07:44:39 +00:00
Child = new Container
2018-04-13 09:19:50 +00:00
{
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-04-03 07:09:19 +00:00
var scores = new List<ScoreInfo>
2018-04-13 09:19:50 +00:00
{
new ScoreInfo
2018-04-13 09:19:50 +00: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,
2019-03-08 07:44:39 +00:00
PP = 200,
MaxCombo = 1234,
2018-04-13 09:19:50 +00:00
TotalScore = 1234567890,
Accuracy = 1,
},
new ScoreInfo
2018-04-13 09:19:50 +00: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,
2019-03-08 07:44:39 +00:00
PP = 190,
MaxCombo = 1234,
2018-04-13 09:19:50 +00:00
TotalScore = 1234789,
Accuracy = 0.9997,
},
new ScoreInfo
2018-04-13 09:19:50 +00: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,
2019-03-08 07:44:39 +00:00
PP = 180,
MaxCombo = 1234,
2018-04-13 09:19:50 +00:00
TotalScore = 12345678,
Accuracy = 0.9854,
},
new ScoreInfo
2018-04-13 09:19:50 +00:00
{
User = new User
{
Id = 1541390,
Username = @"Toukai",
Country = new Country
{
FullName = @"Canada",
FlagName = @"CA",
},
},
Mods = new Mod[]
{
new OsuModDoubleTime(),
},
Rank = ScoreRank.C,
2019-03-08 07:44:39 +00:00
PP = 170,
MaxCombo = 1234,
2018-04-13 09:19:50 +00:00
TotalScore = 1234567,
Accuracy = 0.8765,
},
new ScoreInfo
2018-04-13 09:19:50 +00:00
{
User = new User
{
Id = 7151382,
Username = @"Mayuri Hana",
Country = new Country
{
FullName = @"Thailand",
FlagName = @"TH",
},
},
Rank = ScoreRank.F,
2019-03-08 07:44:39 +00:00
PP = 160,
MaxCombo = 1234,
2018-04-13 09:19:50 +00:00
TotalScore = 123456,
Accuracy = 0.6543,
},
};
2019-02-08 21:56:41 +00:00
foreach (var s in scores)
2018-04-13 09:19:50 +00: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-02-08 21:56:41 +00:00
s.Statistics.Add(HitResult.Miss, RNG.Next(2000));
2018-04-13 09:19:50 +00:00
}
scoresContainer.Scores = scores;
2018-04-13 09:19:50 +00:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
background.Colour = colours.Gray2;
}
}
}