1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 16:07:31 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/GameplayAccuracyCounter.cs

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

55 lines
1.6 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-12-30 22:24:41 +08:00
using System.ComponentModel;
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
{
public abstract partial class GameplayAccuracyCounter : PercentageCounter
{
2022-12-30 22:24:41 +08:00
[SettingSource("Accuracy Display Mode", "Which Accuracy will display")]
2022-12-30 22:06:10 +08:00
public Bindable<AccuracyType> AccuracyDisplay { get; } = new Bindable<AccuracyType>();
2022-12-30 20:19:46 +08:00
[BackgroundDependencyLoader]
private void load(ScoreProcessor scoreProcessor)
{
2022-12-30 22:06:10 +08:00
AccuracyDisplay.BindValueChanged(mod =>
2022-12-30 20:19:46 +08:00
{
Current.UnbindBindings();
switch (mod.NewValue)
{
2022-12-30 22:24:41 +08:00
case AccuracyType.Rolling:
2022-12-30 20:19:46 +08:00
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
{
2022-12-30 22:24:41 +08:00
[Description("Rolling")]
Rolling,
[Description("Best achievable")]
2022-12-30 20:19:46 +08:00
Increase,
2022-12-30 22:24:41 +08:00
[Description("Worst achievable")]
2022-12-30 20:19:46 +08:00
Decrease
}
}
}