mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
102 lines
3.3 KiB
C#
102 lines
3.3 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.Textures;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Screens.Play.HUD;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public partial class LegacyKeyCounter : KeyCounter
|
|
{
|
|
private const float transition_duration = 160;
|
|
|
|
public Colour4 ActiveColour { get; set; }
|
|
|
|
private Colour4 textColour;
|
|
|
|
public Colour4 TextColour
|
|
{
|
|
get => textColour;
|
|
set
|
|
{
|
|
textColour = value;
|
|
overlayKeyText.Colour = value;
|
|
}
|
|
}
|
|
|
|
private readonly Container keyContainer;
|
|
private readonly OsuSpriteText overlayKeyText;
|
|
private readonly Sprite keySprite;
|
|
|
|
public LegacyKeyCounter(InputTrigger trigger)
|
|
: base(trigger)
|
|
{
|
|
Origin = Anchor.Centre;
|
|
Anchor = Anchor.Centre;
|
|
Child = keyContainer = new Container
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Origin = Anchor.Centre,
|
|
Anchor = Anchor.Centre,
|
|
Children = new Drawable[]
|
|
{
|
|
keySprite = new Sprite
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
},
|
|
new UprightAspectMaintainingContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Child = overlayKeyText = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Text = trigger.Name,
|
|
Colour = textColour,
|
|
Font = OsuFont.GetFont(weight: FontWeight.SemiBold),
|
|
},
|
|
},
|
|
}
|
|
};
|
|
|
|
// matches longest dimension of default skin asset
|
|
Height = Width = 46;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(ISkinSource source)
|
|
{
|
|
Texture? keyTexture = source.GetTexture(@"inputoverlay-key");
|
|
|
|
if (keyTexture != null)
|
|
keySprite.Texture = keyTexture;
|
|
}
|
|
|
|
protected override void Activate(bool forwardPlayback = true)
|
|
{
|
|
base.Activate(forwardPlayback);
|
|
keyContainer.ScaleTo(0.75f, transition_duration, Easing.Out);
|
|
keySprite.Colour = ActiveColour;
|
|
overlayKeyText.Text = CountPresses.Value.ToString();
|
|
overlayKeyText.Font = overlayKeyText.Font.With(weight: FontWeight.SemiBold);
|
|
}
|
|
|
|
protected override void Deactivate(bool forwardPlayback = true)
|
|
{
|
|
base.Deactivate(forwardPlayback);
|
|
keyContainer.ScaleTo(1f, transition_duration, Easing.Out);
|
|
keySprite.Colour = Colour4.White;
|
|
}
|
|
}
|
|
}
|