mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
49 lines
1.7 KiB
C#
49 lines
1.7 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
|
using osu.Game.Rulesets.Difficulty.Skills;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Osu.Difficulty.Evaluators;
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
|
|
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>
|
|
public class Flashlight : StrainSkill
|
|
{
|
|
private readonly bool hasHiddenMod;
|
|
|
|
public Flashlight(Mod[] mods)
|
|
: base(mods)
|
|
{
|
|
hasHiddenMod = mods.Any(m => m is OsuModHidden);
|
|
}
|
|
|
|
private double skillMultiplier => 0.052;
|
|
private double strainDecayBase => 0.15;
|
|
|
|
private double currentStrain;
|
|
|
|
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);
|
|
currentStrain += FlashlightEvaluator.EvaluateDifficultyOf(current, hasHiddenMod) * skillMultiplier;
|
|
|
|
return currentStrain;
|
|
}
|
|
|
|
public override double DifficultyValue() => GetCurrentStrainPeaks().Sum() * OsuStrainSkill.DEFAULT_DIFFICULTY_MULTIPLIER;
|
|
}
|
|
}
|