mirror of
https://github.com/ppy/osu.git
synced 2024-12-18 06:32:55 +08:00
Remove unnecessary truncation
This commit is contained in:
parent
75be4e83d6
commit
132079004c
@ -25,10 +25,10 @@ namespace osu.Game.Rulesets.Osu.Difficulty
|
||||
public double SliderFactor { get; set; }
|
||||
|
||||
[JsonProperty("aim_difficult_strain_count")]
|
||||
public int AimDifficultStrainCount { get; set; }
|
||||
public double AimDifficultStrainCount { get; set; }
|
||||
|
||||
[JsonProperty("speed_difficult_strain_count")]
|
||||
public int SpeedDifficultStrainCount { get; set; }
|
||||
public double SpeedDifficultStrainCount { get; set; }
|
||||
|
||||
[JsonProperty("approach_rate")]
|
||||
public double ApproachRate { get; set; }
|
||||
|
@ -40,8 +40,8 @@ namespace osu.Game.Rulesets.Osu.Difficulty
|
||||
|
||||
double sliderFactor = aimRating > 0 ? aimRatingNoSliders / aimRating : 1;
|
||||
|
||||
int aimDifficultyStrainCount = ((OsuStrainSkill)skills[0]).CountDifficultStrains(clockRate);
|
||||
int speedDifficultyStrainCount = ((OsuStrainSkill)skills[2]).CountDifficultStrains(clockRate);
|
||||
double aimDifficultyStrainCount = ((OsuStrainSkill)skills[0]).CountDifficultStrains(clockRate);
|
||||
double speedDifficultyStrainCount = ((OsuStrainSkill)skills[2]).CountDifficultStrains(clockRate);
|
||||
|
||||
if (mods.Any(h => h is OsuModRelax))
|
||||
speedRating = 0.0;
|
||||
|
@ -62,12 +62,12 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
|
||||
/// Returns the number of strains above a threshold averaged as the threshold varies.
|
||||
/// The result is scaled by clock rate as it affects the total number of strains.
|
||||
/// </summary>
|
||||
public int CountDifficultStrains(double clockRate)
|
||||
public double CountDifficultStrains(double clockRate)
|
||||
{
|
||||
List<double> strains = GetCurrentStrainPeaks().ToList();
|
||||
// This is the average value of strains.Count(s => s > p * strains.Max()) for p between 0 and 1.
|
||||
double realtimeCount = strains.Sum() / strains.Max();
|
||||
return (int)(clockRate * realtimeCount);
|
||||
return clockRate * realtimeCount;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user