2019-03-27 15:56:15 +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.
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
using osu.Game.Scoring;
|
2019-03-27 15:55:46 +08:00
|
|
|
using osu.Game.Scoring.Legacy;
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Difficulty
|
|
|
|
{
|
|
|
|
public class CatchPerformanceCalculator : PerformanceCalculator
|
|
|
|
{
|
|
|
|
protected new CatchDifficultyAttributes Attributes => (CatchDifficultyAttributes)base.Attributes;
|
|
|
|
|
|
|
|
private Mod[] mods;
|
2019-03-27 15:55:46 +08:00
|
|
|
|
|
|
|
private int fruitsHit;
|
|
|
|
private int ticksHit;
|
|
|
|
private int tinyTicksHit;
|
|
|
|
private int tinyTicksMissed;
|
|
|
|
private int misses;
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
public CatchPerformanceCalculator(Ruleset ruleset, WorkingBeatmap beatmap, ScoreInfo score)
|
2019-03-27 13:53:29 +08:00
|
|
|
: base(ruleset, beatmap, score)
|
|
|
|
{
|
|
|
|
}
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
public override double Calculate(Dictionary<string, double> categoryDifficulty = null)
|
|
|
|
{
|
|
|
|
mods = Score.Mods;
|
2019-03-27 15:55:46 +08:00
|
|
|
|
2019-12-03 14:28:10 +08:00
|
|
|
fruitsHit = Score?.GetCount300() ?? Score.Statistics[HitResult.Perfect];
|
|
|
|
ticksHit = Score?.GetCount100() ?? 0;
|
|
|
|
tinyTicksHit = Score?.GetCount50() ?? 0;
|
|
|
|
tinyTicksMissed = Score?.GetCountKatu() ?? 0;
|
2019-03-27 15:55:46 +08:00
|
|
|
misses = Score.Statistics[HitResult.Miss];
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
// Don't count scores made with supposedly unranked mods
|
|
|
|
if (mods.Any(m => !m.Ranked))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// We are heavily relying on aim in catch the beat
|
2019-11-26 18:34:23 +08:00
|
|
|
double value = Math.Pow(5.0 * Math.Max(1.0, Attributes.StarRating / 0.0049) - 4.0, 2.0) / 100000.0;
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
// Longer maps are worth more. "Longer" means how many hits there are which can contribute to combo
|
|
|
|
int numTotalHits = totalComboHits();
|
|
|
|
|
|
|
|
// Longer maps are worth more
|
2019-11-26 18:34:23 +08:00
|
|
|
double lengthBonus =
|
2019-03-27 16:21:57 +08:00
|
|
|
0.95f + 0.3f * Math.Min(1.0f, numTotalHits / 2500.0f) +
|
|
|
|
(numTotalHits > 2500 ? (float)Math.Log10(numTotalHits / 2500.0f) * 0.475f : 0.0f);
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
// Longer maps are worth more
|
|
|
|
value *= lengthBonus;
|
|
|
|
|
|
|
|
// Penalize misses exponentially. This mainly fixes tag4 maps and the likes until a per-hitobject solution is available
|
2019-11-26 18:34:23 +08:00
|
|
|
value *= Math.Pow(0.97, misses);
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
// Combo scaling
|
2019-11-26 18:34:23 +08:00
|
|
|
if (Attributes.MaxCombo > 0)
|
|
|
|
value *= Math.Min(Math.Pow(Attributes.MaxCombo, 0.8) / Math.Pow(Attributes.MaxCombo, 0.8), 1.0);
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
float approachRate = (float)Attributes.ApproachRate;
|
|
|
|
float approachRateFactor = 1.0f;
|
|
|
|
if (approachRate > 9.0f)
|
|
|
|
approachRateFactor += 0.1f * (approachRate - 9.0f); // 10% for each AR above 9
|
2019-03-27 16:21:57 +08:00
|
|
|
if (approachRate > 10.0f)
|
2020-04-16 16:28:06 +08:00
|
|
|
approachRateFactor += 0.1f * (approachRate - 10.0f); // Additional 10% at AR 11, 30% total
|
2019-01-09 05:28:48 +08:00
|
|
|
else if (approachRate < 8.0f)
|
|
|
|
approachRateFactor += 0.025f * (8.0f - approachRate); // 2.5% for each AR below 8
|
|
|
|
|
|
|
|
value *= approachRateFactor;
|
|
|
|
|
|
|
|
if (mods.Any(m => m is ModHidden))
|
2019-03-27 16:21:57 +08:00
|
|
|
{
|
2019-11-26 18:34:23 +08:00
|
|
|
value *= 1.05 + 0.075 * (10.0 - Math.Min(10.0, Attributes.ApproachRate)); // 7.5% for each AR below 10
|
2019-03-27 16:21:57 +08:00
|
|
|
// Hiddens gives almost nothing on max approach rate, and more the lower it is
|
|
|
|
if (approachRate <= 10.0f)
|
|
|
|
value *= 1.05f + 0.075f * (10.0f - approachRate); // 7.5% for each AR below 10
|
|
|
|
else if (approachRate > 10.0f)
|
|
|
|
value *= 1.01f + 0.04f * (11.0f - Math.Min(11.0f, approachRate)); // 5% at AR 10, 1% at AR 11
|
|
|
|
}
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
if (mods.Any(m => m is ModFlashlight))
|
|
|
|
// Apply length bonus again if flashlight is on simply because it becomes a lot harder on longer maps.
|
2019-11-26 18:34:23 +08:00
|
|
|
value *= 1.35 * lengthBonus;
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
// Scale the aim value with accuracy _slightly_
|
2019-11-26 18:34:23 +08:00
|
|
|
value *= Math.Pow(accuracy(), 5.5);
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
// Custom multipliers for NoFail. SpunOut is not applicable.
|
|
|
|
if (mods.Any(m => m is ModNoFail))
|
2019-11-26 18:34:23 +08:00
|
|
|
value *= 0.90;
|
2019-01-09 05:28:48 +08:00
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2019-11-26 18:34:23 +08:00
|
|
|
private float accuracy() => totalHits() == 0 ? 0 : Math.Clamp((float)totalSuccessfulHits() / totalHits(), 0, 1);
|
2019-03-27 15:55:46 +08:00
|
|
|
private int totalHits() => tinyTicksHit + ticksHit + fruitsHit + misses + tinyTicksMissed;
|
|
|
|
private int totalSuccessfulHits() => tinyTicksHit + ticksHit + fruitsHit;
|
|
|
|
private int totalComboHits() => misses + ticksHit + fruitsHit;
|
2019-01-09 05:28:48 +08:00
|
|
|
}
|
|
|
|
}
|