1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Sections/Historical/ChartProfileSubsection.cs

90 lines
2.7 KiB
C#
Raw Normal View History

2020-11-14 23:48:47 +08: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.
2020-11-15 00:17:01 +08:00
using System.Collections.Generic;
2020-11-24 12:10:11 +08:00
using System.Linq;
2020-11-14 23:48:47 +08:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Users;
using static osu.Game.Users.User;
namespace osu.Game.Overlays.Profile.Sections.Historical
{
public abstract class ChartProfileSubsection : ProfileSubsection
{
private ProfileLineChart chart;
/// <summary>
/// Text describing the value being plotted on the graph, which will be displayed as a prefix to the value in the history graph tooltip.
/// </summary>
protected abstract string GraphCounterName { get; }
2020-11-14 23:48:47 +08:00
protected ChartProfileSubsection(Bindable<User> user, string headerText)
: base(user, headerText)
{
}
protected override Drawable CreateContent() => new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding
{
Top = 10,
Left = 20,
Right = 40
},
Child = chart = new ProfileLineChart(GraphCounterName)
2020-11-14 23:48:47 +08:00
};
2020-11-22 07:13:35 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
User.BindValueChanged(onUserChanged, true);
}
private void onUserChanged(ValueChangedEvent<User> e)
2020-11-14 23:48:47 +08:00
{
var values = GetValues(e.NewValue);
2020-11-24 12:12:04 +08:00
if (values == null || values.Length <= 1)
2020-11-14 23:48:47 +08:00
{
2020-11-24 12:12:04 +08:00
Hide();
2020-11-22 07:25:12 +08:00
return;
}
2020-11-15 00:17:01 +08:00
2020-11-24 12:12:04 +08:00
chart.Values = fillZeroValues(values);
Show();
2020-11-22 07:25:12 +08:00
}
2020-11-15 00:17:01 +08:00
2020-11-24 12:10:11 +08:00
/// <summary>
/// Add entries for any missing months (filled with zero values).
/// </summary>
private UserHistoryCount[] fillZeroValues(UserHistoryCount[] historyEntries)
2020-11-22 07:25:12 +08:00
{
2020-11-24 12:10:11 +08:00
var filledHistoryEntries = new List<UserHistoryCount>();
2020-11-15 00:17:01 +08:00
2020-11-24 12:10:11 +08:00
foreach (var entry in historyEntries)
2020-11-22 07:25:12 +08:00
{
2020-11-24 12:10:11 +08:00
var lastFilled = filledHistoryEntries.LastOrDefault();
while (lastFilled?.Date.AddMonths(1) < entry.Date)
2020-11-15 00:17:01 +08:00
{
2020-11-24 12:10:11 +08:00
filledHistoryEntries.Add(lastFilled = new UserHistoryCount
2020-11-22 07:25:12 +08:00
{
Count = 0,
2020-11-24 12:10:11 +08:00
Date = lastFilled.Date.AddMonths(1)
2020-11-22 07:25:12 +08:00
});
2020-11-15 00:17:01 +08:00
}
2020-11-24 12:10:11 +08:00
filledHistoryEntries.Add(entry);
2020-11-14 23:48:47 +08:00
}
2020-11-24 12:10:11 +08:00
return filledHistoryEntries.ToArray();
2020-11-14 23:48:47 +08:00
}
protected abstract UserHistoryCount[] GetValues(User user);
}
}