2021-02-24 13:32:50 +08: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.
|
|
|
|
|
|
|
|
using System;
|
2021-08-12 10:12:35 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Game.Configuration;
|
2021-02-24 13:32:50 +08:00
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
public abstract class ModFailCondition : Mod, IApplicableToHealthProcessor, IApplicableFailOverride
|
|
|
|
{
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModNoFail), typeof(ModRelax), typeof(ModAutoplay) };
|
|
|
|
|
2021-08-12 10:12:35 +08:00
|
|
|
[SettingSource("Restart on fail", "Automatically restarts when failed.")]
|
|
|
|
public BindableBool Restart { get; } = new BindableBool();
|
|
|
|
|
2021-02-24 14:03:37 +08:00
|
|
|
public virtual bool PerformFail() => true;
|
2021-02-24 13:32:50 +08:00
|
|
|
|
2021-08-12 10:14:01 +08:00
|
|
|
public virtual bool RestartOnFail => Restart.Value;
|
2022-06-09 02:02:15 +08:00
|
|
|
private HealthProcessor healthProcessorInternal;
|
2021-02-24 13:32:50 +08:00
|
|
|
|
|
|
|
public void ApplyToHealthProcessor(HealthProcessor healthProcessor)
|
|
|
|
{
|
2022-06-09 02:02:15 +08:00
|
|
|
healthProcessorInternal = healthProcessor;
|
2021-02-24 13:32:50 +08:00
|
|
|
healthProcessor.FailConditions += FailCondition;
|
|
|
|
}
|
|
|
|
|
2022-06-09 02:02:15 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Immediately triggers a failure on the loaded <see cref="HealthProcessor"/>.
|
|
|
|
/// </summary>
|
|
|
|
protected void TriggerArbitraryFailure() => healthProcessorInternal.TriggerFailure();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Determines whether <paramref name="result"/> should trigger a failure. Called every time a
|
|
|
|
/// judgement is applied to <paramref name="healthProcessor"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="healthProcessor">The loaded <see cref="HealthProcessor"/>.</param>
|
|
|
|
/// <param name="result">The latest <see cref="JudgementResult"/>.</param>
|
|
|
|
/// <returns>Whether the fail condition has been met.</returns>
|
|
|
|
/// <remarks>
|
|
|
|
/// This method should only be used to trigger failures based on <paramref name="result"/>.
|
|
|
|
/// Using outside values to evaluate failure may introduce event ordering discrepancies, use
|
|
|
|
/// an <see cref="IApplicableMod"/> with <see cref="TriggerArbitraryFailure"/> instead.
|
|
|
|
/// </remarks>
|
2021-02-24 13:32:50 +08:00
|
|
|
protected abstract bool FailCondition(HealthProcessor healthProcessor, JudgementResult result);
|
|
|
|
}
|
|
|
|
}
|