1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-20 11:42:54 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Scoring/CatchScoreProcessor.cs

41 lines
1.1 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 17:19:50 +08:00
using osu.Game.Beatmaps;
2018-06-10 08:39:17 +08:00
using osu.Game.Rulesets.Judgements;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Catch.Scoring
{
2019-12-11 16:25:06 +08:00
public class CatchScoreProcessor : ScoreProcessor
2018-04-13 17:19:50 +08:00
{
2019-12-11 16:25:06 +08:00
public CatchScoreProcessor(IBeatmap beatmap)
: base(beatmap)
2018-04-13 17:19:50 +08:00
{
}
2018-06-10 08:39:17 +08:00
private float hpDrainRate;
2019-12-11 16:25:06 +08:00
protected override void ApplyBeatmap(IBeatmap beatmap)
2018-04-13 17:19:50 +08:00
{
base.ApplyBeatmap(beatmap);
2018-06-10 08:39:17 +08:00
hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate;
2018-06-10 08:39:17 +08:00
}
2019-04-22 17:08:15 +08:00
protected override double HealthAdjustmentFactorFor(JudgementResult result)
2018-06-10 08:39:17 +08:00
{
2019-04-22 16:51:43 +08:00
switch (result.Type)
2018-06-10 08:39:17 +08:00
{
case HitResult.Miss:
return hpDrainRate;
default:
return 10.2 - hpDrainRate; // Award less HP as drain rate is increased
2018-06-10 08:39:17 +08:00
}
2018-04-13 17:19:50 +08:00
}
2018-12-27 21:36:57 +08:00
public override HitWindows CreateHitWindows() => new CatchHitWindows();
2018-04-13 17:19:50 +08:00
}
}