2019-02-12 15:03:28 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2019-01-24 16:43:03 +08:00
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using System ;
using System.Linq ;
2019-02-12 15:03:28 +08:00
using osu.Game.Rulesets.Difficulty.Preprocessing ;
using osu.Game.Rulesets.Objects ;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Osu.Objects ;
2018-11-20 15:51:59 +08:00
using osuTK ;
2018-04-13 17:19:50 +08:00
2018-05-15 16:36:29 +08:00
namespace osu.Game.Rulesets.Osu.Difficulty.Preprocessing
2018-04-13 17:19:50 +08:00
{
2019-02-12 15:03:28 +08:00
public class OsuDifficultyHitObject : DifficultyHitObject
2018-04-13 17:19:50 +08:00
{
2018-05-15 20:44:45 +08:00
private const int normalized_radius = 52 ;
2019-02-12 15:03:28 +08:00
protected new OsuHitObject BaseObject = > ( OsuHitObject ) base . BaseObject ;
2018-04-13 17:19:50 +08:00
/// <summary>
2018-10-09 11:03:47 +08:00
/// Normalized distance from the end position of the previous <see cref="OsuDifficultyHitObject"/> to the start position of this <see cref="OsuDifficultyHitObject"/>.
2018-04-13 17:19:50 +08:00
/// </summary>
2018-10-08 16:37:33 +08:00
public double JumpDistance { get ; private set ; }
/// <summary>
2018-10-09 11:03:47 +08:00
/// Normalized distance between the start and end position of the previous <see cref="OsuDifficultyHitObject"/>.
2018-10-08 16:37:33 +08:00
/// </summary>
public double TravelDistance { get ; private set ; }
2018-04-13 17:19:50 +08:00
/// <summary>
2019-02-12 15:03:28 +08:00
/// Angle the player has to take to hit this <see cref="OsuDifficultyHitObject"/>.
/// Calculated as the angle between the circles (current-2, current-1, current).
2018-04-13 17:19:50 +08:00
/// </summary>
2019-02-12 15:03:28 +08:00
public double? Angle { get ; private set ; }
2018-04-13 17:19:50 +08:00
2018-10-10 17:53:54 +08:00
/// <summary>
/// Milliseconds elapsed since the start time of the previous <see cref="OsuDifficultyHitObject"/>, with a minimum of 50ms.
/// </summary>
2019-02-12 15:03:28 +08:00
public readonly double StrainTime ;
2018-12-08 14:01:26 +08:00
2018-12-09 19:42:27 +08:00
private readonly OsuHitObject lastLastObject ;
2018-05-15 20:22:57 +08:00
private readonly OsuHitObject lastObject ;
2018-04-13 17:19:50 +08:00
2019-02-19 16:43:12 +08:00
public OsuDifficultyHitObject ( HitObject hitObject , HitObject lastLastObject , HitObject lastObject , double clockRate )
: base ( hitObject , lastObject , clockRate )
2018-04-13 17:19:50 +08:00
{
2019-02-12 15:03:28 +08:00
this . lastLastObject = ( OsuHitObject ) lastLastObject ;
this . lastObject = ( OsuHitObject ) lastObject ;
2018-05-15 20:22:57 +08:00
2018-04-13 17:19:50 +08:00
setDistances ( ) ;
2019-02-12 15:03:28 +08:00
// Every strain interval is hard capped at the equivalent of 375 BPM streaming speed as a safety measure
StrainTime = Math . Max ( 50 , DeltaTime ) ;
2018-04-13 17:19:50 +08:00
}
private void setDistances ( )
{
// We will scale distances by this factor, so we can assume a uniform CircleSize among beatmaps.
2018-10-08 16:37:33 +08:00
float scalingFactor = normalized_radius / ( float ) BaseObject . Radius ;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
if ( BaseObject . Radius < 30 )
{
2018-12-21 21:52:27 +08:00
float smallCircleBonus = Math . Min ( 30 - ( float ) BaseObject . Radius , 5 ) / 50 ;
2018-04-13 17:19:50 +08:00
scalingFactor * = 1 + smallCircleBonus ;
}
2018-12-09 19:42:27 +08:00
if ( lastObject is Slider lastSlider )
2018-12-23 15:26:23 +08:00
{
computeSliderCursorPosition ( lastSlider ) ;
2018-10-18 10:29:50 +08:00
TravelDistance = lastSlider . LazyTravelDistance * scalingFactor ;
2018-12-23 15:26:23 +08:00
}
2018-12-09 19:42:27 +08:00
Vector2 lastCursorPosition = getEndCursorPosition ( lastObject ) ;
2018-04-13 17:19:50 +08:00
2018-10-10 10:49:54 +08:00
// Don't need to jump to reach spinners
if ( ! ( BaseObject is Spinner ) )
2018-10-10 17:08:46 +08:00
JumpDistance = ( BaseObject . StackedPosition * scalingFactor - lastCursorPosition * scalingFactor ) . Length ;
2018-12-08 14:01:26 +08:00
2018-12-09 19:42:27 +08:00
if ( lastLastObject ! = null )
2018-12-08 14:01:26 +08:00
{
2018-12-09 19:42:27 +08:00
Vector2 lastLastCursorPosition = getEndCursorPosition ( lastLastObject ) ;
2018-12-08 14:01:26 +08:00
2018-12-09 19:42:27 +08:00
Vector2 v1 = lastLastCursorPosition - lastObject . StackedPosition ;
Vector2 v2 = BaseObject . StackedPosition - lastCursorPosition ;
2018-12-08 14:01:26 +08:00
float dot = Vector2 . Dot ( v1 , v2 ) ;
float det = v1 . X * v2 . Y - v1 . Y * v2 . X ;
2018-12-09 19:31:04 +08:00
Angle = Math . Abs ( Math . Atan2 ( det , dot ) ) ;
2018-12-08 14:01:26 +08:00
}
2018-04-13 17:19:50 +08:00
}
private void computeSliderCursorPosition ( Slider slider )
{
if ( slider . LazyEndPosition ! = null )
return ;
2019-02-28 12:31:40 +08:00
2018-10-11 12:53:29 +08:00
slider . LazyEndPosition = slider . StackedPosition ;
2018-04-13 17:19:50 +08:00
float approxFollowCircleRadius = ( float ) ( slider . Radius * 3 ) ;
var computeVertex = new Action < double > ( t = >
{
2019-01-15 18:07:25 +08:00
double progress = ( t - slider . StartTime ) / slider . SpanDuration ;
if ( progress % 2 > = 1 )
2018-10-08 17:37:30 +08:00
progress = 1 - progress % 1 ;
else
2019-11-12 17:56:38 +08:00
progress % = 1 ;
2018-10-08 17:37:30 +08:00
2018-04-13 17:19:50 +08:00
// ReSharper disable once PossibleInvalidOperationException (bugged in current r# version)
2018-11-01 02:52:24 +08:00
var diff = slider . StackedPosition + slider . Path . PositionAt ( progress ) - slider . LazyEndPosition . Value ;
2018-04-13 17:19:50 +08:00
float dist = diff . Length ;
if ( dist > approxFollowCircleRadius )
{
// The cursor would be outside the follow circle, we need to move it
diff . Normalize ( ) ; // Obtain direction of diff
dist - = approxFollowCircleRadius ;
slider . LazyEndPosition + = diff * dist ;
slider . LazyTravelDistance + = dist ;
}
} ) ;
2018-05-15 20:25:33 +08:00
// Skip the head circle
var scoringTimes = slider . NestedHitObjects . Skip ( 1 ) . Select ( t = > t . StartTime ) ;
2018-04-13 17:19:50 +08:00
foreach ( var time in scoringTimes )
computeVertex ( time ) ;
}
2018-12-09 19:42:27 +08:00
private Vector2 getEndCursorPosition ( OsuHitObject hitObject )
{
Vector2 pos = hitObject . StackedPosition ;
2019-02-28 13:35:00 +08:00
if ( hitObject is Slider slider )
2018-12-09 19:42:27 +08:00
{
computeSliderCursorPosition ( slider ) ;
pos = slider . LazyEndPosition ? ? pos ;
}
return pos ;
}
2018-04-13 17:19:50 +08:00
}
}