private APIScoresCollection createScores()
        {
            var scores = new APIScoresCollection
            {
                Scores = new List <APIScore>
                {
                    new APIScore
                    {
                        Date     = DateTimeOffset.Now,
                        OnlineID = onlineID++,
                        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,
                    },
                    new APIScore
                    {
                        Date     = DateTimeOffset.Now,
                        OnlineID = onlineID++,
                        User     = new APIUser
                        {
                            Id       = 4608074,
                            Username = @"Skycries",
                            Country  = new Country
                            {
                                FullName = @"Brazil",
                                FlagName = @"BR",
                            },
                        },
                        Mods = new[]
                        {
                            new APIMod {
                                Acronym = new OsuModDoubleTime().Acronym
                            },
                            new APIMod {
                                Acronym = new OsuModHidden().Acronym
                            },
                            new APIMod {
                                Acronym = new OsuModFlashlight().Acronym
                            },
                        },
                        Rank       = ScoreRank.S,
                        PP         = 190,
                        MaxCombo   = 1234,
                        TotalScore = 1234789,
                        Accuracy   = 0.9997,
                    },
                    new APIScore
                    {
                        Date     = DateTimeOffset.Now,
                        OnlineID = onlineID++,
                        User     = new APIUser
                        {
                            Id       = 1014222,
                            Username = @"eLy",
                            Country  = new Country
                            {
                                FullName = @"Japan",
                                FlagName = @"JP",
                            },
                        },
                        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,
                    },
                    new APIScore
                    {
                        Date     = DateTimeOffset.Now,
                        OnlineID = onlineID++,
                        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,
                    },
                    new APIScore
                    {
                        Date     = DateTimeOffset.Now,
                        OnlineID = onlineID++,
                        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,
                    },
                }
            };

            foreach (var s in scores.Scores)
            {
                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) }
                };
            }

            return(scores);
        }
Beispiel #2
0
        public TestSceneScoresContainer()
        {
            TestScoresContainer scoresContainer;

            Child = new Container
            {
                Anchor           = Anchor.TopCentre,
                Origin           = Anchor.TopCentre,
                RelativeSizeAxes = Axes.Both,
                Width            = 0.8f,
                Children         = new Drawable[]
                {
                    new Box
                    {
                        RelativeSizeAxes = Axes.Both,
                        Colour           = Color4.Black,
                    },
                    scoresContainer = new TestScoresContainer(),
                }
            };

            var allScores = new APIScoresCollection
            {
                Scores = new List <APIScore>
                {
                    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,
                    },
                    new APIScore
                    {
                        User = new APIUser
                        {
                            Id       = 4608074,
                            Username = @"Skycries",
                            Country  = new Country
                            {
                                FullName = @"Brazil",
                                FlagName = @"BR",
                            },
                        },
                        Mods = new[]
                        {
                            new APIMod {
                                Acronym = new OsuModDoubleTime().Acronym
                            },
                            new APIMod {
                                Acronym = new OsuModHidden().Acronym
                            },
                            new APIMod {
                                Acronym = new OsuModFlashlight().Acronym
                            },
                        },
                        Rank       = ScoreRank.S,
                        PP         = 190,
                        MaxCombo   = 1234,
                        TotalScore = 1234789,
                        Accuracy   = 0.9997,
                    },
                    new APIScore
                    {
                        User = new APIUser
                        {
                            Id       = 1014222,
                            Username = @"eLy",
                            Country  = new Country
                            {
                                FullName = @"Japan",
                                FlagName = @"JP",
                            },
                        },
                        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,
                    },
                    new APIScore
                    {
                        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,
                    },
                    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,
                    },
                }
            };

            var myBestScore = new APIScoreWithPosition
            {
                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 = 1337,
            };

            var myBestScoreWithNullPosition = new APIScoreWithPosition
            {
                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,
            };

            var oneScore = new APIScoresCollection
            {
                Scores = new List <APIScore>
                {
                    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)
            {
                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) }
                };
            }

            AddStep("Load all scores", () =>
            {
                allScores.UserScore    = null;
                scoresContainer.Scores = allScores;
            });
            AddStep("Load null scores", () => scoresContainer.Scores    = null);
            AddStep("Load only one score", () => scoresContainer.Scores = oneScore);
            AddStep("Load scores with my best", () =>
            {
                allScores.UserScore    = myBestScore;
                scoresContainer.Scores = allScores;
            });

            AddStep("Load scores with null my best position", () =>
            {
                allScores.UserScore    = myBestScoreWithNullPosition;
                scoresContainer.Scores = allScores;
            });
        }