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 ;
using osu.Game.Graphics.UserInterface ;
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
[SettingSource("Minimum accuracy", "Trigger a failure if your accuracy goes below this value.", SettingControlType = typeof(SettingsSlider<double, PercentSlider>))]
public BindableNumber < double > MinimumAccuracy { get ; } = new BindableDouble
{
2022-05-25 08:04:57 +08:00
MinValue = 0.01 ,
2022-06-07 00:05:45 +08:00
MaxValue = 0.99 ,
2022-05-24 22:23:44 +08:00
Precision = 0.01 ,
Default = 0.9 ,
Value = 0.9 ,
} ;
2023-01-17 16:03:04 +08:00
private ScoreProcessor scoreProcessor = null ! ;
public void ApplyToScoreProcessor ( ScoreProcessor scoreProcessor )
{
this . scoreProcessor = scoreProcessor ;
}
public ScoreRank AdjustRank ( ScoreRank rank , double accuracy ) = > rank ;
2022-05-24 22:23:44 +08:00
protected override bool FailCondition ( HealthProcessor healthProcessor , JudgementResult result )
{
2022-05-26 03:11:06 +08:00
// accuracy calculation logic taken from `ScoreProcessor`. should be updated here if the formula ever changes.
2022-05-24 22:23:44 +08:00
if ( ! result . Type . IsScorable ( ) | | result . Type . IsBonus ( ) )
return false ;
2023-01-17 16:03:04 +08:00
return scoreProcessor . Accuracy . Value < MinimumAccuracy . Value ;
2022-05-24 22:23:44 +08:00
}
}
2023-01-17 16:03:04 +08:00
public partial class PercentSlider : OsuSliderBar < double >
2022-05-24 22:23:44 +08:00
{
public PercentSlider ( )
{
DisplayAsPercentage = true ;
}
}
}