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

214 lines
8.8 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2018-12-18 08:38:02 +08:00
using System;
using osu.Game.Rulesets.Difficulty.Preprocessing;
using osu.Game.Rulesets.Mods;
2018-05-15 16:36:29 +08:00
using osu.Game.Rulesets.Osu.Difficulty.Preprocessing;
2019-02-18 13:58:33 +08:00
using osu.Game.Rulesets.Osu.Objects;
2018-04-13 17:19:50 +08:00
2018-05-15 16:36:29 +08:00
namespace osu.Game.Rulesets.Osu.Difficulty.Skills
2018-04-13 17:19:50 +08:00
{
/// <summary>
/// Represents the skill required to press keys with regards to keeping up with the speed at which objects need to be hit.
/// </summary>
2021-06-15 01:18:49 +08:00
public class Speed : OsuStrainSkill
2018-04-13 17:19:50 +08:00
{
private const double single_spacing_threshold = 125;
2018-12-24 11:41:04 +08:00
private const double angle_bonus_begin = 5 * Math.PI / 6;
private const double pi_over_4 = Math.PI / 4;
2018-12-22 08:56:33 +08:00
private const double pi_over_2 = Math.PI / 2;
2021-08-17 21:39:18 +08:00
private const double rhythmMultiplier = 1.5;
private double skillMultiplier => 1400;
private double strainDecayBase => 0.3;
private double currentTapStrain = 1;
private double currentMovementStrain = 1;
2021-06-16 21:13:46 +08:00
protected override int ReducedSectionCount => 5;
protected override double DifficultyMultiplier => 1.04;
2018-04-13 17:19:50 +08:00
2018-12-18 08:51:49 +08:00
private const double min_speed_bonus = 75; // ~200BPM
private const double max_speed_bonus = 45; // ~330BPM
private const double speed_balancing_factor = 40;
2021-08-17 21:39:18 +08:00
protected override int HistoryLength => 32;
private const int HistoryTimeMax = 3000; // 4 seconds of calculatingRhythmBonus max.
public Speed(Mod[] mods)
: base(mods)
{
}
2021-08-17 21:39:18 +08:00
private bool isRatioEqual(double ratio, double a, double b)
{
return a + 15 > ratio * b && a - 15 < ratio * b;
}
/// <summary>
/// Calculates a rhythm multiplier for the difficulty of the tap associated with historic data of the current <see cref="OsuDifficultyHitObject"/>.
/// </summary>
private double calculateRhythmBonus(double startTime)
2018-04-13 17:19:50 +08:00
{
2021-08-17 21:39:18 +08:00
// {doubles, triplets, quads, quints, 6-tuplets, 7 Tuplets, greater}
int previousIslandSize = -1;
double[] islandTimes = {0, 0, 0, 0, 0, 0, 0};
int islandSize = 0;
bool firstDeltaSwitch = false;
for (int i = Previous.Count - 1; i > 0; i--)
{
double currDelta = ((OsuDifficultyHitObject)Previous[i - 1]).StrainTime;
double prevDelta = ((OsuDifficultyHitObject)Previous[i]).StrainTime;
double effectiveRatio = Math.Min(prevDelta, currDelta) / Math.Max(prevDelta, currDelta);
effectiveRatio *= Math.Sqrt(100 / ((currDelta + prevDelta) / 2)); // scale with bpm slightly
2021-08-17 21:39:18 +08:00
if (effectiveRatio > 0.5)
effectiveRatio = 0.5 + (effectiveRatio - 0.5) * 10; // extra buff for 1/3 -> 1/4 etc transitions.
2021-08-17 21:39:18 +08:00
double currHistoricalDecay = Math.Max(0, (HistoryTimeMax - (startTime - Previous[i - 1].StartTime))) / HistoryTimeMax;
if (firstDeltaSwitch)
{
if (isRatioEqual(1.0, prevDelta, currDelta))
{
islandSize++; // island is still progressing, count size.
}
else
{
if (islandSize > 6)
islandSize = 6;
if (Previous[i - 1].BaseObject is Slider) // bpm change is into slider, this is easy acc window
effectiveRatio *= 0.5;
if (Previous[i].BaseObject is Slider) // bpm change was from a slider, this is easier typically than circle -> circle
effectiveRatio *= 0.75;
if (previousIslandSize == islandSize) // repeated island size (ex: triplet -> triplet)
effectiveRatio *= 0.5;
islandTimes[islandSize] = islandTimes[islandSize] + effectiveRatio * currHistoricalDecay;
previousIslandSize = islandSize; // log the last island size.
if (prevDelta * 1.25 < currDelta) // we're slowing down, stop counting
firstDeltaSwitch = false; // if we're speeding up, this stays true and we keep counting island size.
islandSize = 0;
}
}
else if (prevDelta > 1.25 * currDelta) // we want to be speeding up.
{
// Begin counting island until we change speed again.
firstDeltaSwitch = true;
islandSize = 0;
}
}
double rhythmComplexitySum = 0.0;
for (int i = 0; i < islandTimes.Length; i++)
{
rhythmComplexitySum += islandTimes[i] * ((double)(i + islandTimes.Length) / (2 * islandTimes.Length)); // sum the total amount of rhythm variance
2021-08-17 21:39:18 +08:00
}
// Console.WriteLine(Math.Sqrt(4 + rhythmComplexitySum * rhythmMultiplier) / 2);
return Math.Sqrt(4 + rhythmComplexitySum * rhythmMultiplier) / 2;
}
2021-08-17 21:47:45 +08:00
private double tapStrainOf(DifficultyHitObject current)
2021-08-17 21:39:18 +08:00
{
2021-08-17 21:47:45 +08:00
if (current.BaseObject is Spinner)
{
return 0;
}
2019-02-18 13:58:33 +08:00
var osuCurrent = (OsuDifficultyHitObject)current;
double distance = Math.Min(single_spacing_threshold, osuCurrent.TravelDistance + osuCurrent.JumpDistance);
2018-12-18 08:51:49 +08:00
double deltaTime = Math.Max(max_speed_bonus, current.DeltaTime);
double speedBonus = 1.0;
if (deltaTime < min_speed_bonus)
speedBonus = 1 + Math.Pow((min_speed_bonus - deltaTime) / speed_balancing_factor, 2);
2018-12-08 14:01:26 +08:00
double angleBonus = 1.0;
2019-04-01 11:16:05 +08:00
if (osuCurrent.Angle != null && osuCurrent.Angle.Value < angle_bonus_begin)
2018-12-22 08:31:30 +08:00
{
angleBonus = 1 + Math.Pow(Math.Sin(1.5 * (angle_bonus_begin - osuCurrent.Angle.Value)), 2) / 3.57;
2019-04-01 11:16:05 +08:00
if (osuCurrent.Angle.Value < pi_over_2)
2018-12-22 08:56:33 +08:00
{
2018-12-24 11:41:04 +08:00
angleBonus = 1.28;
if (distance < 90 && osuCurrent.Angle.Value < pi_over_4)
2018-12-24 11:41:04 +08:00
angleBonus += (1 - angleBonus) * Math.Min((90 - distance) / 10, 1);
else if (distance < 90)
angleBonus += (1 - angleBonus) * Math.Min((90 - distance) / 10, 1) * Math.Sin((pi_over_2 - osuCurrent.Angle.Value) / pi_over_4);
2018-12-22 08:56:33 +08:00
}
2018-12-22 08:31:30 +08:00
}
2018-12-08 14:01:26 +08:00
return ((1 + (speedBonus - 1) * 0.75) * 0.95) / osuCurrent.StrainTime;
2021-08-17 21:47:45 +08:00
}
2021-08-17 21:39:18 +08:00
2021-08-17 21:47:45 +08:00
private double movementStrainOf(DifficultyHitObject current)
{
if (current.BaseObject is Spinner)
{
return 0;
}
2021-08-17 21:39:18 +08:00
2021-08-17 21:47:45 +08:00
var osuCurrent = (OsuDifficultyHitObject)current;
2021-08-17 21:39:18 +08:00
2021-08-17 21:47:45 +08:00
double distance = Math.Min(single_spacing_threshold, osuCurrent.TravelDistance + osuCurrent.JumpDistance);
double deltaTime = Math.Max(max_speed_bonus, current.DeltaTime);
double speedBonus = 1.0;
if (deltaTime < min_speed_bonus)
speedBonus = 1 + Math.Pow((min_speed_bonus - deltaTime) / speed_balancing_factor, 2);
double angleBonus = 1.0;
if (osuCurrent.Angle != null && osuCurrent.Angle.Value < angle_bonus_begin)
{
angleBonus = 1 + Math.Pow(Math.Sin(1.5 * (angle_bonus_begin - osuCurrent.Angle.Value)), 2) / 3.57;
if (osuCurrent.Angle.Value < pi_over_2)
{
angleBonus = 1.28;
if (distance < 90 && osuCurrent.Angle.Value < pi_over_4)
angleBonus += (1 - angleBonus) * Math.Min((90 - distance) / 10, 1);
else if (distance < 90)
angleBonus += (1 - angleBonus) * Math.Min((90 - distance) / 10, 1) * Math.Sin((pi_over_2 - osuCurrent.Angle.Value) / pi_over_4);
}
}
return ((1 + (speedBonus - 1) * 0.75) * angleBonus * speedBonus * Math.Pow(distance / single_spacing_threshold, 3.5)) / osuCurrent.StrainTime;
2021-08-17 21:39:18 +08:00
}
private double strainDecay(double ms) => Math.Pow(strainDecayBase, ms / 1000);
protected override double CalculateInitialStrain(double time) => (currentMovementStrain + currentTapStrain * calculateRhythmBonus(time)) * strainDecay(time - Previous[0].StartTime);
2021-08-17 21:39:18 +08:00
protected override double StrainValueAt(DifficultyHitObject current)
{
2021-08-17 21:47:45 +08:00
currentTapStrain *= strainDecay(current.DeltaTime);
currentTapStrain += tapStrainOf(current) * skillMultiplier;
2021-08-17 21:39:18 +08:00
2021-08-17 21:47:45 +08:00
currentMovementStrain *= strainDecay(current.DeltaTime);
currentMovementStrain += movementStrainOf(current) * skillMultiplier;
2021-08-17 21:39:18 +08:00
return currentMovementStrain + currentTapStrain * calculateRhythmBonus(current.StartTime);
2018-04-13 17:19:50 +08:00
}
}
}