2021-04-25 06:39:36 +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 ;
2021-06-05 23:04:58 +08:00
using System.Collections.Generic ;
2021-05-15 08:07:24 +08:00
using System.Linq ;
2021-05-01 10:01:43 +08:00
using osu.Framework.Graphics ;
2021-04-28 04:19:04 +08:00
using osu.Framework.Utils ;
2021-04-25 06:39:36 +08:00
using osu.Game.Beatmaps ;
using osu.Game.Rulesets.Mods ;
2021-04-25 07:34:39 +08:00
using osu.Game.Rulesets.Objects ;
2021-05-01 10:01:43 +08:00
using osu.Game.Rulesets.Osu.Beatmaps ;
2021-04-25 06:39:36 +08:00
using osu.Game.Rulesets.Osu.Objects ;
using osu.Game.Rulesets.Osu.UI ;
using osuTK ;
namespace osu.Game.Rulesets.Osu.Mods
{
2021-04-25 07:34:39 +08:00
/// <summary>
/// Mod that randomises the positions of the <see cref="HitObject"/>s
/// </summary>
2021-04-28 01:39:58 +08:00
public class OsuModRandom : ModRandom , IApplicableToBeatmap
2021-04-25 06:39:36 +08:00
{
2021-04-25 07:43:32 +08:00
public override string Description = > "It never gets boring!" ;
2021-04-25 07:34:39 +08:00
2021-05-24 13:24:56 +08:00
// The relative distance to the edge of the playfield before objects' positions should start to "turn around" and curve towards the middle.
2021-04-26 05:57:01 +08:00
// The closer the hit objects draw to the border, the sharper the turn
2021-05-24 13:24:56 +08:00
private const float playfield_edge_ratio = 0.375f ;
private static readonly float border_distance_x = OsuPlayfield . BASE_SIZE . X * playfield_edge_ratio ;
private static readonly float border_distance_y = OsuPlayfield . BASE_SIZE . Y * playfield_edge_ratio ;
2021-06-04 22:23:03 +08:00
private static readonly Vector2 playfield_middle = OsuPlayfield . BASE_SIZE / 2 ;
2021-05-24 13:24:56 +08:00
private static readonly float playfield_diagonal = OsuPlayfield . BASE_SIZE . LengthFast ;
2021-04-25 07:34:39 +08:00
2021-05-26 15:37:30 +08:00
private Random rng ;
2021-05-13 00:11:50 +08:00
public void ApplyToBeatmap ( IBeatmap beatmap )
2021-04-25 06:39:36 +08:00
{
2021-05-13 00:11:50 +08:00
if ( ! ( beatmap is OsuBeatmap osuBeatmap ) )
2021-05-01 10:01:43 +08:00
return ;
2021-05-14 13:13:35 +08:00
var hitObjects = osuBeatmap . HitObjects ;
2021-05-14 07:50:11 +08:00
Seed . Value ? ? = RNG . Next ( ) ;
2021-04-28 02:44:36 +08:00
2021-05-26 15:37:30 +08:00
rng = new Random ( ( int ) Seed . Value ) ;
2021-04-26 05:57:01 +08:00
2021-05-26 15:44:44 +08:00
RandomObjectInfo previous = null ;
2021-04-26 05:57:01 +08:00
float rateOfChangeMultiplier = 0 ;
2021-05-14 13:13:35 +08:00
for ( int i = 0 ; i < hitObjects . Count ; i + + )
2021-04-25 06:39:36 +08:00
{
2021-05-24 13:19:10 +08:00
var hitObject = hitObjects [ i ] ;
2021-05-14 13:13:35 +08:00
2021-05-26 15:44:44 +08:00
var current = new RandomObjectInfo ( hitObject ) ;
2021-05-24 13:19:10 +08:00
2021-05-14 13:13:35 +08:00
// rateOfChangeMultiplier only changes every i iterations to prevent shaky-line-shaped streams
if ( i % 3 = = 0 )
2021-04-26 05:57:01 +08:00
rateOfChangeMultiplier = ( float ) rng . NextDouble ( ) * 2 - 1 ;
2021-05-24 13:33:07 +08:00
if ( hitObject is Spinner )
2021-05-26 15:36:14 +08:00
{
2021-05-26 15:44:44 +08:00
previous = null ;
2021-05-24 13:33:07 +08:00
continue ;
2021-05-26 15:36:14 +08:00
}
2021-05-24 13:33:07 +08:00
2021-05-26 15:44:44 +08:00
applyRandomisation ( rateOfChangeMultiplier , previous , current ) ;
2021-05-15 05:04:09 +08:00
2021-05-26 15:44:44 +08:00
hitObject . Position = current . PositionRandomised ;
2021-05-15 08:07:24 +08:00
2021-05-24 13:33:07 +08:00
// update end position as it may have changed as a result of the position update.
2021-05-26 15:44:44 +08:00
current . EndPositionRandomised = current . PositionRandomised ;
2021-05-15 05:04:09 +08:00
2021-06-04 22:17:54 +08:00
if ( hitObject is Slider slider )
moveSliderIntoPlayfield ( slider , current ) ;
2021-04-26 05:57:01 +08:00
2021-05-26 15:44:44 +08:00
previous = current ;
2021-04-25 06:39:36 +08:00
}
}
2021-04-26 05:57:01 +08:00
/// <summary>
/// Returns the final position of the hit object
/// </summary>
/// <returns>Final position of the hit object</returns>
2021-05-26 15:44:05 +08:00
private void applyRandomisation ( float rateOfChangeMultiplier , RandomObjectInfo previous , RandomObjectInfo current )
2021-04-26 05:57:01 +08:00
{
2021-05-26 15:44:05 +08:00
if ( previous = = null )
2021-05-24 21:13:31 +08:00
{
var playfieldSize = OsuPlayfield . BASE_SIZE ;
2021-05-26 15:44:05 +08:00
current . AngleRad = ( float ) ( rng . NextDouble ( ) * 2 * Math . PI - Math . PI ) ;
current . PositionRandomised = new Vector2 ( ( float ) rng . NextDouble ( ) * playfieldSize . X , ( float ) rng . NextDouble ( ) * playfieldSize . Y ) ;
2021-05-24 21:13:31 +08:00
return ;
}
2021-05-26 15:44:05 +08:00
float distanceToPrev = Vector2 . Distance ( previous . EndPositionOriginal , current . PositionOriginal ) ;
2021-04-26 05:57:01 +08:00
// The max. angle (relative to the angle of the vector pointing from the 2nd last to the last hit object)
// is proportional to the distance between the last and the current hit object
// to allow jumps and prevent too sharp turns during streams.
2021-05-24 13:24:56 +08:00
var randomAngleRad = rateOfChangeMultiplier * 2 * Math . PI * distanceToPrev / playfield_diagonal ;
2021-04-26 05:57:01 +08:00
2021-05-26 15:44:05 +08:00
current . AngleRad = ( float ) randomAngleRad + previous . AngleRad ;
if ( current . AngleRad < 0 )
current . AngleRad + = 2 * ( float ) Math . PI ;
2021-04-26 05:57:01 +08:00
var posRelativeToPrev = new Vector2 (
2021-05-26 15:44:05 +08:00
distanceToPrev * ( float ) Math . Cos ( current . AngleRad ) ,
distanceToPrev * ( float ) Math . Sin ( current . AngleRad )
2021-04-26 05:57:01 +08:00
) ;
2021-05-26 15:44:05 +08:00
posRelativeToPrev = getRotatedVector ( previous . EndPositionRandomised , posRelativeToPrev ) ;
2021-04-26 05:57:01 +08:00
2021-05-26 15:44:05 +08:00
current . AngleRad = ( float ) Math . Atan2 ( posRelativeToPrev . Y , posRelativeToPrev . X ) ;
2021-05-24 13:24:56 +08:00
2021-06-04 22:23:03 +08:00
var position = previous . EndPositionRandomised + posRelativeToPrev ;
2021-04-26 05:57:01 +08:00
// Move hit objects back into the playfield if they are outside of it,
// which would sometimes happen during big jumps otherwise.
2021-05-24 13:28:07 +08:00
position . X = MathHelper . Clamp ( position . X , 0 , OsuPlayfield . BASE_SIZE . X ) ;
position . Y = MathHelper . Clamp ( position . Y , 0 , OsuPlayfield . BASE_SIZE . Y ) ;
2021-04-26 05:57:01 +08:00
2021-05-26 15:44:05 +08:00
current . PositionRandomised = position ;
2021-05-15 05:04:09 +08:00
}
2021-05-26 03:32:18 +08:00
/// <summary>
/// Moves the <see cref="Slider"/> and all necessary nested <see cref="OsuHitObject"/>s into the <see cref="OsuPlayfield"/> if they aren't already.
/// </summary>
2021-05-26 15:36:14 +08:00
private void moveSliderIntoPlayfield ( Slider slider , RandomObjectInfo currentObjectInfo )
2021-05-15 05:04:09 +08:00
{
2021-06-04 22:17:54 +08:00
var minMargin = getMinSliderMargin ( slider ) ;
slider . Position = new Vector2 (
Math . Clamp ( slider . Position . X , minMargin . Left , OsuPlayfield . BASE_SIZE . X - minMargin . Right ) ,
Math . Clamp ( slider . Position . Y , minMargin . Top , OsuPlayfield . BASE_SIZE . Y - minMargin . Bottom )
) ;
currentObjectInfo . PositionRandomised = slider . Position ;
currentObjectInfo . EndPositionRandomised = slider . EndPosition ;
2021-06-04 22:23:03 +08:00
shiftNestedObjects ( slider , currentObjectInfo . PositionRandomised - currentObjectInfo . PositionOriginal ) ;
2021-06-04 22:17:54 +08:00
}
/// <summary>
/// Calculates the min. distances from the <see cref="Slider"/>'s position to the playfield border for the slider to be fully inside of the playfield.
/// </summary>
private MarginPadding getMinSliderMargin ( Slider slider )
{
2021-06-05 23:04:58 +08:00
var pathPositions = new List < Vector2 > ( ) ;
slider . Path . GetPathToProgress ( pathPositions , 0 , 1 ) ;
2021-06-05 23:13:08 +08:00
var minMargin = new MarginPadding ( ) ;
2021-05-26 03:32:18 +08:00
2021-06-05 23:13:08 +08:00
foreach ( var pos in pathPositions )
2021-06-04 22:17:54 +08:00
{
minMargin . Left = Math . Max ( minMargin . Left , - pos . X ) ;
minMargin . Right = Math . Max ( minMargin . Right , pos . X ) ;
minMargin . Top = Math . Max ( minMargin . Top , - pos . Y ) ;
minMargin . Bottom = Math . Max ( minMargin . Bottom , pos . Y ) ;
}
2021-06-05 23:13:08 +08:00
minMargin . Left = Math . Min ( minMargin . Left , OsuPlayfield . BASE_SIZE . X - minMargin . Right ) ;
minMargin . Top = Math . Min ( minMargin . Top , OsuPlayfield . BASE_SIZE . Y - minMargin . Bottom ) ;
return minMargin ;
2021-05-26 03:32:18 +08:00
}
/// <summary>
/// Shifts all nested <see cref="SliderTick"/>s and <see cref="SliderRepeat"/>s by the specified shift.
/// </summary>
/// <param name="slider"><see cref="Slider"/> whose nested <see cref="SliderTick"/>s and <see cref="SliderRepeat"/>s should be shifted</param>
/// <param name="shift">The <see cref="Vector2"/> the <see cref="Slider"/>'s nested <see cref="SliderTick"/>s and <see cref="SliderRepeat"/>s should be shifted by</param>
private void shiftNestedObjects ( Slider slider , Vector2 shift )
{
foreach ( var hitObject in slider . NestedHitObjects . Where ( o = > o is SliderTick | | o is SliderRepeat ) )
{
if ( ! ( hitObject is OsuHitObject osuHitObject ) )
continue ;
2021-06-04 22:23:03 +08:00
osuHitObject . Position + = shift ;
2021-05-26 03:32:18 +08:00
}
2021-04-26 05:57:01 +08:00
}
/// <summary>
/// Determines the position of the current hit object relative to the previous one.
/// </summary>
/// <returns>The position of the current hit object relative to the previous one</returns>
private Vector2 getRotatedVector ( Vector2 prevPosChanged , Vector2 posRelativeToPrev )
{
var relativeRotationDistance = 0f ;
2021-05-24 13:24:56 +08:00
if ( prevPosChanged . X < playfield_middle . X )
2021-04-26 05:57:01 +08:00
{
relativeRotationDistance = Math . Max (
( border_distance_x - prevPosChanged . X ) / border_distance_x ,
relativeRotationDistance
) ;
}
else
{
relativeRotationDistance = Math . Max (
( prevPosChanged . X - ( OsuPlayfield . BASE_SIZE . X - border_distance_x ) ) / border_distance_x ,
relativeRotationDistance
) ;
}
2021-05-24 13:24:56 +08:00
if ( prevPosChanged . Y < playfield_middle . Y )
2021-04-26 05:57:01 +08:00
{
relativeRotationDistance = Math . Max (
( border_distance_y - prevPosChanged . Y ) / border_distance_y ,
relativeRotationDistance
) ;
}
else
{
relativeRotationDistance = Math . Max (
( prevPosChanged . Y - ( OsuPlayfield . BASE_SIZE . Y - border_distance_y ) ) / border_distance_y ,
relativeRotationDistance
) ;
}
2021-05-24 13:24:56 +08:00
return rotateVectorTowardsVector ( posRelativeToPrev , playfield_middle - prevPosChanged , relativeRotationDistance / 2 ) ;
2021-04-26 05:57:01 +08:00
}
/// <summary>
/// Rotates vector "initial" towards vector "destinantion"
/// </summary>
/// <param name="initial">Vector to rotate to "destination"</param>
/// <param name="destination">Vector "initial" should be rotated to</param>
/// <param name="relativeDistance">The angle the vector should be rotated relative to the difference between the angles of the the two vectors.</param>
/// <returns>Resulting vector</returns>
private Vector2 rotateVectorTowardsVector ( Vector2 initial , Vector2 destination , float relativeDistance )
{
var initialAngleRad = Math . Atan2 ( initial . Y , initial . X ) ;
var destAngleRad = Math . Atan2 ( destination . Y , destination . X ) ;
var diff = destAngleRad - initialAngleRad ;
2021-05-24 13:33:07 +08:00
while ( diff < - Math . PI ) diff + = 2 * Math . PI ;
2021-04-26 05:57:01 +08:00
2021-05-24 13:33:07 +08:00
while ( diff > Math . PI ) diff - = 2 * Math . PI ;
2021-04-26 05:57:01 +08:00
2021-05-13 00:11:50 +08:00
var finalAngleRad = initialAngleRad + relativeDistance * diff ;
2021-04-26 05:57:01 +08:00
return new Vector2 (
2021-05-13 00:11:50 +08:00
initial . Length * ( float ) Math . Cos ( finalAngleRad ) ,
initial . Length * ( float ) Math . Sin ( finalAngleRad )
2021-04-26 05:57:01 +08:00
) ;
}
2021-05-13 00:11:50 +08:00
2021-05-26 15:36:14 +08:00
private class RandomObjectInfo
2021-05-13 00:11:50 +08:00
{
2021-05-26 15:31:25 +08:00
public float AngleRad { get ; set ; }
2021-05-01 10:01:43 +08:00
2021-05-26 15:31:25 +08:00
public Vector2 PositionOriginal { get ; }
public Vector2 PositionRandomised { get ; set ; }
2021-05-01 10:01:43 +08:00
2021-05-26 15:31:25 +08:00
public Vector2 EndPositionOriginal { get ; }
public Vector2 EndPositionRandomised { get ; set ; }
2021-05-13 00:11:50 +08:00
2021-05-24 13:19:10 +08:00
public RandomObjectInfo ( OsuHitObject hitObject )
2021-05-01 10:01:43 +08:00
{
2021-05-24 13:19:10 +08:00
PositionRandomised = PositionOriginal = hitObject . Position ;
EndPositionRandomised = EndPositionOriginal = hitObject . EndPosition ;
AngleRad = 0 ;
2021-05-01 10:01:43 +08:00
}
2021-05-24 13:19:10 +08:00
}
2021-05-01 10:01:43 +08:00
}
2021-04-25 06:39:36 +08:00
}