osu/osu.Game.Rulesets.Mania/Edit/Blueprints/ManiaPlacementBlueprint.cs

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

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 05:13:29 +00: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 12:13:08 +00:00
private Column column;
public Column Column
{
get => column;
set
{
if (value == column)
return;
column = value;
HitObject.Column = column.Index;
}
}
2018-11-29 10:29:36 +00:00
2018-11-19 08:59:52 +00:00
protected ManiaPlacementBlueprint(T hitObject)
: base(hitObject)
{
RelativeSizeAxes = Axes.None;
}
2018-11-29 10:29:36 +00:00
protected override bool OnMouseDown(MouseDownEvent e)
{
if (e.Button != MouseButton.Left)
return false;
2018-11-29 10:29:36 +00:00
if (Column == null)
2020-05-20 12:13:08 +00:00
return false;
2018-11-29 10:29:36 +00:00
BeginPlacement(true);
2018-11-29 10:29:36 +00:00
return true;
}
public override void UpdateTimeAndPosition(SnapResult result)
2018-11-13 05:13:29 +00:00
{
base.UpdateTimeAndPosition(result);
if (PlacementActive == PlacementState.Waiting)
2020-05-25 10:21:53 +00:00
Column = result.Playfield as Column;
}
}
}