2019-09-19 14:44:05 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-07-14 17:34:12 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2019-09-19 14:38:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading;
|
2019-07-14 17:40:54 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2019-07-14 17:34:12 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2019-09-19 14:44:05 +08:00
|
|
|
|
using osuTK;
|
2019-07-14 17:34:12 +08:00
|
|
|
|
|
2020-08-31 18:54:22 +08:00
|
|
|
|
namespace osu.Game.Online.Leaderboards
|
2019-07-14 17:34:12 +08:00
|
|
|
|
{
|
2020-08-31 18:54:22 +08:00
|
|
|
|
public class UserTopScoreContainer<TScoreInfo> : VisibilityContainer
|
2019-07-14 17:34:12 +08:00
|
|
|
|
{
|
2019-09-19 14:23:33 +08:00
|
|
|
|
private const int duration = 500;
|
2019-07-14 17:34:12 +08:00
|
|
|
|
|
2022-09-26 15:12:47 +08:00
|
|
|
|
public Bindable<TScoreInfo?> Score = new Bindable<TScoreInfo?>();
|
2019-07-14 17:34:12 +08:00
|
|
|
|
|
2020-08-31 18:54:22 +08:00
|
|
|
|
private readonly Container scoreContainer;
|
|
|
|
|
private readonly Func<TScoreInfo, LeaderboardScore> createScoreDelegate;
|
2019-07-15 17:30:42 +08:00
|
|
|
|
|
2019-07-14 17:34:12 +08:00
|
|
|
|
protected override bool StartHidden => true;
|
|
|
|
|
|
2022-09-26 15:12:47 +08:00
|
|
|
|
private CancellationTokenSource? loadScoreCancellation;
|
|
|
|
|
|
2020-08-31 18:54:22 +08:00
|
|
|
|
public UserTopScoreContainer(Func<TScoreInfo, LeaderboardScore> createScoreDelegate)
|
2019-07-14 17:34:12 +08:00
|
|
|
|
{
|
2020-08-31 18:54:22 +08:00
|
|
|
|
this.createScoreDelegate = createScoreDelegate;
|
2020-08-31 19:08:36 +08:00
|
|
|
|
|
2019-07-14 17:34:12 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2019-09-19 14:34:46 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2019-07-22 22:13:48 +08:00
|
|
|
|
|
2019-09-19 14:34:46 +08:00
|
|
|
|
Margin = new MarginPadding { Vertical = 5 };
|
2019-07-22 22:13:48 +08:00
|
|
|
|
|
2019-07-14 17:34:12 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2019-09-19 14:34:46 +08:00
|
|
|
|
new FillFlowContainer
|
2019-07-14 17:34:12 +08:00
|
|
|
|
{
|
2019-07-23 06:14:45 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2019-09-19 14:34:46 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
2019-09-19 14:44:05 +08:00
|
|
|
|
Spacing = new Vector2(5),
|
2019-07-14 17:34:12 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
2019-07-22 22:26:11 +08:00
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
2022-06-20 20:39:47 +08:00
|
|
|
|
Text = @"your personal best".ToUpperInvariant(),
|
2019-07-14 17:34:12 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 15, weight: FontWeight.Bold),
|
|
|
|
|
},
|
|
|
|
|
scoreContainer = new Container
|
|
|
|
|
{
|
2019-09-19 14:34:46 +08:00
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
2019-07-14 17:34:12 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2019-07-14 17:40:54 +08:00
|
|
|
|
|
2019-07-22 22:13:48 +08:00
|
|
|
|
Score.BindValueChanged(onScoreChanged);
|
2019-07-14 17:40:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-26 15:12:47 +08:00
|
|
|
|
private void onScoreChanged(ValueChangedEvent<TScoreInfo?> score)
|
2019-07-14 17:40:54 +08:00
|
|
|
|
{
|
2019-07-22 22:13:48 +08:00
|
|
|
|
var newScore = score.NewValue;
|
|
|
|
|
|
2019-07-22 22:21:07 +08:00
|
|
|
|
scoreContainer.Clear();
|
|
|
|
|
loadScoreCancellation?.Cancel();
|
|
|
|
|
|
2019-09-19 14:23:33 +08:00
|
|
|
|
if (newScore == null)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-08-31 18:54:22 +08:00
|
|
|
|
LoadComponentAsync(createScoreDelegate(newScore), drawableScore =>
|
2019-07-22 22:21:07 +08:00
|
|
|
|
{
|
|
|
|
|
scoreContainer.Child = drawableScore;
|
2019-09-19 14:44:00 +08:00
|
|
|
|
drawableScore.FadeInFromZero(duration, Easing.OutQuint);
|
2019-07-22 22:21:07 +08:00
|
|
|
|
}, (loadScoreCancellation = new CancellationTokenSource()).Token);
|
2019-07-14 17:34:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 14:34:46 +08:00
|
|
|
|
protected override void PopIn() => this.FadeIn(duration, Easing.OutQuint);
|
2019-07-14 17:34:12 +08:00
|
|
|
|
|
2019-09-19 14:34:46 +08:00
|
|
|
|
protected override void PopOut() => this.FadeOut(duration, Easing.OutQuint);
|
2019-07-14 17:34:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|