2019-01-24 16:43:03 +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.
|
2018-05-10 18:51:40 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2018-05-10 18:51:40 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
using osu.Game.Beatmaps.Timing;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2022-02-16 11:05:55 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-05-10 18:51:40 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
{
|
2022-07-28 14:41:28 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A materialised beatmap.
|
|
|
|
/// Generally this interface will be implemented alongside <see cref="IBeatmap{T}"/>, which exposes the ruleset-typed hit objects.
|
|
|
|
/// </summary>
|
2021-08-31 13:38:35 +08:00
|
|
|
public interface IBeatmap
|
2018-05-10 18:51:40 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// This beatmap's info.
|
|
|
|
/// </summary>
|
|
|
|
BeatmapInfo BeatmapInfo { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// This beatmap's metadata.
|
|
|
|
/// </summary>
|
|
|
|
BeatmapMetadata Metadata { get; }
|
|
|
|
|
2021-10-02 11:34:29 +08:00
|
|
|
/// <summary>
|
|
|
|
/// This beatmap's difficulty settings.
|
|
|
|
/// </summary>
|
|
|
|
public BeatmapDifficulty Difficulty { get; set; }
|
|
|
|
|
2018-05-10 18:51:40 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The control points in this beatmap.
|
|
|
|
/// </summary>
|
2021-01-15 16:34:01 +08:00
|
|
|
ControlPointInfo ControlPointInfo { get; set; }
|
2018-05-10 18:51:40 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The breaks in this beatmap.
|
|
|
|
/// </summary>
|
|
|
|
List<BreakPeriod> Breaks { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Total amount of break time in the beatmap.
|
|
|
|
/// </summary>
|
|
|
|
double TotalBreakTime { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The hitobjects contained by this beatmap.
|
|
|
|
/// </summary>
|
2018-10-11 18:53:07 +08:00
|
|
|
IReadOnlyList<HitObject> HitObjects { get; }
|
2018-05-10 18:51:40 +08:00
|
|
|
|
2018-05-11 13:07:17 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Returns statistics for the <see cref="HitObjects"/> contained in this beatmap.
|
|
|
|
/// </summary>
|
|
|
|
IEnumerable<BeatmapStatistic> GetStatistics();
|
|
|
|
|
2021-01-15 13:28:49 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Finds the most common beat length represented by the control points in this beatmap.
|
|
|
|
/// </summary>
|
|
|
|
double GetMostCommonBeatLength();
|
|
|
|
|
2018-05-10 18:51:40 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Creates a shallow-clone of this beatmap and returns it.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>The shallow-cloned beatmap.</returns>
|
|
|
|
IBeatmap Clone();
|
|
|
|
}
|
2019-08-28 19:19:22 +08:00
|
|
|
|
2022-07-28 14:41:28 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A materialised beatmap containing converted HitObjects.
|
|
|
|
/// </summary>
|
2019-08-28 19:19:22 +08:00
|
|
|
public interface IBeatmap<out T> : IBeatmap
|
|
|
|
where T : HitObject
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The hitobjects contained by this beatmap.
|
|
|
|
/// </summary>
|
|
|
|
new IReadOnlyList<T> HitObjects { get; }
|
|
|
|
}
|
2022-02-16 11:05:55 +08:00
|
|
|
|
|
|
|
public static class BeatmapExtensions
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Finds the maximum achievable combo by hitting all <see cref="HitObject"/>s in a beatmap.
|
|
|
|
/// </summary>
|
|
|
|
public static int GetMaxCombo(this IBeatmap beatmap)
|
|
|
|
{
|
|
|
|
int combo = 0;
|
|
|
|
foreach (var h in beatmap.HitObjects)
|
|
|
|
addCombo(h, ref combo);
|
|
|
|
return combo;
|
|
|
|
|
|
|
|
static void addCombo(HitObject hitObject, ref int combo)
|
|
|
|
{
|
|
|
|
if (hitObject.CreateJudgement().MaxResult.AffectsCombo())
|
|
|
|
combo++;
|
|
|
|
|
|
|
|
foreach (var nested in hitObject.NestedHitObjects)
|
|
|
|
addCombo(nested, ref combo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-10 18:51:40 +08:00
|
|
|
}
|