mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:19:38 +08:00
91 lines
2.8 KiB
C#
91 lines
2.8 KiB
C#
// 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.Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Screens;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.FirstRunSetup
|
|
{
|
|
public abstract class FirstRunSetupScreen : Screen
|
|
{
|
|
private const float offset = 100;
|
|
|
|
protected FillFlowContainer Content { get; private set; }
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider overlayColourProvider)
|
|
{
|
|
const float header_size = 40;
|
|
const float spacing = 20;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
new OsuScrollContainer(Direction.Vertical)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
ScrollbarOverlapsContent = false,
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Text = this.GetLocalisableDescription(),
|
|
Font = OsuFont.Default.With(size: header_size),
|
|
Colour = overlayColourProvider.Light1,
|
|
},
|
|
Content = new FillFlowContainer
|
|
{
|
|
Y = header_size + spacing,
|
|
Spacing = new Vector2(spacing),
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Vertical,
|
|
}
|
|
},
|
|
}
|
|
};
|
|
}
|
|
|
|
public override void OnEntering(ScreenTransitionEvent e)
|
|
{
|
|
base.OnEntering(e);
|
|
this
|
|
.FadeInFromZero(500)
|
|
.MoveToX(offset)
|
|
.MoveToX(0, 500, Easing.OutQuint);
|
|
}
|
|
|
|
public override void OnResuming(ScreenTransitionEvent e)
|
|
{
|
|
base.OnResuming(e);
|
|
this
|
|
.FadeInFromZero(500)
|
|
.MoveToX(0, 500, Easing.OutQuint);
|
|
}
|
|
|
|
public override bool OnExiting(ScreenExitEvent e)
|
|
{
|
|
this
|
|
.FadeOut(100)
|
|
.MoveToX(offset, 500, Easing.OutQuint);
|
|
|
|
return base.OnExiting(e);
|
|
}
|
|
|
|
public override void OnSuspending(ScreenTransitionEvent e)
|
|
{
|
|
this
|
|
.FadeOut(100)
|
|
.MoveToX(-offset, 500, Easing.OutQuint);
|
|
|
|
base.OnSuspending(e);
|
|
}
|
|
}
|
|
}
|