// 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; using osu.Framework.Bindables; using osu.Framework.Graphics.Shapes; using osu.Framework.Allocation; using osu.Game.Graphics; using osu.Game.Overlays.Rankings; namespace osu.Game.Tests.Visual.Online { public class TestSceneRankingsScopeSelector : OsuTestScene { public override IReadOnlyList RequiredTypes => new[] { typeof(RankingsScopeSelector), }; private readonly Box background; public TestSceneRankingsScopeSelector() { var scope = new Bindable(); AddRange(new Drawable[] { background = new Box { RelativeSizeAxes = Axes.Both }, new RankingsScopeSelector { Anchor = Anchor.Centre, Origin = Anchor.Centre, Current = scope, } }); AddStep(@"Select country", () => scope.Value = RankingsScope.Country); AddStep(@"Select performance", () => scope.Value = RankingsScope.Performance); AddStep(@"Select score", () => scope.Value = RankingsScope.Score); AddStep(@"Select spotlights", () => scope.Value = RankingsScope.Spotlights); } [BackgroundDependencyLoader] private void load(OsuColour colours) { background.Colour = colours.GreySeafoam; } } }