1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 16:07:25 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/OsuPasswordTextBox.cs

120 lines
3.7 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-02-14 15:13:25 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-06-04 01:21:21 +08:00
using OpenTK;
using OpenTK.Graphics;
2017-08-29 17:18:36 +08:00
using OpenTK.Input;
2017-06-04 01:21:21 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2017-06-04 01:21:21 +08:00
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes;
2017-08-25 04:13:20 +08:00
using osu.Framework.Input;
using osu.Framework.Platform;
namespace osu.Game.Graphics.UserInterface
{
public class OsuPasswordTextBox : OsuTextBox
{
2017-02-08 15:01:58 +08:00
protected override Drawable GetDrawableCharacter(char c) => new PasswordMaskChar(CalculatedTextSize);
public override bool AllowClipboardExport => false;
2017-08-25 04:13:20 +08:00
private readonly CapsWarning warning;
private GameHost host;
2017-06-04 01:21:21 +08:00
public OsuPasswordTextBox()
{
2017-08-25 04:13:20 +08:00
Add(warning = new CapsWarning
2017-06-04 01:21:21 +08:00
{
2017-08-22 19:35:30 +08:00
Size = new Vector2(20),
2017-08-25 04:13:20 +08:00
Origin = Anchor.CentreRight,
Anchor = Anchor.CentreRight,
Margin = new MarginPadding { Right = 10 },
Alpha = 0,
2017-06-04 01:21:21 +08:00
});
}
2017-08-25 04:13:20 +08:00
[BackgroundDependencyLoader]
private void load(GameHost host)
{
this.host = host;
}
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{
2017-08-29 17:18:36 +08:00
if (args.Key == Key.CapsLock)
2017-08-25 22:39:49 +08:00
updateCapsWarning(host.CapsLockEnabled);
2017-08-25 04:13:20 +08:00
return base.OnKeyDown(state, args);
}
2017-08-25 22:39:49 +08:00
protected override void OnFocus(InputState state)
{
updateCapsWarning(host.CapsLockEnabled);
base.OnFocus(state);
}
protected override void OnFocusLost(InputState state)
{
updateCapsWarning(false);
base.OnFocusLost(state);
}
private void updateCapsWarning(bool visible) => warning.FadeTo(visible ? 1 : 0, 250, Easing.OutQuint);
2017-02-08 15:01:58 +08:00
public class PasswordMaskChar : Container
{
private readonly CircularContainer circle;
2017-02-08 15:01:58 +08:00
public PasswordMaskChar(float size)
{
2017-02-08 15:01:58 +08:00
Size = new Vector2(size / 2, size);
Children = new[]
{
2017-02-08 15:01:58 +08:00
circle = new CircularContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Masking = true,
2017-02-08 15:01:58 +08:00
Alpha = 0,
RelativeSizeAxes = Axes.Both,
2017-02-08 15:01:58 +08:00
Size = new Vector2(0.8f, 0),
Children = new[]
{
new Box
{
Colour = Color4.White,
RelativeSizeAxes = Axes.Both,
}
},
}
2017-02-08 15:01:58 +08:00
};
}
protected override void LoadComplete()
{
base.LoadComplete();
2017-07-23 02:50:25 +08:00
circle.FadeIn(500, Easing.OutQuint);
circle.ResizeTo(new Vector2(0.8f), 500, Easing.OutQuint);
2017-02-08 15:01:58 +08:00
}
}
2017-06-04 01:21:21 +08:00
2017-08-22 19:35:30 +08:00
private class CapsWarning : SpriteIcon, IHasTooltip
2017-06-04 01:21:21 +08:00
{
2017-08-25 04:13:20 +08:00
public string TooltipText => @"Caps lock is active";
2017-06-04 01:21:21 +08:00
public CapsWarning()
{
Icon = FontAwesome.fa_warning;
}
[BackgroundDependencyLoader]
2017-08-25 04:13:20 +08:00
private void load(OsuColour colour)
2017-06-04 01:21:21 +08:00
{
Colour = colour.YellowLight;
}
}
}
2017-02-08 15:01:58 +08:00
}