2019-01-24 08:43:03 +00: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-11-12 09:32:44 +00:00
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2018-11-13 05:13:29 +00:00
|
|
|
using osu.Framework.Input.Events;
|
2018-11-12 09:32:44 +00:00
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2020-05-13 05:43:50 +00:00
|
|
|
using osuTK.Input;
|
2018-11-12 09:32:44 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
|
|
|
{
|
2020-05-20 12:14:20 +00:00
|
|
|
public abstract class ManiaPlacementBlueprint<T> : PlacementBlueprint
|
2018-11-12 09:32:44 +00:00
|
|
|
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)
|
2018-11-12 09:32:44 +00:00
|
|
|
: base(hitObject)
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.None;
|
|
|
|
}
|
|
|
|
|
2018-11-29 10:29:36 +00:00
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
|
|
{
|
2020-05-13 05:43:50 +00:00
|
|
|
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
|
|
|
|
2020-05-20 09:46:15 +00:00
|
|
|
BeginPlacement(true);
|
2018-11-29 10:29:36 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-11-26 10:16:18 +00:00
|
|
|
public override void UpdateTimeAndPosition(SnapResult result)
|
2018-11-13 05:13:29 +00:00
|
|
|
{
|
2020-11-26 10:16:18 +00:00
|
|
|
base.UpdateTimeAndPosition(result);
|
2020-05-21 05:38:40 +00:00
|
|
|
|
2021-04-16 05:10:21 +00:00
|
|
|
if (PlacementActive == PlacementState.Waiting)
|
2020-05-25 10:21:53 +00:00
|
|
|
Column = result.Playfield as Column;
|
2018-11-12 09:32:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|