1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-17 02:12:54 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/JudgementCounter/JudgementCountController.cs

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

90 lines
2.9 KiB
C#
Raw Normal View History

2022-12-12 05:08:48 +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.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
2022-12-12 18:53:07 +08:00
using osu.Game.Rulesets;
2022-12-17 00:40:39 +08:00
using osu.Game.Rulesets.Judgements;
2022-12-12 05:08:48 +08:00
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Screens.Play.HUD.JudgementCounter
{
2023-01-17 17:16:46 +08:00
/// <summary>
/// Keeps track of judgements for a current play session, exposing bindable counts which can
/// be used for display purposes.
/// </summary>
public partial class JudgementCountController : Component
2022-12-12 05:08:48 +08:00
{
[Resolved]
private ScoreProcessor scoreProcessor { get; set; } = null!;
private readonly Dictionary<HitResult, JudgementCount> results = new Dictionary<HitResult, JudgementCount>();
public IEnumerable<JudgementCount> Counters => counters;
private readonly List<JudgementCount> counters = new List<JudgementCount>();
2022-12-12 05:08:48 +08:00
[BackgroundDependencyLoader]
private void load(IBindable<RulesetInfo> ruleset)
2022-12-12 05:08:48 +08:00
{
// Due to weirdness in judgements, some results have the same name and should be aggregated for display purposes.
// There's only one case of this right now ("slider end").
foreach (var group in ruleset.Value.CreateInstance().GetHitResults().GroupBy(r => r.displayName))
2022-12-12 05:08:48 +08:00
{
var judgementCount = new JudgementCount
2022-12-12 05:08:48 +08:00
{
DisplayName = group.Key,
Types = group.Select(r => r.result).ToArray(),
2022-12-12 06:47:17 +08:00
ResultCount = new BindableInt()
};
counters.Add(judgementCount);
foreach (var r in group)
results[r.result] = judgementCount;
2022-12-12 05:08:48 +08:00
}
}
protected override void LoadComplete()
{
base.LoadComplete();
scoreProcessor.OnResetFromReplayFrame += updateAllCounts;
2022-12-17 00:40:39 +08:00
scoreProcessor.NewJudgement += judgement => updateCount(judgement, false);
scoreProcessor.JudgementReverted += judgement => updateCount(judgement, true);
}
2024-09-19 18:23:14 +08:00
private bool hasUpdatedCounts;
private void updateAllCounts()
{
2024-09-19 18:23:14 +08:00
if (hasUpdatedCounts)
return;
foreach (var kvp in scoreProcessor.Statistics)
{
if (!results.TryGetValue(kvp.Key, out var count))
continue;
count.ResultCount.Value = kvp.Value;
}
2024-09-19 18:23:14 +08:00
hasUpdatedCounts = true;
2022-12-17 00:40:39 +08:00
}
2022-12-17 00:40:39 +08:00
private void updateCount(JudgementResult judgement, bool revert)
{
if (!results.TryGetValue(judgement.Type, out var count))
return;
if (revert)
count.ResultCount.Value--;
else
count.ResultCount.Value++;
2022-12-12 05:08:48 +08:00
}
}
}