1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 04:39:34 +08:00
osu-lazer/osu.Game/Screens/Ranking/Statistics/StatisticsPanel.cs

235 lines
8.5 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.
using System.Collections.Generic;
2020-06-19 19:31:52 +08:00
using System.Linq;
2020-06-19 18:12:55 +08:00
using System.Threading;
using System.Threading.Tasks;
using osu.Framework.Allocation;
2022-07-22 18:06:31 +08:00
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input.Events;
using osu.Game.Beatmaps;
using osu.Game.Graphics.Containers;
2020-06-19 18:12:55 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.Placeholders;
using osu.Game.Scoring;
using osuTK;
namespace osu.Game.Screens.Ranking.Statistics
{
2022-11-24 13:32:20 +08:00
public partial class StatisticsPanel : VisibilityContainer
{
2020-06-18 16:06:05 +08:00
public const float SIDE_PADDING = 30;
2024-05-14 19:01:26 +08:00
public readonly Bindable<ScoreInfo?> Score = new Bindable<ScoreInfo?>();
protected override bool StartHidden => true;
[Resolved]
2024-05-14 19:01:26 +08:00
private BeatmapManager beatmapManager { get; set; } = null!;
private readonly Container content;
2020-06-19 18:12:55 +08:00
private readonly LoadingSpinner spinner;
2022-07-22 18:06:31 +08:00
private bool wasOpened;
2024-05-14 19:01:26 +08:00
private Sample? popInSample;
private Sample? popOutSample;
private CancellationTokenSource? loadCancellation;
2022-07-22 18:06:31 +08:00
public StatisticsPanel()
{
InternalChild = new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding
{
2020-06-18 16:06:05 +08:00
Left = ScorePanel.EXPANDED_WIDTH + SIDE_PADDING * 3,
Right = SIDE_PADDING,
Top = SIDE_PADDING,
Bottom = 50 // Approximate padding to the bottom of the score panel.
},
2020-06-19 18:12:55 +08:00
Children = new Drawable[]
{
content = new Container { RelativeSizeAxes = Axes.Both },
spinner = new LoadingSpinner()
}
};
}
[BackgroundDependencyLoader]
2022-07-22 18:06:31 +08:00
private void load(AudioManager audio)
{
Score.BindValueChanged(populateStatistics, true);
2022-07-22 18:06:31 +08:00
popInSample = audio.Samples.Get(@"Results/statistics-panel-pop-in");
popOutSample = audio.Samples.Get(@"Results/statistics-panel-pop-out");
}
2024-05-14 19:01:26 +08:00
private void populateStatistics(ValueChangedEvent<ScoreInfo?> score)
{
2020-06-19 18:12:55 +08:00
loadCancellation?.Cancel();
2020-06-22 19:20:42 +08:00
loadCancellation = null;
2020-06-19 18:12:55 +08:00
foreach (var child in content)
child.FadeOut(150).Expire();
spinner.Hide();
var newScore = score.NewValue;
2020-06-19 21:47:55 +08:00
if (newScore == null)
return;
2022-02-02 13:41:51 +08:00
spinner.Show();
var localCancellationSource = loadCancellation = new CancellationTokenSource();
var workingBeatmap = beatmapManager.GetWorkingBeatmap(newScore.BeatmapInfo);
2022-02-02 13:41:51 +08:00
// Todo: The placement of this is temporary. Eventually we'll both generate the playable beatmap _and_ run through it in a background task to generate the hit events.
Task.Run(() => workingBeatmap.GetPlayableBeatmap(newScore.Ruleset, newScore.Mods), loadCancellation.Token).ContinueWith(task => Schedule(() =>
2020-09-24 11:39:08 +08:00
{
2022-02-02 13:41:51 +08:00
bool hitEventsAvailable = newScore.HitEvents.Count != 0;
Container<Drawable> container;
2022-02-02 13:41:51 +08:00
var statisticItems = CreateStatisticItems(newScore, task.GetResultSafely());
2022-02-02 13:41:51 +08:00
if (!hitEventsAvailable && statisticItems.All(c => c.RequiresHitEvents))
{
container = new FillFlowContainer
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new MessagePlaceholder("Extended statistics are only available after watching a replay!"),
new ReplayDownloadButton(newScore)
2022-02-02 13:41:51 +08:00
{
Scale = new Vector2(1.5f),
2022-02-02 13:41:51 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
}
};
2022-02-02 13:41:51 +08:00
}
else
{
2023-06-28 17:17:57 +08:00
FillFlowContainer flow;
container = new OsuScrollContainer(Direction.Vertical)
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Masking = false,
ScrollbarOverlapsContent = false,
Alpha = 0,
Children = new[]
2020-08-28 02:07:30 +08:00
{
2023-06-28 17:17:57 +08:00
flow = new FillFlowContainer
2020-08-28 02:07:30 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
2023-06-28 17:17:57 +08:00
Spacing = new Vector2(30, 15),
Direction = FillDirection.Full,
}
}
};
bool anyRequiredHitEvents = false;
foreach (var item in statisticItems)
{
if (!hitEventsAvailable && item.RequiresHitEvents)
{
anyRequiredHitEvents = true;
continue;
}
flow.Add(new StatisticItemContainer(item)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
});
}
if (anyRequiredHitEvents)
{
2023-06-28 17:17:57 +08:00
flow.Add(new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Children = new Drawable[]
{
new MessagePlaceholder("More statistics available after watching a replay!"),
new ReplayDownloadButton(newScore)
{
Scale = new Vector2(1.5f),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
}
});
}
2022-02-02 13:41:51 +08:00
}
LoadComponentAsync(container, d =>
2022-02-02 13:41:51 +08:00
{
2024-05-14 19:01:26 +08:00
if (Score.Value?.Equals(newScore) != true)
2022-02-02 13:41:51 +08:00
return;
spinner.Hide();
content.Add(d);
d.FadeIn(250, Easing.OutQuint);
}, localCancellationSource.Token);
}), localCancellationSource.Token);
}
/// <summary>
/// Creates the <see cref="StatisticItem"/>s to be displayed in this panel for a given <paramref name="newScore"/>.
/// </summary>
/// <param name="newScore">The score to create the rows for.</param>
/// <param name="playableBeatmap">The beatmap on which the score was set.</param>
protected virtual ICollection<StatisticItem> CreateStatisticItems(ScoreInfo newScore, IBeatmap playableBeatmap)
=> newScore.Ruleset.CreateInstance().CreateStatisticsForScore(newScore, playableBeatmap);
protected override bool OnClick(ClickEvent e)
{
ToggleVisibility();
return true;
}
2022-07-22 18:06:31 +08:00
protected override void PopIn()
{
this.FadeIn(350, Easing.OutQuint);
2022-07-22 18:06:31 +08:00
popInSample?.Play();
wasOpened = true;
}
protected override void PopOut()
{
this.FadeOut(250, Easing.OutQuint);
2022-07-22 18:06:31 +08:00
if (wasOpened)
popOutSample?.Play();
}
2020-06-22 19:20:42 +08:00
protected override void Dispose(bool isDisposing)
{
loadCancellation?.Cancel();
base.Dispose(isDisposing);
}
}
}