mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 05:50:05 +08:00
65 lines
2.2 KiB
C#
65 lines
2.2 KiB
C#
// 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.ComponentModel;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
{
|
|
public abstract partial class GameplayAccuracyCounter : PercentageCounter
|
|
{
|
|
[SettingSource("Accuracy display mode", "Which accuracy mode should be displayed.")]
|
|
public Bindable<AccuracyDisplayMode> AccuracyDisplay { get; } = new Bindable<AccuracyDisplayMode>();
|
|
|
|
[Resolved]
|
|
private ScoreProcessor scoreProcessor { get; set; } = null!;
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
AccuracyDisplay.BindValueChanged(mod =>
|
|
{
|
|
Current.UnbindBindings();
|
|
|
|
switch (mod.NewValue)
|
|
{
|
|
case AccuracyDisplayMode.Standard:
|
|
Current.BindTo(scoreProcessor.Accuracy);
|
|
break;
|
|
|
|
case AccuracyDisplayMode.MinimumAchievable:
|
|
Current.BindTo(scoreProcessor.MinimumAccuracy);
|
|
break;
|
|
|
|
case AccuracyDisplayMode.MaximumAchievable:
|
|
Current.BindTo(scoreProcessor.MaximumAccuracy);
|
|
break;
|
|
}
|
|
}, true);
|
|
|
|
// if the accuracy counter is using the "minimum achievable" mode,
|
|
// then its initial value is 0%, rather than the 100% that the base PercentageCounter assumes.
|
|
// to counteract this, manually finish transforms on DisplayedCount once after the initial callback above
|
|
// to stop it from rolling down from 100% to 0%.
|
|
FinishTransforms(targetMember: nameof(DisplayedCount));
|
|
}
|
|
|
|
public enum AccuracyDisplayMode
|
|
{
|
|
[Description("Standard")]
|
|
Standard,
|
|
|
|
[Description("Maximum achievable")]
|
|
MaximumAchievable,
|
|
|
|
[Description("Minimum achievable")]
|
|
MinimumAchievable
|
|
}
|
|
}
|
|
}
|