2021-11-18 06:47:41 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2021-08-08 21:56:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2021-08-08 21:56:03 +08:00
|
|
|
|
using System;
|
2021-11-12 18:29:51 +08:00
|
|
|
|
using System.Linq;
|
2021-08-08 21:56:03 +08:00
|
|
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2022-05-28 20:29:09 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Difficulty.Evaluators;
|
2021-11-12 18:29:51 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
2021-08-08 21:56:03 +08: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>
|
|
|
|
|
public class Flashlight : OsuStrainSkill
|
|
|
|
|
{
|
2022-06-13 19:43:54 +08:00
|
|
|
|
private readonly bool hasHiddenMod;
|
|
|
|
|
|
2021-11-21 20:43:09 +08:00
|
|
|
|
public Flashlight(Mod[] mods)
|
2021-08-08 21:56:03 +08:00
|
|
|
|
: base(mods)
|
|
|
|
|
{
|
2022-06-13 19:43:54 +08:00
|
|
|
|
hasHiddenMod = mods.Any(m => m is OsuModHidden);
|
2021-08-08 21:56:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-21 17:08:57 +08:00
|
|
|
|
private double skillMultiplier => 0.05;
|
2021-09-25 10:52:10 +08:00
|
|
|
|
private double strainDecayBase => 0.15;
|
2021-08-08 21:56:03 +08:00
|
|
|
|
protected override double DecayWeight => 1.0;
|
2021-11-08 08:53:51 +08:00
|
|
|
|
|
|
|
|
|
private double currentStrain;
|
2021-08-08 21:56:03 +08:00
|
|
|
|
|
2021-09-25 10:52:10 +08:00
|
|
|
|
private double strainDecay(double ms) => Math.Pow(strainDecayBase, ms / 1000);
|
|
|
|
|
|
2022-05-22 23:26:22 +08:00
|
|
|
|
protected override double CalculateInitialStrain(double time, DifficultyHitObject current) => currentStrain * strainDecay(time - current.Previous(0).StartTime);
|
2021-09-25 10:52:10 +08:00
|
|
|
|
|
|
|
|
|
protected override double StrainValueAt(DifficultyHitObject current)
|
|
|
|
|
{
|
|
|
|
|
currentStrain *= strainDecay(current.DeltaTime);
|
2022-06-13 19:43:54 +08:00
|
|
|
|
currentStrain += FlashlightEvaluator.EvaluateDifficultyOf(current, hasHiddenMod) * skillMultiplier;
|
2021-09-25 10:52:10 +08:00
|
|
|
|
|
|
|
|
|
return currentStrain;
|
|
|
|
|
}
|
2021-08-08 21:56:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|