2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-06 09:56:20 +00:00
|
|
|
|
|
2016-11-29 12:28:43 +00:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
2017-03-15 10:23:42 +00:00
|
|
|
|
using osu.Game.Modes.Osu.Judgements;
|
2017-03-16 03:40:35 +00:00
|
|
|
|
using osu.Game.Modes.Osu.Objects;
|
2017-03-24 00:51:52 +00:00
|
|
|
|
using osu.Game.Modes.Scoring;
|
2017-03-16 03:40:35 +00:00
|
|
|
|
using osu.Game.Modes.UI;
|
2016-11-29 11:30:16 +00:00
|
|
|
|
|
2017-03-24 00:51:52 +00:00
|
|
|
|
namespace osu.Game.Modes.Osu.Scoring
|
2016-11-29 11:30:16 +00:00
|
|
|
|
{
|
2017-03-23 10:00:18 +00:00
|
|
|
|
internal class OsuScoreProcessor : ScoreProcessor<OsuHitObject, OsuJudgement>
|
2016-11-29 11:30:16 +00:00
|
|
|
|
{
|
2017-03-16 04:13:45 +00:00
|
|
|
|
public OsuScoreProcessor()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 10:00:18 +00:00
|
|
|
|
public OsuScoreProcessor(HitRenderer<OsuHitObject, OsuJudgement> hitRenderer)
|
2017-03-16 03:40:35 +00:00
|
|
|
|
: base(hitRenderer)
|
2017-01-16 20:14:35 +00:00
|
|
|
|
{
|
2017-03-16 04:13:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
2017-01-20 07:51:21 +00:00
|
|
|
|
Health.Value = 1;
|
2017-03-04 07:48:32 +00:00
|
|
|
|
Accuracy.Value = 1;
|
2017-01-16 20:14:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-30 01:51:14 +00:00
|
|
|
|
protected override void OnNewJudgement(OsuJudgement judgement)
|
2016-11-29 12:28:43 +00:00
|
|
|
|
{
|
2016-11-29 13:02:37 +00:00
|
|
|
|
if (judgement != null)
|
2016-11-29 12:28:43 +00:00
|
|
|
|
{
|
2016-11-29 13:02:37 +00:00
|
|
|
|
switch (judgement.Result)
|
|
|
|
|
{
|
|
|
|
|
case HitResult.Hit:
|
|
|
|
|
Combo.Value++;
|
2017-01-10 09:21:07 +00:00
|
|
|
|
Health.Value += 0.1f;
|
2016-11-29 13:02:37 +00:00
|
|
|
|
break;
|
|
|
|
|
case HitResult.Miss:
|
|
|
|
|
Combo.Value = 0;
|
2017-01-10 09:21:07 +00:00
|
|
|
|
Health.Value -= 0.2f;
|
2016-11-29 13:02:37 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2016-11-29 12:28:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int score = 0;
|
|
|
|
|
int maxScore = 0;
|
|
|
|
|
|
2017-03-23 10:00:18 +00:00
|
|
|
|
foreach (var j in Judgements)
|
2016-11-29 12:28:43 +00:00
|
|
|
|
{
|
2017-02-16 08:33:13 +00:00
|
|
|
|
score += j.ScoreValue;
|
|
|
|
|
maxScore += j.MaxScoreValue;
|
2016-11-29 12:28:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TotalScore.Value = score;
|
|
|
|
|
Accuracy.Value = (double)score / maxScore;
|
|
|
|
|
}
|
2016-11-29 11:30:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|