1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-05 19:52:58 +08:00
osu-lazer/osu.Game/Screens/Select/Leaderboards/Leaderboard.cs

59 lines
1.8 KiB
C#
Raw Normal View History

2017-03-04 15:37:34 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using System.Collections.Generic;
2017-03-04 15:37:34 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Modes;
namespace osu.Game.Screens.Select.Leaderboards
{
public class Leaderboard : Container
{
private ScrollContainer scrollContainer;
private FillFlowContainer<LeaderboardScore> scrollFlow;
2017-03-04 15:37:34 +08:00
private Score[] scores;
public Score[] Scores
2017-03-04 15:37:34 +08:00
{
2017-03-04 16:05:31 +08:00
get { return scores; }
set
2017-03-04 15:37:34 +08:00
{
if (value == scores) return;
2017-03-04 16:05:31 +08:00
scores = value;
var scoreDisplays = new List<LeaderboardScore>();
2017-03-04 16:05:31 +08:00
for (int i = 0; i < value.Length; i++)
2017-03-04 15:37:34 +08:00
{
scoreDisplays.Add(new LeaderboardScore(value[i], i + 1));
2017-03-04 16:05:31 +08:00
}
scrollFlow.Children = scoreDisplays;
scrollContainer.ScrollTo(0f, false);
2017-03-04 15:37:34 +08:00
}
}
public Leaderboard()
{
Children = new Drawable[]
{
scrollContainer = new ScrollContainer
2017-03-04 15:37:34 +08:00
{
RelativeSizeAxes = Axes.Both,
ScrollDraggerVisible = false,
Children = new Drawable[]
{
scrollFlow = new FillFlowContainer<LeaderboardScore>
2017-03-04 15:37:34 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Spacing = new Vector2(0f, 5f),
},
},
},
};
}
}
}