2021-06-22 09:39:32 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-06-22 09:39:32 +08:00
|
|
|
using osu.Game.Rulesets.Catch.Edit.Blueprints;
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Edit
|
|
|
|
{
|
|
|
|
public class CatchBlueprintContainer : ComposeBlueprintContainer
|
|
|
|
{
|
|
|
|
public CatchBlueprintContainer(CatchHitObjectComposer composer)
|
|
|
|
: base(composer)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override SelectionHandler<HitObject> CreateSelectionHandler() => new CatchSelectionHandler();
|
|
|
|
|
|
|
|
public override HitObjectSelectionBlueprint CreateHitObjectBlueprintFor(HitObject hitObject)
|
|
|
|
{
|
|
|
|
switch (hitObject)
|
|
|
|
{
|
|
|
|
case Fruit fruit:
|
|
|
|
return new FruitSelectionBlueprint(fruit);
|
|
|
|
|
2021-06-22 10:39:04 +08:00
|
|
|
case JuiceStream juiceStream:
|
|
|
|
return new JuiceStreamSelectionBlueprint(juiceStream);
|
|
|
|
|
2021-06-22 09:39:32 +08:00
|
|
|
case BananaShower bananaShower:
|
|
|
|
return new BananaShowerSelectionBlueprint(bananaShower);
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.CreateHitObjectBlueprintFor(hitObject);
|
|
|
|
}
|
2022-10-11 13:23:17 +08:00
|
|
|
|
2022-10-11 15:54:41 +08:00
|
|
|
protected sealed override DragBox CreateDragBox() => new ScrollingDragBox(Composer.Playfield);
|
2021-06-22 09:39:32 +08:00
|
|
|
}
|
|
|
|
}
|