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.Containers;
|
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>
|
2022-12-12 05:08:48 +08:00
|
|
|
public partial class JudgementTally : CompositeDrawable
|
|
|
|
{
|
|
|
|
[Resolved]
|
|
|
|
private ScoreProcessor scoreProcessor { get; set; } = null!;
|
|
|
|
|
2023-01-17 17:16:46 +08:00
|
|
|
public List<JudgementCount> Results = new List<JudgementCount>();
|
2022-12-12 05:08:48 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-12-12 22:10:10 +08:00
|
|
|
private void load(IBindable<RulesetInfo> ruleset)
|
2022-12-12 05:08:48 +08:00
|
|
|
{
|
2022-12-12 22:10:10 +08:00
|
|
|
foreach (var result in ruleset.Value.CreateInstance().GetHitResults())
|
2022-12-12 05:08:48 +08:00
|
|
|
{
|
2023-01-17 17:16:46 +08:00
|
|
|
Results.Add(new JudgementCount
|
2022-12-12 05:08:48 +08:00
|
|
|
{
|
2022-12-12 22:10:10 +08:00
|
|
|
Type = result.result,
|
2022-12-12 06:47:17 +08:00
|
|
|
ResultCount = new BindableInt()
|
2022-12-12 05:08:48 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2022-12-15 06:00:34 +08:00
|
|
|
|
2022-12-17 00:40:39 +08:00
|
|
|
scoreProcessor.NewJudgement += judgement => updateCount(judgement, false);
|
|
|
|
scoreProcessor.JudgementReverted += judgement => updateCount(judgement, true);
|
|
|
|
}
|
2022-12-15 06:00:34 +08:00
|
|
|
|
2022-12-17 00:40:39 +08:00
|
|
|
private void updateCount(JudgementResult judgement, bool revert)
|
|
|
|
{
|
2023-01-17 17:16:46 +08:00
|
|
|
foreach (JudgementCount result in Results.Where(result => result.Type == judgement.Type))
|
2022-12-17 00:40:39 +08:00
|
|
|
result.ResultCount.Value = revert ? result.ResultCount.Value - 1 : result.ResultCount.Value + 1;
|
2022-12-12 05:08:48 +08:00
|
|
|
}
|
2023-01-17 17:16:46 +08:00
|
|
|
|
|
|
|
public struct JudgementCount
|
|
|
|
{
|
|
|
|
public HitResult Type { get; set; }
|
|
|
|
|
|
|
|
public BindableInt ResultCount { get; set; }
|
|
|
|
}
|
2022-12-12 05:08:48 +08:00
|
|
|
}
|
|
|
|
}
|