2021-02-05 13:04:32 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-02-05 13:04:32 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2021-02-08 19:11:06 +08:00
|
|
|
using osu.Game.Rulesets.UI;
|
2021-02-05 13:04:32 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
|
|
{
|
|
|
|
public interface IHitPolicy
|
|
|
|
{
|
2021-02-05 13:09:25 +08:00
|
|
|
/// <summary>
|
2021-02-08 19:11:06 +08:00
|
|
|
/// The <see cref="IHitObjectContainer"/> containing the <see cref="DrawableHitObject"/>s which this <see cref="IHitPolicy"/> applies to.
|
2021-02-05 13:09:25 +08:00
|
|
|
/// </summary>
|
2021-02-08 19:11:06 +08:00
|
|
|
IHitObjectContainer HitObjectContainer { set; }
|
2021-02-05 13:09:25 +08:00
|
|
|
|
2021-02-05 13:04:32 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Determines whether a <see cref="DrawableHitObject"/> can be hit at a point in time.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hitObject">The <see cref="DrawableHitObject"/> to check.</param>
|
|
|
|
/// <param name="time">The time to check.</param>
|
|
|
|
/// <returns>Whether <paramref name="hitObject"/> can be hit at the given <paramref name="time"/>.</returns>
|
|
|
|
bool IsHittable(DrawableHitObject hitObject, double time);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Handles a <see cref="HitObject"/> being hit.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hitObject">The <see cref="HitObject"/> that was hit.</param>
|
|
|
|
void HandleHit(DrawableHitObject hitObject);
|
|
|
|
}
|
|
|
|
}
|