2017-02-07 12:59:30 +08: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 17:56:20 +08:00
|
|
|
|
|
2017-04-19 14:40:10 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-04-20 10:02:56 +08:00
|
|
|
|
using osu.Framework.Extensions;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2017-04-19 14:40:10 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2016-11-29 19:30:16 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Scoring
|
2016-11-29 19:30:16 +08:00
|
|
|
|
{
|
2017-03-23 18:00:18 +08:00
|
|
|
|
internal class OsuScoreProcessor : ScoreProcessor<OsuHitObject, OsuJudgement>
|
2016-11-29 19:30:16 +08:00
|
|
|
|
{
|
2017-03-16 12:13:45 +08:00
|
|
|
|
public OsuScoreProcessor()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-09 12:28:29 +08:00
|
|
|
|
public OsuScoreProcessor(RulesetContainer<OsuHitObject, OsuJudgement> rulesetContainer)
|
|
|
|
|
: base(rulesetContainer)
|
2017-01-17 04:14:35 +08:00
|
|
|
|
{
|
2017-03-16 12:13:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-31 16:31:48 +08:00
|
|
|
|
|
|
|
|
|
float beatmapHp = 0;
|
|
|
|
|
|
|
|
|
|
protected override void ComputeTargets(Game.Beatmaps.Beatmap<OsuHitObject> beatmap)
|
|
|
|
|
{
|
|
|
|
|
beatmapHp = beatmap.BeatmapInfo.Difficulty.DrainRate;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-16 12:13:45 +08:00
|
|
|
|
protected override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
2017-08-31 14:36:25 +08:00
|
|
|
|
Health.Value = 0.5;
|
2017-03-04 15:48:32 +08:00
|
|
|
|
Accuracy.Value = 1;
|
2017-04-19 14:40:10 +08:00
|
|
|
|
|
|
|
|
|
scoreResultCounts.Clear();
|
|
|
|
|
comboResultCounts.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly Dictionary<OsuScoreResult, int> scoreResultCounts = new Dictionary<OsuScoreResult, int>();
|
|
|
|
|
private readonly Dictionary<ComboResult, int> comboResultCounts = new Dictionary<ComboResult, int>();
|
|
|
|
|
|
2017-04-20 10:16:08 +08:00
|
|
|
|
public override void PopulateScore(Score score)
|
2017-04-19 14:40:10 +08:00
|
|
|
|
{
|
2017-04-20 10:16:08 +08:00
|
|
|
|
base.PopulateScore(score);
|
2017-04-19 14:40:10 +08:00
|
|
|
|
|
2017-04-20 10:02:56 +08:00
|
|
|
|
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);
|
2017-01-17 04:14:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-30 09:51:14 +08:00
|
|
|
|
protected override void OnNewJudgement(OsuJudgement judgement)
|
2016-11-29 20:28:43 +08:00
|
|
|
|
{
|
2017-04-11 23:05:21 +08:00
|
|
|
|
if (judgement != null)
|
|
|
|
|
{
|
2017-04-19 14:40:10 +08:00
|
|
|
|
if (judgement.Result != HitResult.None)
|
|
|
|
|
{
|
2017-04-20 10:23:40 +08:00
|
|
|
|
scoreResultCounts[judgement.Score] = scoreResultCounts.GetOrDefault(judgement.Score) + 1;
|
|
|
|
|
comboResultCounts[judgement.Combo] = comboResultCounts.GetOrDefault(judgement.Combo) + 1;
|
2017-04-19 14:40:10 +08:00
|
|
|
|
}
|
2017-08-31 14:36:25 +08:00
|
|
|
|
switch (judgement.Score)
|
2017-04-11 23:05:21 +08:00
|
|
|
|
{
|
2017-08-31 14:36:25 +08:00
|
|
|
|
case OsuScoreResult.Hit300:
|
2017-08-31 16:31:48 +08:00
|
|
|
|
Health.Value += (10.2 - beatmapHp) * 0.02;
|
2017-08-31 14:36:25 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OsuScoreResult.Hit100:
|
2017-08-31 16:31:48 +08:00
|
|
|
|
Health.Value += (8 - beatmapHp) * 0.02;
|
2017-04-11 23:05:21 +08:00
|
|
|
|
break;
|
2017-08-31 14:36:25 +08:00
|
|
|
|
|
|
|
|
|
case OsuScoreResult.Hit50:
|
2017-08-31 16:31:48 +08:00
|
|
|
|
Health.Value += (4 - beatmapHp) * 0.02;
|
2017-08-31 14:36:25 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OsuScoreResult.Miss:
|
2017-08-31 16:31:48 +08:00
|
|
|
|
Health.Value -= beatmapHp * 0.04;
|
2017-04-11 23:05:21 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-29 20:28:43 +08:00
|
|
|
|
int score = 0;
|
|
|
|
|
int maxScore = 0;
|
|
|
|
|
|
2017-03-23 18:00:18 +08:00
|
|
|
|
foreach (var j in Judgements)
|
2016-11-29 20:28:43 +08:00
|
|
|
|
{
|
2017-02-16 16:33:13 +08:00
|
|
|
|
score += j.ScoreValue;
|
|
|
|
|
maxScore += j.MaxScoreValue;
|
2016-11-29 20:28:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TotalScore.Value = score;
|
|
|
|
|
Accuracy.Value = (double)score / maxScore;
|
|
|
|
|
}
|
2016-11-29 19:30:16 +08:00
|
|
|
|
}
|
|
|
|
|
}
|