1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 09:47:22 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/OsuPasswordTextBox.cs

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

129 lines
3.9 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 18:19:50 +09:00
2018-11-20 16:51:59 +09:00
using osuTK;
using osuTK.Graphics;
using osuTK.Input;
2017-06-03 19:21:21 +02:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2017-06-03 19:21:21 +02:00
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Input;
2018-10-02 12:02:47 +09:00
using osu.Framework.Input.Events;
using osu.Framework.Localisation;
using osu.Framework.Platform;
2023-01-16 23:08:29 +03:00
using osu.Game.Localisation;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Graphics.UserInterface
{
public partial class OsuPasswordTextBox : OsuTextBox, ISuppressKeyEventLogging
{
protected override Drawable GetDrawableCharacter(char c) => new FallingDownContainer
{
AutoSizeAxes = Axes.Both,
2023-12-05 22:47:08 +03:00
Child = new PasswordMaskChar(FontSize),
};
2018-04-13 18:19:50 +09:00
protected override bool AllowUniqueCharacterSamples => false;
2018-06-29 21:25:51 +09:00
protected override bool AllowClipboardExport => false;
2018-04-13 18:19:50 +09:00
protected override bool AllowWordNavigation => false;
protected override bool AllowIme => false;
2017-08-24 22:13:20 +02:00
private readonly CapsWarning warning;
2018-04-13 18:19:50 +09:00
2020-02-14 20:14:00 +07:00
[Resolved]
private GameHost host { get; set; } = null!;
2018-04-13 18:19:50 +09:00
2017-06-03 19:21:21 +02:00
public OsuPasswordTextBox()
{
2017-08-24 22:13:20 +02:00
Add(warning = new CapsWarning
2017-06-03 19:21:21 +02:00
{
2017-08-22 13:35:30 +02:00
Size = new Vector2(20),
2017-08-24 22:13:20 +02:00
Origin = Anchor.CentreRight,
Anchor = Anchor.CentreRight,
Margin = new MarginPadding { Right = 10 },
Alpha = 0,
2017-06-03 19:21:21 +02:00
});
}
2018-04-13 18:19:50 +09:00
2018-10-02 12:02:47 +09:00
protected override bool OnKeyDown(KeyDownEvent e)
2017-08-24 22:13:20 +02:00
{
2018-10-02 12:02:47 +09:00
if (e.Key == Key.CapsLock)
2017-08-25 16:39:49 +02:00
updateCapsWarning(host.CapsLockEnabled);
2018-10-02 12:02:47 +09:00
return base.OnKeyDown(e);
2017-08-24 22:13:20 +02:00
}
2018-04-13 18:19:50 +09:00
2018-10-02 12:02:47 +09:00
protected override void OnFocus(FocusEvent e)
2017-08-25 16:39:49 +02:00
{
updateCapsWarning(host.CapsLockEnabled);
2018-10-02 12:02:47 +09:00
base.OnFocus(e);
2017-08-25 16:39:49 +02:00
}
2018-04-13 18:19:50 +09:00
2018-10-02 12:02:47 +09:00
protected override void OnFocusLost(FocusLostEvent e)
2017-08-25 16:39:49 +02:00
{
updateCapsWarning(false);
2018-10-02 12:02:47 +09:00
base.OnFocusLost(e);
2017-08-25 16:39:49 +02:00
}
2018-04-13 18:19:50 +09:00
2017-08-25 16:39:49 +02:00
private void updateCapsWarning(bool visible) => warning.FadeTo(visible ? 1 : 0, 250, Easing.OutQuint);
2018-04-13 18:19:50 +09:00
2017-02-08 16:01:58 +09:00
public partial class PasswordMaskChar : Container
{
private readonly CircularContainer circle;
2018-04-13 18:19:50 +09:00
2017-02-08 16:01:58 +09:00
public PasswordMaskChar(float size)
{
2017-02-08 16:01:58 +09:00
Size = new Vector2(size / 2, size);
Children = new[]
{
2017-02-08 16:01:58 +09:00
circle = new CircularContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Masking = true,
2017-02-08 16:01:58 +09:00
Alpha = 0,
RelativeSizeAxes = Axes.Both,
2017-02-08 16:01:58 +09:00
Size = new Vector2(0.8f, 0),
Children = new[]
{
new Box
{
Colour = Color4.White,
RelativeSizeAxes = Axes.Both,
}
},
}
2017-02-08 16:01:58 +09:00
};
}
2018-04-13 18:19:50 +09:00
2017-02-08 16:01:58 +09:00
protected override void LoadComplete()
{
base.LoadComplete();
2017-07-22 20:50:25 +02:00
circle.FadeIn(500, Easing.OutQuint);
circle.ResizeTo(new Vector2(0.8f), 500, Easing.OutQuint);
2017-02-08 16:01:58 +09:00
}
}
2018-04-13 18:19:50 +09:00
2017-08-22 13:35:30 +02:00
private partial class CapsWarning : SpriteIcon, IHasTooltip
2017-06-03 19:21:21 +02:00
{
2023-01-16 23:08:29 +03:00
public LocalisableString TooltipText => CommonStrings.CapsLockIsActive;
2018-04-13 18:19:50 +09:00
2017-06-03 19:21:21 +02:00
public CapsWarning()
{
2019-04-02 19:55:24 +09:00
Icon = FontAwesome.Solid.ExclamationTriangle;
2017-06-03 19:21:21 +02:00
}
2018-04-13 18:19:50 +09:00
2017-06-03 19:21:21 +02:00
[BackgroundDependencyLoader]
2017-08-24 22:13:20 +02:00
private void load(OsuColour colour)
2017-06-03 19:21:21 +02:00
{
Colour = colour.YellowLight;
}
}
}
2017-02-08 16:01:58 +09:00
}