2022-06-21 15:54:27 +08:00
|
|
|
// 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;
|
2022-07-20 02:17:16 +08:00
|
|
|
using System.Collections.Generic;
|
2024-02-23 23:44:56 +08:00
|
|
|
using System.Linq;
|
2022-08-09 20:43:12 +08:00
|
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
2022-06-21 15:54:27 +08:00
|
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
|
|
|
using osu.Game.Rulesets.Osu.Difficulty.Preprocessing;
|
2022-06-21 20:15:31 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2022-06-21 15:54:27 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Difficulty.Evaluators
|
|
|
|
{
|
2024-02-03 03:15:05 +08:00
|
|
|
// Main class with some util functions
|
2022-10-19 02:13:25 +08:00
|
|
|
public static class ReadingEvaluator
|
2022-06-21 15:54:27 +08:00
|
|
|
{
|
2022-10-19 02:13:25 +08:00
|
|
|
private const double reading_window_size = 3000;
|
2022-08-11 02:09:42 +08:00
|
|
|
|
2024-01-24 07:51:13 +08:00
|
|
|
private const double overlap_multiplier = 0.8;
|
2024-01-08 20:53:38 +08:00
|
|
|
|
2024-02-24 01:52:00 +08:00
|
|
|
public static double EvaluateDenstityOf(DifficultyHitObject current)
|
2022-06-21 15:54:27 +08:00
|
|
|
{
|
2024-02-24 01:52:00 +08:00
|
|
|
var currObj = (OsuDifficultyHitObject)current;
|
2024-02-23 23:44:56 +08:00
|
|
|
double density = 0;
|
|
|
|
double densityAnglesNerf = -2; // we have threshold of 2, so 2 or same angles won't be punished
|
2022-08-11 03:04:38 +08:00
|
|
|
|
2024-02-23 23:44:56 +08:00
|
|
|
OsuDifficultyHitObject? prevObj0 = null;
|
|
|
|
OsuDifficultyHitObject? prevObj1 = null;
|
|
|
|
OsuDifficultyHitObject? prevObj2 = null;
|
|
|
|
|
|
|
|
double prevConstantAngle = 0;
|
|
|
|
|
|
|
|
foreach (var loopObj in retrievePastVisibleObjects(currObj).Reverse())
|
2022-07-20 02:17:16 +08:00
|
|
|
{
|
2022-08-11 02:09:42 +08:00
|
|
|
double loopDifficulty = currObj.OpacityAt(loopObj.BaseObject.StartTime, false);
|
2022-08-09 20:43:12 +08:00
|
|
|
|
2022-08-11 02:09:42 +08:00
|
|
|
// Small distances means objects may be cheesed, so it doesn't matter whether they are arranged confusingly.
|
2024-02-24 01:52:00 +08:00
|
|
|
loopDifficulty *= logistic((loopObj.MinimumJumpDistance - 30) / 10);
|
2022-08-09 20:43:12 +08:00
|
|
|
|
2024-02-23 23:44:56 +08:00
|
|
|
// Reduce density bonus for this object if they're too apart in time
|
|
|
|
// Nerf starts on 1500ms and reaches maximum (*=0) on 3000ms
|
2024-01-21 04:59:35 +08:00
|
|
|
double timeBetweenCurrAndLoopObj = currObj.StartTime - loopObj.StartTime;
|
2022-08-26 07:05:38 +08:00
|
|
|
loopDifficulty *= getTimeNerfFactor(timeBetweenCurrAndLoopObj);
|
|
|
|
|
2024-02-23 23:44:56 +08:00
|
|
|
if (prevObj0.IsNull())
|
|
|
|
{
|
|
|
|
prevObj0 = loopObj;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
density += loopDifficulty;
|
|
|
|
|
|
|
|
// Angles nerf
|
|
|
|
|
|
|
|
if (loopObj.Angle.IsNotNull() && prevObj0.Angle.IsNotNull())
|
|
|
|
{
|
|
|
|
double angleDifference = Math.Abs(prevObj0.Angle.Value - loopObj.Angle.Value);
|
|
|
|
|
|
|
|
// Nerf alternating angles case
|
|
|
|
if (prevObj1.IsNotNull() && prevObj2.IsNotNull() && prevObj1.Angle.IsNotNull() && prevObj2.Angle.IsNotNull())
|
|
|
|
{
|
|
|
|
// Normalized difference
|
|
|
|
double angleDifference1 = Math.Abs(prevObj1.Angle.Value - loopObj.Angle.Value) / Math.PI;
|
|
|
|
double angleDifference2 = Math.Abs(prevObj2.Angle.Value - prevObj0.Angle.Value) / Math.PI;
|
|
|
|
|
|
|
|
// Will be close to 1 if angleDifference1 and angleDifference2 was both close to 0
|
|
|
|
double alternatingFactor = Math.Pow((1 - angleDifference1) * (1 - angleDifference2), 2);
|
|
|
|
|
|
|
|
// Be sure to nerf only same rhythms
|
|
|
|
double rhythmFactor = 1 - getRhythmDifference(loopObj.StrainTime, prevObj0.StrainTime); // 0 on different rhythm, 1 on same rhythm
|
|
|
|
rhythmFactor *= 1 - getRhythmDifference(prevObj0.StrainTime, prevObj1.StrainTime);
|
|
|
|
rhythmFactor *= 1 - getRhythmDifference(prevObj1.StrainTime, prevObj2.StrainTime);
|
|
|
|
|
|
|
|
double acuteAngleFactor = 1 - Math.Min(loopObj.Angle.Value, prevObj0.Angle.Value) / Math.PI;
|
|
|
|
|
|
|
|
double prevAngleAdjust = Math.Max(angleDifference - angleDifference1, 0);
|
|
|
|
|
|
|
|
prevAngleAdjust *= alternatingFactor; // Nerf if alternating
|
|
|
|
prevAngleAdjust *= rhythmFactor; // Nerf if same rhythms
|
|
|
|
prevAngleAdjust *= acuteAngleFactor;
|
|
|
|
|
|
|
|
angleDifference -= prevAngleAdjust;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reduce angles nerf if objects are too apart in time
|
|
|
|
// Angle nerf is starting being reduced from 200ms (150BPM jump) and it reduced to 0 on 2000ms
|
|
|
|
double longIntervalFactor = Math.Clamp(1 - (loopObj.StrainTime - 200) / (2000 - 200), 0, 1);
|
|
|
|
|
|
|
|
// Current angle nerf. Angle difference less than 15 degrees is considered the same
|
|
|
|
double currConstantAngle = Math.Cos(4 * Math.Min(Math.PI / 12, angleDifference)) * longIntervalFactor;
|
|
|
|
|
|
|
|
// Apply the nerf only when it's repeated
|
|
|
|
double currentAngleNerf = Math.Min(currConstantAngle, prevConstantAngle);
|
|
|
|
|
|
|
|
densityAnglesNerf += Math.Min(currentAngleNerf, loopDifficulty);
|
|
|
|
prevConstantAngle = currConstantAngle;
|
|
|
|
}
|
|
|
|
|
|
|
|
prevObj2 = prevObj1;
|
|
|
|
prevObj1 = prevObj0;
|
|
|
|
prevObj0 = loopObj;
|
2024-01-25 07:21:11 +08:00
|
|
|
}
|
|
|
|
|
2024-02-23 23:44:56 +08:00
|
|
|
// Apply angles nerf
|
|
|
|
density -= Math.Max(0, densityAnglesNerf);
|
|
|
|
return density;
|
2024-01-25 07:21:11 +08:00
|
|
|
}
|
|
|
|
|
2024-01-29 05:51:56 +08:00
|
|
|
public static double CalculateOverlapDifficultyOf(OsuDifficultyHitObject currObj)
|
2024-01-25 07:21:11 +08:00
|
|
|
{
|
|
|
|
double screenOverlapDifficulty = 0;
|
2024-01-08 20:53:38 +08:00
|
|
|
|
2024-01-25 07:21:11 +08:00
|
|
|
foreach (var loopObj in retrievePastVisibleObjects(currObj))
|
|
|
|
{
|
2024-01-08 20:53:38 +08:00
|
|
|
double lastOverlapness = 0;
|
|
|
|
foreach (var overlapObj in loopObj.OverlapObjects)
|
|
|
|
{
|
|
|
|
if (overlapObj.HitObject.StartTime + overlapObj.HitObject.Preempt > currObj.StartTime) break;
|
|
|
|
lastOverlapness = overlapObj.Overlapness;
|
|
|
|
}
|
|
|
|
screenOverlapDifficulty += lastOverlapness;
|
2022-06-21 15:54:27 +08:00
|
|
|
}
|
|
|
|
|
2024-01-25 07:21:11 +08:00
|
|
|
return screenOverlapDifficulty;
|
|
|
|
}
|
2024-02-24 01:52:00 +08:00
|
|
|
public static double EvaluateDifficultyOf(DifficultyHitObject current)
|
2024-01-25 07:21:11 +08:00
|
|
|
{
|
|
|
|
if (current.BaseObject is Spinner || current.Index == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
var currObj = (OsuDifficultyHitObject)current;
|
|
|
|
|
2024-02-24 01:52:00 +08:00
|
|
|
double pastObjectDifficultyInfluence = EvaluateDenstityOf(current);
|
2024-01-29 05:51:56 +08:00
|
|
|
double screenOverlapDifficulty = CalculateOverlapDifficultyOf(currObj);
|
2024-01-08 20:53:38 +08:00
|
|
|
|
2024-01-21 04:59:35 +08:00
|
|
|
double difficulty = Math.Pow(4 * Math.Log(Math.Max(1, pastObjectDifficultyInfluence)), 2.3);
|
2022-10-05 08:32:05 +08:00
|
|
|
|
2024-01-21 04:59:35 +08:00
|
|
|
screenOverlapDifficulty = Math.Max(0, screenOverlapDifficulty - 0.5); // make overlap value =1 cost significantly less
|
2024-01-29 05:51:56 +08:00
|
|
|
|
|
|
|
double overlapBonus = overlap_multiplier * screenOverlapDifficulty * difficulty;
|
|
|
|
difficulty += overlapBonus;
|
2022-06-21 15:54:27 +08:00
|
|
|
|
2024-01-29 05:51:56 +08:00
|
|
|
//difficulty *= 1 + overlap_multiplier * screenOverlapDifficulty;
|
2022-08-11 03:04:38 +08:00
|
|
|
|
2024-01-21 04:59:35 +08:00
|
|
|
return difficulty;
|
|
|
|
}
|
2022-08-11 03:04:38 +08:00
|
|
|
|
2024-01-27 04:32:23 +08:00
|
|
|
// Returns value from 0 to 1, where 0 is very predictable and 1 is very unpredictable
|
|
|
|
public static double EvaluateInpredictabilityOf(DifficultyHitObject current)
|
2024-01-21 04:59:35 +08:00
|
|
|
{
|
2024-01-27 04:32:23 +08:00
|
|
|
// make the sum equal to 1
|
2024-02-03 03:15:05 +08:00
|
|
|
const double velocity_change_part = 0.25;
|
|
|
|
const double angle_change_part = 0.45;
|
|
|
|
const double rhythm_change_part = 0.3;
|
2024-01-27 04:32:23 +08:00
|
|
|
|
|
|
|
if (current.BaseObject is Spinner || current.Index == 0 || current.Previous(0).BaseObject is Spinner)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
var osuCurrObj = (OsuDifficultyHitObject)current;
|
|
|
|
var osuLastObj = (OsuDifficultyHitObject)current.Previous(0);
|
|
|
|
|
2024-02-03 03:15:05 +08:00
|
|
|
// Rhythm difference punishment for velocity and angle bonuses
|
|
|
|
double rhythmSimilarity = 1 - getRhythmDifference(osuCurrObj.StrainTime, osuLastObj.StrainTime);
|
|
|
|
|
|
|
|
// Make differentiation going from 1/4 to 1/2 and bigger difference
|
|
|
|
// To 1/3 to 1/2 and smaller difference
|
|
|
|
rhythmSimilarity = Math.Clamp(rhythmSimilarity, 0.5, 0.75);
|
|
|
|
rhythmSimilarity = 4 * (rhythmSimilarity - 0.5);
|
|
|
|
|
|
|
|
double velocityChangeBonus = getVelocityChangeFactor(osuCurrObj, osuLastObj) * rhythmSimilarity;
|
2024-01-27 04:32:23 +08:00
|
|
|
|
|
|
|
double currVelocity = osuCurrObj.LazyJumpDistance / osuCurrObj.StrainTime;
|
|
|
|
double prevVelocity = osuLastObj.LazyJumpDistance / osuLastObj.StrainTime;
|
|
|
|
|
|
|
|
double angleChangeBonus = 0;
|
|
|
|
|
|
|
|
if (osuCurrObj.Angle != null && osuLastObj.Angle != null && currVelocity > 0 && prevVelocity > 0)
|
|
|
|
{
|
|
|
|
angleChangeBonus = Math.Pow(Math.Sin((double)((osuCurrObj.Angle - osuLastObj.Angle) / 2)), 2); // Also stealed from xexxar
|
|
|
|
angleChangeBonus *= Math.Min(currVelocity, prevVelocity) / Math.Max(currVelocity, prevVelocity); // Prevent cheesing
|
|
|
|
}
|
|
|
|
|
2024-02-03 03:15:05 +08:00
|
|
|
angleChangeBonus *= rhythmSimilarity;
|
|
|
|
|
|
|
|
// This bonus only awards rhythm changes if they're not filled with sliderends
|
2024-01-27 04:32:23 +08:00
|
|
|
double rhythmChangeBonus = 0;
|
|
|
|
|
|
|
|
if (current.Index > 1)
|
|
|
|
{
|
|
|
|
var osuLastLastObj = (OsuDifficultyHitObject)current.Previous(1);
|
|
|
|
|
|
|
|
double currDelta = osuCurrObj.StrainTime;
|
|
|
|
double lastDelta = osuLastObj.StrainTime;
|
|
|
|
|
|
|
|
if (osuLastObj.BaseObject is Slider sliderCurr)
|
|
|
|
{
|
|
|
|
currDelta -= sliderCurr.Duration / osuCurrObj.ClockRate;
|
|
|
|
currDelta = Math.Max(0, currDelta);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (osuLastLastObj.BaseObject is Slider sliderLast)
|
|
|
|
{
|
|
|
|
lastDelta -= sliderLast.Duration / osuLastObj.ClockRate;
|
|
|
|
lastDelta = Math.Max(0, lastDelta);
|
|
|
|
}
|
|
|
|
|
2024-01-29 05:51:56 +08:00
|
|
|
rhythmChangeBonus = getRhythmDifference(currDelta, lastDelta);
|
2024-01-27 04:32:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
double result = velocity_change_part * velocityChangeBonus + angle_change_part * angleChangeBonus + rhythm_change_part * rhythmChangeBonus;
|
|
|
|
return result;
|
2022-06-21 15:54:27 +08:00
|
|
|
}
|
|
|
|
|
2024-02-03 03:15:05 +08:00
|
|
|
private static double getVelocityChangeFactor(OsuDifficultyHitObject osuCurrObj, OsuDifficultyHitObject osuLastObj)
|
2024-01-29 05:51:56 +08:00
|
|
|
{
|
2024-02-03 03:15:05 +08:00
|
|
|
double currVelocity = osuCurrObj.LazyJumpDistance / osuCurrObj.StrainTime;
|
|
|
|
double prevVelocity = osuLastObj.LazyJumpDistance / osuLastObj.StrainTime;
|
2024-01-29 05:51:56 +08:00
|
|
|
|
2024-02-03 03:15:05 +08:00
|
|
|
double velocityChangeFactor = 0;
|
2024-01-29 05:51:56 +08:00
|
|
|
|
2024-02-03 03:15:05 +08:00
|
|
|
// https://www.desmos.com/calculator/kqxmqc8pkg
|
|
|
|
if (currVelocity > 0 || prevVelocity > 0)
|
|
|
|
{
|
|
|
|
double velocityChange = Math.Max(0,
|
|
|
|
Math.Min(
|
|
|
|
Math.Abs(prevVelocity - currVelocity) - 0.5 * Math.Min(currVelocity, prevVelocity),
|
|
|
|
Math.Max(((OsuHitObject)osuCurrObj.BaseObject).Radius / Math.Max(osuCurrObj.StrainTime, osuLastObj.StrainTime), Math.Min(currVelocity, prevVelocity))
|
|
|
|
)); // Stealed from xexxar
|
|
|
|
velocityChangeFactor = velocityChange / Math.Max(currVelocity, prevVelocity); // maxiumum is 0.4
|
|
|
|
velocityChangeFactor /= 0.4;
|
|
|
|
}
|
2024-01-29 05:51:56 +08:00
|
|
|
|
2024-02-03 03:15:05 +08:00
|
|
|
return velocityChangeFactor;
|
2024-01-29 05:51:56 +08:00
|
|
|
}
|
|
|
|
|
2022-07-20 02:17:16 +08:00
|
|
|
// Returns a list of objects that are visible on screen at
|
|
|
|
// the point in time at which the current object becomes visible.
|
2022-10-19 19:56:21 +08:00
|
|
|
private static IEnumerable<OsuDifficultyHitObject> retrievePastVisibleObjects(OsuDifficultyHitObject current)
|
2022-07-20 02:17:16 +08:00
|
|
|
{
|
|
|
|
for (int i = 0; i < current.Index; i++)
|
|
|
|
{
|
2022-10-19 19:56:21 +08:00
|
|
|
OsuDifficultyHitObject hitObject = (OsuDifficultyHitObject)current.Previous(i);
|
2022-07-20 02:17:16 +08:00
|
|
|
|
2022-10-19 19:56:21 +08:00
|
|
|
if (hitObject.IsNull() ||
|
|
|
|
current.StartTime - hitObject.StartTime > reading_window_size ||
|
2022-10-19 20:00:00 +08:00
|
|
|
hitObject.StartTime < current.StartTime - current.Preempt)
|
2022-07-20 02:17:16 +08:00
|
|
|
break;
|
|
|
|
|
2022-10-19 19:56:21 +08:00
|
|
|
yield return hitObject;
|
2022-07-20 02:17:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-26 07:05:38 +08:00
|
|
|
private static double getTimeNerfFactor(double deltaTime)
|
|
|
|
{
|
2022-10-19 19:56:21 +08:00
|
|
|
return Math.Clamp(2 - deltaTime / (reading_window_size / 2), 0, 1);
|
2022-08-26 07:05:38 +08:00
|
|
|
}
|
|
|
|
|
2024-01-29 05:51:56 +08:00
|
|
|
private static double getRhythmDifference(double t1, double t2) => 1 - Math.Min(t1, t2) / Math.Max(t1, t2);
|
2024-01-08 20:53:38 +08:00
|
|
|
private static double logistic(double x) => 1 / (1 + Math.Exp(-x));
|
2022-06-21 15:54:27 +08:00
|
|
|
}
|
|
|
|
}
|