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;
|
2016-10-16 17:14:17 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-10-16 20:10:06 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-10-13 22:57:05 +08:00
|
|
|
|
using osu.Framework.Graphics.Transformations;
|
|
|
|
|
using osu.Framework.Input;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2016-10-16 17:14:17 +08:00
|
|
|
|
public class Options : OverlayContainer
|
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;
|
2016-10-01 17:40:14 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
2016-10-01 17:40:14 +08:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|