2016-09-29 19:13:58 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Framework.GameModes;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Transformations;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2017-01-31 17:53:52 +08:00
|
|
|
|
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;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
namespace osu.Game.Screens
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-10-05 15:35:10 +08:00
|
|
|
|
public class GameModeWhiteBox : OsuGameMode
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-11-27 09:21:12 +08:00
|
|
|
|
private BackButton popButton;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
|
|
|
|
const int transition_time = 1000;
|
|
|
|
|
|
|
|
|
|
protected virtual IEnumerable<Type> PossibleChildren => null;
|
|
|
|
|
|
|
|
|
|
private FlowContainer childModeButtons;
|
2016-10-01 16:01:09 +08:00
|
|
|
|
private Container textContainer;
|
2016-10-05 15:35:10 +08:00
|
|
|
|
private Box box;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
2016-10-05 19:03:52 +08:00
|
|
|
|
protected override BackgroundMode CreateBackground() => new BackgroundModeCustom(@"Backgrounds/bg2");
|
2016-10-05 15:35:10 +08:00
|
|
|
|
|
|
|
|
|
protected override void OnEntering(GameMode last)
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-10-05 15:35:10 +08:00
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
|
2016-09-29 19:13:58 +08:00
|
|
|
|
//only show the pop button if we are entered form another gamemode.
|
2016-09-29 22:52:51 +08:00
|
|
|
|
if (last != null)
|
|
|
|
|
popButton.Alpha = 1;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
2016-10-01 16:01:09 +08:00
|
|
|
|
Content.Alpha = 0;
|
2016-10-19 00:53:31 +08:00
|
|
|
|
textContainer.Position = new Vector2(DrawSize.X / 16, 0);
|
2016-10-01 16:01:09 +08:00
|
|
|
|
|
2016-10-05 15:35:10 +08:00
|
|
|
|
box.ScaleTo(0.2f);
|
|
|
|
|
box.RotateTo(-20);
|
|
|
|
|
|
|
|
|
|
Content.Delay(300, true);
|
|
|
|
|
|
|
|
|
|
box.ScaleTo(1, transition_time, EasingTypes.OutElastic);
|
|
|
|
|
box.RotateTo(0, transition_time / 2, EasingTypes.OutQuint);
|
|
|
|
|
|
2016-10-01 16:01:09 +08:00
|
|
|
|
textContainer.MoveTo(Vector2.Zero, transition_time, EasingTypes.OutExpo);
|
|
|
|
|
Content.FadeIn(transition_time, EasingTypes.OutExpo);
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 17:58:20 +08:00
|
|
|
|
protected override bool OnExiting(GameMode next)
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-10-19 00:53:31 +08:00
|
|
|
|
textContainer.MoveTo(new Vector2((DrawSize.X / 16), 0), transition_time, EasingTypes.OutExpo);
|
2016-10-01 16:01:09 +08:00
|
|
|
|
Content.FadeOut(transition_time, EasingTypes.OutExpo);
|
2016-10-07 17:58:20 +08:00
|
|
|
|
|
|
|
|
|
return base.OnExiting(next);
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-05 15:35:10 +08:00
|
|
|
|
protected override void OnSuspending(GameMode next)
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-10-05 15:35:10 +08:00
|
|
|
|
base.OnSuspending(next);
|
|
|
|
|
|
2016-10-19 00:53:31 +08:00
|
|
|
|
textContainer.MoveTo(new Vector2(-(DrawSize.X / 16), 0), transition_time, EasingTypes.OutExpo);
|
2016-10-01 16:01:09 +08:00
|
|
|
|
Content.FadeOut(transition_time, EasingTypes.OutExpo);
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-05 15:35:10 +08:00
|
|
|
|
protected override void OnResuming(GameMode last)
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-10-05 15:35:10 +08:00
|
|
|
|
base.OnResuming(last);
|
|
|
|
|
|
2016-10-01 16:01:09 +08:00
|
|
|
|
textContainer.MoveTo(Vector2.Zero, transition_time, EasingTypes.OutExpo);
|
|
|
|
|
Content.FadeIn(transition_time, EasingTypes.OutExpo);
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
public GameModeWhiteBox()
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-11-13 01:34:36 +08:00
|
|
|
|
box = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Size = new Vector2(0.3f),
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Colour = getColourFor(GetType()),
|
|
|
|
|
Alpha = 1,
|
|
|
|
|
BlendingMode = BlendingMode.Additive,
|
|
|
|
|
},
|
|
|
|
|
textContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Children = new[]
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2017-01-31 17:53:52 +08:00
|
|
|
|
new OsuSpriteText
|
2016-10-01 16:01:09 +08:00
|
|
|
|
{
|
2016-11-13 01:34:36 +08:00
|
|
|
|
Text = GetType().Name,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
TextSize = 50,
|
|
|
|
|
},
|
2017-01-31 17:53:52 +08:00
|
|
|
|
new OsuSpriteText
|
2016-11-13 01:34:36 +08:00
|
|
|
|
{
|
|
|
|
|
Text = GetType().Namespace,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Position = new Vector2(0, 30)
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
2016-11-27 09:21:12 +08:00
|
|
|
|
popButton = new BackButton
|
2016-11-13 01:34:36 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Action = delegate {
|
|
|
|
|
Exit();
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
2016-11-13 01:34:36 +08:00
|
|
|
|
},
|
|
|
|
|
childModeButtons = new FlowContainer
|
|
|
|
|
{
|
|
|
|
|
Direction = FlowDirection.VerticalOnly,
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Size = new Vector2(0.1f, 1)
|
|
|
|
|
}
|
2016-09-29 19:13:58 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (PossibleChildren != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (Type t in PossibleChildren)
|
|
|
|
|
{
|
|
|
|
|
childModeButtons.Add(new Button
|
|
|
|
|
{
|
|
|
|
|
Text = $@"{t.Name}",
|
2016-10-01 17:40:14 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2016-09-29 19:13:58 +08:00
|
|
|
|
Size = new Vector2(1, 40),
|
|
|
|
|
Anchor = Anchor.BottomRight,
|
|
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
|
Colour = getColourFor(t),
|
|
|
|
|
Action = delegate
|
|
|
|
|
{
|
|
|
|
|
Push(Activator.CreateInstance(t) as GameMode);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Color4 getColourFor(Type type)
|
|
|
|
|
{
|
|
|
|
|
int hash = type.Name.GetHashCode();
|
|
|
|
|
byte r = (byte)MathHelper.Clamp(((hash & 0xFF0000) >> 16) * 0.8f, 20, 255);
|
|
|
|
|
byte g = (byte)MathHelper.Clamp(((hash & 0x00FF00) >> 8) * 0.8f, 20, 255);
|
|
|
|
|
byte b = (byte)MathHelper.Clamp((hash & 0x0000FF) * 0.8f, 20, 255);
|
|
|
|
|
return new Color4(r, g, b, 255);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|