// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Input.Events; using osu.Game.Rulesets.Edit; using osu.Game.Rulesets.Objects; namespace osu.Game.Screens.Edit.Compose.Components { public class EditorBlueprintContainer : BlueprintContainer { [Resolved] protected EditorClock EditorClock { get; private set; } [Resolved] protected EditorBeatmap Beatmap { get; private set; } protected readonly HitObjectComposer Composer; private readonly BindableList selectedHitObjects = new BindableList(); protected EditorBlueprintContainer(HitObjectComposer composer) { Composer = composer; } [BackgroundDependencyLoader] private void load() { selectedHitObjects.BindTo(Beatmap.SelectedHitObjects); selectedHitObjects.CollectionChanged += (selectedObjects, args) => { switch (args.Action) { case NotifyCollectionChangedAction.Add: foreach (var o in args.NewItems) SelectionBlueprints.FirstOrDefault(b => b.Item == o)?.Select(); break; case NotifyCollectionChangedAction.Remove: foreach (var o in args.OldItems) SelectionBlueprints.FirstOrDefault(b => b.Item == o)?.Deselect(); break; } }; } protected override void LoadComplete() { base.LoadComplete(); Beatmap.HitObjectAdded += AddBlueprintFor; Beatmap.HitObjectRemoved += RemoveBlueprintFor; if (Composer != null) { foreach (var obj in Composer.HitObjects) AddBlueprintFor(obj.HitObject); Composer.Playfield.HitObjectUsageBegan += AddBlueprintFor; Composer.Playfield.HitObjectUsageFinished += RemoveBlueprintFor; } } protected override IEnumerable> SortForMovement(IReadOnlyList> blueprints) => blueprints.OrderBy(b => b.Item.StartTime); protected override bool AllowDeselectionDuringDrag => !EditorClock.IsRunning; protected override bool ApplySnapResult(SelectionBlueprint[] blueprints, SnapResult result) { if (!base.ApplySnapResult(blueprints, result)) return false; if (result.Time.HasValue) { // Apply the start time at the newly snapped-to position double offset = result.Time.Value - blueprints.First().Item.StartTime; if (offset != 0) Beatmap.PerformOnSelection(obj => obj.StartTime += offset); } return true; } protected override void AddBlueprintFor(HitObject item) { if (item is IBarLine) return; base.AddBlueprintFor(item); } protected override void DragOperationCompleted() { base.DragOperationCompleted(); // handle positional change etc. foreach (var blueprint in SelectionBlueprints) Beatmap.Update(blueprint.Item); } protected override bool OnDoubleClick(DoubleClickEvent e) { if (!base.OnDoubleClick(e)) return false; EditorClock?.SeekSmoothlyTo(ClickedBlueprint.Item.StartTime); return true; } protected override Container> CreateSelectionBlueprintContainer() => new HitObjectOrderedSelectionContainer { RelativeSizeAxes = Axes.Both }; protected override SelectionHandler CreateSelectionHandler() => new EditorSelectionHandler(); protected override void SelectAll() { Composer.Playfield.KeepAllAlive(); base.SelectAll(); } protected override void OnBlueprintSelected(SelectionBlueprint blueprint) { base.OnBlueprintSelected(blueprint); Composer.Playfield.SetKeepAlive(blueprint.Item, true); } protected override void OnBlueprintDeselected(SelectionBlueprint blueprint) { base.OnBlueprintDeselected(blueprint); Composer.Playfield.SetKeepAlive(blueprint.Item, false); } protected override void Dispose(bool isDisposing) { base.Dispose(isDisposing); if (Beatmap != null) { Beatmap.HitObjectAdded -= AddBlueprintFor; Beatmap.HitObjectRemoved -= RemoveBlueprintFor; } if (Composer != null) { Composer.Playfield.HitObjectUsageBegan -= AddBlueprintFor; Composer.Playfield.HitObjectUsageFinished -= RemoveBlueprintFor; } } } }