osu/osu.Game.Rulesets.Catch/Scoring/CatchScoreProcessor.cs

46 lines
1.3 KiB
C#
Raw Normal View History

2018-04-13 09:19:50 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-06-10 00:39:17 +00:00
using System;
2018-04-13 09:19:50 +00:00
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.Objects;
2018-06-10 00:39:17 +00:00
using osu.Game.Rulesets.Judgements;
2018-04-13 09:19:50 +00:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.UI;
namespace osu.Game.Rulesets.Catch.Scoring
{
public class CatchScoreProcessor : ScoreProcessor<CatchHitObject>
{
public CatchScoreProcessor(RulesetContainer<CatchHitObject> rulesetContainer)
: base(rulesetContainer)
{
}
2018-06-10 00:39:17 +00:00
private float hpDrainRate;
protected override void ApplyBeatmap(Beatmap<CatchHitObject> beatmap)
2018-04-13 09:19:50 +00:00
{
base.ApplyBeatmap(beatmap);
2018-06-10 00:39:17 +00:00
hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate;
2018-06-10 00:39:17 +00:00
}
private const double harshness = 0.01;
protected override void ApplyResult(JudgementResult result)
2018-06-10 00:39:17 +00:00
{
base.ApplyResult(result);
2018-06-10 00:39:17 +00:00
if (result.Type == HitResult.Miss)
2018-06-10 00:39:17 +00:00
{
if (!result.Judgement.IsBonus)
2018-06-10 00:39:17 +00:00
Health.Value -= hpDrainRate * (harshness * 2);
return;
}
Health.Value += Math.Max(result.Judgement.HealthIncreaseFor(result) - hpDrainRate, 0) * harshness;
2018-04-13 09:19:50 +00:00
}
}
}