mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:57:25 +08:00
40 lines
1.7 KiB
C#
40 lines
1.7 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.
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Edit
|
|
{
|
|
public abstract class OverlaySelectionBlueprint : SelectionBlueprint
|
|
{
|
|
/// <summary>
|
|
/// The <see cref="DrawableHitObject"/> which this <see cref="OverlaySelectionBlueprint"/> applies to.
|
|
/// </summary>
|
|
public readonly DrawableHitObject DrawableObject;
|
|
|
|
/// <summary>
|
|
/// Whether the blueprint should be shown even when the <see cref="DrawableObject"/> is not alive.
|
|
/// </summary>
|
|
protected virtual bool AlwaysShowWhenSelected => false;
|
|
|
|
protected override bool ShouldBeAlive => (DrawableObject.IsAlive && DrawableObject.IsPresent) || (AlwaysShowWhenSelected && State == SelectionState.Selected);
|
|
|
|
protected OverlaySelectionBlueprint(DrawableHitObject drawableObject)
|
|
: base(drawableObject.HitObject)
|
|
{
|
|
DrawableObject = drawableObject;
|
|
}
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => DrawableObject.ReceivePositionalInputAt(screenSpacePos);
|
|
|
|
public override Vector2 ScreenSpaceSelectionPoint => DrawableObject.ScreenSpaceDrawQuad.Centre;
|
|
|
|
public override Quad SelectionQuad => DrawableObject.ScreenSpaceDrawQuad;
|
|
|
|
public override Vector2 GetInstantDelta(Vector2 screenSpacePosition) => DrawableObject.Parent.ToLocalSpace(screenSpacePosition) - DrawableObject.Position;
|
|
}
|
|
}
|