// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Framework.Extensions; using osu.Game.Beatmaps; using osu.Game.Rulesets.Judgements; using osu.Game.Rulesets.Objects; using osu.Game.Rulesets.Osu.Judgements; using osu.Game.Rulesets.Osu.Objects; using osu.Game.Rulesets.Scoring; using osu.Game.Rulesets.UI; namespace osu.Game.Rulesets.Osu.Scoring { internal class OsuScoreProcessor : ScoreProcessor { public OsuScoreProcessor(DrawableRuleset drawableRuleset) : base(drawableRuleset) { } private float hpDrainRate; private readonly Dictionary comboResultCounts = new Dictionary(); protected override void ApplyBeatmap(Beatmap beatmap) { base.ApplyBeatmap(beatmap); hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate; } protected override void Reset(bool storeResults) { base.Reset(storeResults); comboResultCounts.Clear(); } protected override void ApplyResult(JudgementResult result) { base.ApplyResult(result); var osuResult = (OsuJudgementResult)result; if (result.Type != HitResult.None) comboResultCounts[osuResult.ComboType] = comboResultCounts.GetOrDefault(osuResult.ComboType) + 1; } protected override double HealthAdjustmentFactorFor(JudgementResult result) { switch (result.Type) { case HitResult.Great: return 10.2 - hpDrainRate; case HitResult.Good: return 8 - hpDrainRate; case HitResult.Meh: return 4 - hpDrainRate; // case HitResult.SliderTick: // return Math.Max(7 - hpDrainRate, 0) * 0.01; case HitResult.Miss: return hpDrainRate; default: return 0; } } protected override JudgementResult CreateResult(Judgement judgement) => new OsuJudgementResult(judgement); public override HitWindows CreateHitWindows() => new OsuHitWindows(); } }