1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 21:27:24 +08:00
osu-lazer/osu.Game/Online/Leaderboards/Leaderboard.cs

398 lines
13 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
2022-01-28 21:47:45 +08:00
using JetBrains.Annotations;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Development;
2018-04-13 17:19:50 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Cursor;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API;
using osu.Game.Online.Placeholders;
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Online.Leaderboards
2018-04-13 17:19:50 +08:00
{
2022-01-28 20:16:29 +08:00
/// <summary>
/// A leaderboard which displays a scrolling list of top scores, along with a single "user best"
/// for the local user.
/// </summary>
/// <typeparam name="TScope">The scope of the leaderboard (ie. global or local).</typeparam>
/// <typeparam name="TScoreInfo">The score model class.</typeparam>
2022-01-28 20:38:23 +08:00
public abstract class Leaderboard<TScope, TScoreInfo> : CompositeDrawable
2018-04-13 17:19:50 +08:00
{
2022-01-28 22:17:06 +08:00
/// <summary>
/// Whether the current scope should refetch in response to changes in API connectivity state.
/// </summary>
2022-01-28 21:28:13 +08:00
protected abstract bool IsOnlineScope { get; }
2018-04-13 17:19:50 +08:00
private const double fade_duration = 300;
private readonly OsuScrollContainer scrollContainer;
2018-04-13 17:19:50 +08:00
private readonly Container placeholderContainer;
private readonly UserTopScoreContainer<TScoreInfo> topScoreContainer;
2018-04-13 17:19:50 +08:00
private FillFlowContainer<LeaderboardScore> scoreFlowContainer;
2018-04-13 17:19:50 +08:00
private readonly LoadingSpinner loading;
2018-04-13 17:19:50 +08:00
2022-01-28 22:14:26 +08:00
private CancellationTokenSource currentFetchCancellationSource;
private CancellationTokenSource currentScoresAsyncLoadCancellationSource;
2018-04-13 17:19:50 +08:00
2022-01-28 22:14:26 +08:00
private APIRequest fetchScoresRequest;
2022-01-28 20:33:22 +08:00
[Resolved(CanBeNull = true)]
private IAPIProvider api { get; set; }
private readonly IBindable<APIState> apiState = new Bindable<APIState>();
private ICollection<TScoreInfo> scores;
public ICollection<TScoreInfo> Scores
2018-04-13 17:19:50 +08:00
{
get => scores;
2022-01-28 20:59:29 +08:00
protected set
2018-04-13 17:19:50 +08:00
{
scores = value;
Scheduler.AddOnce(updateScoresDrawables);
2018-04-13 17:19:50 +08:00
}
}
public TScoreInfo TopScore
{
get => topScoreContainer.Score.Value;
set
{
topScoreContainer.Score.Value = value;
if (value == null)
topScoreContainer.Hide();
else
topScoreContainer.Show();
}
}
private TScope scope;
2018-04-13 17:19:50 +08:00
public TScope Scope
2018-04-13 17:19:50 +08:00
{
get => scope;
2018-04-13 17:19:50 +08:00
set
{
2019-11-13 22:35:50 +08:00
if (EqualityComparer<TScope>.Default.Equals(value, scope))
2018-04-13 17:19:50 +08:00
return;
scope = value;
RefetchScores();
2018-04-13 17:19:50 +08:00
}
}
protected Leaderboard()
2018-04-13 17:19:50 +08:00
{
2019-09-19 14:23:33 +08:00
InternalChildren = new Drawable[]
2018-04-13 17:19:50 +08:00
{
new OsuContextMenuContainer
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.Both,
Masking = true,
Child = new GridContainer
2019-09-19 13:52:31 +08:00
{
RelativeSizeAxes = Axes.Both,
RowDimensions = new[]
2019-09-19 13:52:31 +08:00
{
new Dimension(),
new Dimension(GridSizeMode.AutoSize),
},
Content = new[]
{
new Drawable[]
2019-09-19 13:52:31 +08:00
{
scrollContainer = new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
ScrollbarVisible = false,
}
},
new Drawable[]
2019-09-19 13:52:31 +08:00
{
2022-01-28 20:38:23 +08:00
new Container
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Child = topScoreContainer = new UserTopScoreContainer<TScoreInfo>(CreateDrawableTopScore)
},
2019-09-19 13:52:31 +08:00
},
},
},
2018-04-13 17:19:50 +08:00
},
loading = new LoadingSpinner(),
2018-04-13 17:19:50 +08:00
placeholderContainer = new Container
{
RelativeSizeAxes = Axes.Both
},
};
}
2022-01-28 20:33:22 +08:00
protected override void LoadComplete()
2018-04-13 17:19:50 +08:00
{
2022-01-28 20:33:22 +08:00
base.LoadComplete();
2019-07-21 08:07:27 +08:00
2022-01-28 20:33:22 +08:00
if (api != null)
{
2022-01-28 20:33:22 +08:00
apiState.BindTo(api.State);
apiState.BindValueChanged(state =>
{
switch (state.NewValue)
{
case APIState.Online:
case APIState.Offline:
if (IsOnlineScope)
RefetchScores();
2019-07-21 08:07:27 +08:00
2022-01-28 20:33:22 +08:00
break;
}
});
}
2022-01-28 20:33:22 +08:00
RefetchScores();
}
2018-04-13 17:19:50 +08:00
public void RefetchScores() => Scheduler.AddOnce(refetchScores);
2021-06-14 13:26:40 +08:00
protected virtual void Reset()
{
cancelPendingWork();
Scores = null;
}
/// <summary>
/// Performs a fetch/refresh of scores to be displayed.
/// </summary>
2022-01-28 22:14:26 +08:00
/// <param name="cancellationToken"></param>
/// <returns>An <see cref="APIRequest"/> responsible for the fetch operation. This will be queued and performed automatically.</returns>
2022-01-28 21:47:45 +08:00
[CanBeNull]
2022-01-28 22:14:26 +08:00
protected abstract APIRequest FetchScores(CancellationToken cancellationToken);
protected abstract LeaderboardScore CreateDrawableScore(TScoreInfo model, int index);
protected abstract LeaderboardScore CreateDrawableTopScore(TScoreInfo model);
private void refetchScores()
2018-04-13 17:19:50 +08:00
{
Debug.Assert(ThreadSafety.IsUpdateThread);
2022-01-28 22:14:26 +08:00
Reset();
PlaceholderState = PlaceholderState.Retrieving;
loading.Show();
2022-01-28 22:14:26 +08:00
currentFetchCancellationSource = new CancellationTokenSource();
fetchScoresRequest = FetchScores(currentFetchCancellationSource.Token);
2018-04-13 17:19:50 +08:00
2022-01-28 22:14:26 +08:00
if (fetchScoresRequest == null)
return;
2022-01-28 22:14:26 +08:00
fetchScoresRequest.Failure += e => Schedule(() =>
{
2022-01-28 22:14:26 +08:00
if (e is OperationCanceledException || currentFetchCancellationSource.IsCancellationRequested)
return;
2018-04-13 17:19:50 +08:00
PlaceholderState = PlaceholderState.NetworkFailure;
});
2022-01-28 22:14:26 +08:00
api?.Queue(fetchScoresRequest);
2018-04-13 17:19:50 +08:00
}
2022-01-28 20:33:22 +08:00
private void cancelPendingWork()
{
2022-01-28 22:14:26 +08:00
currentFetchCancellationSource?.Cancel();
currentScoresAsyncLoadCancellationSource?.Cancel();
2022-01-28 22:14:26 +08:00
fetchScoresRequest?.Cancel();
2022-01-28 20:33:22 +08:00
}
#region Placeholder handling
private Placeholder currentPlaceholder;
private PlaceholderState placeholderState;
2019-03-05 17:48:59 +08:00
/// <summary>
/// Update the placeholder visibility.
/// Setting this to anything other than PlaceholderState.Successful will cancel all existing retrieval requests and hide scores.
2019-03-05 17:48:59 +08:00
/// </summary>
protected PlaceholderState PlaceholderState
{
get => placeholderState;
set
{
if (value == placeholderState)
return;
placeholderState = value;
Debug.Assert(placeholderState != PlaceholderState.Successful || scores?.Any() == true);
switch (placeholderState)
{
case PlaceholderState.NetworkFailure:
replacePlaceholder(new ClickablePlaceholder(@"Couldn't fetch scores!", FontAwesome.Solid.Sync)
{
Action = RefetchScores
});
break;
case PlaceholderState.NoneSelected:
replacePlaceholder(new MessagePlaceholder(@"Please select a beatmap!"));
break;
case PlaceholderState.Unavailable:
replacePlaceholder(new MessagePlaceholder(@"Leaderboards are not available for this beatmap!"));
break;
case PlaceholderState.NoScores:
replacePlaceholder(new MessagePlaceholder(@"No records yet!"));
break;
case PlaceholderState.NotLoggedIn:
replacePlaceholder(new LoginPlaceholder(@"Please sign in to view online leaderboards!"));
break;
case PlaceholderState.NotSupporter:
replacePlaceholder(new MessagePlaceholder(@"Please invest in an osu!supporter tag to view this leaderboard!"));
break;
default:
replacePlaceholder(null);
break;
}
}
}
private void updateScoresDrawables()
2022-01-28 21:28:13 +08:00
{
currentScoresAsyncLoadCancellationSource?.Cancel();
scoreFlowContainer?
.FadeOut(fade_duration, Easing.OutQuint)
.Expire();
scoreFlowContainer = null;
loading.Hide();
2022-01-28 21:28:13 +08:00
if (scores?.Any() != true)
{
2022-01-28 21:47:45 +08:00
PlaceholderState = PlaceholderState.NoScores;
2022-01-28 21:28:13 +08:00
return;
}
// ensure placeholder is hidden when displaying scores
PlaceholderState = PlaceholderState.Successful;
LoadComponentAsync(new FillFlowContainer<LeaderboardScore>
2022-01-28 21:28:13 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Spacing = new Vector2(0f, 5f),
Padding = new MarginPadding { Top = 10, Bottom = 5 },
ChildrenEnumerable = scores.Select((s, index) => CreateDrawableScore(s, index + 1))
}, newFlow =>
2022-01-28 21:28:13 +08:00
{
scrollContainer.Add(scoreFlowContainer = newFlow);
2022-01-28 21:28:13 +08:00
int i = 0;
foreach (var s in scoreFlowContainer.Children)
2022-01-28 21:28:13 +08:00
{
using (s.BeginDelayedSequence(i++ * 50))
s.Show();
}
scrollContainer.ScrollToStart(false);
loading.Hide();
}, (currentScoresAsyncLoadCancellationSource = new CancellationTokenSource()).Token);
}
2022-01-28 21:28:13 +08:00
2018-04-13 17:19:50 +08:00
private void replacePlaceholder(Placeholder placeholder)
{
if (placeholder != null && placeholder.Equals(currentPlaceholder))
2018-04-13 17:19:50 +08:00
return;
currentPlaceholder?.FadeOut(150, Easing.OutQuint).Expire();
2018-04-13 17:19:50 +08:00
if (placeholder == null)
{
currentPlaceholder = null;
2018-04-13 17:19:50 +08:00
return;
}
2018-04-13 17:19:50 +08:00
placeholderContainer.Child = placeholder;
2018-04-13 17:19:50 +08:00
placeholder.ScaleTo(0.8f).Then().ScaleTo(1, fade_duration * 3, Easing.OutQuint);
placeholder.FadeInFromZero(fade_duration, Easing.OutQuint);
currentPlaceholder = placeholder;
2018-04-13 17:19:50 +08:00
}
#endregion
#region Fade handling
protected override void UpdateAfterChildren()
2018-04-13 17:19:50 +08:00
{
base.UpdateAfterChildren();
2018-04-13 17:19:50 +08:00
float fadeBottom = scrollContainer.Current + scrollContainer.DrawHeight;
float fadeTop = scrollContainer.Current + LeaderboardScore.HEIGHT;
2018-04-13 17:19:50 +08:00
if (!scrollContainer.IsScrolledToEnd())
2018-12-27 14:30:02 +08:00
fadeBottom -= LeaderboardScore.HEIGHT;
2018-04-13 17:19:50 +08:00
if (scoreFlowContainer == null)
2018-04-13 17:19:50 +08:00
return;
foreach (var c in scoreFlowContainer.Children)
2018-04-13 17:19:50 +08:00
{
float topY = c.ToSpaceOfOtherDrawable(Vector2.Zero, scoreFlowContainer).Y;
float bottomY = topY + LeaderboardScore.HEIGHT;
2018-04-13 17:19:50 +08:00
2022-01-28 20:49:52 +08:00
bool requireBottomFade = bottomY >= fadeBottom;
2018-12-27 14:30:02 +08:00
2022-01-28 20:49:52 +08:00
if (!requireBottomFade)
2018-04-13 17:19:50 +08:00
c.Colour = Color4.White;
2018-12-27 14:30:02 +08:00
else if (topY > fadeBottom + LeaderboardScore.HEIGHT || bottomY < fadeTop - LeaderboardScore.HEIGHT)
2018-04-13 17:19:50 +08:00
c.Colour = Color4.Transparent;
else
{
2022-01-28 20:49:52 +08:00
if (bottomY - fadeBottom > 0)
2019-11-11 19:53:22 +08:00
{
2018-12-27 14:30:02 +08:00
c.Colour = ColourInfo.GradientVertical(
Color4.White.Opacity(Math.Min(1 - (topY - fadeBottom) / LeaderboardScore.HEIGHT, 1)),
Color4.White.Opacity(Math.Min(1 - (bottomY - fadeBottom) / LeaderboardScore.HEIGHT, 1)));
2019-11-11 19:53:22 +08:00
}
2022-01-28 20:49:52 +08:00
else
2019-11-11 19:53:22 +08:00
{
2018-12-27 14:30:02 +08:00
c.Colour = ColourInfo.GradientVertical(
Color4.White.Opacity(Math.Min(1 - (fadeTop - topY) / LeaderboardScore.HEIGHT, 1)),
Color4.White.Opacity(Math.Min(1 - (fadeTop - bottomY) / LeaderboardScore.HEIGHT, 1)));
2019-11-11 19:53:22 +08:00
}
2018-04-13 17:19:50 +08:00
}
}
}
#endregion
2018-04-13 17:19:50 +08:00
}
}