1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 23:57:25 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Edit/Blueprints/HitPlacementBlueprint.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.6 KiB
C#
Raw Normal View History

2020-05-29 17:58:34 +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
2020-05-29 15:40:10 +08:00
using osu.Framework.Input.Events;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Taiko.Objects;
using osu.Game.Rulesets.Taiko.UI;
using osuTK;
using osuTK.Input;
namespace osu.Game.Rulesets.Taiko.Edit.Blueprints
{
2022-11-24 13:32:20 +08:00
public partial class HitPlacementBlueprint : PlacementBlueprint
2020-05-29 15:40:10 +08:00
{
private readonly HitPiece piece;
2021-05-21 13:21:56 +08:00
public new Hit HitObject => (Hit)base.HitObject;
2020-05-29 15:40:10 +08:00
public HitPlacementBlueprint()
2021-05-21 13:21:56 +08:00
: base(new Hit())
2020-05-29 15:40:10 +08:00
{
InternalChild = piece = new HitPiece
{
Size = new Vector2(TaikoHitObject.DEFAULT_SIZE * TaikoPlayfield.DEFAULT_HEIGHT)
};
}
2022-10-18 23:16:24 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
BeginPlacement();
}
2020-05-29 15:40:10 +08:00
protected override bool OnMouseDown(MouseDownEvent e)
{
switch (e.Button)
{
case MouseButton.Left:
2021-05-21 13:21:56 +08:00
HitObject.Type = HitType.Centre;
2020-05-29 15:40:10 +08:00
EndPlacement(true);
return true;
case MouseButton.Right:
2021-05-21 13:21:56 +08:00
HitObject.Type = HitType.Rim;
2020-05-29 15:40:10 +08:00
EndPlacement(true);
return true;
}
return false;
}
public override void UpdateTimeAndPosition(SnapResult result)
2020-05-29 15:40:10 +08:00
{
piece.Position = ToLocalSpace(result.ScreenSpacePosition);
base.UpdateTimeAndPosition(result);
2020-05-29 15:40:10 +08:00
}
}
}