2017-06-15 00:48:01 +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
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
2017-06-15 02:17:48 +08:00
|
|
|
|
using OpenTK;
|
2017-06-15 00:48:01 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-06-21 16:03:47 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2017-06-15 00:48:01 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-06-15 02:17:48 +08:00
|
|
|
|
using osu.Framework.Input;
|
2017-06-15 00:48:01 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-06-16 16:36:23 +08:00
|
|
|
|
using osu.Game.Users;
|
2017-06-15 00:48:01 +08:00
|
|
|
|
|
2017-06-16 16:36:23 +08:00
|
|
|
|
namespace osu.Game.Overlays.Profile
|
2017-06-15 00:48:01 +08:00
|
|
|
|
{
|
|
|
|
|
public class RankChart : Container
|
|
|
|
|
{
|
2017-06-15 02:17:48 +08:00
|
|
|
|
private readonly SpriteText rankText, performanceText, relativeText;
|
|
|
|
|
private readonly RankChartLineGraph graph;
|
2017-06-15 00:48:01 +08:00
|
|
|
|
|
2017-06-16 16:48:46 +08:00
|
|
|
|
private readonly int[] ranks;
|
2017-11-07 07:39:48 +08:00
|
|
|
|
private readonly int rankedDays;
|
2017-06-15 02:17:48 +08:00
|
|
|
|
|
2017-06-15 16:57:34 +08:00
|
|
|
|
private const float primary_textsize = 25, secondary_textsize = 13, padding = 10;
|
|
|
|
|
|
2017-06-15 02:17:48 +08:00
|
|
|
|
private readonly User user;
|
2017-06-15 00:48:01 +08:00
|
|
|
|
|
|
|
|
|
public RankChart(User user)
|
|
|
|
|
{
|
2017-06-15 02:17:48 +08:00
|
|
|
|
this.user = user;
|
2017-06-16 14:34:08 +08:00
|
|
|
|
|
2017-11-07 07:39:48 +08:00
|
|
|
|
int[] userRanks = user.RankHistory?.Data ?? new[] { user.Statistics.Rank };
|
|
|
|
|
ranks = userRanks.SkipWhile(x => x == 0).ToArray();
|
|
|
|
|
rankedDays = ranks.Length;
|
|
|
|
|
|
2017-06-15 16:57:34 +08:00
|
|
|
|
Padding = new MarginPadding { Vertical = padding };
|
2017-06-15 00:48:01 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-06-15 02:17:48 +08:00
|
|
|
|
rankText = new OsuSpriteText
|
2017-06-15 00:48:01 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Font = @"Exo2.0-RegularItalic",
|
2017-06-15 16:57:34 +08:00
|
|
|
|
TextSize = primary_textsize
|
2017-06-15 00:48:01 +08:00
|
|
|
|
},
|
2017-06-15 02:17:48 +08:00
|
|
|
|
relativeText = new OsuSpriteText
|
2017-06-15 00:48:01 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Font = @"Exo2.0-RegularItalic",
|
|
|
|
|
Y = 25,
|
2017-06-15 16:57:34 +08:00
|
|
|
|
TextSize = secondary_textsize
|
2017-06-15 00:48:01 +08:00
|
|
|
|
},
|
2017-06-15 02:17:48 +08:00
|
|
|
|
performanceText = new OsuSpriteText
|
2017-06-15 00:48:01 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
Font = @"Exo2.0-RegularItalic",
|
2017-06-15 16:57:34 +08:00
|
|
|
|
TextSize = secondary_textsize
|
2017-06-15 00:48:01 +08:00
|
|
|
|
},
|
2017-06-15 02:17:48 +08:00
|
|
|
|
graph = new RankChartLineGraph
|
2017-06-15 00:48:01 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2017-06-15 16:57:34 +08:00
|
|
|
|
Y = -secondary_textsize,
|
2017-11-07 07:39:48 +08:00
|
|
|
|
DefaultValueCount = rankedDays,
|
2017-06-15 00:48:01 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2017-06-26 15:26:50 +08:00
|
|
|
|
|
2017-11-07 07:39:48 +08:00
|
|
|
|
graph.OnBallMove += showHistoryRankTexts;
|
|
|
|
|
graph.OnReset += updateRankTexts;
|
2017-06-15 00:48:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-15 07:58:20 +08:00
|
|
|
|
private void updateRankTexts()
|
|
|
|
|
{
|
2017-06-16 14:34:08 +08:00
|
|
|
|
rankText.Text = user.Statistics.Rank > 0 ? $"#{user.Statistics.Rank:#,0}" : "no rank";
|
|
|
|
|
performanceText.Text = user.Statistics.PP != null ? $"{user.Statistics.PP:#,0}pp" : string.Empty;
|
2017-06-26 00:43:49 +08:00
|
|
|
|
relativeText.Text = $"{user.Country?.FullName} #{user.CountryRank:#,0}";
|
2017-06-15 07:58:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void showHistoryRankTexts(int dayIndex)
|
|
|
|
|
{
|
2017-11-07 07:39:48 +08:00
|
|
|
|
rankText.Text = $"#{ranks[dayIndex]:#,0}";
|
|
|
|
|
relativeText.Text = dayIndex == rankedDays ? "Now" : $"{rankedDays - dayIndex} days ago";
|
2017-06-15 07:58:20 +08:00
|
|
|
|
//plural should be handled in a general way
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-15 00:48:01 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
graph.Colour = colours.Yellow;
|
|
|
|
|
|
2017-06-16 14:47:14 +08:00
|
|
|
|
if (user.Statistics.Rank > 0)
|
|
|
|
|
{
|
|
|
|
|
// use logarithmic coordinates
|
|
|
|
|
graph.Values = ranks.Select(x => -(float)Math.Log(x));
|
2017-11-07 07:39:48 +08:00
|
|
|
|
graph.SetStaticBallPosition();
|
2017-06-16 14:47:14 +08:00
|
|
|
|
}
|
2017-06-15 00:48:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
|
|
|
|
|
{
|
|
|
|
|
if ((invalidation & Invalidation.DrawSize) != 0)
|
|
|
|
|
{
|
2017-06-15 16:57:34 +08:00
|
|
|
|
graph.Height = DrawHeight - padding * 2 - primary_textsize - secondary_textsize * 2;
|
2017-06-15 00:48:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.Invalidate(invalidation, source, shallPropagate);
|
|
|
|
|
}
|
2017-06-15 02:17:48 +08:00
|
|
|
|
|
2017-11-07 07:39:48 +08:00
|
|
|
|
protected override bool OnHover(InputState state)
|
|
|
|
|
{
|
|
|
|
|
graph.ShowBall(ToLocalSpace(state.Mouse.NativeState.Position).X);
|
|
|
|
|
return base.OnHover(state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnMouseMove(InputState state)
|
|
|
|
|
{
|
|
|
|
|
graph.MoveBall(ToLocalSpace(state.Mouse.NativeState.Position).X);
|
|
|
|
|
return base.OnMouseMove(state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnHoverLost(InputState state)
|
|
|
|
|
{
|
|
|
|
|
graph.HideBall();
|
|
|
|
|
base.OnHoverLost(state);
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-15 02:17:48 +08:00
|
|
|
|
private class RankChartLineGraph : LineGraph
|
|
|
|
|
{
|
2017-11-07 07:39:48 +08:00
|
|
|
|
private const double fade_duration = 300;
|
|
|
|
|
private const double move_duration = 100;
|
2017-06-15 02:17:48 +08:00
|
|
|
|
|
2017-11-07 07:39:48 +08:00
|
|
|
|
private readonly CircularContainer staticBall;
|
|
|
|
|
private readonly CircularContainer movingBall;
|
2017-06-15 02:17:48 +08:00
|
|
|
|
|
2017-11-07 07:39:48 +08:00
|
|
|
|
public Action<int> OnBallMove;
|
|
|
|
|
public Action OnReset;
|
2017-06-15 02:17:48 +08:00
|
|
|
|
|
|
|
|
|
public RankChartLineGraph()
|
|
|
|
|
{
|
2017-11-07 07:39:48 +08:00
|
|
|
|
Add(staticBall = new CircularContainer
|
2017-06-15 02:17:48 +08:00
|
|
|
|
{
|
2017-11-07 07:39:48 +08:00
|
|
|
|
Origin = Anchor.Centre,
|
2017-06-15 02:17:48 +08:00
|
|
|
|
Size = new Vector2(8),
|
|
|
|
|
Masking = true,
|
2017-11-07 07:39:48 +08:00
|
|
|
|
RelativePositionAxes = Axes.Both,
|
|
|
|
|
Child = new Box { RelativeSizeAxes = Axes.Both }
|
|
|
|
|
});
|
|
|
|
|
Add(movingBall = new CircularContainer
|
|
|
|
|
{
|
2017-06-15 02:17:48 +08:00
|
|
|
|
Origin = Anchor.Centre,
|
2017-11-07 07:39:48 +08:00
|
|
|
|
Size = new Vector2(8),
|
2017-06-15 02:17:48 +08:00
|
|
|
|
Alpha = 0,
|
2017-11-07 07:39:48 +08:00
|
|
|
|
Masking = true,
|
2017-06-15 02:17:48 +08:00
|
|
|
|
RelativePositionAxes = Axes.Both,
|
2017-11-07 07:39:48 +08:00
|
|
|
|
Child = new Box { RelativeSizeAxes = Axes.Both }
|
2017-06-15 02:17:48 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 07:39:48 +08:00
|
|
|
|
public void SetStaticBallPosition()
|
2017-06-15 02:17:48 +08:00
|
|
|
|
{
|
2017-11-07 07:39:48 +08:00
|
|
|
|
staticBall.Position = new Vector2(1, GetYPosition(Values.Last()));
|
|
|
|
|
OnReset.Invoke();
|
2017-06-15 02:17:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 07:39:48 +08:00
|
|
|
|
public void ShowBall(float mouseXPosition)
|
2017-06-15 02:17:48 +08:00
|
|
|
|
{
|
2017-11-07 07:39:48 +08:00
|
|
|
|
int index = calculateIndex(mouseXPosition);
|
2017-11-07 08:05:12 +08:00
|
|
|
|
movingBall.Position = calculateBallPosition(index);
|
2017-11-07 07:39:48 +08:00
|
|
|
|
movingBall.FadeIn(fade_duration);
|
|
|
|
|
OnBallMove.Invoke(index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void MoveBall(float mouseXPosition)
|
|
|
|
|
{
|
|
|
|
|
int index = calculateIndex(mouseXPosition);
|
2017-11-07 08:05:12 +08:00
|
|
|
|
movingBall.MoveTo(calculateBallPosition(index), move_duration, Easing.OutQuint);
|
2017-11-07 07:39:48 +08:00
|
|
|
|
OnBallMove.Invoke(index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void HideBall()
|
|
|
|
|
{
|
|
|
|
|
movingBall.FadeOut(fade_duration);
|
|
|
|
|
OnReset.Invoke();
|
2017-06-15 02:17:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 07:39:48 +08:00
|
|
|
|
private int calculateIndex(float mouseXPosition) => (int)Math.Round(mouseXPosition / DrawWidth * (DefaultValueCount - 1));
|
|
|
|
|
|
2017-11-07 08:05:12 +08:00
|
|
|
|
private Vector2 calculateBallPosition(int index)
|
2017-06-15 02:17:48 +08:00
|
|
|
|
{
|
2017-11-07 07:39:48 +08:00
|
|
|
|
float y = GetYPosition(Values.ElementAt(index));
|
|
|
|
|
return new Vector2(index / (float)(DefaultValueCount - 1), y);
|
2017-06-15 02:17:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-15 00:48:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|