2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using System.Linq;
|
2018-07-02 11:31:41 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Configuration;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
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;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
|
|
|
{
|
2018-06-11 13:36:19 +08:00
|
|
|
|
public class Column : ManiaScrollingPlayfield, IKeyBindingHandler<ManiaAction>, IHasAccentColour
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
private const float column_width = 45;
|
|
|
|
|
private const float special_column_width = 70;
|
|
|
|
|
|
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-06-07 20:40:12 +08:00
|
|
|
|
protected override Container<Drawable> Content => hitObjectArea;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-07-17 14:14:03 +08:00
|
|
|
|
public Column()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
|
Width = column_width;
|
|
|
|
|
|
2018-06-07 10:19:36 +08:00
|
|
|
|
Masking = true;
|
|
|
|
|
CornerRadius = 5;
|
|
|
|
|
|
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-06-08 19:13:24 +08:00
|
|
|
|
hitObjectArea = new ColumnHitObjectArea { RelativeSizeAxes = Axes.Both },
|
2018-04-13 17:19:50 +08:00
|
|
|
|
explosionContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
Name = "Hit explosions",
|
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
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
|
|
|
|
|
|
|
|
|
Direction.BindValueChanged(d =>
|
|
|
|
|
{
|
|
|
|
|
hitTargetContainer.Padding = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Top = d == ScrollingDirection.Up ? ManiaStage.HIT_TARGET_POSITION : 0,
|
|
|
|
|
Bottom = d == ScrollingDirection.Down ? ManiaStage.HIT_TARGET_POSITION : 0,
|
|
|
|
|
};
|
|
|
|
|
|
2018-06-11 15:10:27 +08:00
|
|
|
|
keyArea.Anchor = keyArea.Origin= d == 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;
|
|
|
|
|
public bool IsSpecial
|
|
|
|
|
{
|
|
|
|
|
get { return isSpecial; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (isSpecial == value)
|
|
|
|
|
return;
|
|
|
|
|
isSpecial = value;
|
|
|
|
|
|
|
|
|
|
Width = isSpecial ? special_column_width : column_width;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Color4 accentColour;
|
|
|
|
|
public Color4 AccentColour
|
|
|
|
|
{
|
|
|
|
|
get { return accentColour; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (accentColour == value)
|
|
|
|
|
return;
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
hitObject.AccentColour = AccentColour;
|
|
|
|
|
hitObject.OnJudgement += OnJudgement;
|
|
|
|
|
|
|
|
|
|
HitObjects.Add(hitObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void OnJudgement(DrawableHitObject judgedObject, Judgement judgement)
|
|
|
|
|
{
|
2018-07-20 16:04:33 +08:00
|
|
|
|
if (!judgement.IsHit || !judgedObject.DisplayJudgement || !DisplayJudgements)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2018-06-08 14:23:47 +08:00
|
|
|
|
explosionContainer.Add(new HitExplosion(judgedObject)
|
|
|
|
|
{
|
2018-06-11 13:36:19 +08:00
|
|
|
|
Anchor = Direction == ScrollingDirection.Up ? Anchor.TopCentre : Anchor.BottomCentre
|
2018-06-08 14:23:47 +08:00
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool OnPressed(ManiaAction action)
|
|
|
|
|
{
|
|
|
|
|
if (action != Action)
|
|
|
|
|
return false;
|
|
|
|
|
|
2018-06-06 13:18:38 +08:00
|
|
|
|
var nextObject =
|
|
|
|
|
HitObjects.AliveObjects.FirstOrDefault(h => h.HitObject.StartTime > Time.Current) ??
|
|
|
|
|
// fallback to non-alive objects to find next off-screen object
|
|
|
|
|
HitObjects.Objects.FirstOrDefault(h => h.HitObject.StartTime > Time.Current) ??
|
|
|
|
|
HitObjects.Objects.LastOrDefault();
|
|
|
|
|
|
|
|
|
|
nextObject?.PlaySamples();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool OnReleased(ManiaAction action) => false;
|
|
|
|
|
}
|
|
|
|
|
}
|