osu/osu.Game.Rulesets.Osu/Difficulty/Skills/Flashlight.cs

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

49 lines
1.7 KiB
C#
Raw Normal View History

2021-11-17 22:47:41 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2021-08-08 13:56:03 +00:00
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Linq;
2021-08-08 13:56:03 +00:00
using osu.Game.Rulesets.Difficulty.Preprocessing;
2022-06-21 09:01:11 +00:00
using osu.Game.Rulesets.Difficulty.Skills;
2021-08-08 13:56:03 +00:00
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Osu.Difficulty.Evaluators;
using osu.Game.Rulesets.Osu.Mods;
2021-08-08 13:56:03 +00:00
namespace osu.Game.Rulesets.Osu.Difficulty.Skills
{
/// <summary>
/// Represents the skill required to memorise and hit every object in a map with the Flashlight mod enabled.
/// </summary>
2022-06-21 09:01:11 +00:00
public class Flashlight : StrainSkill
2021-08-08 13:56:03 +00:00
{
2022-06-13 11:43:54 +00:00
private readonly bool hasHiddenMod;
public Flashlight(Mod[] mods)
2021-08-08 13:56:03 +00:00
: base(mods)
{
2022-06-13 11:43:54 +00:00
hasHiddenMod = mods.Any(m => m is OsuModHidden);
2021-08-08 13:56:03 +00:00
}
2022-08-27 08:31:07 +00:00
private double skillMultiplier => 0.052;
private double strainDecayBase => 0.15;
private double currentStrain;
2021-08-08 13:56:03 +00:00
private double strainDecay(double ms) => Math.Pow(strainDecayBase, ms / 1000);
protected override double CalculateInitialStrain(double time, DifficultyHitObject current) => currentStrain * strainDecay(time - current.Previous(0).StartTime);
protected override double StrainValueAt(DifficultyHitObject current)
{
currentStrain *= strainDecay(current.DeltaTime);
2022-06-13 11:43:54 +00:00
currentStrain += FlashlightEvaluator.EvaluateDifficultyOf(current, hasHiddenMod) * skillMultiplier;
return currentStrain;
}
2022-06-21 09:01:11 +00:00
2022-06-29 07:08:59 +00:00
public override double DifficultyValue() => GetCurrentStrainPeaks().Sum() * OsuStrainSkill.DEFAULT_DIFFICULTY_MULTIPLIER;
public static double DifficultyToPerformance(double difficulty) => 25 * Math.Pow(difficulty, 2);
2021-08-08 13:56:03 +00:00
}
}