mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
// 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.Framework.Input.Events;
|
|
using osu.Game.Rulesets.Catch.Edit.Blueprints.Components;
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
using osu.Game.Rulesets.Edit;
|
|
using osuTK.Input;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Edit.Blueprints
|
|
{
|
|
public class FruitPlacementBlueprint : CatchPlacementBlueprint<Fruit>
|
|
{
|
|
private readonly FruitOutline outline;
|
|
|
|
public FruitPlacementBlueprint()
|
|
{
|
|
InternalChild = outline = new FruitOutline();
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
BeginPlacement();
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
outline.Position = CatchHitObjectUtils.GetStartPosition(HitObjectContainer, HitObject);
|
|
outline.UpdateFrom(HitObject);
|
|
}
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
{
|
|
if (e.Button != MouseButton.Left) return base.OnMouseDown(e);
|
|
|
|
EndPlacement(true);
|
|
return true;
|
|
}
|
|
|
|
public override void UpdateTimeAndPosition(SnapResult result)
|
|
{
|
|
base.UpdateTimeAndPosition(result);
|
|
|
|
HitObject.X = ToLocalSpace(result.ScreenSpacePosition).X;
|
|
}
|
|
}
|
|
}
|