2020-03-30 22:14:30 +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.
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Skinning
|
|
|
|
{
|
2020-03-31 17:18:53 +08:00
|
|
|
public class LegacyColumnBackground : LegacyManiaColumnElement, IKeyBindingHandler<ManiaAction>
|
2020-03-30 22:14:30 +08:00
|
|
|
{
|
|
|
|
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
|
|
|
|
|
|
|
|
private Container lightContainer;
|
|
|
|
private Sprite light;
|
2020-08-22 02:00:20 +08:00
|
|
|
|
2020-08-25 00:21:27 +08:00
|
|
|
public LegacyColumnBackground()
|
2020-03-30 22:14:30 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(ISkinSource skin, IScrollingInfo scrollingInfo)
|
|
|
|
{
|
2020-06-20 14:53:25 +08:00
|
|
|
string lightImage = skin.GetManiaSkinConfig<string>(LegacyManiaSkinConfigurationLookups.LightImage)?.Value
|
2020-03-30 22:14:30 +08:00
|
|
|
?? "mania-stage-light";
|
|
|
|
|
2020-06-20 14:56:39 +08:00
|
|
|
float lightPosition = GetColumnSkinConfig<float>(skin, LegacyManiaSkinConfigurationLookups.LightPosition)?.Value
|
2020-04-01 15:05:52 +08:00
|
|
|
?? 0;
|
|
|
|
|
2020-06-20 14:56:39 +08:00
|
|
|
Color4 lightColour = GetColumnSkinConfig<Color4>(skin, LegacyManiaSkinConfigurationLookups.ColumnLightColour)?.Value
|
2020-04-07 15:53:29 +08:00
|
|
|
?? Color4.White;
|
|
|
|
|
2020-08-24 21:36:37 +08:00
|
|
|
InternalChildren = new[]
|
2020-03-30 22:14:30 +08:00
|
|
|
{
|
|
|
|
lightContainer = new Container
|
|
|
|
{
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-04-01 15:05:52 +08:00
|
|
|
Padding = new MarginPadding { Bottom = lightPosition },
|
2020-03-30 22:14:30 +08:00
|
|
|
Child = light = new Sprite
|
|
|
|
{
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomCentre,
|
2020-04-07 15:53:29 +08:00
|
|
|
Colour = lightColour,
|
2020-03-30 22:14:30 +08:00
|
|
|
Texture = skin.GetTexture(lightImage),
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Width = 1,
|
|
|
|
Alpha = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
direction.BindTo(scrollingInfo.Direction);
|
|
|
|
direction.BindValueChanged(onDirectionChanged, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onDirectionChanged(ValueChangedEvent<ScrollingDirection> direction)
|
|
|
|
{
|
|
|
|
if (direction.NewValue == ScrollingDirection.Up)
|
|
|
|
{
|
|
|
|
lightContainer.Anchor = Anchor.TopCentre;
|
|
|
|
lightContainer.Scale = new Vector2(1, -1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lightContainer.Anchor = Anchor.BottomCentre;
|
|
|
|
lightContainer.Scale = Vector2.One;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool OnPressed(ManiaAction action)
|
|
|
|
{
|
2020-03-31 17:18:53 +08:00
|
|
|
if (action == Column.Action.Value)
|
2020-03-30 22:14:30 +08:00
|
|
|
{
|
|
|
|
light.FadeIn();
|
|
|
|
light.ScaleTo(Vector2.One);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void OnReleased(ManiaAction action)
|
|
|
|
{
|
|
|
|
// Todo: Should be 400 * 100 / CurrentBPM
|
|
|
|
const double animation_length = 250;
|
|
|
|
|
2020-03-31 17:18:53 +08:00
|
|
|
if (action == Column.Action.Value)
|
2020-03-30 22:14:30 +08:00
|
|
|
{
|
|
|
|
light.FadeTo(0, animation_length);
|
|
|
|
light.ScaleTo(new Vector2(1, 0), animation_length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|