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

120 lines
4.0 KiB
C#
Raw Normal View History

//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 osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
namespace osu.Game.Graphics.UserInterface
{
2016-09-24 10:19:50 +08:00
public abstract class KeyCounter : Container
{
private Sprite buttonSprite;
private Sprite glowSprite;
2016-09-24 10:19:50 +08:00
private Container textLayer;
private SpriteText keySpriteText;
private SpriteText countSpriteText;
public override string Name { get; }
public bool IsCounting { get; set; }
public int Count { get; private set; }
private bool isLit;
public bool IsLit
{
get { return isLit; }
protected set
{
if (isLit != value)
{
isLit = value;
UpdateGlowSprite();
if (value && IsCounting)
IncreaseCount();
}
}
}
//further: change default values here and in KeyCounterCollection if needed, instead of passing them in every constructor
public Color4 KeyDownTextColor { get; set; } = Color4.DarkGray;
public Color4 KeyUpTextColor { get; set; } = Color4.White;
public int FadeTime { get; set; } = 0;
protected KeyCounter(string name)
{
Name = name;
}
public override void Load()
2016-09-23 19:14:11 +08:00
{
base.Load();
Children = new Drawable[]
{
buttonSprite = new Sprite
{
Texture = Game.Textures.Get(@"KeyCounter/key-up"),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
2016-09-24 10:19:50 +08:00
glowSprite = new Sprite
{
2016-09-24 10:19:50 +08:00
Texture = Game.Textures.Get(@"KeyCounter/key-glow"),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2016-09-24 10:19:50 +08:00
Alpha = 0
},
2016-09-24 10:19:50 +08:00
textLayer = new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2016-09-24 10:19:50 +08:00
Children = new Drawable[]
{
keySpriteText = new SpriteText
{
Text = Name,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Position = new Vector2(0, -buttonSprite.Height / 4),
Colour = KeyUpTextColor
},
countSpriteText = new SpriteText
{
Text = Count.ToString(),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Position = new Vector2(0, buttonSprite.Height / 4),
Colour = KeyUpTextColor
}
}
}
};
2016-09-24 10:19:50 +08:00
//Set this manually because an element with Alpha=0 won't take it size to AutoSizeContainer,
//so the size can be changing between buttonSpirit and glowSpirit.
Height = buttonSprite.Height;
Width = buttonSprite.Width;
2016-09-23 19:14:11 +08:00
}
private void UpdateGlowSprite()
{
if (IsLit)
{
glowSprite.FadeIn(FadeTime);
textLayer.FadeColour(KeyDownTextColor, FadeTime);
}
else
{
2016-09-24 10:19:50 +08:00
glowSprite.FadeOut();
textLayer.FadeColour(KeyUpTextColor, FadeTime);
}
}
2016-09-23 19:14:11 +08:00
private void IncreaseCount()
{
Count++;
countSpriteText.Text = Count.ToString();
}
}
}