1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-02 05:47:24 +08:00
osu-lazer/osu.Game/Rulesets/Edit/SelectionBlueprint.cs

124 lines
4.4 KiB
C#
Raw Normal View History

// 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 osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
2019-11-12 12:38:42 +08:00
using osu.Framework.Graphics.UserInterface;
2018-05-11 09:48:07 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets.Objects;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Objects.Drawables;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Edit
{
/// <summary>
2018-11-06 17:06:34 +08:00
/// A blueprint placed above a <see cref="DrawableHitObject"/> adding editing functionality.
2018-04-13 17:19:50 +08:00
/// </summary>
public abstract class SelectionBlueprint : CompositeDrawable, IStateful<SelectionState>
2018-04-13 17:19:50 +08:00
{
/// <summary>
2018-11-06 16:56:04 +08:00
/// Invoked when this <see cref="SelectionBlueprint"/> has been selected.
2018-04-13 17:19:50 +08:00
/// </summary>
2018-11-06 16:56:04 +08:00
public event Action<SelectionBlueprint> Selected;
2018-04-13 17:19:50 +08:00
/// <summary>
2018-11-06 16:56:04 +08:00
/// Invoked when this <see cref="SelectionBlueprint"/> has been deselected.
2018-04-13 17:19:50 +08:00
/// </summary>
2018-11-06 16:56:04 +08:00
public event Action<SelectionBlueprint> Deselected;
2018-04-13 17:19:50 +08:00
/// <summary>
2018-11-06 16:56:04 +08:00
/// The <see cref="DrawableHitObject"/> which this <see cref="SelectionBlueprint"/> applies to.
2018-04-13 17:19:50 +08:00
/// </summary>
public readonly DrawableHitObject DrawableObject;
2018-04-13 17:19:50 +08:00
protected override bool ShouldBeAlive => (DrawableObject.IsAlive && DrawableObject.IsPresent) || State == SelectionState.Selected;
public override bool HandlePositionalInput => ShouldBeAlive;
2018-04-13 17:19:50 +08:00
public override bool RemoveWhenNotAlive => false;
[Resolved(CanBeNull = true)]
private HitObjectComposer composer { get; set; }
protected SelectionBlueprint(DrawableHitObject drawableObject)
2018-04-13 17:19:50 +08:00
{
DrawableObject = drawableObject;
2018-04-13 17:19:50 +08:00
RelativeSizeAxes = Axes.Both;
2018-04-13 17:19:50 +08:00
AlwaysPresent = true;
Alpha = 0;
}
private SelectionState state;
public event Action<SelectionState> StateChanged;
public SelectionState State
{
get => state;
set
{
2019-04-25 16:36:17 +08:00
if (state == value)
return;
2018-04-13 17:19:50 +08:00
state = value;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
switch (state)
{
case SelectionState.Selected:
Show();
Selected?.Invoke(this);
break;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case SelectionState.NotSelected:
Hide();
Deselected?.Invoke(this);
break;
}
2019-04-25 16:36:17 +08:00
StateChanged?.Invoke(state);
2018-04-13 17:19:50 +08:00
}
}
// When not selected, input is only required for the blueprint itself to receive IsHovering
protected override bool ShouldBeConsideredForInput(Drawable child) => State == SelectionState.Selected;
2018-04-13 17:19:50 +08:00
/// <summary>
2018-11-06 16:56:04 +08:00
/// Selects this <see cref="SelectionBlueprint"/>, causing it to become visible.
2018-04-13 17:19:50 +08:00
/// </summary>
public void Select() => State = SelectionState.Selected;
/// <summary>
2018-11-06 16:56:04 +08:00
/// Deselects this <see cref="SelectionBlueprint"/>, causing it to become invisible.
2018-04-13 17:19:50 +08:00
/// </summary>
public void Deselect() => State = SelectionState.NotSelected;
public bool IsSelected => State == SelectionState.Selected;
/// <summary>
/// Updates the <see cref="HitObject"/>, invoking <see cref="HitObject.ApplyDefaults"/> and re-processing the beatmap.
/// </summary>
protected void UpdateHitObject() => composer?.UpdateHitObject(DrawableObject.HitObject);
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => DrawableObject.ReceivePositionalInputAt(screenSpacePos);
2019-11-12 12:38:42 +08:00
/// <summary>
/// The <see cref="MenuItem"/>s to be displayed in the context menu for this <see cref="SelectionBlueprint"/>.
/// </summary>
public virtual MenuItem[] ContextMenuItems => Array.Empty<MenuItem>();
2018-04-13 17:19:50 +08:00
/// <summary>
2018-11-06 16:56:04 +08:00
/// The screen-space point that causes this <see cref="SelectionBlueprint"/> to be selected.
2018-04-13 17:19:50 +08:00
/// </summary>
public virtual Vector2 SelectionPoint => DrawableObject.ScreenSpaceDrawQuad.Centre;
2018-04-13 17:19:50 +08:00
/// <summary>
2018-11-06 16:56:04 +08:00
/// The screen-space quad that outlines this <see cref="SelectionBlueprint"/> for selections.
2018-04-13 17:19:50 +08:00
/// </summary>
public virtual Quad SelectionQuad => DrawableObject.ScreenSpaceDrawQuad;
2018-04-13 17:19:50 +08:00
}
}