2019-09-11 18:12:43 +09:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 17:43:03 +09:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2018-11-20 16:51:59 +09:00
|
|
|
using osuTK.Graphics;
|
2017-05-03 12:37:47 +09:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics;
|
2017-05-11 12:33:19 +09:00
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-07-02 12:31:41 +09:00
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 19:04:31 +09:00
|
|
|
using osu.Framework.Bindables;
|
2020-07-29 15:36:42 +09:00
|
|
|
using osu.Framework.Graphics.Pooling;
|
2017-08-23 13:42:11 +09:00
|
|
|
using osu.Framework.Input.Bindings;
|
2021-09-16 18:26:12 +09:00
|
|
|
using osu.Framework.Input.Events;
|
2017-09-12 17:37:37 +09:00
|
|
|
using osu.Game.Rulesets.Judgements;
|
2018-06-07 20:49:06 +09:00
|
|
|
using osu.Game.Rulesets.Mania.UI.Components;
|
2018-01-04 19:22:15 +09:00
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2020-03-30 23:14:30 +09:00
|
|
|
using osu.Game.Skinning;
|
2018-11-26 10:44:48 +09:00
|
|
|
using osuTK;
|
2020-03-31 11:53:17 +08:00
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
2021-05-12 16:35:05 +09:00
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
2020-08-27 20:24:08 +09:00
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
2021-08-24 18:23:02 +09:00
|
|
|
using osu.Game.Rulesets.UI;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2017-05-03 12:37:47 +09:00
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
|
|
{
|
2020-03-30 23:07:32 +09:00
|
|
|
[Cached]
|
2018-11-06 15:46:36 +09:00
|
|
|
public class Column : ScrollingPlayfield, IKeyBindingHandler<ManiaAction>, IHasAccentColour
|
2017-05-03 12:37:47 +09:00
|
|
|
{
|
2019-09-11 18:20:41 +09:00
|
|
|
public const float COLUMN_WIDTH = 80;
|
2020-04-01 13:38:03 +09:00
|
|
|
public const float SPECIAL_COLUMN_WIDTH = 70;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2018-11-12 18:24:18 +09:00
|
|
|
/// <summary>
|
|
|
|
/// The index of this column as part of the whole playfield.
|
|
|
|
/// </summary>
|
|
|
|
public readonly int Index;
|
|
|
|
|
2018-07-02 12:31:41 +09:00
|
|
|
public readonly Bindable<ManiaAction> Action = new Bindable<ManiaAction>();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2020-07-12 14:23:55 +02:00
|
|
|
public readonly ColumnHitObjectArea HitObjectArea;
|
2017-09-11 13:44:39 +09:00
|
|
|
internal readonly Container TopLevelContainer;
|
2020-07-29 15:36:42 +09:00
|
|
|
private readonly DrawablePool<PoolableHitExplosion> hitExplosionPool;
|
2020-08-27 20:24:08 +09:00
|
|
|
private readonly OrderedHitPolicy hitPolicy;
|
2020-07-12 14:23:55 +02:00
|
|
|
public Container UnderlayElements => HitObjectArea.UnderlayElements;
|
2020-05-18 17:47:47 +09:00
|
|
|
|
2021-08-24 18:23:02 +09:00
|
|
|
private readonly GameplaySampleTriggerSource sampleTriggerSource;
|
|
|
|
|
2018-11-12 18:24:18 +09:00
|
|
|
public Column(int index)
|
2017-05-03 12:37:47 +09:00
|
|
|
{
|
2018-11-12 18:24:18 +09:00
|
|
|
Index = index;
|
|
|
|
|
2018-01-15 19:44:42 +09:00
|
|
|
RelativeSizeAxes = Axes.Y;
|
2020-04-08 18:23:24 +09:00
|
|
|
Width = COLUMN_WIDTH;
|
2018-06-07 11:19:36 +09:00
|
|
|
|
2021-05-12 16:35:05 +09:00
|
|
|
Drawable background = new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.ColumnBackground), _ => new DefaultColumnBackground())
|
2020-03-30 23:14:30 +09:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
};
|
2018-06-07 21:13:29 +09:00
|
|
|
|
|
|
|
InternalChildren = new[]
|
2017-05-03 12:37:47 +09:00
|
|
|
{
|
2020-07-29 15:36:42 +09:00
|
|
|
hitExplosionPool = new DrawablePool<PoolableHitExplosion>(5),
|
2021-08-24 18:23:02 +09:00
|
|
|
sampleTriggerSource = new GameplaySampleTriggerSource(HitObjectContainer),
|
2018-06-07 21:13:29 +09:00
|
|
|
// For input purposes, the background is added at the highest depth, but is then proxied back below all other elements
|
|
|
|
background.CreateProxy(),
|
2022-02-01 21:42:58 +01:00
|
|
|
HitObjectArea = new ColumnHitObjectArea(HitObjectContainer) { RelativeSizeAxes = Axes.Both },
|
2021-05-12 16:35:05 +09:00
|
|
|
new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.KeyArea), _ => new DefaultKeyArea())
|
2017-05-11 12:33:19 +09:00
|
|
|
{
|
2020-03-31 11:23:33 +09:00
|
|
|
RelativeSizeAxes = Axes.Both
|
2017-09-11 13:44:39 +09:00
|
|
|
},
|
2018-06-07 21:13:29 +09:00
|
|
|
background,
|
2021-12-30 17:37:14 +09:00
|
|
|
TopLevelContainer = new Container { RelativeSizeAxes = Axes.Both },
|
2022-02-01 00:53:56 +09:00
|
|
|
new ColumnTouchInputArea(this)
|
2017-05-03 12:37:47 +09:00
|
|
|
};
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2020-08-27 20:24:08 +09:00
|
|
|
hitPolicy = new OrderedHitPolicy(HitObjectContainer);
|
|
|
|
|
2020-07-12 14:23:55 +02:00
|
|
|
TopLevelContainer.Add(HitObjectArea.Explosions.CreateProxy());
|
2021-05-12 16:35:05 +09:00
|
|
|
|
2021-05-12 17:36:26 +09:00
|
|
|
RegisterPool<Note, DrawableNote>(10, 50);
|
|
|
|
RegisterPool<HoldNote, DrawableHoldNote>(10, 50);
|
|
|
|
RegisterPool<HeadNote, DrawableHoldNoteHead>(10, 50);
|
|
|
|
RegisterPool<TailNote, DrawableHoldNoteTail>(10, 50);
|
|
|
|
RegisterPool<HoldNoteTick, DrawableHoldNoteTick>(50, 250);
|
2017-05-03 12:37:47 +09:00
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2021-05-12 16:56:07 +09:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
NewResult += OnNewResult;
|
|
|
|
}
|
|
|
|
|
2020-04-01 13:38:03 +09:00
|
|
|
public ColumnType ColumnType { get; set; }
|
2019-02-28 13:31:40 +09:00
|
|
|
|
2020-04-01 13:38:03 +09:00
|
|
|
public bool IsSpecial => ColumnType == ColumnType.Special;
|
2020-03-31 11:53:17 +08:00
|
|
|
|
2020-03-31 15:23:59 +09:00
|
|
|
public Color4 AccentColour { get; set; }
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2018-07-11 17:07:14 +09:00
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
2018-07-02 12:31:41 +09:00
|
|
|
{
|
2018-07-11 17:07:14 +09:00
|
|
|
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
2018-07-02 12:31:41 +09:00
|
|
|
dependencies.CacheAs<IBindable<ManiaAction>>(Action);
|
|
|
|
return dependencies;
|
|
|
|
}
|
|
|
|
|
2021-05-12 16:56:07 +09:00
|
|
|
protected override void OnNewDrawableHitObject(DrawableHitObject drawableHitObject)
|
2017-05-24 21:56:49 +09:00
|
|
|
{
|
2021-05-12 16:56:07 +09:00
|
|
|
base.OnNewDrawableHitObject(drawableHitObject);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2021-05-12 16:56:07 +09:00
|
|
|
DrawableManiaHitObject maniaObject = (DrawableManiaHitObject)drawableHitObject;
|
2021-05-19 17:31:47 +09:00
|
|
|
|
|
|
|
maniaObject.AccentColour.Value = AccentColour;
|
2021-05-12 16:56:07 +09:00
|
|
|
maniaObject.CheckHittable = hitPolicy.IsHittable;
|
2018-11-19 16:20:21 +09:00
|
|
|
}
|
|
|
|
|
2018-08-06 10:54:16 +09:00
|
|
|
internal void OnNewResult(DrawableHitObject judgedObject, JudgementResult result)
|
2017-09-11 13:44:39 +09:00
|
|
|
{
|
2020-08-27 20:24:08 +09:00
|
|
|
if (result.IsHit)
|
|
|
|
hitPolicy.HandleHit(judgedObject);
|
|
|
|
|
2020-11-17 13:37:58 +09:00
|
|
|
if (!result.IsHit || !judgedObject.DisplayResult || !DisplayJudgements.Value)
|
2017-09-11 13:44:39 +09:00
|
|
|
return;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2020-07-29 16:14:19 +09:00
|
|
|
HitObjectArea.Explosions.Add(hitExplosionPool.Get(e => e.Apply(result)));
|
2017-09-11 13:44:39 +09:00
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2021-09-16 18:26:12 +09:00
|
|
|
public bool OnPressed(KeyBindingPressEvent<ManiaAction> e)
|
2018-01-24 20:05:11 +09:00
|
|
|
{
|
2021-09-16 18:26:12 +09:00
|
|
|
if (e.Action != Action.Value)
|
2018-03-29 16:13:05 +09:00
|
|
|
return false;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2021-08-24 18:23:02 +09:00
|
|
|
sampleTriggerSource.Play();
|
2018-03-29 16:13:05 +09:00
|
|
|
return true;
|
2018-01-24 20:05:11 +09:00
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2021-09-16 18:26:12 +09:00
|
|
|
public void OnReleased(KeyBindingReleaseEvent<ManiaAction> e)
|
2020-01-22 13:22:34 +09:00
|
|
|
{
|
|
|
|
}
|
2018-11-13 14:13:29 +09:00
|
|
|
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos)
|
|
|
|
// This probably shouldn't exist as is, but the columns in the stage are separated by a 1px border
|
2020-04-08 14:08:34 +09:00
|
|
|
=> DrawRectangle.Inflate(new Vector2(Stage.COLUMN_SPACING / 2, 0)).Contains(ToLocalSpace(screenSpacePos));
|
2022-01-31 16:36:56 +09:00
|
|
|
|
|
|
|
public class ColumnTouchInputArea : Drawable
|
|
|
|
{
|
2022-02-01 00:53:56 +09:00
|
|
|
private readonly Column column;
|
|
|
|
|
2022-01-31 16:47:20 +09:00
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
private ManiaInputManager maniaInputManager { get; set; }
|
|
|
|
|
|
|
|
private KeyBindingContainer<ManiaAction> keyBindingContainer;
|
|
|
|
|
2022-02-01 00:53:56 +09:00
|
|
|
public ColumnTouchInputArea(Column column)
|
2022-01-31 16:36:56 +09:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
2022-02-01 00:53:56 +09:00
|
|
|
this.column = column;
|
|
|
|
}
|
2022-01-31 16:36:56 +09:00
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
2022-01-31 16:47:20 +09:00
|
|
|
keyBindingContainer = maniaInputManager?.KeyBindingContainer;
|
2022-01-31 16:36:56 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
|
|
{
|
2022-01-31 16:47:20 +09:00
|
|
|
keyBindingContainer?.TriggerPressed(column.Action.Value);
|
2022-01-31 16:36:56 +09:00
|
|
|
return base.OnMouseDown(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
|
|
|
{
|
2022-01-31 16:47:20 +09:00
|
|
|
keyBindingContainer?.TriggerReleased(column.Action.Value);
|
2022-01-31 16:36:56 +09:00
|
|
|
base.OnMouseUp(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool OnTouchDown(TouchDownEvent e)
|
|
|
|
{
|
2022-01-31 16:47:20 +09:00
|
|
|
keyBindingContainer?.TriggerPressed(column.Action.Value);
|
2022-01-31 16:36:56 +09:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnTouchUp(TouchUpEvent e)
|
|
|
|
{
|
2022-01-31 16:47:20 +09:00
|
|
|
keyBindingContainer?.TriggerReleased(column.Action.Value);
|
2022-01-31 16:36:56 +09:00
|
|
|
}
|
|
|
|
}
|
2017-05-03 12:37:47 +09:00
|
|
|
}
|
|
|
|
}
|