mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
cb8ec48717
Just to make sure nobody tries any "funny" business.
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
// 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.Collections.Generic;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Scoring
|
|
{
|
|
public partial class OsuScoreProcessor : ScoreProcessor
|
|
{
|
|
public OsuScoreProcessor()
|
|
: base(new OsuRuleset())
|
|
{
|
|
}
|
|
|
|
public override ScoreRank RankFromScore(double accuracy, IReadOnlyDictionary<HitResult, int> results)
|
|
{
|
|
ScoreRank rank = base.RankFromScore(accuracy, results);
|
|
|
|
switch (rank)
|
|
{
|
|
case ScoreRank.S:
|
|
case ScoreRank.X:
|
|
if (results.GetValueOrDefault(HitResult.Miss) > 0)
|
|
rank = ScoreRank.A;
|
|
break;
|
|
}
|
|
|
|
return rank;
|
|
}
|
|
|
|
protected override HitEvent CreateHitEvent(JudgementResult result)
|
|
=> base.CreateHitEvent(result).With((result as OsuHitCircleJudgementResult)?.CursorPositionAtHit);
|
|
}
|
|
}
|