2019-09-11 17:12:43 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-11-07 16:24:05 +08:00
|
|
|
using System.Linq;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-07-02 11:31:41 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2019-09-11 17:20:41 +08:00
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces;
|
2018-06-07 19:49:06 +08:00
|
|
|
using osu.Game.Rulesets.Mania.UI.Components;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2018-11-26 09:44:48 +08:00
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
|
|
{
|
2018-11-06 14:46:36 +08:00
|
|
|
public class Column : ScrollingPlayfield, IKeyBindingHandler<ManiaAction>, IHasAccentColour
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-09-11 17:20:41 +08:00
|
|
|
public const float COLUMN_WIDTH = 80;
|
2018-04-13 17:19:50 +08:00
|
|
|
private const float special_column_width = 70;
|
|
|
|
|
2018-11-12 17:24:18 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The index of this column as part of the whole playfield.
|
|
|
|
/// </summary>
|
|
|
|
public readonly int Index;
|
|
|
|
|
2018-07-02 11:31:41 +08:00
|
|
|
public readonly Bindable<ManiaAction> Action = new Bindable<ManiaAction>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-06-07 19:49:06 +08:00
|
|
|
private readonly ColumnBackground background;
|
2018-06-07 20:13:57 +08:00
|
|
|
private readonly ColumnKeyArea keyArea;
|
2018-06-07 20:40:12 +08:00
|
|
|
private readonly ColumnHitObjectArea hitObjectArea;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
internal readonly Container TopLevelContainer;
|
|
|
|
private readonly Container explosionContainer;
|
|
|
|
|
2018-11-12 17:24:18 +08:00
|
|
|
public Column(int index)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2018-11-12 17:24:18 +08:00
|
|
|
Index = index;
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
RelativeSizeAxes = Axes.Y;
|
2019-09-11 17:20:41 +08:00
|
|
|
Width = COLUMN_WIDTH;
|
2018-06-07 10:19:36 +08:00
|
|
|
|
2018-06-08 19:13:24 +08:00
|
|
|
background = new ColumnBackground { RelativeSizeAxes = Axes.Both };
|
2018-06-07 20:13:29 +08:00
|
|
|
|
2018-06-11 13:36:19 +08:00
|
|
|
Container hitTargetContainer;
|
|
|
|
|
2018-06-07 20:13:29 +08:00
|
|
|
InternalChildren = new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2018-06-07 20:13:29 +08:00
|
|
|
// For input purposes, the background is added at the highest depth, but is then proxied back below all other elements
|
|
|
|
background.CreateProxy(),
|
2018-06-11 13:36:19 +08:00
|
|
|
hitTargetContainer = new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Name = "Hit target + hit objects",
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2018-09-21 13:35:50 +08:00
|
|
|
hitObjectArea = new ColumnHitObjectArea(HitObjectContainer)
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
explosionContainer = new Container
|
|
|
|
{
|
|
|
|
Name = "Hit explosions",
|
2019-09-11 17:20:41 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-06-08 19:13:24 +08:00
|
|
|
keyArea = new ColumnKeyArea
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = ManiaStage.HIT_TARGET_POSITION,
|
|
|
|
},
|
2018-06-07 20:13:29 +08:00
|
|
|
background,
|
2018-04-13 17:19:50 +08:00
|
|
|
TopLevelContainer = new Container { RelativeSizeAxes = Axes.Both }
|
|
|
|
};
|
|
|
|
|
|
|
|
TopLevelContainer.Add(explosionContainer.CreateProxy());
|
2018-06-11 13:36:19 +08:00
|
|
|
|
2019-02-22 19:13:38 +08:00
|
|
|
Direction.BindValueChanged(dir =>
|
2018-06-11 13:36:19 +08:00
|
|
|
{
|
|
|
|
hitTargetContainer.Padding = new MarginPadding
|
|
|
|
{
|
2019-02-22 19:13:38 +08:00
|
|
|
Top = dir.NewValue == ScrollingDirection.Up ? ManiaStage.HIT_TARGET_POSITION : 0,
|
|
|
|
Bottom = dir.NewValue == ScrollingDirection.Down ? ManiaStage.HIT_TARGET_POSITION : 0,
|
2018-06-11 13:36:19 +08:00
|
|
|
};
|
|
|
|
|
2019-09-12 12:52:27 +08:00
|
|
|
explosionContainer.Padding = new MarginPadding
|
|
|
|
{
|
|
|
|
Top = dir.NewValue == ScrollingDirection.Up ? NotePiece.NOTE_HEIGHT / 2 : 0,
|
|
|
|
Bottom = dir.NewValue == ScrollingDirection.Down ? NotePiece.NOTE_HEIGHT / 2 : 0
|
|
|
|
};
|
2019-09-11 17:12:43 +08:00
|
|
|
|
2019-02-22 19:13:38 +08:00
|
|
|
keyArea.Anchor = keyArea.Origin = dir.NewValue == ScrollingDirection.Up ? Anchor.TopLeft : Anchor.BottomLeft;
|
2018-06-11 13:36:19 +08:00
|
|
|
}, true);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override Axes RelativeSizeAxes => Axes.Y;
|
|
|
|
|
|
|
|
private bool isSpecial;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
public bool IsSpecial
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
get => isSpecial;
|
2018-04-13 17:19:50 +08:00
|
|
|
set
|
|
|
|
{
|
|
|
|
if (isSpecial == value)
|
|
|
|
return;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
isSpecial = value;
|
|
|
|
|
2019-09-11 17:20:41 +08:00
|
|
|
Width = isSpecial ? special_column_width : COLUMN_WIDTH;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private Color4 accentColour;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
public Color4 AccentColour
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
get => accentColour;
|
2018-04-13 17:19:50 +08:00
|
|
|
set
|
|
|
|
{
|
|
|
|
if (accentColour == value)
|
|
|
|
return;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
accentColour = value;
|
|
|
|
|
2018-06-07 19:49:06 +08:00
|
|
|
background.AccentColour = value;
|
2018-06-07 20:13:57 +08:00
|
|
|
keyArea.AccentColour = value;
|
2018-06-07 20:40:12 +08:00
|
|
|
hitObjectArea.AccentColour = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-11 16:07:14 +08:00
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
2018-07-02 11:31:41 +08:00
|
|
|
{
|
2018-07-11 16:07:14 +08:00
|
|
|
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
2018-07-02 11:31:41 +08:00
|
|
|
dependencies.CacheAs<IBindable<ManiaAction>>(Action);
|
|
|
|
return dependencies;
|
|
|
|
}
|
|
|
|
|
2018-04-13 17:19:50 +08: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 13:45:25 +08:00
|
|
|
hitObject.AccentColour.Value = AccentColour;
|
2018-08-06 09:54:16 +08:00
|
|
|
hitObject.OnNewResult += OnNewResult;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-11-07 16:24:05 +08:00
|
|
|
HitObjectContainer.Add(hitObject);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
2018-11-19 15:20:21 +08:00
|
|
|
public override bool Remove(DrawableHitObject h)
|
|
|
|
{
|
|
|
|
if (!base.Remove(h))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
h.OnNewResult -= OnNewResult;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-06 09:54:16 +08:00
|
|
|
internal void OnNewResult(DrawableHitObject judgedObject, JudgementResult result)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
if (!result.IsHit || !judgedObject.DisplayResult || !DisplayJudgements.Value)
|
2018-04-13 17:19:50 +08:00
|
|
|
return;
|
|
|
|
|
2019-09-11 17:12:43 +08:00
|
|
|
explosionContainer.Add(new HitExplosion(judgedObject.AccentColour.Value, judgedObject is DrawableHoldNoteTick)
|
2018-06-08 14:23:47 +08:00
|
|
|
{
|
2019-09-11 17:12:43 +08:00
|
|
|
Anchor = Direction.Value == ScrollingDirection.Up ? Anchor.TopCentre : Anchor.BottomCentre,
|
2019-09-12 12:52:27 +08:00
|
|
|
Origin = Anchor.Centre
|
2018-06-08 14:23:47 +08:00
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool OnPressed(ManiaAction action)
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
if (action != Action.Value)
|
2018-04-13 17:19:50 +08:00
|
|
|
return false;
|
|
|
|
|
2018-06-06 13:18:38 +08:00
|
|
|
var nextObject =
|
2018-11-07 16:24:05 +08:00
|
|
|
HitObjectContainer.AliveObjects.FirstOrDefault(h => h.HitObject.StartTime > Time.Current) ??
|
2018-06-06 13:18:38 +08:00
|
|
|
// fallback to non-alive objects to find next off-screen object
|
2018-11-07 16:24:05 +08:00
|
|
|
HitObjectContainer.Objects.FirstOrDefault(h => h.HitObject.StartTime > Time.Current) ??
|
|
|
|
HitObjectContainer.Objects.LastOrDefault();
|
2018-06-06 13:18:38 +08:00
|
|
|
|
|
|
|
nextObject?.PlaySamples();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool OnReleased(ManiaAction action) => false;
|
2018-11-13 13:13:29 +08: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
|
2018-11-29 13:15:23 +08:00
|
|
|
=> DrawRectangle.Inflate(new Vector2(ManiaStage.COLUMN_SPACING / 2, 0)).Contains(ToLocalSpace(screenSpacePos));
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|