2019-01-24 08:43:03 +00:00
|
|
|
|
// 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.Catch.Objects;
|
2018-06-10 00:39:17 +00:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2018-12-27 13:36:57 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
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>
|
|
|
|
|
{
|
2019-03-20 02:22:34 +00:00
|
|
|
|
public CatchScoreProcessor(DrawableRuleset<CatchHitObject> drawableRuleset)
|
|
|
|
|
: base(drawableRuleset)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-10 00:39:17 +00:00
|
|
|
|
private float hpDrainRate;
|
|
|
|
|
|
2018-08-02 11:37:07 +00:00
|
|
|
|
protected override void ApplyBeatmap(Beatmap<CatchHitObject> beatmap)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2018-08-02 11:37:07 +00:00
|
|
|
|
base.ApplyBeatmap(beatmap);
|
2018-06-10 00:39:17 +00:00
|
|
|
|
|
2018-08-02 11:37:07 +00:00
|
|
|
|
hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate;
|
2018-06-10 00:39:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-22 08:51:43 +00:00
|
|
|
|
protected override double HpFactorFor(JudgementResult result)
|
2018-06-10 00:39:17 +00:00
|
|
|
|
{
|
2019-04-22 08:51:43 +00:00
|
|
|
|
switch (result.Type)
|
2018-06-10 00:39:17 +00:00
|
|
|
|
{
|
2019-04-22 07:59:14 +00:00
|
|
|
|
case HitResult.Miss:
|
|
|
|
|
return hpDrainRate;
|
|
|
|
|
default:
|
2019-04-22 08:24:22 +00:00
|
|
|
|
return 10.2 - hpDrainRate; // Award less HP as drain rate is increased
|
2018-06-10 00:39:17 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
2018-12-27 13:36:57 +00:00
|
|
|
|
|
2019-01-03 04:57:56 +00:00
|
|
|
|
public override HitWindows CreateHitWindows() => new CatchHitWindows();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|