2016-12-06 17:56:20 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
2016-11-29 19:30:16 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2016-11-29 20:28:43 +08:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
|
|
|
|
using osu.Game.Modes.Osu.Objects.Drawables;
|
2016-11-29 19:30:16 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Modes.Osu
|
|
|
|
|
{
|
|
|
|
|
class OsuScoreProcessor : ScoreProcessor
|
|
|
|
|
{
|
2016-11-29 21:02:37 +08:00
|
|
|
|
protected override void UpdateCalculations(JudgementInfo judgement)
|
2016-11-29 20:28:43 +08:00
|
|
|
|
{
|
2016-11-29 21:02:37 +08:00
|
|
|
|
if (judgement != null)
|
2016-11-29 20:28:43 +08:00
|
|
|
|
{
|
2016-11-29 21:02:37 +08:00
|
|
|
|
switch (judgement.Result)
|
|
|
|
|
{
|
|
|
|
|
case HitResult.Hit:
|
|
|
|
|
Combo.Value++;
|
2017-01-10 17:21:07 +08:00
|
|
|
|
Health.Value += 0.1f;
|
2016-11-29 21:02:37 +08:00
|
|
|
|
break;
|
|
|
|
|
case HitResult.Miss:
|
|
|
|
|
Combo.Value = 0;
|
2017-01-10 17:21:07 +08:00
|
|
|
|
Health.Value -= 0.2f;
|
2016-11-29 21:02:37 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2016-11-29 20:28:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int score = 0;
|
|
|
|
|
int maxScore = 0;
|
|
|
|
|
|
|
|
|
|
foreach (OsuJudgementInfo j in Judgements)
|
|
|
|
|
{
|
|
|
|
|
switch (j.Score)
|
|
|
|
|
{
|
|
|
|
|
case OsuScoreResult.Miss:
|
|
|
|
|
maxScore += 300;
|
|
|
|
|
break;
|
|
|
|
|
case OsuScoreResult.Hit50:
|
|
|
|
|
score += 50;
|
|
|
|
|
maxScore += 300;
|
|
|
|
|
break;
|
|
|
|
|
case OsuScoreResult.Hit100:
|
|
|
|
|
score += 100;
|
|
|
|
|
maxScore += 300;
|
|
|
|
|
break;
|
|
|
|
|
case OsuScoreResult.Hit300:
|
|
|
|
|
score += 300;
|
|
|
|
|
maxScore += 300;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TotalScore.Value = score;
|
|
|
|
|
Accuracy.Value = (double)score / maxScore;
|
|
|
|
|
}
|
2016-11-29 19:30:16 +08:00
|
|
|
|
}
|
|
|
|
|
}
|