1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 15:17:51 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Edit/Blueprints/ManiaPlacementBlueprint.cs

60 lines
1.5 KiB
C#
Raw Normal View History

// 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;
2018-11-13 13:13:29 +08:00
using osu.Framework.Input.Events;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Rulesets.Mania.UI;
using osuTK.Input;
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
{
public abstract class ManiaPlacementBlueprint<T> : PlacementBlueprint
where T : ManiaHitObject
{
protected new T HitObject => (T)base.HitObject;
2020-05-20 20:13:08 +08:00
private Column column;
public Column Column
{
get => column;
set
{
if (value == column)
return;
column = value;
HitObject.Column = column.Index;
}
}
2018-11-29 18:29:36 +08:00
2018-11-19 16:59:52 +08:00
protected ManiaPlacementBlueprint(T hitObject)
: base(hitObject)
{
RelativeSizeAxes = Axes.None;
}
2018-11-29 18:29:36 +08:00
protected override bool OnMouseDown(MouseDownEvent e)
{
if (e.Button != MouseButton.Left)
return false;
2018-11-29 18:29:36 +08:00
if (Column == null)
2020-05-20 20:13:08 +08:00
return false;
2018-11-29 18:29:36 +08:00
BeginPlacement(true);
2018-11-29 18:29:36 +08:00
return true;
}
public override void UpdateTimeAndPosition(SnapResult result)
2018-11-13 13:13:29 +08:00
{
base.UpdateTimeAndPosition(result);
if (PlacementActive == PlacementState.Waiting)
2020-05-25 18:21:53 +08:00
Column = result.Playfield as Column;
}
}
}