osu/osu.Game.Rulesets.Mania/UI/Column.cs

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

185 lines
6.6 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.
2018-04-13 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
using osu.Framework.Allocation;
2019-02-21 10:04:31 +00:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2020-07-29 06:36:42 +00:00
using osu.Framework.Graphics.Pooling;
2017-08-23 04:42:11 +00:00
using osu.Framework.Input.Bindings;
2021-09-16 09:26:12 +00:00
using osu.Framework.Input.Events;
using osu.Framework.Platform;
using osu.Game.Extensions;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Rulesets.Mania.Objects.Drawables;
using osu.Game.Rulesets.Mania.Skinning;
using osu.Game.Rulesets.Mania.UI.Components;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.UI;
2018-01-04 10:22:15 +00:00
using osu.Game.Rulesets.UI.Scrolling;
2020-03-30 14:14:30 +00:00
using osu.Game.Skinning;
2018-11-26 01:44:48 +00:00
using osuTK;
using osuTK.Graphics;
2018-04-13 09:19:50 +00:00
2017-05-03 03:37:47 +00:00
namespace osu.Game.Rulesets.Mania.UI
{
2020-03-30 14:07:32 +00:00
[Cached]
public partial class Column : ScrollingPlayfield, IKeyBindingHandler<ManiaAction>
2017-05-03 03:37:47 +00:00
{
2019-09-11 09:20:41 +00:00
public const float COLUMN_WIDTH = 80;
public const float SPECIAL_COLUMN_WIDTH = 70;
2018-04-13 09:19:50 +00:00
2018-11-12 09:24:18 +00:00
/// <summary>
/// The index of this column as part of the whole playfield.
/// </summary>
public readonly int Index;
public readonly Bindable<ManiaAction> Action = new Bindable<ManiaAction>();
2018-04-13 09:19:50 +00:00
2020-07-12 12:23:55 +00:00
public readonly ColumnHitObjectArea HitObjectArea;
internal readonly Container BackgroundContainer = new Container { RelativeSizeAxes = Axes.Both };
internal readonly Container TopLevelContainer = new Container { RelativeSizeAxes = Axes.Both };
private DrawablePool<PoolableHitExplosion> hitExplosionPool;
2020-08-27 11:24:08 +00:00
private readonly OrderedHitPolicy hitPolicy;
2020-07-12 12:23:55 +00:00
public Container UnderlayElements => HitObjectArea.UnderlayElements;
2020-05-18 08:47:47 +00:00
private GameplaySampleTriggerSource sampleTriggerSource;
2021-08-24 09:23:02 +00:00
/// <summary>
/// Whether this is a special (ie. scratch) column.
/// </summary>
public readonly bool IsSpecial;
2022-10-04 08:49:00 +00:00
2022-10-05 11:02:02 +00:00
public readonly Bindable<Color4> AccentColour = new Bindable<Color4>(Color4.Black);
2022-10-04 08:49:00 +00:00
public Column(int index, bool isSpecial)
2017-05-03 03:37:47 +00:00
{
2018-11-12 09:24:18 +00:00
Index = index;
IsSpecial = isSpecial;
2018-11-12 09:24:18 +00:00
2018-01-15 10:44:42 +00:00
RelativeSizeAxes = Axes.Y;
2020-04-08 09:23:24 +00:00
Width = COLUMN_WIDTH;
2018-06-07 02:19:36 +00:00
hitPolicy = new OrderedHitPolicy(HitObjectContainer);
HitObjectArea = new ColumnHitObjectArea(HitObjectContainer) { RelativeSizeAxes = Axes.Both };
}
[Resolved]
private ISkinSource skin { get; set; }
[BackgroundDependencyLoader]
private void load(GameHost host)
{
2022-10-07 12:00:02 +00:00
SkinnableDrawable keyArea;
skin.SourceChanged += onSourceChanged;
onSourceChanged();
InternalChildren = new Drawable[]
2017-05-03 03:37:47 +00:00
{
2020-07-29 06:36:42 +00:00
hitExplosionPool = new DrawablePool<PoolableHitExplosion>(5),
2021-08-24 09:23:02 +00:00
sampleTriggerSource = new GameplaySampleTriggerSource(HitObjectContainer),
HitObjectArea,
keyArea = new SkinnableDrawable(new ManiaSkinComponentLookup(ManiaSkinComponents.KeyArea), _ => new DefaultKeyArea())
{
RelativeSizeAxes = Axes.Both,
2017-09-11 04:44:39 +00:00
},
// For input purposes, the background is added at the highest depth, but is then proxied back below all other elements externally
// (see `Stage.columnBackgrounds`).
BackgroundContainer,
2024-04-04 07:00:18 +00:00
TopLevelContainer
2017-05-03 03:37:47 +00:00
};
2018-04-13 09:19:50 +00:00
var background = new SkinnableDrawable(new ManiaSkinComponentLookup(ManiaSkinComponents.ColumnBackground), _ => new DefaultColumnBackground())
{
RelativeSizeAxes = Axes.Both,
};
background.ApplyGameWideClock(host);
keyArea.ApplyGameWideClock(host);
2022-10-07 12:00:02 +00:00
BackgroundContainer.Add(background);
2020-07-12 12:23:55 +00:00
TopLevelContainer.Add(HitObjectArea.Explosions.CreateProxy());
2021-05-12 07:35:05 +00:00
2021-05-12 08:36:26 +00:00
RegisterPool<Note, DrawableNote>(10, 50);
RegisterPool<HoldNote, DrawableHoldNote>(10, 50);
RegisterPool<HeadNote, DrawableHoldNoteHead>(10, 50);
RegisterPool<TailNote, DrawableHoldNoteTail>(10, 50);
RegisterPool<HoldNoteBody, DrawableHoldNoteBody>(10, 50);
2017-05-03 03:37:47 +00:00
}
2018-04-13 09:19:50 +00:00
private void onSourceChanged()
{
AccentColour.Value = skin.GetManiaSkinConfig<Color4>(LegacyManiaSkinConfigurationLookups.ColumnBackgroundColour, Index)?.Value ?? Color4.Black;
}
protected override void LoadComplete()
{
base.LoadComplete();
NewResult += OnNewResult;
}
protected override void Dispose(bool isDisposing)
{
// must happen before children are disposed in base call to prevent illegal accesses to the hit explosion pool.
NewResult -= OnNewResult;
base.Dispose(isDisposing);
if (skin != null)
skin.SourceChanged -= onSourceChanged;
}
2018-07-11 08:07:14 +00:00
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{
2018-07-11 08:07:14 +00:00
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
dependencies.CacheAs<IBindable<ManiaAction>>(Action);
return dependencies;
}
protected override void OnNewDrawableHitObject(DrawableHitObject drawableHitObject)
2017-05-24 12:56:49 +00:00
{
base.OnNewDrawableHitObject(drawableHitObject);
2018-04-13 09:19:50 +00:00
DrawableManiaHitObject maniaObject = (DrawableManiaHitObject)drawableHitObject;
maniaObject.AccentColour.BindTo(AccentColour);
maniaObject.CheckHittable = hitPolicy.IsHittable;
2018-11-19 07:20:21 +00:00
}
internal void OnNewResult(DrawableHitObject judgedObject, JudgementResult result)
2017-09-11 04:44:39 +00:00
{
2020-08-27 11:24:08 +00:00
if (result.IsHit)
hitPolicy.HandleHit(judgedObject);
if (!result.IsHit || !judgedObject.DisplayResult || !DisplayJudgements.Value)
2017-09-11 04:44:39 +00:00
return;
2018-04-13 09:19:50 +00:00
2020-07-29 07:14:19 +00:00
HitObjectArea.Explosions.Add(hitExplosionPool.Get(e => e.Apply(result)));
2017-09-11 04:44:39 +00:00
}
2018-04-13 09:19:50 +00:00
2021-09-16 09:26:12 +00:00
public bool OnPressed(KeyBindingPressEvent<ManiaAction> e)
{
2021-09-16 09:26:12 +00:00
if (e.Action != Action.Value)
return false;
2018-04-13 09:19:50 +00:00
2021-08-24 09:23:02 +00:00
sampleTriggerSource.Play();
return true;
}
2018-04-13 09:19:50 +00:00
2021-09-16 09:26:12 +00:00
public void OnReleased(KeyBindingReleaseEvent<ManiaAction> e)
{
}
2018-11-13 05:13:29 +00: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 05:08:34 +00:00
=> DrawRectangle.Inflate(new Vector2(Stage.COLUMN_SPACING / 2, 0)).Contains(ToLocalSpace(screenSpacePos));
2017-05-03 03:37:47 +00:00
}
}