// 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.Linq; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Users; using osuTK; namespace osu.Game.Screens.Play.HUD { public class GameplayLeaderboard : FillFlowContainer { public GameplayLeaderboard() { Width = GameplayLeaderboardScore.EXTENDED_WIDTH; Direction = FillDirection.Vertical; Spacing = new Vector2(2.5f); LayoutDuration = 250; LayoutEasing = Easing.OutQuint; } public ILeaderboardScore AddPlayer(User user, bool isTracked) { var drawable = new GameplayLeaderboardScore(user, isTracked); base.Add(drawable); drawable.TotalScore.BindValueChanged(_ => Scheduler.AddOnce(sort), true); Height = Count * (GameplayLeaderboardScore.PANEL_HEIGHT + Spacing.Y); return drawable; } public override void Add(GameplayLeaderboardScore drawable) { throw new InvalidOperationException($"Use {nameof(AddPlayer)} instead."); } private void sort() { var orderedByScore = this.OrderByDescending(i => i.TotalScore.Value).ToList(); for (int i = 0; i < Count; i++) { SetLayoutPosition(orderedByScore[i], i); orderedByScore[i].ScorePosition = i + 1; } } } }