2022-09-27 17:52:43 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-09-27 18:13:37 +08:00
|
|
|
using System.Linq;
|
2022-09-27 17:52:43 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Effects;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Skinning.Argon
|
|
|
|
{
|
|
|
|
public class ArgonKeyArea : CompositeDrawable, IKeyBindingHandler<ManiaAction>
|
|
|
|
{
|
|
|
|
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
|
|
|
|
|
|
|
|
private Container directionContainer = null!;
|
2022-09-27 18:13:37 +08:00
|
|
|
private Container keyIcon = null!;
|
|
|
|
private Drawable background = null!;
|
2022-09-27 17:52:43 +08:00
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private Column column { get; set; } = null!;
|
|
|
|
|
|
|
|
public ArgonKeyArea()
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(IScrollingInfo scrollingInfo)
|
|
|
|
{
|
|
|
|
const float icon_circle_size = 8;
|
2022-09-27 18:13:37 +08:00
|
|
|
const float icon_spacing = 7;
|
|
|
|
const float icon_vertical_offset = -30;
|
2022-09-27 17:52:43 +08:00
|
|
|
|
|
|
|
InternalChild = directionContainer = new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = Stage.HIT_TARGET_POSITION,
|
|
|
|
Children = new[]
|
|
|
|
{
|
2022-09-27 18:13:37 +08:00
|
|
|
background = new Box
|
2022-09-27 17:52:43 +08:00
|
|
|
{
|
|
|
|
Name = "Key gradient",
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2022-09-27 18:13:37 +08:00
|
|
|
Colour = column.AccentColour.Darken(0.6f),
|
2022-09-27 17:52:43 +08:00
|
|
|
},
|
2022-09-27 18:13:37 +08:00
|
|
|
keyIcon = new Container
|
2022-09-27 17:52:43 +08:00
|
|
|
{
|
|
|
|
Name = "Icons",
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
Children = new[]
|
|
|
|
{
|
|
|
|
new Circle
|
|
|
|
{
|
|
|
|
Y = icon_vertical_offset,
|
|
|
|
Size = new Vector2(icon_circle_size),
|
2022-09-27 18:13:37 +08:00
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.Centre,
|
2022-09-27 17:52:43 +08:00
|
|
|
Blending = BlendingParameters.Additive,
|
|
|
|
Colour = column.AccentColour,
|
|
|
|
Masking = true,
|
|
|
|
},
|
|
|
|
new Circle
|
|
|
|
{
|
|
|
|
X = -icon_spacing,
|
|
|
|
Y = icon_vertical_offset + icon_spacing * 1.2f,
|
|
|
|
Size = new Vector2(icon_circle_size),
|
2022-09-27 18:13:37 +08:00
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.Centre,
|
2022-09-27 17:52:43 +08:00
|
|
|
Blending = BlendingParameters.Additive,
|
|
|
|
Colour = column.AccentColour,
|
|
|
|
Masking = true,
|
|
|
|
},
|
|
|
|
new Circle
|
|
|
|
{
|
|
|
|
X = icon_spacing,
|
|
|
|
Y = icon_vertical_offset + icon_spacing * 1.2f,
|
|
|
|
Size = new Vector2(icon_circle_size),
|
2022-09-27 18:13:37 +08:00
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.Centre,
|
2022-09-27 17:52:43 +08:00
|
|
|
Blending = BlendingParameters.Additive,
|
|
|
|
Colour = column.AccentColour,
|
|
|
|
Masking = true,
|
2022-09-27 18:13:37 +08:00
|
|
|
},
|
|
|
|
new CircularContainer
|
|
|
|
{
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Y = -icon_vertical_offset,
|
|
|
|
Size = new Vector2(22, 14),
|
|
|
|
Masking = true,
|
|
|
|
BorderThickness = 4,
|
|
|
|
BorderColour = Color4.White,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Alpha = 0,
|
|
|
|
AlwaysPresent = true,
|
|
|
|
},
|
|
|
|
},
|
2022-09-27 17:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
direction.BindTo(scrollingInfo.Direction);
|
|
|
|
direction.BindValueChanged(onDirectionChanged, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onDirectionChanged(ValueChangedEvent<ScrollingDirection> direction)
|
|
|
|
{
|
|
|
|
switch (direction.NewValue)
|
|
|
|
{
|
|
|
|
case ScrollingDirection.Up:
|
|
|
|
directionContainer.Scale = new Vector2(1, -1);
|
|
|
|
directionContainer.Anchor = Anchor.TopLeft;
|
|
|
|
directionContainer.Origin = Anchor.BottomLeft;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ScrollingDirection.Down:
|
|
|
|
directionContainer.Scale = new Vector2(1, 1);
|
|
|
|
directionContainer.Anchor = Anchor.BottomLeft;
|
|
|
|
directionContainer.Origin = Anchor.BottomLeft;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<ManiaAction> e)
|
|
|
|
{
|
|
|
|
if (e.Action == column.Action.Value)
|
|
|
|
{
|
2022-09-27 18:13:37 +08:00
|
|
|
foreach (var circle in keyIcon.Children.OfType<CompositeDrawable>())
|
2022-09-27 17:52:43 +08:00
|
|
|
{
|
|
|
|
circle.ScaleTo(1.1f, 50, Easing.OutQuint);
|
|
|
|
|
|
|
|
circle.FadeColour(Color4.White, 50, Easing.OutQuint);
|
|
|
|
circle.TransformTo(nameof(EdgeEffect), new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Type = EdgeEffectType.Glow,
|
2022-09-27 18:13:37 +08:00
|
|
|
Colour = Color4.White.Opacity(circle is Circle ? 0.05f : 0.2f),
|
|
|
|
Radius = 40,
|
2022-09-27 17:52:43 +08:00
|
|
|
}, 50, Easing.OutQuint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<ManiaAction> e)
|
|
|
|
{
|
|
|
|
if (e.Action == column.Action.Value)
|
|
|
|
{
|
2022-09-27 18:13:37 +08:00
|
|
|
foreach (var circle in keyIcon.Children.OfType<CompositeDrawable>())
|
2022-09-27 17:52:43 +08:00
|
|
|
{
|
|
|
|
circle.ScaleTo(1f, 125, Easing.OutQuint);
|
|
|
|
|
2022-09-27 18:13:37 +08:00
|
|
|
// TODO: temp lol
|
|
|
|
if (circle is Circle)
|
|
|
|
circle.FadeColour(column.AccentColour, 200, Easing.OutQuint);
|
|
|
|
|
2022-09-27 17:52:43 +08:00
|
|
|
circle.TransformTo(nameof(EdgeEffect), new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Type = EdgeEffectType.Glow,
|
|
|
|
Colour = Color4.White.Opacity(0),
|
2022-09-27 18:13:37 +08:00
|
|
|
Radius = 30,
|
2022-09-27 17:52:43 +08:00
|
|
|
}, 200, Easing.OutQuint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|