2020-01-02 11:46:18 +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.
|
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints;
|
2021-05-13 19:53:32 +09:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
2021-04-27 15:40:35 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2020-01-02 11:46:18 +09:00
|
|
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit
|
|
|
|
|
{
|
|
|
|
|
public partial class ManiaBlueprintContainer : ComposeBlueprintContainer
|
|
|
|
|
{
|
2020-11-12 19:52:02 +09:00
|
|
|
|
public ManiaBlueprintContainer(HitObjectComposer composer)
|
|
|
|
|
: base(composer)
|
2020-01-15 19:09:49 +09:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-24 00:59:36 +09:00
|
|
|
|
public override HitObjectSelectionBlueprint? CreateHitObjectBlueprintFor(HitObject hitObject)
|
2020-01-02 11:46:18 +09:00
|
|
|
|
{
|
|
|
|
|
switch (hitObject)
|
|
|
|
|
{
|
2021-05-13 19:53:32 +09:00
|
|
|
|
case Note note:
|
2020-01-02 11:46:18 +09:00
|
|
|
|
return new NoteSelectionBlueprint(note);
|
|
|
|
|
|
2021-05-13 19:53:32 +09:00
|
|
|
|
case HoldNote holdNote:
|
2020-01-02 11:46:18 +09:00
|
|
|
|
return new HoldNoteSelectionBlueprint(holdNote);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-13 19:53:32 +09:00
|
|
|
|
return base.CreateHitObjectBlueprintFor(hitObject);
|
2020-01-02 11:46:18 +09:00
|
|
|
|
}
|
2020-04-23 17:41:33 +09:00
|
|
|
|
|
2021-04-27 15:40:35 +09:00
|
|
|
|
protected override SelectionHandler<HitObject> CreateSelectionHandler() => new ManiaSelectionHandler();
|
2022-10-11 14:23:17 +09:00
|
|
|
|
|
2022-10-11 16:54:41 +09:00
|
|
|
|
protected sealed override DragBox CreateDragBox() => new ScrollingDragBox(Composer.Playfield);
|
2020-01-02 11:46:18 +09:00
|
|
|
|
}
|
|
|
|
|
}
|