1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 03:17:18 +08:00

210 lines
7.3 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 18:19:50 +09:00
using System.Collections.Generic;
2018-10-18 16:36:06 +09:00
using System.Linq;
2018-04-13 18:19:50 +09:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
2018-10-02 12:02:47 +09:00
using osu.Framework.Input.Events;
using osu.Framework.Input.States;
2018-04-13 18:19:50 +09:00
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Edit.Tools;
2018-04-13 18:19:50 +09:00
using osu.Game.Rulesets.Objects.Drawables;
2018-11-06 18:28:22 +09:00
namespace osu.Game.Screens.Edit.Compose.Components
2018-04-13 18:19:50 +09:00
{
public class BlueprintContainer : CompositeDrawable
2018-04-13 18:19:50 +09:00
{
private SelectionBlueprintContainer selectionBlueprints;
2018-11-06 18:04:03 +09:00
private Container<PlacementBlueprint> placementBlueprintContainer;
private PlacementBlueprint currentPlacement;
2018-11-19 16:58:11 +09:00
private SelectionHandler selectionHandler;
2018-11-06 17:56:04 +09:00
private IEnumerable<SelectionBlueprint> selections => selectionBlueprints.Children.Where(c => c.IsAlive);
2018-04-13 18:19:50 +09:00
2018-10-17 16:17:12 +09:00
[Resolved]
private HitObjectComposer composer { get; set; }
2018-10-17 16:17:12 +09:00
public BlueprintContainer()
2018-04-13 18:19:50 +09:00
{
RelativeSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader]
private void load()
2018-04-13 18:19:50 +09:00
{
2018-11-19 16:58:11 +09:00
selectionHandler = composer.CreateSelectionHandler();
selectionHandler.DeselectAll = deselectAll;
2018-04-13 18:19:50 +09:00
var dragBox = new DragBox(select);
2018-11-19 16:58:11 +09:00
dragBox.DragEnd += () => selectionHandler.UpdateVisibility();
2018-04-13 18:19:50 +09:00
2018-04-20 18:19:17 +09:00
InternalChildren = new[]
2018-04-13 18:19:50 +09:00
{
2018-11-06 17:24:38 +09:00
dragBox,
2018-11-19 16:58:11 +09:00
selectionHandler,
selectionBlueprints = new SelectionBlueprintContainer { RelativeSizeAxes = Axes.Both },
2018-11-06 18:04:03 +09:00
placementBlueprintContainer = new Container<PlacementBlueprint> { RelativeSizeAxes = Axes.Both },
2018-11-06 17:24:38 +09:00
dragBox.CreateProxy()
2018-04-13 18:19:50 +09:00
};
foreach (var obj in composer.HitObjects)
2018-11-06 17:56:04 +09:00
AddBlueprintFor(obj);
2018-04-13 18:19:50 +09:00
}
private HitObjectCompositionTool currentTool;
/// <summary>
/// The current placement tool.
/// </summary>
public HitObjectCompositionTool CurrentTool
2018-04-13 18:19:50 +09:00
{
get => currentTool;
set
{
if (currentTool == value)
return;
2019-02-28 13:31:40 +09:00
currentTool = value;
refreshTool();
}
2018-04-13 18:19:50 +09:00
}
/// <summary>
/// Adds a blueprint for a <see cref="DrawableHitObject"/> which adds movement support.
2018-04-13 18:19:50 +09:00
/// </summary>
/// <param name="hitObject">The <see cref="DrawableHitObject"/> to create a blueprint for.</param>
2018-11-06 17:56:04 +09:00
public void AddBlueprintFor(DrawableHitObject hitObject)
2018-04-13 18:19:50 +09:00
{
refreshTool();
2018-11-06 18:03:21 +09:00
var blueprint = composer.CreateBlueprintFor(hitObject);
if (blueprint == null)
2018-04-13 18:19:50 +09:00
return;
blueprint.Selected += onBlueprintSelected;
blueprint.Deselected += onBlueprintDeselected;
blueprint.SelectionRequested += onSelectionRequested;
blueprint.DragRequested += onDragRequested;
selectionBlueprints.Add(blueprint);
2018-04-13 18:19:50 +09:00
}
2018-10-18 16:36:06 +09:00
/// <summary>
/// Removes a blueprint for a <see cref="DrawableHitObject"/>.
2018-10-18 16:36:06 +09:00
/// </summary>
/// <param name="hitObject">The <see cref="DrawableHitObject"/> for which to remove the blueprint.</param>
2018-11-06 17:56:04 +09:00
public void RemoveBlueprintFor(DrawableHitObject hitObject)
2018-10-18 16:36:06 +09:00
{
var blueprint = selectionBlueprints.Single(m => m.HitObject == hitObject);
if (blueprint == null)
2018-10-18 16:36:06 +09:00
return;
blueprint.Deselect();
blueprint.Selected -= onBlueprintSelected;
blueprint.Deselected -= onBlueprintDeselected;
blueprint.SelectionRequested -= onSelectionRequested;
blueprint.DragRequested -= onDragRequested;
selectionBlueprints.Remove(blueprint);
}
protected override bool OnClick(ClickEvent e)
{
deselectAll();
return true;
}
protected override void Update()
{
base.Update();
2018-11-13 13:00:00 +09:00
if (currentPlacement != null)
{
2018-11-14 18:34:13 +09:00
if (composer.CursorInPlacementArea)
2018-11-13 13:00:00 +09:00
currentPlacement.State = PlacementState.Shown;
else if (currentPlacement?.PlacementBegun == false)
currentPlacement.State = PlacementState.Hidden;
}
}
/// <summary>
/// Refreshes the current placement tool.
/// </summary>
private void refreshTool()
{
placementBlueprintContainer.Clear();
currentPlacement = null;
2018-11-06 18:06:34 +09:00
var blueprint = CurrentTool?.CreatePlacementBlueprint();
if (blueprint != null)
placementBlueprintContainer.Child = currentPlacement = blueprint;
}
/// <summary>
/// Select all masks in a given rectangle selection area.
/// </summary>
/// <param name="rect">The rectangle to perform a selection on in screen-space coordinates.</param>
private void select(RectangleF rect)
{
foreach (var blueprint in selections.ToList())
{
if (blueprint.IsPresent && rect.Contains(blueprint.SelectionPoint))
blueprint.Select();
else
blueprint.Deselect();
}
}
/// <summary>
2018-11-06 17:56:04 +09:00
/// Deselects all selected <see cref="SelectionBlueprint"/>s.
/// </summary>
2018-11-06 17:56:04 +09:00
private void deselectAll() => selections.ToList().ForEach(m => m.Deselect());
2018-11-06 17:56:04 +09:00
private void onBlueprintSelected(SelectionBlueprint blueprint)
{
2018-11-19 16:58:11 +09:00
selectionHandler.HandleSelected(blueprint);
2018-11-06 17:56:04 +09:00
selectionBlueprints.ChangeChildDepth(blueprint, 1);
}
2018-11-06 17:56:04 +09:00
private void onBlueprintDeselected(SelectionBlueprint blueprint)
{
2018-11-19 16:58:11 +09:00
selectionHandler.HandleDeselected(blueprint);
2018-11-06 17:56:04 +09:00
selectionBlueprints.ChangeChildDepth(blueprint, 0);
}
2018-11-19 16:58:11 +09:00
private void onSelectionRequested(SelectionBlueprint blueprint, InputState state) => selectionHandler.HandleSelectionRequested(blueprint, state);
private void onDragRequested(SelectionBlueprint blueprint, DragEvent dragEvent) => selectionHandler.HandleDrag(blueprint, dragEvent);
2018-11-06 17:56:04 +09:00
private class SelectionBlueprintContainer : Container<SelectionBlueprint>
{
protected override int Compare(Drawable x, Drawable y)
{
2018-11-06 17:56:04 +09:00
if (!(x is SelectionBlueprint xBlueprint) || !(y is SelectionBlueprint yBlueprint))
return base.Compare(x, y);
2019-02-28 13:31:40 +09:00
2018-11-06 17:56:04 +09:00
return Compare(xBlueprint, yBlueprint);
}
2018-11-06 17:56:04 +09:00
public int Compare(SelectionBlueprint x, SelectionBlueprint y)
{
2018-11-06 17:56:04 +09:00
// dpeth is used to denote selected status (we always want selected blueprints to handle input first).
int d = x.Depth.CompareTo(y.Depth);
if (d != 0)
return d;
// Put earlier hitobjects towards the end of the list, so they handle input first
int i = y.HitObject.HitObject.StartTime.CompareTo(x.HitObject.HitObject.StartTime);
return i == 0 ? CompareReverseChildID(x, y) : i;
}
2018-10-18 16:36:06 +09:00
}
2018-04-13 18:19:50 +09:00
}
}