osu/osu.Game.Rulesets.Osu/Scoring/OsuScoreProcessor.cs

57 lines
1.6 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Judgements;
2018-12-27 15:14:00 +00:00
using osu.Game.Rulesets.Objects;
2018-04-13 09:19:50 +00:00
using osu.Game.Rulesets.Osu.Judgements;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Osu.Scoring
{
2019-12-11 08:25:06 +00:00
internal class OsuScoreProcessor : ScoreProcessor
2018-04-13 09:19:50 +00:00
{
2019-12-11 08:25:06 +00:00
public OsuScoreProcessor(IBeatmap beatmap)
: base(beatmap)
2018-04-13 09:19:50 +00:00
{
}
private float hpDrainRate;
2019-12-11 08:25:06 +00:00
protected override void ApplyBeatmap(IBeatmap beatmap)
2018-04-13 09:19:50 +00:00
{
base.ApplyBeatmap(beatmap);
2018-04-13 09:19:50 +00:00
hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate;
2018-04-13 09:19:50 +00:00
}
2019-04-22 09:08:15 +00:00
protected override double HealthAdjustmentFactorFor(JudgementResult result)
2019-04-22 08:24:42 +00:00
{
2019-04-22 08:51:43 +00:00
switch (result.Type)
2018-04-13 09:19:50 +00:00
{
case HitResult.Great:
2019-04-22 08:24:42 +00:00
return 10.2 - hpDrainRate;
2018-04-13 09:19:50 +00:00
case HitResult.Good:
2019-04-22 08:24:42 +00:00
return 8 - hpDrainRate;
2018-04-13 09:19:50 +00:00
case HitResult.Meh:
2019-04-22 08:24:42 +00:00
return 4 - hpDrainRate;
2018-04-13 09:19:50 +00:00
2019-04-22 08:24:42 +00:00
// case HitResult.SliderTick:
// return Math.Max(7 - hpDrainRate, 0) * 0.01;
2018-04-13 09:19:50 +00:00
case HitResult.Miss:
2019-04-22 08:24:42 +00:00
return hpDrainRate;
default:
return 0;
2018-04-13 09:19:50 +00:00
}
}
2018-08-02 12:07:11 +00:00
protected override JudgementResult CreateResult(HitObject hitObject, Judgement judgement) => new OsuJudgementResult(hitObject, judgement);
2018-12-27 15:14:00 +00:00
public override HitWindows CreateHitWindows() => new OsuHitWindows();
2018-04-13 09:19:50 +00:00
}
}