1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 09:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Difficulty/Skills/OsuSkill.cs

45 lines
1.3 KiB
C#
Raw Normal View History

2021-06-13 21:18:35 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using osu.Game.Rulesets.Difficulty.Preprocessing;
using osu.Game.Rulesets.Difficulty.Skills;
using osu.Game.Rulesets.Mods;
using System.Linq;
namespace osu.Game.Rulesets.Osu.Difficulty.Skills
{
public abstract class OsuSkill : StrainSkill
{
public OsuSkill(Mod[] mods) : base(mods)
{
}
public double OsuDifficultyValue()
{
double difficulty = 0;
double weight = 1;
double strainMultiplier;
List<double> strains = GetCurrentStrainPeaks().OrderByDescending(d => d).ToList();
2021-06-14 03:20:08 +08:00
double baseLine = 0.68;
2021-06-13 21:18:35 +08:00
for (int i = 0; i <= 9; i++)
{
strainMultiplier = baseLine + Math.Log10(i+1) * (1.0 - baseLine);
strains[i] = strains[i] * strainMultiplier;
}
// Difficulty is the weighted sum of the highest strains from every section.
// We're sorting from highest to lowest strain.
foreach (double strain in strains.OrderByDescending(d => d))
{
difficulty += strain * weight;
weight *= DecayWeight;
}
return difficulty * 1.06;
}
}
}