mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
46 lines
1.6 KiB
C#
46 lines
1.6 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.Graphics;
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints.Components;
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
|
{
|
|
public class HoldNoteNoteSelectionBlueprint : ManiaSelectionBlueprint
|
|
{
|
|
protected new DrawableHoldNote DrawableObject => (DrawableHoldNote)base.DrawableObject;
|
|
|
|
private readonly HoldNotePosition position;
|
|
|
|
public HoldNoteNoteSelectionBlueprint(DrawableHoldNote holdNote, HoldNotePosition position)
|
|
: base(holdNote)
|
|
{
|
|
this.position = position;
|
|
InternalChild = new EditNotePiece { RelativeSizeAxes = Axes.X };
|
|
|
|
Select();
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
// Todo: This shouldn't exist, mania should not reference the drawable hitobject directly.
|
|
if (DrawableObject.IsLoaded)
|
|
{
|
|
DrawableNote note = position == HoldNotePosition.Start ? (DrawableNote)DrawableObject.Head : DrawableObject.Tail;
|
|
|
|
Anchor = note.Anchor;
|
|
Origin = note.Origin;
|
|
|
|
Size = note.DrawSize;
|
|
Position = note.DrawPosition;
|
|
}
|
|
}
|
|
|
|
// Todo: This is temporary, since the note masks don't do anything special yet. In the future they will handle input.
|
|
public override bool HandlePositionalInput => false;
|
|
}
|
|
}
|