1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/osu.Game/Overlays/Options.cs

62 lines
1.6 KiB
C#
Raw Normal View History

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 OpenTK;
using OpenTK.Graphics;
using OpenTK.Input;
2016-10-10 16:17:26 +08:00
using osu.Framework;
2016-10-13 22:57:05 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Drawables;
using osu.Framework.Graphics.Transformations;
using osu.Framework.Input;
2016-09-29 19:13:58 +08:00
namespace osu.Game.Overlays
{
2016-10-13 22:57:05 +08:00
public class Options : Overlay
2016-09-29 19:13:58 +08:00
{
2016-10-13 22:57:05 +08:00
private const float width = 300;
2016-09-29 19:13:58 +08:00
2016-10-10 16:17:26 +08:00
public override void Load(BaseGame game)
2016-09-29 19:13:58 +08:00
{
2016-10-10 16:17:26 +08:00
base.Load(game);
2016-09-29 19:13:58 +08:00
Depth = float.MaxValue;
RelativeSizeAxes = Axes.Y;
2016-09-29 19:13:58 +08:00
Size = new Vector2(width, 1);
Position = new Vector2(-width, 0);
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
2016-09-29 19:13:58 +08:00
Colour = new Color4(0.1f, 0.1f, 0.1f, 0.9f)
}
};
}
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{
switch (args.Key)
{
case Key.Escape:
2016-10-13 22:27:37 +08:00
if (State == Visibility.Hidden) return false;
2016-09-29 19:13:58 +08:00
2016-10-13 22:27:37 +08:00
State = Visibility.Hidden;
2016-09-29 19:13:58 +08:00
return true;
}
return base.OnKeyDown(state, args);
}
2016-10-13 22:57:05 +08:00
protected override void PopIn()
2016-09-29 19:13:58 +08:00
{
2016-10-13 22:57:05 +08:00
MoveToX(0, 300, EasingTypes.Out);
}
2016-09-29 19:13:58 +08:00
2016-10-13 22:57:05 +08:00
protected override void PopOut()
{
MoveToX(-width, 300, EasingTypes.Out);
2016-09-29 19:13:58 +08:00
}
}
}