2019-01-24 17:43:03 +09: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-11-07 16:21:32 +09:00
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2022-05-12 19:25:51 +09:00
|
|
|
using osu.Framework.Allocation;
|
2018-11-07 16:21:32 +09:00
|
|
|
using osu.Game.Rulesets.Edit;
|
2022-05-12 19:25:51 +09:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2022-05-12 19:42:35 +09:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components;
|
2018-11-07 16:21:32 +09:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2021-05-13 19:53:32 +09:00
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
2022-05-12 19:25:51 +09:00
|
|
|
using osu.Game.Screens.Edit;
|
2018-11-07 16:21:32 +09:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints
|
|
|
|
{
|
2021-05-13 19:53:32 +09:00
|
|
|
public abstract class OsuSelectionBlueprint<T> : HitObjectSelectionBlueprint<T>
|
2019-09-27 18:45:22 +09:00
|
|
|
where T : OsuHitObject
|
2018-11-07 16:21:32 +09:00
|
|
|
{
|
2022-05-12 19:25:51 +09:00
|
|
|
[Resolved]
|
|
|
|
private EditorClock editorClock { get; set; }
|
|
|
|
|
2021-05-13 19:53:32 +09:00
|
|
|
protected new DrawableOsuHitObject DrawableObject => (DrawableOsuHitObject)base.DrawableObject;
|
2018-11-07 16:21:32 +09:00
|
|
|
|
2020-05-27 13:40:16 +09:00
|
|
|
protected override bool AlwaysShowWhenSelected => true;
|
|
|
|
|
2022-05-12 23:37:29 +09:00
|
|
|
protected override bool ShouldBeAlive => base.ShouldBeAlive
|
|
|
|
|| (editorClock.CurrentTime >= Item.StartTime && editorClock.CurrentTime - Item.GetEndTime() < HitCircleOverlapMarker.FADE_OUT_EXTENSION);
|
2022-05-12 19:25:51 +09:00
|
|
|
|
2021-05-13 19:53:32 +09:00
|
|
|
protected OsuSelectionBlueprint(T hitObject)
|
|
|
|
: base(hitObject)
|
2018-11-07 16:21:32 +09:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|