2021-04-03 17:47:39 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-02-12 15:01:25 +08:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-02-12 15:01:25 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
2021-02-06 12:06:16 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2019-02-12 15:01:25 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Difficulty.Skills
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-04-03 17:52:36 +08:00
|
|
|
/// A bare minimal abstract skill for fully custom skill implementations.
|
2019-02-12 15:01:25 +08:00
|
|
|
/// </summary>
|
2021-11-21 11:12:38 +08:00
|
|
|
/// <remarks>
|
2022-05-22 23:26:22 +08:00
|
|
|
/// This class should be considered a "processing" class and not persisted.
|
2021-11-21 11:12:38 +08:00
|
|
|
/// </remarks>
|
2019-02-12 15:01:25 +08:00
|
|
|
public abstract class Skill
|
|
|
|
{
|
2021-02-06 12:06:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Mods for use in skill calculations.
|
|
|
|
/// </summary>
|
|
|
|
protected IReadOnlyList<Mod> Mods => mods;
|
|
|
|
|
|
|
|
private readonly Mod[] mods;
|
|
|
|
|
|
|
|
protected Skill(Mod[] mods)
|
|
|
|
{
|
|
|
|
this.mods = mods;
|
|
|
|
}
|
|
|
|
|
2019-02-12 15:01:25 +08:00
|
|
|
/// <summary>
|
2021-04-03 17:52:36 +08:00
|
|
|
/// Process a <see cref="DifficultyHitObject"/>.
|
2019-02-12 15:01:25 +08:00
|
|
|
/// </summary>
|
2021-04-03 17:52:36 +08:00
|
|
|
/// <param name="current">The <see cref="DifficultyHitObject"/> to process.</param>
|
2022-05-23 04:45:27 +08:00
|
|
|
public abstract void Process(DifficultyHitObject current);
|
2019-02-12 15:01:25 +08:00
|
|
|
|
|
|
|
/// <summary>
|
2021-04-03 17:47:39 +08:00
|
|
|
/// Returns the calculated difficulty value representing all <see cref="DifficultyHitObject"/>s that have been processed up to this point.
|
2019-02-12 15:01:25 +08:00
|
|
|
/// </summary>
|
2021-04-03 17:52:36 +08:00
|
|
|
public abstract double DifficultyValue();
|
2019-02-12 15:01:25 +08:00
|
|
|
}
|
|
|
|
}
|