2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK.Graphics;
|
2017-05-21 00:02:42 +08:00
|
|
|
using osu.Framework.Allocation;
|
2017-05-22 17:38:21 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2017-05-21 00:02:42 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Colour;
|
2017-06-20 13:54:23 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2017-05-21 00:02:42 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2017-05-24 09:01:20 +08:00
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2017-05-23 16:26:28 +08:00
|
|
|
using osu.Game.Graphics;
|
2017-05-24 09:01:20 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
2019-03-31 20:10:44 +08:00
|
|
|
using osu.Game.Skinning;
|
|
|
|
using osu.Game.Online.API;
|
2017-05-24 09:01:20 +08:00
|
|
|
using System;
|
2020-06-23 12:49:18 +08:00
|
|
|
using osu.Framework.Audio.Track;
|
2019-02-21 18:04:31 +08:00
|
|
|
using osu.Framework.Bindables;
|
2021-11-04 17:02:44 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-05-21 00:02:42 +08:00
|
|
|
namespace osu.Game.Screens.Menu
|
|
|
|
{
|
|
|
|
public class MenuSideFlashes : BeatSyncedContainer
|
|
|
|
{
|
2018-05-23 16:37:39 +08:00
|
|
|
private readonly IBindable<WorkingBeatmap> beatmap = new Bindable<WorkingBeatmap>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-06-03 02:26:59 +08:00
|
|
|
private Box leftBox;
|
|
|
|
private Box rightBox;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-05-22 12:47:08 +08:00
|
|
|
private const float amplitude_dead_zone = 0.25f;
|
|
|
|
private const float alpha_multiplier = (1 - amplitude_dead_zone) / 0.55f;
|
2017-05-22 17:53:32 +08:00
|
|
|
private const float kiai_multiplier = (1 - amplitude_dead_zone * 0.95f) / 0.8f;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-05-21 00:02:42 +08:00
|
|
|
private const int box_max_alpha = 200;
|
|
|
|
private const double box_fade_in_time = 65;
|
2017-05-23 16:26:28 +08:00
|
|
|
private const int box_width = 200;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
private IBindable<APIUser> user;
|
2019-03-31 20:10:44 +08:00
|
|
|
private Bindable<Skin> skin;
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private OsuColour colours { get; set; }
|
|
|
|
|
2017-05-21 00:02:42 +08:00
|
|
|
public MenuSideFlashes()
|
|
|
|
{
|
2017-05-24 20:07:12 +08:00
|
|
|
EarlyActivationMilliseconds = box_fade_in_time;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-05-21 00:02:42 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
Origin = Anchor.Centre;
|
2018-06-03 02:26:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2019-03-31 20:10:44 +08:00
|
|
|
private void load(IBindable<WorkingBeatmap> beatmap, IAPIProvider api, SkinManager skinManager)
|
2018-06-03 02:26:59 +08:00
|
|
|
{
|
2018-06-06 17:26:51 +08:00
|
|
|
this.beatmap.BindTo(beatmap);
|
2018-06-03 02:26:59 +08:00
|
|
|
|
2019-03-31 20:10:44 +08:00
|
|
|
user = api.LocalUser.GetBoundCopy();
|
|
|
|
skin = skinManager.CurrentSkin.GetBoundCopy();
|
|
|
|
|
2017-05-21 00:02:42 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
leftBox = new Box
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2018-06-03 02:26:59 +08:00
|
|
|
Width = box_width * 2,
|
2019-01-04 12:29:37 +08:00
|
|
|
Height = 1.5f,
|
2018-06-03 02:26:59 +08:00
|
|
|
// align off-screen to make sure our edges don't become visible during parallax.
|
|
|
|
X = -box_width,
|
2017-05-21 00:02:42 +08:00
|
|
|
Alpha = 0,
|
2019-08-21 12:29:50 +08:00
|
|
|
Blending = BlendingParameters.Additive
|
2017-05-21 00:02:42 +08:00
|
|
|
},
|
|
|
|
rightBox = new Box
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2018-06-03 02:26:59 +08:00
|
|
|
Width = box_width * 2,
|
2019-01-04 12:29:37 +08:00
|
|
|
Height = 1.5f,
|
2018-06-03 02:26:59 +08:00
|
|
|
X = box_width,
|
2017-05-21 00:02:42 +08:00
|
|
|
Alpha = 0,
|
2019-08-21 12:29:50 +08:00
|
|
|
Blending = BlendingParameters.Additive
|
2017-05-21 00:02:42 +08:00
|
|
|
}
|
|
|
|
};
|
2019-03-31 20:10:44 +08:00
|
|
|
|
2019-04-01 12:13:56 +08:00
|
|
|
user.ValueChanged += _ => updateColour();
|
|
|
|
skin.BindValueChanged(_ => updateColour(), true);
|
2017-05-23 16:26:28 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-06-23 12:49:18 +08:00
|
|
|
protected override void OnNewBeat(int beatIndex, TimingControlPoint timingPoint, EffectControlPoint effectPoint, ChannelAmplitudes amplitudes)
|
2017-05-21 00:02:42 +08:00
|
|
|
{
|
2017-05-24 09:01:20 +08:00
|
|
|
if (beatIndex < 0)
|
2017-05-22 17:38:21 +08:00
|
|
|
return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-01-23 00:27:27 +08:00
|
|
|
if (effectPoint.KiaiMode ? beatIndex % 2 == 0 : beatIndex % timingPoint.TimeSignature.Numerator == 0)
|
2017-05-24 09:01:20 +08:00
|
|
|
flash(leftBox, timingPoint.BeatLength, effectPoint.KiaiMode, amplitudes);
|
2022-01-23 00:27:27 +08:00
|
|
|
if (effectPoint.KiaiMode ? beatIndex % 2 == 1 : beatIndex % timingPoint.TimeSignature.Numerator == 0)
|
2017-05-24 09:01:20 +08:00
|
|
|
flash(rightBox, timingPoint.BeatLength, effectPoint.KiaiMode, amplitudes);
|
2017-05-22 18:59:16 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-06-23 12:49:18 +08:00
|
|
|
private void flash(Drawable d, double beatLength, bool kiai, ChannelAmplitudes amplitudes)
|
2017-05-22 18:59:16 +08:00
|
|
|
{
|
2019-11-13 22:35:50 +08:00
|
|
|
d.FadeTo(Math.Max(0, ((ReferenceEquals(d, leftBox) ? amplitudes.LeftChannel : amplitudes.RightChannel) - amplitude_dead_zone) / (kiai ? kiai_multiplier : alpha_multiplier)), box_fade_in_time)
|
2017-07-16 23:28:20 +08:00
|
|
|
.Then()
|
2017-07-23 02:50:25 +08:00
|
|
|
.FadeOut(beatLength, Easing.In);
|
2017-05-21 00:02:42 +08:00
|
|
|
}
|
2019-03-31 20:10:44 +08:00
|
|
|
|
2019-04-01 12:13:56 +08:00
|
|
|
private void updateColour()
|
2019-03-31 20:10:44 +08:00
|
|
|
{
|
2019-04-01 12:13:56 +08:00
|
|
|
Color4 baseColour = colours.Blue;
|
2019-03-31 20:10:44 +08:00
|
|
|
|
|
|
|
if (user.Value?.IsSupporter ?? false)
|
2020-02-07 13:58:07 +08:00
|
|
|
baseColour = skin.Value.GetConfig<GlobalSkinColours, Color4>(GlobalSkinColours.MenuGlow)?.Value ?? baseColour;
|
2019-03-31 20:10:44 +08:00
|
|
|
|
|
|
|
// linear colour looks better in this case, so let's use it for now.
|
|
|
|
Color4 gradientDark = baseColour.Opacity(0).ToLinear();
|
|
|
|
Color4 gradientLight = baseColour.Opacity(0.6f).ToLinear();
|
|
|
|
|
|
|
|
leftBox.Colour = ColourInfo.GradientHorizontal(gradientLight, gradientDark);
|
|
|
|
rightBox.Colour = ColourInfo.GradientHorizontal(gradientDark, gradientLight);
|
|
|
|
}
|
2017-05-21 00:02:42 +08:00
|
|
|
}
|
2017-05-23 16:26:28 +08:00
|
|
|
}
|