2018-04-13 17:19:50 +08: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 08:39:17 +08:00
|
|
|
|
using System;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
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;
|
|
|
|
|
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 08:39:17 +08:00
|
|
|
|
private float hpDrainRate;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected override void SimulateAutoplay(Beatmap<CatchHitObject> beatmap)
|
|
|
|
|
{
|
2018-06-10 08:39:17 +08:00
|
|
|
|
hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
foreach (var obj in beatmap.HitObjects)
|
|
|
|
|
{
|
|
|
|
|
switch (obj)
|
|
|
|
|
{
|
|
|
|
|
case JuiceStream stream:
|
2018-06-10 08:38:17 +08:00
|
|
|
|
foreach (var nestedObject in stream.NestedHitObjects)
|
|
|
|
|
switch (nestedObject)
|
|
|
|
|
{
|
|
|
|
|
case TinyDroplet _:
|
|
|
|
|
AddJudgement(new CatchTinyDropletJudgement { Result = HitResult.Perfect });
|
|
|
|
|
break;
|
|
|
|
|
case Droplet _:
|
|
|
|
|
AddJudgement(new CatchDropletJudgement { Result = HitResult.Perfect });
|
|
|
|
|
break;
|
|
|
|
|
case Fruit _:
|
|
|
|
|
AddJudgement(new CatchJudgement { Result = HitResult.Perfect });
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
break;
|
|
|
|
|
case BananaShower shower:
|
|
|
|
|
foreach (var _ in shower.NestedHitObjects.Cast<CatchHitObject>())
|
2018-06-10 08:38:17 +08:00
|
|
|
|
AddJudgement(new CatchBananaJudgement { Result = HitResult.Perfect });
|
2018-04-13 17:19:50 +08:00
|
|
|
|
break;
|
|
|
|
|
case Fruit _:
|
|
|
|
|
AddJudgement(new CatchJudgement { Result = HitResult.Perfect });
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-06-10 08:39:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private const double harshness = 0.01;
|
|
|
|
|
|
|
|
|
|
protected override void OnNewJudgement(Judgement judgement)
|
|
|
|
|
{
|
|
|
|
|
base.OnNewJudgement(judgement);
|
|
|
|
|
|
|
|
|
|
if (judgement.Result == HitResult.Miss)
|
|
|
|
|
{
|
2018-06-12 04:29:36 +08:00
|
|
|
|
if (!judgement.IsBonus)
|
2018-06-10 08:39:17 +08:00
|
|
|
|
Health.Value -= hpDrainRate * (harshness * 2);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-12 04:30:30 +08:00
|
|
|
|
if (judgement is CatchJudgement catchJudgement)
|
|
|
|
|
Health.Value += Math.Max(catchJudgement.HealthIncrease - hpDrainRate, 0) * harshness;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|