1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Overlays/WaveOverlayContainer.cs

204 lines
6.2 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-02-23 10:16:23 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK.Graphics;
using osu.Framework.Extensions.Color4Extensions;
2017-02-23 10:16:23 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using System;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics.Containers;
2017-02-23 10:16:23 +08:00
namespace osu.Game.Overlays
{
public abstract class WaveOverlayContainer : OsuFocusedOverlayContainer
2017-02-23 10:16:23 +08:00
{
protected const float APPEAR_DURATION = 800;
protected const float DISAPPEAR_DURATION = 500;
2017-07-23 02:50:25 +08:00
private const Easing easing_show = Easing.OutSine;
private const Easing easing_hide = Easing.InSine;
2017-02-23 10:16:23 +08:00
private readonly Wave firstWave;
private readonly Wave secondWave;
private readonly Wave thirdWave;
private readonly Wave fourthWave;
private readonly Container<Wave> wavesContainer;
2017-02-23 10:16:23 +08:00
private readonly Container contentContainer;
2017-02-23 11:42:31 +08:00
protected override bool BlockPassThroughKeyboard => true;
2017-02-23 10:16:23 +08:00
protected override Container<Drawable> Content => contentContainer;
2017-02-23 11:48:24 +08:00
protected Color4 FirstWaveColour
2017-02-23 10:16:23 +08:00
{
get
{
return firstWave.Colour;
2017-02-23 10:16:23 +08:00
}
set
{
if (firstWave.Colour == value) return;
2017-02-23 10:16:23 +08:00
firstWave.Colour = value;
}
}
2017-02-23 11:48:24 +08:00
protected Color4 SecondWaveColour
2017-02-23 10:16:23 +08:00
{
get
{
return secondWave.Colour;
2017-02-23 10:16:23 +08:00
}
set
{
if (secondWave.Colour == value) return;
2017-02-23 10:16:23 +08:00
secondWave.Colour = value;
}
}
2017-02-23 11:48:24 +08:00
protected Color4 ThirdWaveColour
2017-02-23 10:16:23 +08:00
{
get
{
return thirdWave.Colour;
2017-02-23 10:16:23 +08:00
}
set
{
if (thirdWave.Colour == value) return;
2017-02-23 10:16:23 +08:00
thirdWave.Colour = value;
}
}
2017-02-23 11:48:24 +08:00
protected Color4 FourthWaveColour
2017-02-23 10:16:23 +08:00
{
get
{
return fourthWave.Colour;
2017-02-23 10:16:23 +08:00
}
set
{
if (fourthWave.Colour == value) return;
2017-02-23 10:16:23 +08:00
fourthWave.Colour = value;
}
}
2017-02-23 11:48:24 +08:00
protected WaveOverlayContainer()
2017-02-23 10:16:23 +08:00
{
Masking = true;
AddInternal(wavesContainer = new Container<Wave>
2017-02-23 10:16:23 +08:00
{
RelativeSizeAxes = Axes.X,
2017-02-23 10:16:23 +08:00
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
Masking = true,
Children = new[]
2017-02-23 10:16:23 +08:00
{
2017-02-23 10:22:01 +08:00
firstWave = new Wave
2017-02-23 10:16:23 +08:00
{
Rotation = 13,
2017-02-23 11:42:31 +08:00
FinalPosition = -930,
2017-02-23 10:16:23 +08:00
},
2017-02-23 10:22:01 +08:00
secondWave = new Wave
2017-02-23 10:16:23 +08:00
{
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
Rotation = -7,
2017-02-23 11:42:31 +08:00
FinalPosition = -560,
2017-02-23 10:16:23 +08:00
},
2017-02-23 10:22:01 +08:00
thirdWave = new Wave
2017-02-23 10:16:23 +08:00
{
Rotation = 4,
2017-02-23 11:42:31 +08:00
FinalPosition = -390,
2017-02-23 10:16:23 +08:00
},
2017-02-23 10:22:01 +08:00
fourthWave = new Wave
2017-02-23 10:16:23 +08:00
{
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
Rotation = -2,
2017-02-23 11:42:31 +08:00
FinalPosition = -220,
2017-02-23 10:16:23 +08:00
},
},
});
AddInternal(contentContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
});
2017-02-23 10:22:01 +08:00
}
2017-02-23 11:42:31 +08:00
protected override void PopIn()
{
2017-03-04 06:05:43 +08:00
base.PopIn();
2017-02-23 11:42:31 +08:00
foreach (var w in wavesContainer.Children)
w.State = Visibility.Visible;
2017-07-23 02:50:25 +08:00
this.FadeIn(100, Easing.OutQuint);
contentContainer.MoveToY(0, APPEAR_DURATION, Easing.OutQuint);
2017-07-23 02:50:25 +08:00
this.FadeIn(100, Easing.OutQuint);
2017-02-23 11:42:31 +08:00
}
protected override void PopOut()
{
2017-03-04 06:05:43 +08:00
base.PopOut();
2017-07-23 02:50:25 +08:00
this.FadeOut(DISAPPEAR_DURATION, Easing.InQuint);
contentContainer.MoveToY(DrawHeight * 2f, DISAPPEAR_DURATION, Easing.In);
2017-02-23 11:42:31 +08:00
foreach (var w in wavesContainer.Children)
w.State = Visibility.Hidden;
2017-07-23 02:50:25 +08:00
this.FadeOut(DISAPPEAR_DURATION, Easing.InQuint);
2017-02-23 11:42:31 +08:00
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
// This is done as an optimization, such that invisible parts of the waves
// are masked away, and thus do not consume fill rate.
wavesContainer.Height = Math.Max(0, DrawHeight - (contentContainer.DrawHeight - contentContainer.Y));
}
2017-09-28 19:20:19 +08:00
private class Wave : VisibilityContainer
2017-02-23 10:22:01 +08:00
{
public float FinalPosition;
protected override bool StartHidden => true;
2017-02-23 10:22:01 +08:00
public Wave()
{
RelativeSizeAxes = Axes.X;
Width = 1.5f;
2017-02-23 10:22:01 +08:00
Masking = true;
2017-06-12 11:48:47 +08:00
EdgeEffect = new EdgeEffectParameters
2017-02-23 10:22:01 +08:00
{
Type = EdgeEffectType.Shadow,
Colour = Color4.Black.Opacity(50),
Radius = 20f,
};
2017-09-28 19:20:19 +08:00
Child = new Box { RelativeSizeAxes = Axes.Both };
2017-02-23 10:22:01 +08:00
}
protected override void Update()
{
base.Update();
// We can not use RelativeSizeAxes for Height, because the height
// of our parent diminishes as the content moves up.
Height = Parent.Parent.DrawSize.Y * 1.5f;
}
2017-09-28 19:20:19 +08:00
protected override void PopIn() => this.MoveToY(FinalPosition, APPEAR_DURATION, easing_show);
protected override void PopOut() => this.MoveToY(Parent.Parent.DrawSize.Y, DISAPPEAR_DURATION, easing_hide);
2017-02-23 10:16:23 +08:00
}
}
}