// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Beatmaps; using osu.Game.Rulesets.Judgements; using osu.Game.Rulesets.Mania.Objects; using osu.Game.Rulesets.Scoring; using osu.Game.Rulesets.UI; namespace osu.Game.Rulesets.Mania.Scoring { internal class ManiaScoreProcessor : ScoreProcessor { /// /// The hit HP multiplier at OD = 0. /// private const double hp_multiplier_min = 0.75; /// /// The hit HP multiplier at OD = 0. /// private const double hp_multiplier_mid = 0.85; /// /// The hit HP multiplier at OD = 0. /// private const double hp_multiplier_max = 1; /// /// The MISS HP multiplier at OD = 0. /// private const double hp_multiplier_miss_min = 0.5; /// /// The MISS HP multiplier at OD = 5. /// private const double hp_multiplier_miss_mid = 0.75; /// /// The MISS HP multiplier at OD = 10. /// private const double hp_multiplier_miss_max = 1; /// /// The MISS HP multiplier. This is multiplied to the miss hp increase. /// private double hpMissMultiplier = 1; /// /// The HIT HP multiplier. This is multiplied to hit hp increases. /// private double hpMultiplier = 1; public ManiaScoreProcessor(DrawableRuleset drawableRuleset) : base(drawableRuleset) { } protected override void ApplyBeatmap(Beatmap beatmap) { base.ApplyBeatmap(beatmap); BeatmapDifficulty difficulty = beatmap.BeatmapInfo.BaseDifficulty; hpMultiplier = BeatmapDifficulty.DifficultyRange(difficulty.DrainRate, hp_multiplier_min, hp_multiplier_mid, hp_multiplier_max); hpMissMultiplier = BeatmapDifficulty.DifficultyRange(difficulty.DrainRate, hp_multiplier_miss_min, hp_multiplier_miss_mid, hp_multiplier_miss_max); } protected override void SimulateAutoplay(Beatmap beatmap) { while (true) { base.SimulateAutoplay(beatmap); if (!HasFailed) break; hpMultiplier *= 1.01; hpMissMultiplier *= 0.98; Reset(false); } } protected override double HealthAdjustmentFactorFor(JudgementResult result) => result.Type == HitResult.Miss ? hpMissMultiplier : hpMultiplier; public override HitWindows CreateHitWindows() => new ManiaHitWindows(); } }