1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 19:12:54 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Difficulty/Evaluators/CognitionEvaluator.cs
2022-06-24 15:48:50 +01:00

77 lines
3.0 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.
using System;
using osu.Framework.Extensions.ObjectExtensions;
using osu.Game.Rulesets.Difficulty.Preprocessing;
using osu.Game.Rulesets.Osu.Difficulty.Preprocessing;
using osu.Game.Rulesets.Osu.Objects;
namespace osu.Game.Rulesets.Osu.Difficulty.Evaluators
{
public static class CognitionEvaluator
{
public static double EvaluateDifficultyOf(DifficultyHitObject current, bool hidden)
{
if (current.BaseObject is Spinner)
return 0;
var currObj = (OsuDifficultyHitObject)current;
double currVelocity = currObj.LazyJumpDistance / currObj.StrainTime;
double noteDensity = 1.0;
// This loop sucks so much lol.
// Will be replaced in conjuction with the "objects with current visible" and the "currently visible objects" lists
// Also variable names like opacity and note density don't seem accurate anymore :face_with_monocole:...
for (int i = 0; i < 100; i++)
{
if (currObj.Next(i + 1).IsNull())
break;
var currLoopObj = (OsuDifficultyHitObject)currObj.Next(i);
var nextLoopObj = (OsuDifficultyHitObject)currObj.Next(i + 1);
double opacity = currLoopObj.OpacityAt(currObj.BaseObject.StartTime, false);
if (opacity == 0)
break;
// Small distances means objects may be cheesed, so it doesn't matter whether they are arranged confusingly.
opacity *= logistic((currLoopObj.MinimumJumpDistance - 100) / 15);
// Objects that are arranged in a mostly-linear fashion should be easy to read (such as circles in a stream).
if (nextLoopObj.Angle.IsNotNull())
opacity *= 1 - Math.Pow(Math.Sin(0.5 * nextLoopObj.Angle.Value), 5);
noteDensity += opacity;
}
double noteDensityDifficulty = Math.Pow(Math.Max(0, noteDensity - 2), 2);
double hiddenDifficulty = 0;
if (hidden)
{
noteDensityDifficulty *= 3.2;
// Really not sure about this, but without this a lot of normal HD plays become underweight.
hiddenDifficulty = 7 * currObj.LazyJumpDistance / currObj.StrainTime;
}
double preemptDifficulty = 0.0;
if (currObj.preempt < 400)
preemptDifficulty += Math.Pow(400 - currObj.preempt, 1.5) / 14;
// Buff rhythm on high AR.
preemptDifficulty *= RhythmEvaluator.EvaluateDifficultyOf(current, 30);
double difficulty = Math.Max(preemptDifficulty, hiddenDifficulty) + noteDensityDifficulty;
return difficulty;
}
private static double logistic(double x) => 1 / (1 + Math.Pow(Math.E, -x));
}
}