1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/Screens/ScreenWhiteBox.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

208 lines
7.8 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.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2016-09-29 19:13:58 +08:00
using System;
using System.Collections.Generic;
2017-02-17 17:59:30 +08:00
using osu.Framework.Screens;
2016-09-29 19:13:58 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Sprites;
2016-11-14 16:23:33 +08:00
using osu.Game.Screens.Backgrounds;
2016-11-27 09:21:12 +08:00
using osu.Game.Graphics.UserInterface;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2017-04-21 14:41:22 +08:00
using osu.Game.Graphics;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
2016-11-14 16:23:33 +08:00
namespace osu.Game.Screens
2016-09-29 19:13:58 +08:00
{
2017-02-17 17:59:30 +08:00
public partial class ScreenWhiteBox : OsuScreen
2016-09-29 19:13:58 +08:00
{
private readonly UnderConstructionMessage message;
private const double transition_time = 1000;
2018-04-13 17:19:50 +08:00
2016-09-29 19:13:58 +08:00
protected virtual IEnumerable<Type> PossibleChildren => null;
2018-04-13 17:19:50 +08:00
2017-02-17 17:59:30 +08:00
protected override BackgroundScreen CreateBackground() => new BackgroundScreenCustom(@"Backgrounds/bg2");
2018-04-13 17:19:50 +08:00
public override bool OnExiting(ScreenExitEvent e)
2016-09-29 19:13:58 +08:00
{
message.TextContainer.MoveTo(new Vector2(DrawSize.X / 16, 0), transition_time, Easing.OutExpo);
2019-01-23 19:52:00 +08:00
this.FadeOut(transition_time, Easing.OutExpo);
2018-04-13 17:19:50 +08:00
return base.OnExiting(e);
2016-09-29 19:13:58 +08:00
}
2018-04-13 17:19:50 +08:00
public override void OnSuspending(ScreenTransitionEvent e)
2016-09-29 19:13:58 +08:00
{
base.OnSuspending(e);
2018-04-13 17:19:50 +08:00
message.TextContainer.MoveTo(new Vector2(-(DrawSize.X / 16), 0), transition_time, Easing.OutExpo);
2019-01-23 19:52:00 +08:00
this.FadeOut(transition_time, Easing.OutExpo);
2016-09-29 19:13:58 +08:00
}
2018-04-13 17:19:50 +08:00
public override void OnResuming(ScreenTransitionEvent e)
2016-09-29 19:13:58 +08:00
{
base.OnResuming(e);
2018-04-13 17:19:50 +08:00
message.TextContainer.MoveTo(Vector2.Zero, transition_time, Easing.OutExpo);
2019-01-23 19:52:00 +08:00
this.FadeIn(transition_time, Easing.OutExpo);
2016-09-29 19:13:58 +08:00
}
2018-04-13 17:19:50 +08:00
2017-02-17 17:59:30 +08:00
public ScreenWhiteBox()
2016-09-29 19:13:58 +08:00
{
2017-03-09 13:24:16 +08:00
FillFlowContainer childModeButtons;
2018-04-13 17:19:50 +08:00
2019-01-23 19:52:00 +08:00
InternalChildren = new Drawable[]
2016-09-29 19:13:58 +08:00
{
message = new UnderConstructionMessage(GetType().Name),
2017-03-02 02:33:01 +08:00
childModeButtons = new FillFlowContainer
{
2017-03-04 18:00:17 +08:00
Direction = FillDirection.Vertical,
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
2017-04-21 14:41:22 +08:00
RelativeSizeAxes = Axes.Y,
Size = new Vector2(TwoLayerButton.SIZE_RETRACTED.X, 1)
}
2016-09-29 19:13:58 +08:00
};
2018-04-13 17:19:50 +08:00
2016-09-29 19:13:58 +08:00
if (PossibleChildren != null)
{
foreach (Type t in PossibleChildren)
{
2017-04-21 14:41:22 +08:00
childModeButtons.Add(new ChildModeButton
2016-09-29 19:13:58 +08:00
{
Text = $@"{t.Name}",
BackgroundColour = getColourFor(t.Name),
HoverColour = getColourFor(t.Name).Lighten(0.2f),
2019-02-28 12:31:40 +08:00
Action = delegate { this.Push(Activator.CreateInstance(t) as Screen); }
2016-09-29 19:13:58 +08:00
});
}
}
}
2018-04-13 17:19:50 +08:00
private static Color4 getColourFor(object type)
2016-09-29 19:13:58 +08:00
{
int hash = type.GetHashCode();
byte r = (byte)Math.Clamp(((hash & 0xFF0000) >> 16) * 2, 128, 255);
byte g = (byte)Math.Clamp(((hash & 0x00FF00) >> 8) * 2, 128, 255);
byte b = (byte)Math.Clamp((hash & 0x0000FF) * 2, 128, 255);
2016-09-29 19:13:58 +08:00
return new Color4(r, g, b, 255);
}
2018-04-13 17:19:50 +08:00
private partial class ChildModeButton : TwoLayerButton
2017-04-21 14:41:22 +08:00
{
public ChildModeButton()
{
Icon = OsuIcon.RightCircle;
2017-04-21 14:41:22 +08:00
Anchor = Anchor.BottomRight;
Origin = Anchor.BottomRight;
}
}
public partial class UnderConstructionMessage : CompositeDrawable
{
public FillFlowContainer TextContainer { get; }
private readonly Container boxContainer;
public UnderConstructionMessage(string name, string description = "is not yet ready for use!")
{
AutoSizeAxes = Axes.Both;
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
var colour = getColourFor(name);
InternalChildren = new Drawable[]
{
boxContainer = new Container
{
CornerRadius = 20,
Masking = true,
AutoSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = colour.Darken(0.8f),
Alpha = 0.8f,
},
TextContainer = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Padding = new MarginPadding(20),
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new SpriteIcon
{
Icon = FontAwesome.Solid.UniversalAccess,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Size = new Vector2(50),
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = name,
Colour = colour,
Font = OsuFont.GetFont(size: 36),
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = description,
Font = OsuFont.GetFont(size: 20),
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = "please check back a bit later.",
Font = OsuFont.GetFont(size: 14),
},
}
},
}
},
};
}
protected override void LoadComplete()
{
base.LoadComplete();
TextContainer.Position = new Vector2(DrawSize.X / 16, 0);
boxContainer.Hide();
boxContainer.ScaleTo(0.2f);
boxContainer.RotateTo(-20);
2021-07-05 23:52:39 +08:00
using (BeginDelayedSequence(300))
{
boxContainer.ScaleTo(1, transition_time, Easing.OutElastic);
boxContainer.RotateTo(0, transition_time / 2, Easing.OutQuint);
TextContainer.MoveTo(Vector2.Zero, transition_time, Easing.OutExpo);
boxContainer.FadeIn(transition_time, Easing.OutExpo);
}
}
}
2016-09-29 19:13:58 +08:00
}
}