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
|
|
|
|
|
|
2017-03-13 20:33:25 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-03-14 23:58:22 +08:00
|
|
|
|
using OpenTK;
|
2017-03-16 00:57:41 +08:00
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2017-03-04 15:37:34 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-03-16 00:57:41 +08:00
|
|
|
|
using osu.Framework.Graphics.Colour;
|
2017-03-04 15:37:34 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-03-19 20:49:29 +08:00
|
|
|
|
using System;
|
2017-04-11 12:48:43 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-04-24 17:48:28 +08:00
|
|
|
|
using osu.Framework.Threading;
|
2017-04-11 12:48:43 +08:00
|
|
|
|
using osu.Game.Database;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-04-11 12:48:43 +08:00
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
2017-03-04 15:37:34 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select.Leaderboards
|
|
|
|
|
{
|
|
|
|
|
public class Leaderboard : Container
|
|
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly ScrollContainer scrollContainer;
|
|
|
|
|
private readonly FillFlowContainer<LeaderboardScore> scrollFlow;
|
2017-03-04 15:37:34 +08:00
|
|
|
|
|
2017-04-11 13:01:47 +08:00
|
|
|
|
public Action<Score> ScoreSelected;
|
|
|
|
|
|
2017-03-15 13:38:38 +08:00
|
|
|
|
private IEnumerable<Score> scores;
|
|
|
|
|
public IEnumerable<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
|
|
|
|
{
|
2017-03-04 16:05:31 +08:00
|
|
|
|
scores = value;
|
2017-04-11 12:48:43 +08:00
|
|
|
|
getScoresRequest?.Cancel();
|
2017-03-04 16:05:31 +08:00
|
|
|
|
|
2017-03-22 08:07:02 +08:00
|
|
|
|
int i = 150;
|
2017-03-15 13:38:38 +08:00
|
|
|
|
if (scores == null)
|
2017-03-15 16:10:54 +08:00
|
|
|
|
{
|
|
|
|
|
foreach (var c in scrollFlow.Children)
|
2017-03-22 08:07:02 +08:00
|
|
|
|
c.FadeOut(i += 10);
|
|
|
|
|
|
|
|
|
|
foreach (var c in scrollFlow.Children)
|
|
|
|
|
c.LifetimeEnd = Time.Current + i;
|
|
|
|
|
|
2017-03-15 13:38:38 +08:00
|
|
|
|
return;
|
2017-03-15 16:10:54 +08:00
|
|
|
|
}
|
2017-03-15 13:38:38 +08:00
|
|
|
|
|
2017-03-15 16:10:54 +08:00
|
|
|
|
scrollFlow.Clear();
|
|
|
|
|
|
|
|
|
|
i = 0;
|
2017-03-16 12:15:06 +08:00
|
|
|
|
foreach (var s in scores)
|
2017-03-04 15:37:34 +08:00
|
|
|
|
{
|
2017-03-16 12:15:06 +08:00
|
|
|
|
var ls = new LeaderboardScore(s, 1 + i)
|
2017-03-15 16:07:56 +08:00
|
|
|
|
{
|
2017-03-15 19:44:29 +08:00
|
|
|
|
AlwaysPresent = true,
|
2017-04-11 13:01:47 +08:00
|
|
|
|
Action = () => ScoreSelected?.Invoke(s),
|
2017-03-15 19:44:29 +08:00
|
|
|
|
State = Visibility.Hidden,
|
|
|
|
|
};
|
|
|
|
|
scrollFlow.Add(ls);
|
|
|
|
|
|
2017-03-16 12:15:06 +08:00
|
|
|
|
ls.Delay(i++ * 50, true);
|
2017-03-15 19:49:17 +08:00
|
|
|
|
ls.Show();
|
2017-03-04 16:05:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-05 10:29:52 +08:00
|
|
|
|
scrollContainer.ScrollTo(0f, false);
|
2017-03-04 15:37:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Leaderboard()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-03-05 10:29:52 +08:00
|
|
|
|
scrollContainer = new ScrollContainer
|
2017-03-04 15:37:34 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-05-30 15:33:26 +08:00
|
|
|
|
ScrollbarVisible = false,
|
2017-03-04 15:37:34 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-03-13 20:33:25 +08:00
|
|
|
|
scrollFlow = new FillFlowContainer<LeaderboardScore>
|
2017-03-04 15:37:34 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Spacing = new Vector2(0f, 5f),
|
2017-03-23 12:19:29 +08:00
|
|
|
|
Padding = new MarginPadding { Top = 10, Bottom = 5 },
|
2017-03-04 15:37:34 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-03-16 12:15:06 +08:00
|
|
|
|
|
2017-04-11 12:48:43 +08:00
|
|
|
|
private APIAccess api;
|
|
|
|
|
|
|
|
|
|
private BeatmapInfo beatmap;
|
|
|
|
|
|
2017-04-24 17:48:28 +08:00
|
|
|
|
private ScheduledDelegate pendingBeatmapSwitch;
|
|
|
|
|
|
2017-04-11 12:48:43 +08:00
|
|
|
|
public BeatmapInfo Beatmap
|
|
|
|
|
{
|
|
|
|
|
get { return beatmap; }
|
|
|
|
|
set
|
|
|
|
|
{
|
2017-05-17 15:45:17 +08:00
|
|
|
|
if (beatmap == value) return;
|
|
|
|
|
|
2017-04-11 12:48:43 +08:00
|
|
|
|
beatmap = value;
|
2017-04-24 17:48:28 +08:00
|
|
|
|
Scores = null;
|
|
|
|
|
|
|
|
|
|
pendingBeatmapSwitch?.Cancel();
|
|
|
|
|
pendingBeatmapSwitch = Schedule(updateScores);
|
2017-04-11 12:48:43 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
|
|
|
|
private void load(APIAccess api)
|
|
|
|
|
{
|
|
|
|
|
this.api = api;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private GetScoresRequest getScoresRequest;
|
|
|
|
|
private void updateScores()
|
|
|
|
|
{
|
|
|
|
|
if (!IsLoaded) return;
|
|
|
|
|
|
|
|
|
|
Scores = null;
|
|
|
|
|
getScoresRequest?.Cancel();
|
|
|
|
|
|
|
|
|
|
if (api == null || Beatmap == null) return;
|
|
|
|
|
|
|
|
|
|
getScoresRequest = new GetScoresRequest(Beatmap);
|
|
|
|
|
getScoresRequest.Success += r => Scores = r.Scores;
|
|
|
|
|
api.Queue(getScoresRequest);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-16 12:15:06 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
2017-03-19 20:49:29 +08:00
|
|
|
|
var fadeStart = scrollContainer.Current + scrollContainer.DrawHeight;
|
2017-03-16 12:15:06 +08:00
|
|
|
|
|
2017-03-19 20:49:29 +08:00
|
|
|
|
if (!scrollContainer.IsScrolledToEnd())
|
|
|
|
|
fadeStart -= LeaderboardScore.HEIGHT;
|
|
|
|
|
|
|
|
|
|
foreach (var c in scrollFlow.Children)
|
2017-03-16 12:15:06 +08:00
|
|
|
|
{
|
2017-03-19 20:49:29 +08:00
|
|
|
|
var topY = c.ToSpaceOfOtherDrawable(Vector2.Zero, scrollFlow).Y;
|
2017-03-18 06:07:45 +08:00
|
|
|
|
var bottomY = topY + LeaderboardScore.HEIGHT;
|
2017-03-16 12:15:06 +08:00
|
|
|
|
|
2017-03-19 20:49:29 +08:00
|
|
|
|
if (bottomY < fadeStart)
|
|
|
|
|
c.Colour = Color4.White;
|
|
|
|
|
else if (topY > fadeStart + LeaderboardScore.HEIGHT)
|
|
|
|
|
c.Colour = Color4.Transparent;
|
2017-03-18 12:44:05 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2017-03-19 20:49:29 +08:00
|
|
|
|
c.ColourInfo = ColourInfo.GradientVertical(
|
|
|
|
|
Color4.White.Opacity(Math.Min(1 - (topY - fadeStart) / LeaderboardScore.HEIGHT, 1)),
|
|
|
|
|
Color4.White.Opacity(Math.Min(1 - (bottomY - fadeStart) / LeaderboardScore.HEIGHT, 1)));
|
2017-03-18 12:44:05 +08:00
|
|
|
|
}
|
2017-03-16 12:15:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-04 15:37:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|