1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Screens/Menu/Disclaimer.cs

116 lines
4.0 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
2017-02-18 13:16:46 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Screens;
2017-02-18 13:16:46 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using OpenTK;
using OpenTK.Graphics;
namespace osu.Game.Screens.Menu
{
2017-03-07 09:59:19 +08:00
internal class Disclaimer : OsuScreen
{
private Intro intro;
private readonly TextAwesome icon;
2017-02-18 13:16:46 +08:00
private Color4 iconColour;
internal override bool ShowOverlays => false;
internal override bool HasLocalCursorDisplayed => true;
2017-03-16 22:58:36 +08:00
2017-02-18 13:16:46 +08:00
public Disclaimer()
{
ValidForResume = false;
Children = new Drawable[]
{
2017-03-02 02:33:01 +08:00
new FillFlowContainer
2017-02-18 13:16:46 +08:00
{
AutoSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2017-03-04 18:00:17 +08:00
Direction = FillDirection.Vertical,
2017-03-02 02:33:01 +08:00
Spacing = new Vector2(0, 2),
2017-02-18 13:16:46 +08:00
Children = new Drawable[]
{
icon = new TextAwesome
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Icon = FontAwesome.fa_warning,
TextSize = 30,
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
TextSize = 30,
Text = "This is a development build",
Margin = new MarginPadding
{
Bottom = 20
},
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = "Don't expect shit to work perfectly as this is very much a work in progress."
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = "Don't report bugs because we are aware. Don't complain about missing features because we are adding them."
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = "Sit back and enjoy. Visit discord.gg/ppy if you want to help out!",
Margin = new MarginPadding { Bottom = 20 },
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
TextSize = 12,
Text = "oh and yes, you will get seizures.",
},
}
}
};
}
[BackgroundDependencyLoader]
2017-04-02 14:56:12 +08:00
private void load(OsuColour colours)
{
2017-04-02 14:56:12 +08:00
LoadComponentAsync(intro = new Intro());
2017-02-18 13:16:46 +08:00
iconColour = colours.Yellow;
}
protected override void OnEntering(Screen last)
{
base.OnEntering(last);
2017-02-18 13:16:46 +08:00
Content.FadeInFromZero(500);
2017-07-16 22:47:29 +08:00
icon.AddDelay(1500);
2017-02-18 13:16:46 +08:00
icon.FadeColour(iconColour, 200);
2017-07-16 22:47:29 +08:00
AddDelay(6000, true);
2017-02-18 13:16:46 +08:00
Content.FadeOut(250);
2017-07-16 22:47:29 +08:00
AddDelay(250);
2017-02-18 13:16:46 +08:00
Schedule(() => Push(intro));
}
}
}