2019-01-24 17:43:03 +09:00
|
|
|
|
// 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 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using System;
|
2018-04-15 23:44:59 +02:00
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using System.Linq;
|
2020-03-05 20:11:14 +01:00
|
|
|
|
using Humanizer;
|
2019-02-21 19:04:31 +09:00
|
|
|
|
using osu.Framework.Bindables;
|
2021-08-29 15:00:28 +03:00
|
|
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2021-07-17 15:25:45 +02:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
2019-04-26 13:49:44 +09:00
|
|
|
|
namespace osu.Game.Overlays.Profile.Header.Components
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2020-02-07 23:26:35 +03:00
|
|
|
|
public class RankGraph : UserGraph<int, int>
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
private const int ranked_days = 88;
|
|
|
|
|
|
2019-08-04 14:35:26 +03:00
|
|
|
|
public readonly Bindable<UserStatistics> Statistics = new Bindable<UserStatistics>();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-02-07 23:26:35 +03:00
|
|
|
|
private readonly OsuSpriteText placeholder;
|
|
|
|
|
|
2018-04-13 18:19:50 +09:00
|
|
|
|
public RankGraph()
|
|
|
|
|
{
|
2020-02-07 23:26:35 +03:00
|
|
|
|
Add(placeholder = new OsuSpriteText
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2020-02-07 23:26:35 +03:00
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
2021-07-17 15:25:45 +02:00
|
|
|
|
Text = UsersStrings.ShowExtraUnranked,
|
2020-02-07 23:26:35 +03:00
|
|
|
|
Font = OsuFont.GetFont(size: 12, weight: FontWeight.Regular)
|
|
|
|
|
});
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-04 14:35:26 +03:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2019-08-05 12:49:54 +03:00
|
|
|
|
Statistics.BindValueChanged(statistics => updateStatistics(statistics.NewValue), true);
|
2019-08-04 14:35:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateStatistics(UserStatistics statistics)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2021-12-19 13:19:00 +01:00
|
|
|
|
// checking both IsRanked and RankHistory is required.
|
|
|
|
|
// see https://github.com/ppy/osu-web/blob/154ceafba0f35a1dd935df53ec98ae2ea5615f9f/resources/assets/lib/profile-page/rank-chart.tsx#L46
|
|
|
|
|
int[] userRanks = statistics?.IsRanked == true ? statistics.RankHistory?.Data : null;
|
2020-03-09 19:42:35 +03:00
|
|
|
|
Data = userRanks?.Select((x, index) => new KeyValuePair<int, int>(index, x)).Where(x => x.Value != 0).ToArray();
|
2020-02-12 20:19:20 +01:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-02-12 20:19:20 +01:00
|
|
|
|
protected override float GetDataPointHeight(int rank) => -MathF.Log(rank);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-02-12 20:19:20 +01:00
|
|
|
|
protected override void ShowGraph()
|
|
|
|
|
{
|
|
|
|
|
base.ShowGraph();
|
|
|
|
|
placeholder.FadeOut(FADE_DURATION, Easing.Out);
|
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-02-12 20:19:20 +01:00
|
|
|
|
protected override void HideGraph()
|
|
|
|
|
{
|
|
|
|
|
base.HideGraph();
|
|
|
|
|
placeholder.FadeIn(FADE_DURATION, Easing.Out);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-28 19:11:44 +03:00
|
|
|
|
protected override UserGraphTooltipContent GetTooltipContent(int index, int rank)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2021-10-27 13:04:41 +09:00
|
|
|
|
int days = ranked_days - index + 1;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-08-31 20:45:32 +03:00
|
|
|
|
return new UserGraphTooltipContent(
|
|
|
|
|
UsersStrings.ShowRankGlobalSimple,
|
|
|
|
|
rank.ToLocalisableString("\\##,##0"),
|
|
|
|
|
days == 0 ? "now" : $"{"day".ToQuantity(days)} ago");
|
2019-08-16 19:47:35 +09:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|