1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 13:57:29 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/GameplayAccuracyCounter.cs

51 lines
1.4 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.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Allocation;
2022-12-30 20:19:46 +08:00
using osu.Framework.Bindables;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Screens.Play.HUD
{
2022-11-24 13:32:20 +08:00
public abstract partial class GameplayAccuracyCounter : PercentageCounter
{
2022-12-30 20:19:46 +08:00
[SettingSource("Accuracy Display Mode")]
public Bindable<AccuracyType> AccType { get; } = new Bindable<AccuracyType>();
[BackgroundDependencyLoader]
private void load(ScoreProcessor scoreProcessor)
{
2022-12-30 20:19:46 +08:00
AccType.BindValueChanged(mod =>
{
Current.UnbindBindings();
switch (mod.NewValue)
{
case AccuracyType.Current:
Current.BindTo(scoreProcessor.Accuracy);
break;
case AccuracyType.Increase:
Current.BindTo(scoreProcessor.IncreaseAccuracy);
break;
case AccuracyType.Decrease:
Current.BindTo(scoreProcessor.DecreaseAccuracy);
break;
}
}, true);
}
public enum AccuracyType
{
Current,
Increase,
Decrease
}
}
}