mirror of
https://github.com/ppy/osu.git
synced 2025-02-12 14:02:54 +08:00
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
// 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.
|
|
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Scoring
|
|
{
|
|
public class CatchHealthProcessor : HealthProcessor
|
|
{
|
|
public CatchHealthProcessor(IBeatmap beatmap)
|
|
: base(beatmap)
|
|
{
|
|
}
|
|
|
|
private float hpDrainRate;
|
|
|
|
protected override void ApplyBeatmap(IBeatmap beatmap)
|
|
{
|
|
base.ApplyBeatmap(beatmap);
|
|
|
|
hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate;
|
|
}
|
|
|
|
protected override double HealthAdjustmentFactorFor(JudgementResult result)
|
|
{
|
|
switch (result.Type)
|
|
{
|
|
case HitResult.Miss:
|
|
return hpDrainRate;
|
|
|
|
default:
|
|
return 10.2 - hpDrainRate; // Award less HP as drain rate is increased
|
|
}
|
|
}
|
|
}
|
|
}
|