2020-01-02 10:46:18 +08: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;
|
2021-04-27 14:40:35 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2020-01-02 10:46:18 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles;
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders;
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.Spinners;
|
2021-05-13 18:53:32 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2020-01-02 10:46:18 +08:00
|
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
|
|
{
|
|
|
|
public class OsuBlueprintContainer : ComposeBlueprintContainer
|
|
|
|
{
|
2020-11-12 18:52:02 +08:00
|
|
|
public OsuBlueprintContainer(HitObjectComposer composer)
|
|
|
|
: base(composer)
|
2020-01-16 10:54:03 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-04-27 14:40:35 +08:00
|
|
|
protected override SelectionHandler<HitObject> CreateSelectionHandler() => new OsuSelectionHandler();
|
2020-01-02 10:46:18 +08:00
|
|
|
|
2021-05-13 18:53:32 +08:00
|
|
|
public override HitObjectSelectionBlueprint CreateHitObjectBlueprintFor(HitObject hitObject)
|
2020-01-02 10:46:18 +08:00
|
|
|
{
|
|
|
|
switch (hitObject)
|
|
|
|
{
|
2021-05-13 18:53:32 +08:00
|
|
|
case HitCircle circle:
|
2020-01-02 10:46:18 +08:00
|
|
|
return new HitCircleSelectionBlueprint(circle);
|
|
|
|
|
2021-05-13 18:53:32 +08:00
|
|
|
case Slider slider:
|
2020-01-02 10:46:18 +08:00
|
|
|
return new SliderSelectionBlueprint(slider);
|
|
|
|
|
2021-05-13 18:53:32 +08:00
|
|
|
case Spinner spinner:
|
2020-01-02 10:46:18 +08:00
|
|
|
return new SpinnerSelectionBlueprint(spinner);
|
|
|
|
}
|
|
|
|
|
2021-05-13 18:53:32 +08:00
|
|
|
return base.CreateHitObjectBlueprintFor(hitObject);
|
2020-01-02 10:46:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|