2019-01-24 16:43:03 +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.
|
2018-05-20 18:22:42 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-05-20 18:22:42 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2020-03-31 15:42:35 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-11-06 15:19:40 +08:00
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
2020-03-31 15:42:35 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2018-05-20 18:22:42 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2021-06-15 12:20:33 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints.Components;
|
2021-05-13 18:53:32 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-05-20 18:22:42 +08:00
|
|
|
|
|
2018-11-07 15:08:56 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
2018-05-20 18:22:42 +08:00
|
|
|
|
{
|
2021-05-13 18:53:32 +08:00
|
|
|
|
public class HoldNoteSelectionBlueprint : ManiaSelectionBlueprint<HoldNote>
|
2018-05-20 18:22:42 +08:00
|
|
|
|
{
|
2019-10-17 15:14:28 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuColour colours { get; set; }
|
2018-05-20 18:22:42 +08:00
|
|
|
|
|
2021-06-15 12:20:33 +08:00
|
|
|
|
private EditNotePiece head;
|
|
|
|
|
private EditNotePiece tail;
|
|
|
|
|
|
2021-05-13 18:53:32 +08:00
|
|
|
|
public HoldNoteSelectionBlueprint(HoldNote hold)
|
2018-05-20 18:22:42 +08:00
|
|
|
|
: base(hold)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 08:06:39 +08:00
|
|
|
|
private void load()
|
2018-05-20 18:22:42 +08:00
|
|
|
|
{
|
2019-10-17 15:14:28 +08:00
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
|
{
|
2021-06-15 12:20:33 +08:00
|
|
|
|
head = new EditNotePiece { RelativeSizeAxes = Axes.X },
|
|
|
|
|
tail = new EditNotePiece { RelativeSizeAxes = Axes.X },
|
2020-03-31 15:42:35 +08:00
|
|
|
|
new Container
|
2019-10-17 15:14:28 +08:00
|
|
|
|
{
|
2020-03-31 15:42:35 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-04-11 14:20:27 +08:00
|
|
|
|
Masking = true,
|
2020-03-31 15:42:35 +08:00
|
|
|
|
BorderThickness = 1,
|
|
|
|
|
BorderColour = colours.Yellow,
|
|
|
|
|
Child = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
AlwaysPresent = true,
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-17 15:14:28 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-07 18:00:02 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
2021-06-15 12:20:33 +08:00
|
|
|
|
head.Y = HitObjectContainer.PositionAtTime(HitObject.Head.StartTime, HitObject.StartTime);
|
|
|
|
|
tail.Y = HitObjectContainer.PositionAtTime(HitObject.Tail.StartTime, HitObject.StartTime);
|
|
|
|
|
Height = HitObjectContainer.LengthAtTime(HitObject.StartTime, HitObject.EndTime) + tail.DrawHeight;
|
2018-06-07 18:00:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-06 15:19:40 +08:00
|
|
|
|
public override Quad SelectionQuad => ScreenSpaceDrawQuad;
|
2020-04-23 16:52:54 +08:00
|
|
|
|
|
2021-06-15 12:20:33 +08:00
|
|
|
|
public override Vector2 ScreenSpaceSelectionPoint => head.ScreenSpaceDrawQuad.Centre;
|
2018-05-20 18:22:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|