mirror of
https://github.com/ppy/osu.git
synced 2024-11-16 02:11:05 +08:00
Remove clockrate factor
This commit is contained in:
parent
94a46ab640
commit
c18df86720
@ -40,8 +40,8 @@ namespace osu.Game.Rulesets.Osu.Difficulty
|
|||||||
|
|
||||||
double sliderFactor = aimRating > 0 ? aimRatingNoSliders / aimRating : 1;
|
double sliderFactor = aimRating > 0 ? aimRatingNoSliders / aimRating : 1;
|
||||||
|
|
||||||
double aimDifficultyStrainCount = ((OsuStrainSkill)skills[0]).CountDifficultStrains(clockRate);
|
double aimDifficultyStrainCount = ((OsuStrainSkill)skills[0]).CountDifficultStrains();
|
||||||
double speedDifficultyStrainCount = ((OsuStrainSkill)skills[2]).CountDifficultStrains(clockRate);
|
double speedDifficultyStrainCount = ((OsuStrainSkill)skills[2]).CountDifficultStrains();
|
||||||
|
|
||||||
if (mods.Any(h => h is OsuModRelax))
|
if (mods.Any(h => h is OsuModRelax))
|
||||||
speedRating = 0.0;
|
speedRating = 0.0;
|
||||||
|
@ -64,12 +64,11 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
|
|||||||
/// Returns the number of strains weighted against the top strain.
|
/// Returns the number of strains weighted against the top strain.
|
||||||
/// The result is scaled by clock rate as it affects the total number of strains.
|
/// The result is scaled by clock rate as it affects the total number of strains.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public double CountDifficultStrains(double clockRate)
|
public double CountDifficultStrains()
|
||||||
{
|
{
|
||||||
double topStrain = objectStrains.Max();
|
double topStrain = objectStrains.Max();
|
||||||
|
|
||||||
double realtimeCount = objectStrains.Sum(s => Math.Pow(s / topStrain, 4));
|
return objectStrains.Sum(s => Math.Pow(s / topStrain, 4));
|
||||||
return clockRate * realtimeCount;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user