mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 04:17:24 +08:00
51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Modes.Judgements;
|
|
using osu.Game.Modes.Objects.Drawables;
|
|
using osu.Game.Modes.Osu.Judgements;
|
|
|
|
namespace osu.Game.Modes.Osu
|
|
{
|
|
internal class OsuScoreProcessor : ScoreProcessor
|
|
{
|
|
public OsuScoreProcessor(int hitObjectCount = 0)
|
|
: base(hitObjectCount)
|
|
{
|
|
Health.Value = 1;
|
|
Accuracy.Value = 1;
|
|
}
|
|
|
|
protected override void UpdateCalculations(JudgementInfo judgement)
|
|
{
|
|
if (judgement != null)
|
|
{
|
|
switch (judgement.Result)
|
|
{
|
|
case HitResult.Hit:
|
|
Combo.Value++;
|
|
Health.Value += 0.1f;
|
|
break;
|
|
case HitResult.Miss:
|
|
Combo.Value = 0;
|
|
Health.Value -= 0.2f;
|
|
break;
|
|
}
|
|
}
|
|
|
|
int score = 0;
|
|
int maxScore = 0;
|
|
|
|
foreach (var judgementInfo in Judgements)
|
|
{
|
|
var j = (OsuJudgementInfo)judgementInfo;
|
|
score += j.ScoreValue;
|
|
maxScore += j.MaxScoreValue;
|
|
}
|
|
|
|
TotalScore.Value = score;
|
|
Accuracy.Value = (double)score / maxScore;
|
|
}
|
|
}
|
|
}
|