2022-05-24 22:23:44 +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 ;
2022-06-09 12:15:15 +08:00
using System.Globalization ;
2022-05-24 22:23:44 +08:00
using System.Linq ;
using osu.Framework.Bindables ;
2023-01-17 16:03:04 +08:00
using osu.Framework.Localisation ;
2022-05-24 22:23:44 +08:00
using osu.Game.Configuration ;
2023-04-26 16:40:25 +08:00
using osu.Game.Localisation.HUD ;
2022-05-24 22:23:44 +08:00
using osu.Game.Overlays.Settings ;
using osu.Game.Rulesets.Scoring ;
using osu.Game.Rulesets.Judgements ;
2023-01-17 16:03:04 +08:00
using osu.Game.Scoring ;
2022-05-24 22:23:44 +08:00
namespace osu.Game.Rulesets.Mods
{
2023-01-17 16:03:04 +08:00
public class ModAccuracyChallenge : ModFailCondition , IApplicableToScoreProcessor
2022-05-24 22:23:44 +08:00
{
public override string Name = > "Accuracy Challenge" ;
2023-01-17 16:03:04 +08:00
2022-05-24 22:23:44 +08:00
public override string Acronym = > "AC" ;
2023-01-17 16:03:04 +08:00
public override LocalisableString Description = > "Fail if your accuracy drops too low!" ;
2022-05-24 22:23:44 +08:00
public override ModType Type = > ModType . DifficultyIncrease ;
2023-01-17 16:03:04 +08:00
2022-05-24 22:23:44 +08:00
public override double ScoreMultiplier = > 1.0 ;
2023-01-17 16:03:04 +08:00
2022-05-25 08:04:57 +08:00
public override Type [ ] IncompatibleMods = > base . IncompatibleMods . Concat ( new [ ] { typeof ( ModEasyWithExtraLives ) , typeof ( ModPerfect ) } ) . ToArray ( ) ;
2023-01-17 16:03:04 +08:00
2022-05-25 08:04:57 +08:00
public override bool RequiresConfiguration = > false ;
2023-01-17 16:03:04 +08:00
2022-06-09 12:15:15 +08:00
public override string SettingDescription = > base . SettingDescription . Replace ( MinimumAccuracy . ToString ( ) , MinimumAccuracy . Value . ToString ( "##%" , NumberFormatInfo . InvariantInfo ) ) ;
2022-05-24 22:23:44 +08:00
2023-03-08 02:43:52 +08:00
[SettingSource("Minimum accuracy", "Trigger a failure if your accuracy goes below this value.", SettingControlType = typeof(SettingsPercentageSlider<double>))]
2022-05-24 22:23:44 +08:00
public BindableNumber < double > MinimumAccuracy { get ; } = new BindableDouble
{
2023-01-24 13:31:46 +08:00
MinValue = 0.60 ,
2023-05-28 08:50:11 +08:00
MaxValue = 0.99 ,
Precision = 0.01 ,
2022-05-24 22:23:44 +08:00
Default = 0.9 ,
Value = 0.9 ,
} ;
2023-04-26 16:40:25 +08:00
[SettingSource("Accuracy Mode", "The Accuracy mode that will be used to Judge.")]
public Bindable < AccuracyMode > AccuracyJudgeMode { get ; } = new Bindable < AccuracyMode > ( ) ;
2023-01-17 16:03:04 +08:00
2023-04-26 16:40:25 +08:00
private readonly Bindable < double > currentAccuracy = new Bindable < double > ( ) ;
2023-01-17 16:03:04 +08:00
2023-04-26 16:40:25 +08:00
public void ApplyToScoreProcessor ( ScoreProcessor scoreProcessor )
2022-05-24 22:23:44 +08:00
{
2023-04-26 16:40:25 +08:00
switch ( AccuracyJudgeMode . Value )
{
case AccuracyMode . Standard :
currentAccuracy . BindTo ( scoreProcessor . Accuracy ) ;
break ;
case AccuracyMode . MaximumAchievable :
currentAccuracy . BindTo ( scoreProcessor . MaximumAccuracy ) ;
break ;
}
currentAccuracy . BindValueChanged ( s = >
{
if ( s . NewValue < MinimumAccuracy . Value )
{
TriggerFailure ( ) ;
}
} ) ;
2023-01-18 17:08:58 +08:00
}
2023-04-26 16:40:25 +08:00
public ScoreRank AdjustRank ( ScoreRank rank , double accuracy ) = > rank ;
protected override bool FailCondition ( HealthProcessor healthProcessor , JudgementResult result ) = > false ;
2023-01-18 17:08:58 +08:00
2023-04-26 16:40:25 +08:00
public enum AccuracyMode
{
[LocalisableDescription(typeof(GameplayAccuracyCounterStrings), nameof(GameplayAccuracyCounterStrings.AccuracyDisplayModeMax))]
MaximumAchievable ,
2023-05-27 20:27:32 +08:00
[LocalisableDescription(typeof(GameplayAccuracyCounterStrings), nameof(GameplayAccuracyCounterStrings.AccuracyDisplayModeStandard))]
Standard ,
2022-05-24 22:23:44 +08:00
}
}
}