mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 11:07:25 +08:00
47 lines
1.2 KiB
C#
47 lines
1.2 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.Objects.Drawables;
|
|
using osu.Game.Modes.Osu.Judgements;
|
|
using osu.Game.Modes.Osu.Objects;
|
|
using osu.Game.Modes.Scoring;
|
|
using osu.Game.Modes.UI;
|
|
|
|
namespace osu.Game.Modes.Osu.Scoring
|
|
{
|
|
internal class OsuScoreProcessor : ScoreProcessor<OsuHitObject, OsuJudgement>
|
|
{
|
|
public OsuScoreProcessor()
|
|
{
|
|
}
|
|
|
|
public OsuScoreProcessor(HitRenderer<OsuHitObject, OsuJudgement> hitRenderer)
|
|
: base(hitRenderer)
|
|
{
|
|
}
|
|
|
|
protected override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
Health.Value = 1;
|
|
Accuracy.Value = 1;
|
|
}
|
|
|
|
protected override void OnNewJudgement(OsuJudgement judgement)
|
|
{
|
|
int score = 0;
|
|
int maxScore = 0;
|
|
|
|
foreach (var j in Judgements)
|
|
{
|
|
score += j.ScoreValue;
|
|
maxScore += j.MaxScoreValue;
|
|
}
|
|
|
|
TotalScore.Value = score;
|
|
Accuracy.Value = (double)score / maxScore;
|
|
}
|
|
}
|
|
}
|