mirror of
https://github.com/ppy/osu.git
synced 2025-03-29 19:58:40 +08:00
Add ScoreProcessor methods to override numeric result
This commit is contained in:
parent
b6ed792a41
commit
c1b55c7fac
osu.Game.Rulesets.Catch/Scoring
osu.Game.Rulesets.Mania/Scoring
osu.Game.Rulesets.Taiko/Scoring
osu.Game/Rulesets/Scoring
@ -33,7 +33,7 @@ namespace osu.Game.Rulesets.Catch.Scoring
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected override double GetComboScoreChange(JudgementResult result)
|
protected override double GetComboScoreChange(JudgementResult result)
|
||||||
=> Judgement.ToNumericResult(result.Type) * Math.Min(Math.Max(0.5, Math.Log(result.ComboAfterJudgement, combo_base)), Math.Log(combo_cap, combo_base));
|
=> GetNumericResultFor(result) * Math.Min(Math.Max(0.5, Math.Log(result.ComboAfterJudgement, combo_base)), Math.Log(combo_cap, combo_base));
|
||||||
|
|
||||||
public override ScoreRank RankFromAccuracy(double accuracy)
|
public override ScoreRank RankFromAccuracy(double accuracy)
|
||||||
{
|
{
|
||||||
|
@ -32,7 +32,7 @@ namespace osu.Game.Rulesets.Mania.Scoring
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected override double GetComboScoreChange(JudgementResult result)
|
protected override double GetComboScoreChange(JudgementResult result)
|
||||||
=> Judgement.ToNumericResult(result.Type) * Math.Min(Math.Max(0.5, Math.Log(result.ComboAfterJudgement, combo_base)), Math.Log(400, combo_base));
|
=> GetNumericResultFor(result) * Math.Min(Math.Max(0.5, Math.Log(result.ComboAfterJudgement, combo_base)), Math.Log(400, combo_base));
|
||||||
|
|
||||||
private class JudgementOrderComparer : IComparer<HitObject>
|
private class JudgementOrderComparer : IComparer<HitObject>
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,7 @@ namespace osu.Game.Rulesets.Taiko.Scoring
|
|||||||
|
|
||||||
protected override double GetComboScoreChange(JudgementResult result)
|
protected override double GetComboScoreChange(JudgementResult result)
|
||||||
{
|
{
|
||||||
return Judgement.ToNumericResult(result.Type)
|
return GetNumericResultFor(result)
|
||||||
* Math.Min(Math.Max(0.5, Math.Log(result.ComboAfterJudgement, combo_base)), Math.Log(400, combo_base))
|
* Math.Min(Math.Max(0.5, Math.Log(result.ComboAfterJudgement, combo_base)), Math.Log(400, combo_base))
|
||||||
* strongScaleValue(result);
|
* strongScaleValue(result);
|
||||||
}
|
}
|
||||||
|
@ -227,12 +227,12 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
|
|
||||||
if (result.Judgement.MaxResult.AffectsAccuracy())
|
if (result.Judgement.MaxResult.AffectsAccuracy())
|
||||||
{
|
{
|
||||||
currentMaximumBaseScore += Judgement.ToNumericResult(result.Judgement.MaxResult);
|
currentMaximumBaseScore += GetMaxNumericResultFor(result);
|
||||||
currentAccuracyJudgementCount++;
|
currentAccuracyJudgementCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (result.Type.AffectsAccuracy())
|
if (result.Type.AffectsAccuracy())
|
||||||
currentBaseScore += Judgement.ToNumericResult(result.Type);
|
currentBaseScore += GetNumericResultFor(result);
|
||||||
|
|
||||||
if (result.Type.IsBonus())
|
if (result.Type.IsBonus())
|
||||||
currentBonusPortion += GetBonusScoreChange(result);
|
currentBonusPortion += GetBonusScoreChange(result);
|
||||||
@ -276,12 +276,12 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
|
|
||||||
if (result.Judgement.MaxResult.AffectsAccuracy())
|
if (result.Judgement.MaxResult.AffectsAccuracy())
|
||||||
{
|
{
|
||||||
currentMaximumBaseScore -= Judgement.ToNumericResult(result.Judgement.MaxResult);
|
currentMaximumBaseScore -= GetMaxNumericResultFor(result);
|
||||||
currentAccuracyJudgementCount--;
|
currentAccuracyJudgementCount--;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (result.Type.AffectsAccuracy())
|
if (result.Type.AffectsAccuracy())
|
||||||
currentBaseScore -= Judgement.ToNumericResult(result.Type);
|
currentBaseScore -= GetNumericResultFor(result);
|
||||||
|
|
||||||
if (result.Type.IsBonus())
|
if (result.Type.IsBonus())
|
||||||
currentBonusPortion -= GetBonusScoreChange(result);
|
currentBonusPortion -= GetBonusScoreChange(result);
|
||||||
@ -297,9 +297,21 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
updateScore();
|
updateScore();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual double GetBonusScoreChange(JudgementResult result) => Judgement.ToNumericResult(result.Type);
|
protected virtual double GetBonusScoreChange(JudgementResult result) => GetNumericResultFor(result);
|
||||||
|
|
||||||
protected virtual double GetComboScoreChange(JudgementResult result) => Judgement.ToNumericResult(result.Judgement.MaxResult) * Math.Pow(result.ComboAfterJudgement, COMBO_EXPONENT);
|
protected virtual double GetComboScoreChange(JudgementResult result) => GetMaxNumericResultFor(result) * Math.Pow(result.ComboAfterJudgement, COMBO_EXPONENT);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves the numeric score representation for a <see cref="JudgementResult"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="result">The <see cref="JudgementResult"/>.</param>
|
||||||
|
protected virtual double GetNumericResultFor(JudgementResult result) => result.Judgement.NumericResultFor(result);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves the maximum numeric score representation for a <see cref="JudgementResult"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="result">The <see cref="JudgementResult"/>.</param>
|
||||||
|
protected virtual double GetMaxNumericResultFor(JudgementResult result) => result.Judgement.MaxNumericResult;
|
||||||
|
|
||||||
protected virtual void ApplyScoreChange(JudgementResult result)
|
protected virtual void ApplyScoreChange(JudgementResult result)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user