// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using osu.Framework.Graphics.Containers; using osu.Game.Overlays.Rankings.Tables; using osu.Framework.Graphics; using osu.Game.Online.API.Requests; using osu.Game.Rulesets; using osu.Game.Graphics.UserInterface; using System.Threading; using osu.Game.Online.API; using osu.Game.Rulesets.Osu; using osu.Game.Rulesets.Mania; using osu.Game.Rulesets.Taiko; using osu.Game.Rulesets.Catch; using osu.Framework.Allocation; namespace osu.Game.Tests.Visual.Online { public class TestSceneRankingsTables : OsuTestScene { protected override bool UseOnlineAPI => true; public override IReadOnlyList RequiredTypes => new[] { typeof(PerformanceTable), typeof(ScoresTable), typeof(CountriesTable), typeof(TableRowBackground), typeof(RankingsTable<>) }; [Resolved] private IAPIProvider api { get; set; } private readonly BasicScrollContainer scrollFlow; private readonly DimmedLoadingLayer loading; private CancellationTokenSource cancellationToken; private APIRequest request; public TestSceneRankingsTables() { Children = new Drawable[] { scrollFlow = new BasicScrollContainer { Anchor = Anchor.Centre, Origin = Anchor.Centre, RelativeSizeAxes = Axes.Both, Width = 0.8f, }, loading = new DimmedLoadingLayer(), }; } protected override void LoadComplete() { base.LoadComplete(); AddStep("Osu performance", () => createPerformanceTable(new OsuRuleset().RulesetInfo, null)); AddStep("Mania scores", () => createScoreTable(new ManiaRuleset().RulesetInfo)); AddStep("Taiko country scores", () => createCountryTable(new TaikoRuleset().RulesetInfo)); AddStep("Catch US performance page 10", () => createPerformanceTable(new CatchRuleset().RulesetInfo, "US", 10)); } private void createCountryTable(RulesetInfo ruleset, int page = 1) { loading.Show(); request?.Cancel(); cancellationToken?.Cancel(); cancellationToken = new CancellationTokenSource(); request = new GetCountryRankingsRequest(ruleset, page); ((GetCountryRankingsRequest)request).Success += rankings => Schedule(() => { var table = new CountriesTable(page) { Rankings = rankings.Countries, }; LoadComponentAsync(table, t => { scrollFlow.Clear(); scrollFlow.Add(t); loading.Hide(); }, cancellationToken.Token); }); api.Queue(request); } private void createPerformanceTable(RulesetInfo ruleset, string country, int page = 1) { loading.Show(); request?.Cancel(); cancellationToken?.Cancel(); cancellationToken = new CancellationTokenSource(); request = new GetUserRankingsRequest(ruleset, country: country, page: page); ((GetUserRankingsRequest)request).Success += rankings => Schedule(() => { var table = new PerformanceTable(page) { Rankings = rankings.Users, }; LoadComponentAsync(table, t => { scrollFlow.Clear(); scrollFlow.Add(t); loading.Hide(); }, cancellationToken.Token); }); api.Queue(request); } private void createScoreTable(RulesetInfo ruleset, int page = 1) { loading.Show(); request?.Cancel(); cancellationToken?.Cancel(); cancellationToken = new CancellationTokenSource(); request = new GetUserRankingsRequest(ruleset, UserRankingsType.Score, page); ((GetUserRankingsRequest)request).Success += rankings => Schedule(() => { var table = new ScoresTable(page) { Rankings = rankings.Users, }; LoadComponentAsync(table, t => { scrollFlow.Clear(); scrollFlow.Add(t); loading.Hide(); }, cancellationToken.Token); }); api.Queue(request); } } }