1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 09:07:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Header/Components/RankGraph.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
2.6 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
2022-06-17 15:37:17 +08:00
#nullable disable
2017-06-15 00:48:01 +08:00
using System;
2018-04-16 05:44:59 +08:00
using System.Collections.Generic;
2017-06-15 00:48:01 +08:00
using System.Linq;
2020-03-06 03:11:14 +08:00
using Humanizer;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
using osu.Framework.Extensions.LocalisationExtensions;
2017-06-15 00:48:01 +08:00
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
2021-07-17 21:25:45 +08:00
using osu.Game.Resources.Localisation.Web;
2017-06-16 16:36:23 +08:00
using osu.Game.Users;
2018-04-13 17:19:50 +08:00
2019-04-26 12:49:44 +08:00
namespace osu.Game.Overlays.Profile.Header.Components
2017-06-15 00:48:01 +08:00
{
public class RankGraph : UserGraph<int, int>
2017-06-15 00:48:01 +08:00
{
2017-11-21 15:36:53 +08:00
private const int ranked_days = 88;
2018-04-13 17:19:50 +08:00
public readonly Bindable<UserStatistics> Statistics = new Bindable<UserStatistics>();
2018-04-13 17:19:50 +08:00
private readonly OsuSpriteText placeholder;
2017-12-22 18:25:18 +08:00
public RankGraph()
2017-06-15 00:48:01 +08:00
{
Add(placeholder = new OsuSpriteText
2017-06-15 00:48:01 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2021-07-17 21:25:45 +08:00
Text = UsersStrings.ShowExtraUnranked,
Font = OsuFont.GetFont(size: 12, weight: FontWeight.Regular)
});
2017-06-15 07:58:20 +08:00
}
2018-04-13 17:19:50 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
2019-08-05 17:49:54 +08:00
Statistics.BindValueChanged(statistics => updateStatistics(statistics.NewValue), true);
}
private void updateStatistics(UserStatistics statistics)
2017-06-15 07:58:20 +08: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-10 00:42:35 +08:00
Data = userRanks?.Select((x, index) => new KeyValuePair<int, int>(index, x)).Where(x => x.Value != 0).ToArray();
2020-02-13 03:19:20 +08:00
}
2018-04-13 17:19:50 +08:00
2020-02-13 03:19:20 +08:00
protected override float GetDataPointHeight(int rank) => -MathF.Log(rank);
2018-04-13 17:19:50 +08:00
2020-02-13 03:19:20 +08:00
protected override void ShowGraph()
{
base.ShowGraph();
placeholder.FadeOut(FADE_DURATION, Easing.Out);
}
2018-04-13 17:19:50 +08:00
2020-02-13 03:19:20 +08:00
protected override void HideGraph()
{
base.HideGraph();
placeholder.FadeIn(FADE_DURATION, Easing.Out);
2017-11-07 07:39:48 +08:00
}
2018-04-13 17:19:50 +08:00
protected override UserGraphTooltipContent GetTooltipContent(int index, int rank)
2017-06-15 02:17:48 +08:00
{
int days = ranked_days - index + 1;
2018-04-13 17:19:50 +08:00
return new UserGraphTooltipContent(
UsersStrings.ShowRankGlobalSimple,
rank.ToLocalisableString("\\##,##0"),
days == 0 ? "now" : $"{"day".ToQuantity(days)} ago");
2019-08-16 18:47:35 +08:00
}
2017-06-15 00:48:01 +08:00
}
}