1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:07:24 +08:00
osu-lazer/osu.Game/Screens/Multi/MultiplayerSubScreen.cs

57 lines
1.9 KiB
C#
Raw Normal View History

// 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.
2019-01-25 18:32:37 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Screens;
using osu.Game.Graphics.Containers;
namespace osu.Game.Screens.Multi
{
2019-04-25 16:36:17 +08:00
public abstract class MultiplayerSubScreen : OsuScreen, IMultiplayerSubScreen
2019-01-25 18:32:37 +08:00
{
2019-02-11 18:11:34 +08:00
public override bool DisallowExternalBeatmapRulesetChanges => false;
2019-01-25 18:32:37 +08:00
public virtual string ShortTitle => Title;
[Resolved(CanBeNull = true)]
2019-02-11 18:11:34 +08:00
protected IRoomManager RoomManager { get; private set; }
2019-01-25 18:32:37 +08:00
protected MultiplayerSubScreen()
{
2019-01-25 19:47:31 +08:00
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2019-01-25 18:32:37 +08:00
RelativeSizeAxes = Axes.Both;
}
2019-02-11 18:11:34 +08:00
public override void OnEntering(IScreen last)
2019-01-25 18:32:37 +08:00
{
this.FadeInFromZero(WaveContainer.APPEAR_DURATION, Easing.OutQuint);
this.FadeInFromZero(WaveContainer.APPEAR_DURATION, Easing.OutQuint);
this.MoveToX(200).MoveToX(0, WaveContainer.APPEAR_DURATION, Easing.OutQuint);
}
2019-02-11 18:11:34 +08:00
public override bool OnExiting(IScreen next)
2019-01-25 18:32:37 +08:00
{
this.FadeOut(WaveContainer.DISAPPEAR_DURATION, Easing.OutQuint);
this.MoveToX(200, WaveContainer.DISAPPEAR_DURATION, Easing.OutQuint);
return false;
}
2019-02-11 18:11:34 +08:00
public override void OnResuming(IScreen last)
2019-01-25 18:32:37 +08:00
{
this.FadeIn(WaveContainer.APPEAR_DURATION, Easing.OutQuint);
this.MoveToX(0, WaveContainer.APPEAR_DURATION, Easing.OutQuint);
}
2019-02-11 18:11:34 +08:00
public override void OnSuspending(IScreen next)
2019-01-25 18:32:37 +08:00
{
this.FadeOut(WaveContainer.DISAPPEAR_DURATION, Easing.OutQuint);
this.MoveToX(-200, WaveContainer.DISAPPEAR_DURATION, Easing.OutQuint);
}
public override string ToString() => Title;
}
}