mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
85 lines
2.8 KiB
C#
85 lines
2.8 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 System.Collections.Generic;
|
|
using osu.Framework.Extensions;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
namespace osu.Game.Rulesets.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;
|
|
|
|
scoreResultCounts.Clear();
|
|
comboResultCounts.Clear();
|
|
}
|
|
|
|
private readonly Dictionary<OsuScoreResult, int> scoreResultCounts = new Dictionary<OsuScoreResult, int>();
|
|
private readonly Dictionary<ComboResult, int> comboResultCounts = new Dictionary<ComboResult, int>();
|
|
|
|
public override void PopulateScore(Score score)
|
|
{
|
|
base.PopulateScore(score);
|
|
|
|
score.Statistics[@"300"] = scoreResultCounts.GetOrDefault(OsuScoreResult.Hit300);
|
|
score.Statistics[@"100"] = scoreResultCounts.GetOrDefault(OsuScoreResult.Hit100);
|
|
score.Statistics[@"50"] = scoreResultCounts.GetOrDefault(OsuScoreResult.Hit50);
|
|
score.Statistics[@"x"] = scoreResultCounts.GetOrDefault(OsuScoreResult.Miss);
|
|
}
|
|
|
|
protected override void OnNewJudgement(OsuJudgement judgement)
|
|
{
|
|
if (judgement != null)
|
|
{
|
|
if (judgement.Result != HitResult.None)
|
|
{
|
|
scoreResultCounts[judgement.Score] = scoreResultCounts.GetOrDefault(judgement.Score) + 1;
|
|
comboResultCounts[judgement.Combo] = comboResultCounts.GetOrDefault(judgement.Combo) + 1;
|
|
}
|
|
|
|
switch (judgement.Result)
|
|
{
|
|
case HitResult.Hit:
|
|
Health.Value += 0.1f;
|
|
break;
|
|
case HitResult.Miss:
|
|
Health.Value -= 0.2f;
|
|
break;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|