mirror of
https://github.com/ppy/osu.git
synced 2025-01-07 20:03:13 +08:00
59 lines
2.0 KiB
C#
59 lines
2.0 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Screens;
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
namespace osu.Game.Screens.Multi.Screens
|
|
{
|
|
public abstract class MultiplayerScreen : OsuScreen
|
|
{
|
|
private const Easing in_easing = Easing.OutQuint;
|
|
private const Easing out_easing = Easing.InSine;
|
|
|
|
protected virtual Container<Drawable> TransitionContent => Content;
|
|
|
|
/// <summary>
|
|
/// The type to display in the title of the <see cref="Header"/>.
|
|
/// </summary>
|
|
public virtual string Type => Title;
|
|
|
|
protected override void OnEntering(Screen last)
|
|
{
|
|
base.OnEntering(last);
|
|
|
|
TransitionContent.MoveToX(200);
|
|
|
|
Content.FadeInFromZero(WaveContainer.APPEAR_DURATION, in_easing);
|
|
TransitionContent.FadeInFromZero(WaveContainer.APPEAR_DURATION, in_easing);
|
|
TransitionContent.MoveToX(0, WaveContainer.APPEAR_DURATION, in_easing);
|
|
}
|
|
|
|
protected override bool OnExiting(Screen next)
|
|
{
|
|
Content.FadeOut(WaveContainer.DISAPPEAR_DURATION, out_easing);
|
|
TransitionContent.MoveToX(200, WaveContainer.DISAPPEAR_DURATION, out_easing);
|
|
|
|
return base.OnExiting(next);
|
|
}
|
|
|
|
protected override void OnResuming(Screen last)
|
|
{
|
|
base.OnResuming(last);
|
|
|
|
Content.FadeIn(WaveContainer.APPEAR_DURATION, in_easing);
|
|
TransitionContent.MoveToX(0, WaveContainer.APPEAR_DURATION, in_easing);
|
|
}
|
|
|
|
protected override void OnSuspending(Screen next)
|
|
{
|
|
base.OnSuspending(next);
|
|
|
|
Content.FadeOut(WaveContainer.DISAPPEAR_DURATION, out_easing);
|
|
TransitionContent.MoveToX(-200, WaveContainer.DISAPPEAR_DURATION, out_easing);
|
|
}
|
|
}
|
|
}
|