mirror of
https://github.com/ppy/osu.git
synced 2025-02-09 13:13:04 +08:00
Add constant angle nerf to note density difficulty
This commit is contained in:
parent
f42004f18d
commit
b6d4fbf8b5
@ -53,14 +53,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Evaluators
|
|||||||
}
|
}
|
||||||
|
|
||||||
noteDensityDifficulty = Math.Pow(3 * Math.Log(Math.Max(1, pastObjectDifficultyInfluence - 1)), 2.3);
|
noteDensityDifficulty = Math.Pow(3 * Math.Log(Math.Max(1, pastObjectDifficultyInfluence - 1)), 2.3);
|
||||||
|
noteDensityDifficulty *= getConstantAngleNerfFactor(currObj);
|
||||||
// Objects that are arranged in a mostly-linear fashion should be easy to read (such as circles in a stream).
|
|
||||||
if (currObj.Angle.IsNotNull() && prevObj.IsNotNull())
|
|
||||||
{
|
|
||||||
double prevVelocity = prevObj.LazyJumpDistance / prevObj.StrainTime;
|
|
||||||
double velocityDifference = Math.Clamp(Math.Abs(currVelocity - prevVelocity), 0, 1);
|
|
||||||
noteDensityDifficulty *= 1 - velocityDifference * Math.Pow(Math.Sin(0.5 * currObj.Angle.Value), 5);
|
|
||||||
}
|
|
||||||
|
|
||||||
double hiddenDifficulty = 0;
|
double hiddenDifficulty = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user