1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 19:07:19 +08:00

148 lines
5.3 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 18:19:50 +09:00
using System.Linq;
2018-11-20 16:51:59 +09:00
using osuTK.Graphics;
2018-04-13 18:19:50 +09:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics;
using osu.Game.Rulesets.Objects.Drawables;
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;
2018-04-13 18:19:50 +09:00
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Mania.UI.Components;
2018-04-13 18:19:50 +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;
2020-08-27 20:24:08 +09:00
using osu.Game.Rulesets.Mania.Objects.Drawables;
2018-04-13 18:19:50 +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
2018-04-13 18:19:50 +09:00
{
2019-09-11 18:20:41 +09:00
public const float COLUMN_WIDTH = 80;
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;
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;
2018-04-13 18:19:50 +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;
2018-04-13 18:19:50 +09:00
2020-07-12 14:23:55 +02:00
public Container UnderlayElements => HitObjectArea.UnderlayElements;
2020-05-18 17:47:47 +09:00
2018-11-12 18:24:18 +09:00
public Column(int index)
2018-04-13 18:19:50 +09:00
{
2018-11-12 18:24:18 +09:00
Index = index;
2018-04-13 18:19:50 +09:00
RelativeSizeAxes = Axes.Y;
2020-04-08 18:23:24 +09:00
Width = COLUMN_WIDTH;
2018-06-07 11:19:36 +09:00
Drawable background = new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.ColumnBackground, Index), _ => new DefaultColumnBackground())
2020-03-30 23:14:30 +09:00
{
RelativeSizeAxes = Axes.Both
};
2018-06-07 21:13:29 +09:00
InternalChildren = new[]
2018-04-13 18:19:50 +09:00
{
2020-07-29 15:36:42 +09:00
hitExplosionPool = new DrawablePool<PoolableHitExplosion>(5),
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(),
2020-07-12 14:23:55 +02:00
HitObjectArea = new ColumnHitObjectArea(Index, HitObjectContainer) { RelativeSizeAxes = Axes.Both },
new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.KeyArea, Index), _ => new DefaultKeyArea())
2018-04-13 18:19:50 +09:00
{
2020-03-31 11:23:33 +09:00
RelativeSizeAxes = Axes.Both
2018-04-13 18:19:50 +09:00
},
2018-06-07 21:13:29 +09:00
background,
2018-04-13 18:19:50 +09:00
TopLevelContainer = new Container { RelativeSizeAxes = Axes.Both }
};
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());
2018-04-13 18:19:50 +09:00
}
public ColumnType ColumnType { get; set; }
2019-02-28 13:31:40 +09:00
public bool IsSpecial => ColumnType == ColumnType.Special;
2020-03-31 11:53:17 +08: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-11 17:07:14 +09:00
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
dependencies.CacheAs<IBindable<ManiaAction>>(Action);
return dependencies;
}
2018-04-13 18:19:50 +09:00
/// <summary>
/// Adds a DrawableHitObject to this Playfield.
/// </summary>
/// <param name="hitObject">The DrawableHitObject to add.</param>
public override void Add(DrawableHitObject hitObject)
{
2019-07-22 14:45:25 +09:00
hitObject.AccentColour.Value = AccentColour;
hitObject.OnNewResult += OnNewResult;
2018-04-13 18:19:50 +09:00
2020-08-27 20:24:08 +09:00
DrawableManiaHitObject maniaObject = (DrawableManiaHitObject)hitObject;
maniaObject.CheckHittable = hitPolicy.IsHittable;
HitObjectContainer.Add(hitObject);
2018-04-13 18:19:50 +09:00
}
2018-11-19 16:20:21 +09:00
public override bool Remove(DrawableHitObject h)
{
if (!base.Remove(h))
return false;
h.OnNewResult -= OnNewResult;
return true;
}
internal void OnNewResult(DrawableHitObject judgedObject, JudgementResult result)
2018-04-13 18:19:50 +09:00
{
2020-08-27 20:24:08 +09:00
if (result.IsHit)
hitPolicy.HandleHit(judgedObject);
2019-02-21 18:56:34 +09:00
if (!result.IsHit || !judgedObject.DisplayResult || !DisplayJudgements.Value)
2018-04-13 18:19:50 +09:00
return;
2020-07-29 16:14:19 +09:00
HitObjectArea.Explosions.Add(hitExplosionPool.Get(e => e.Apply(result)));
2018-04-13 18:19:50 +09:00
}
public bool OnPressed(ManiaAction action)
{
2019-02-21 18:56:34 +09:00
if (action != Action.Value)
2018-04-13 18:19:50 +09:00
return false;
var nextObject =
HitObjectContainer.AliveObjects.FirstOrDefault(h => h.HitObject.StartTime > Time.Current) ??
// fallback to non-alive objects to find next off-screen object
HitObjectContainer.Objects.FirstOrDefault(h => h.HitObject.StartTime > Time.Current) ??
HitObjectContainer.Objects.LastOrDefault();
nextObject?.PlaySamples();
2018-04-13 18:19:50 +09:00
return true;
}
public void OnReleased(ManiaAction action)
{
}
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));
2018-04-13 18:19:50 +09:00
}
}