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-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-07-21 10:38:28 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
|
{
|
2018-06-29 12:07:00 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides functionality to convert a <see cref="IBeatmap"/> for a <see cref="Ruleset"/>.
|
|
|
|
|
/// </summary>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public interface IBeatmapConverter
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Invoked when a <see cref="HitObject"/> has been converted.
|
|
|
|
|
/// The first argument contains the <see cref="HitObject"/> that was converted.
|
|
|
|
|
/// The second argument contains the <see cref="HitObject"/>s that were output from the conversion process.
|
|
|
|
|
/// </summary>
|
|
|
|
|
event Action<HitObject, IEnumerable<HitObject>> ObjectConverted;
|
|
|
|
|
|
2018-04-19 21:04:12 +08:00
|
|
|
|
IBeatmap Beatmap { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether <see cref="Beatmap"/> can be converted by this <see cref="IBeatmapConverter"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
bool CanConvert { get; }
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
2018-04-19 21:04:12 +08:00
|
|
|
|
/// Converts <see cref="Beatmap"/>.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2018-04-19 21:04:12 +08:00
|
|
|
|
IBeatmap Convert();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|