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-05-20 13:22:42 +03:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-05-20 13:22:42 +03:00
|
|
|
|
using System.Collections.Generic;
|
2020-05-14 19:55:07 +09:00
|
|
|
|
using System.Linq;
|
2018-07-17 16:55:50 +09:00
|
|
|
|
using osu.Framework.Allocation;
|
2020-05-14 19:55:07 +09:00
|
|
|
|
using osu.Framework.Input;
|
2022-05-12 16:13:31 +09:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
2018-11-12 18:24:18 +09:00
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2019-04-08 18:32:05 +09:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2020-05-14 19:55:07 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-10-17 18:01:38 +09:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2020-04-27 20:35:24 +09:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2018-11-16 17:12:24 +09:00
|
|
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
2018-11-26 10:44:48 +09:00
|
|
|
|
using osuTK;
|
2018-05-20 13:22:42 +03:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit
|
|
|
|
|
{
|
2023-09-01 19:49:57 +09:00
|
|
|
|
public partial class ManiaHitObjectComposer : ScrollingHitObjectComposer<ManiaHitObject>
|
2018-05-20 13:22:42 +03:00
|
|
|
|
{
|
2021-04-26 14:33:30 +09:00
|
|
|
|
private DrawableManiaEditorRuleset drawableRuleset;
|
2020-05-14 19:55:07 +09:00
|
|
|
|
private ManiaBeatSnapGrid beatSnapGrid;
|
|
|
|
|
private InputManager inputManager;
|
2018-11-26 10:54:54 +09:00
|
|
|
|
|
2018-06-07 16:08:37 +09:00
|
|
|
|
public ManiaHitObjectComposer(Ruleset ruleset)
|
2018-05-20 13:22:42 +03:00
|
|
|
|
: base(ruleset)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-14 19:55:07 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
AddInternal(beatSnapGrid = new ManiaBeatSnapGrid());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
inputManager = GetContainingInputManager();
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-07 16:43:34 +09:00
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
|
2018-07-17 16:55:50 +09:00
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
2018-11-07 16:43:34 +09:00
|
|
|
|
=> dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
2018-07-17 16:55:50 +09:00
|
|
|
|
|
2020-05-27 23:15:16 +09:00
|
|
|
|
public new ManiaPlayfield Playfield => ((ManiaPlayfield)drawableRuleset.Playfield);
|
2020-04-27 20:35:24 +09:00
|
|
|
|
|
2020-04-28 18:35:37 +09:00
|
|
|
|
public IScrollingInfo ScrollingInfo => drawableRuleset.ScrollingInfo;
|
|
|
|
|
|
2020-05-25 19:21:53 +09:00
|
|
|
|
protected override Playfield PlayfieldAtScreenSpacePosition(Vector2 screenSpacePosition) =>
|
|
|
|
|
Playfield.GetColumnByPosition(screenSpacePosition);
|
2020-05-20 21:42:21 +09:00
|
|
|
|
|
2023-09-20 15:27:50 +09:00
|
|
|
|
protected override DrawableRuleset<ManiaHitObject> CreateDrawableRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods)
|
2018-11-07 16:43:34 +09:00
|
|
|
|
{
|
2023-09-01 19:49:57 +09:00
|
|
|
|
drawableRuleset = new DrawableManiaEditorRuleset(ruleset, beatmap, mods);
|
2018-11-07 16:43:34 +09:00
|
|
|
|
|
|
|
|
|
// This is the earliest we can cache the scrolling info to ourselves, before masks are added to the hierarchy and inject it
|
2019-08-29 18:12:29 +09:00
|
|
|
|
dependencies.CacheAs(drawableRuleset.ScrollingInfo);
|
2018-11-07 16:43:34 +09:00
|
|
|
|
|
2019-08-29 18:12:29 +09:00
|
|
|
|
return drawableRuleset;
|
2018-11-07 16:43:34 +09:00
|
|
|
|
}
|
2018-05-20 13:22:42 +03:00
|
|
|
|
|
2020-11-12 19:52:02 +09:00
|
|
|
|
protected override ComposeBlueprintContainer CreateBlueprintContainer()
|
|
|
|
|
=> new ManiaBlueprintContainer(this);
|
2020-01-02 11:46:18 +09:00
|
|
|
|
|
2018-11-12 18:24:18 +09:00
|
|
|
|
protected override IReadOnlyList<HitObjectCompositionTool> CompositionTools => new HitObjectCompositionTool[]
|
|
|
|
|
{
|
2018-11-19 18:38:06 +09:00
|
|
|
|
new NoteCompositionTool(),
|
|
|
|
|
new HoldNoteCompositionTool()
|
2018-11-12 18:24:18 +09:00
|
|
|
|
};
|
2020-05-22 11:45:58 +09:00
|
|
|
|
|
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
|
|
|
|
if (BlueprintContainer.CurrentTool is SelectTool)
|
|
|
|
|
{
|
|
|
|
|
if (EditorBeatmap.SelectedHitObjects.Any())
|
|
|
|
|
{
|
|
|
|
|
beatSnapGrid.SelectionTimeRange = (EditorBeatmap.SelectedHitObjects.Min(h => h.StartTime), EditorBeatmap.SelectedHitObjects.Max(h => h.GetEndTime()));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
beatSnapGrid.SelectionTimeRange = null;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2022-05-05 15:58:21 +09:00
|
|
|
|
var result = FindSnappedPositionAndTime(inputManager.CurrentState.Mouse.Position);
|
2020-05-22 11:45:58 +09:00
|
|
|
|
if (result.Time is double time)
|
|
|
|
|
beatSnapGrid.SelectionTimeRange = (time, time);
|
|
|
|
|
else
|
|
|
|
|
beatSnapGrid.SelectionTimeRange = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-26 15:25:20 +08:00
|
|
|
|
|
2021-03-29 17:29:05 +08:00
|
|
|
|
public override string ConvertSelectionToString()
|
|
|
|
|
=> string.Join(',', EditorBeatmap.SelectedHitObjects.Cast<ManiaHitObject>().OrderBy(h => h.StartTime).Select(h => $"{h.StartTime}|{h.Column}"));
|
2018-05-20 13:22:42 +03:00
|
|
|
|
}
|
|
|
|
|
}
|