2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-02-20 00:41:51 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps ;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Mania.Beatmaps ;
using osu.Game.Rulesets.Mania.Objects ;
2018-03-06 10:19:06 +08:00
using osu.Game.Rulesets.Mods ;
2018-02-26 15:52:38 +08:00
using System ;
2017-02-20 00:41:51 +08:00
using System.Collections.Generic ;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Mania
2017-02-20 00:41:51 +08:00
{
2018-02-26 16:18:54 +08:00
internal class ManiaDifficultyCalculator : DifficultyCalculator < ManiaHitObject >
2017-02-20 00:41:51 +08:00
{
2018-02-26 15:52:38 +08:00
private const double star_scaling_factor = 0.018 ;
/// <summary>
/// In milliseconds. For difficulty calculation we will only look at the highest strain value in each time interval of size strain_step.
/// This is to eliminate higher influence of stream over aim by simply having more HitObjects with high strain.
/// The higher this value, the less strains there will be, indirectly giving long beatmaps an advantage.
/// </summary>
2018-02-26 16:18:54 +08:00
private const double strain_step = 400 ;
2018-02-26 15:52:38 +08:00
/// <summary>
/// The weighting of each strain value decays to this number * it's previous value
/// </summary>
2018-02-26 16:18:54 +08:00
private const double decay_weight = 0.9 ;
2018-02-26 15:52:38 +08:00
/// <summary>
/// HitObjects are stored as a member variable.
/// </summary>
private readonly List < ManiaHitObjectDifficulty > difficultyHitObjects = new List < ManiaHitObjectDifficulty > ( ) ;
2017-03-12 00:26:07 +08:00
public ManiaDifficultyCalculator ( Beatmap beatmap )
2018-03-12 12:01:29 +08:00
: base ( beatmap )
{
2018-03-06 10:19:06 +08:00
}
public ManiaDifficultyCalculator ( Beatmap beatmap , Mod [ ] mods )
2018-03-12 12:01:29 +08:00
: base ( beatmap , mods )
{
2017-02-20 00:41:51 +08:00
}
2018-02-26 15:52:38 +08:00
public override double Calculate ( Dictionary < string , double > categoryDifficulty = null )
{
// Fill our custom DifficultyHitObject class, that carries additional information
difficultyHitObjects . Clear ( ) ;
2018-02-26 16:18:54 +08:00
int columnCount = ( Beatmap as ManiaBeatmap ) ? . TotalColumns ? ? 7 ;
2018-02-26 15:52:38 +08:00
foreach ( var hitObject in Beatmap . HitObjects )
difficultyHitObjects . Add ( new ManiaHitObjectDifficulty ( hitObject , columnCount ) ) ;
// Sort DifficultyHitObjects by StartTime of the HitObjects - just to make sure.
difficultyHitObjects . Sort ( ( a , b ) = > a . BaseHitObject . StartTime . CompareTo ( b . BaseHitObject . StartTime ) ) ;
if ( ! calculateStrainValues ( ) )
return 0 ;
double starRating = calculateDifficulty ( ) * star_scaling_factor ;
2018-03-06 10:19:06 +08:00
categoryDifficulty ? . Add ( "Strain" , starRating ) ;
2018-02-26 15:52:38 +08:00
return starRating ;
}
private bool calculateStrainValues ( )
{
// Traverse hitObjects in pairs to calculate the strain value of NextHitObject from the strain value of CurrentHitObject and environment.
using ( List < ManiaHitObjectDifficulty > . Enumerator hitObjectsEnumerator = difficultyHitObjects . GetEnumerator ( ) )
{
if ( ! hitObjectsEnumerator . MoveNext ( ) )
return false ;
ManiaHitObjectDifficulty current = hitObjectsEnumerator . Current ;
// First hitObject starts at strain 1. 1 is the default for strain values, so we don't need to set it here. See DifficultyHitObject.
while ( hitObjectsEnumerator . MoveNext ( ) )
{
var next = hitObjectsEnumerator . Current ;
next ? . CalculateStrains ( current , TimeRate ) ;
current = next ;
}
return true ;
}
}
private double calculateDifficulty ( )
{
double actualStrainStep = strain_step * TimeRate ;
// Find the highest strain value within each strain step
List < double > highestStrains = new List < double > ( ) ;
double intervalEndTime = actualStrainStep ;
double maximumStrain = 0 ; // We need to keep track of the maximum strain in the current interval
ManiaHitObjectDifficulty previousHitObject = null ;
foreach ( var hitObject in difficultyHitObjects )
{
// While we are beyond the current interval push the currently available maximum to our strain list
while ( hitObject . BaseHitObject . StartTime > intervalEndTime )
{
highestStrains . Add ( maximumStrain ) ;
// The maximum strain of the next interval is not zero by default! We need to take the last hitObject we encountered, take its strain and apply the decay
// until the beginning of the next interval.
if ( previousHitObject = = null )
{
maximumStrain = 0 ;
}
else
{
double individualDecay = Math . Pow ( ManiaHitObjectDifficulty . INDIVIDUAL_DECAY_BASE , ( intervalEndTime - previousHitObject . BaseHitObject . StartTime ) / 1000 ) ;
double overallDecay = Math . Pow ( ManiaHitObjectDifficulty . OVERALL_DECAY_BASE , ( intervalEndTime - previousHitObject . BaseHitObject . StartTime ) / 1000 ) ;
maximumStrain = previousHitObject . IndividualStrain * individualDecay + previousHitObject . OverallStrain * overallDecay ;
}
// Go to the next time interval
intervalEndTime + = actualStrainStep ;
}
// Obtain maximum strain
double strain = hitObject . IndividualStrain + hitObject . OverallStrain ;
maximumStrain = Math . Max ( strain , maximumStrain ) ;
previousHitObject = hitObject ;
}
// Build the weighted sum over the highest strains for each interval
double difficulty = 0 ;
double weight = 1 ;
highestStrains . Sort ( ( a , b ) = > b . CompareTo ( a ) ) ; // Sort from highest to lowest strain.
foreach ( double strain in highestStrains )
{
difficulty + = weight * strain ;
weight * = decay_weight ;
}
return difficulty ;
}
2017-03-12 13:32:50 +08:00
2018-01-03 17:44:25 +08:00
protected override BeatmapConverter < ManiaHitObject > CreateBeatmapConverter ( Beatmap beatmap ) = > new ManiaBeatmapConverter ( true , beatmap ) ;
2017-02-20 00:41:51 +08:00
}
2017-08-22 12:34:58 +08:00
}