mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
44 lines
1.4 KiB
C#
44 lines
1.4 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
namespace osu.Game.Rulesets.Difficulty.Skills
|
|
{
|
|
/// <summary>
|
|
/// A bare minimal abstract skill for fully custom skill implementations.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This class should be considered a "processing" class and not persisted.
|
|
/// </remarks>
|
|
public abstract class Skill
|
|
{
|
|
/// <summary>
|
|
/// Mods for use in skill calculations.
|
|
/// </summary>
|
|
protected IReadOnlyList<Mod> Mods => mods;
|
|
|
|
private readonly Mod[] mods;
|
|
|
|
protected Skill(Mod[] mods)
|
|
{
|
|
this.mods = mods;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Process a <see cref="DifficultyHitObject"/>.
|
|
/// </summary>
|
|
/// <param name="current">The <see cref="DifficultyHitObject"/> to process.</param>
|
|
public abstract void Process(DifficultyHitObject current);
|
|
|
|
/// <summary>
|
|
/// Returns the calculated difficulty value representing all <see cref="DifficultyHitObject"/>s that have been processed up to this point.
|
|
/// </summary>
|
|
public abstract double DifficultyValue();
|
|
}
|
|
}
|