mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 02:27:51 +08:00
33 lines
1.1 KiB
C#
33 lines
1.1 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.
|
|
|
|
namespace osu.Game.Rulesets.Scoring
|
|
{
|
|
/// <summary>
|
|
/// A <see cref="HealthProcessor"/> that accumulates health and causes a fail if the final health
|
|
/// is less than a value required to pass the beatmap.
|
|
/// </summary>
|
|
public class AccumulatingHealthProcessor : HealthProcessor
|
|
{
|
|
protected override bool DefaultFailCondition => JudgedHits == MaxHits && Health.Value < requiredHealth;
|
|
|
|
private readonly double requiredHealth;
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="AccumulatingHealthProcessor"/>.
|
|
/// </summary>
|
|
/// <param name="requiredHealth">The minimum amount of health required to beatmap.</param>
|
|
public AccumulatingHealthProcessor(double requiredHealth)
|
|
{
|
|
this.requiredHealth = requiredHealth;
|
|
}
|
|
|
|
protected override void Reset(bool storeResults)
|
|
{
|
|
base.Reset(storeResults);
|
|
|
|
Health.Value = 0;
|
|
}
|
|
}
|
|
}
|