2019-01-24 16:43:03 +08:00
|
|
|
|
// 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 17:19:50 +08:00
|
|
|
|
|
2018-07-23 04:58:21 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2019-02-12 12:04:46 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
|
|
|
|
public abstract class KeyCounter : Container
|
|
|
|
|
{
|
|
|
|
|
private Sprite buttonSprite;
|
|
|
|
|
private Sprite glowSprite;
|
|
|
|
|
private Container textLayer;
|
|
|
|
|
private SpriteText countSpriteText;
|
|
|
|
|
|
2018-07-23 04:58:21 +08:00
|
|
|
|
private readonly List<KeyCounterState> states = new List<KeyCounterState>();
|
2018-09-15 13:51:04 +08:00
|
|
|
|
private KeyCounterState currentState;
|
2018-07-23 04:58:21 +08:00
|
|
|
|
|
2018-07-20 16:08:25 +08:00
|
|
|
|
public bool IsCounting { get; set; } = true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private int countPresses;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public int CountPresses
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
get => countPresses;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private set
|
|
|
|
|
{
|
|
|
|
|
if (countPresses != value)
|
|
|
|
|
{
|
|
|
|
|
countPresses = value;
|
|
|
|
|
countSpriteText.Text = value.ToString(@"#,0");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool isLit;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public bool IsLit
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
get => isLit;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected set
|
|
|
|
|
{
|
|
|
|
|
if (isLit != value)
|
|
|
|
|
{
|
|
|
|
|
isLit = value;
|
|
|
|
|
updateGlowSprite(value);
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
if (value && IsCounting)
|
2018-07-22 22:35:42 +08:00
|
|
|
|
{
|
2018-04-13 17:19:50 +08:00
|
|
|
|
CountPresses++;
|
2018-09-15 15:34:08 +08:00
|
|
|
|
saveState();
|
2018-07-22 22:35:42 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//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; }
|
|
|
|
|
|
|
|
|
|
protected KeyCounter(string name)
|
|
|
|
|
{
|
|
|
|
|
Name = name;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-05 12:26:54 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
|
|
|
private void load(TextureStore textures, GameplayClock clock)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-05 12:26:54 +08:00
|
|
|
|
if (clock != null)
|
|
|
|
|
Clock = clock;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
buttonSprite = new Sprite
|
|
|
|
|
{
|
|
|
|
|
Texture = textures.Get(@"KeyCounter/key-up"),
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
},
|
|
|
|
|
glowSprite = new Sprite
|
|
|
|
|
{
|
|
|
|
|
Texture = textures.Get(@"KeyCounter/key-glow"),
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Alpha = 0
|
|
|
|
|
},
|
|
|
|
|
textLayer = new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = Name,
|
2019-02-22 18:42:09 +08:00
|
|
|
|
Font = OsuFont.Numeric.With(size: 12),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativePositionAxes = Axes.Both,
|
|
|
|
|
Position = new Vector2(0, -0.25f),
|
|
|
|
|
Colour = KeyUpTextColor
|
|
|
|
|
},
|
|
|
|
|
countSpriteText = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = CountPresses.ToString(@"#,0"),
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativePositionAxes = Axes.Both,
|
|
|
|
|
Position = new Vector2(0, 0.25f),
|
|
|
|
|
Colour = KeyUpTextColor
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
//Set this manually because an element with Alpha=0 won't take it size to AutoSizeContainer,
|
|
|
|
|
//so the size can be changing between buttonSprite and glowSprite.
|
|
|
|
|
Height = buttonSprite.DrawHeight;
|
|
|
|
|
Width = buttonSprite.DrawWidth;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateGlowSprite(bool show)
|
|
|
|
|
{
|
|
|
|
|
if (show)
|
|
|
|
|
{
|
|
|
|
|
glowSprite.FadeIn(FadeTime);
|
|
|
|
|
textLayer.FadeColour(KeyDownTextColor, FadeTime);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
glowSprite.FadeOut(FadeTime);
|
|
|
|
|
textLayer.FadeColour(KeyUpTextColor, FadeTime);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-06 06:01:36 +08:00
|
|
|
|
public void ResetCount()
|
|
|
|
|
{
|
|
|
|
|
CountPresses = 0;
|
|
|
|
|
states.Clear();
|
|
|
|
|
}
|
2018-07-22 22:16:17 +08:00
|
|
|
|
|
2018-07-28 18:22:52 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
2018-07-22 22:16:17 +08:00
|
|
|
|
|
2018-09-15 13:51:04 +08:00
|
|
|
|
if (currentState?.Time > Clock.CurrentTime)
|
|
|
|
|
restoreStateTo(Clock.CurrentTime);
|
2018-07-23 04:58:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-15 15:34:08 +08:00
|
|
|
|
private void saveState()
|
|
|
|
|
{
|
|
|
|
|
if (currentState == null || currentState.Time < Clock.CurrentTime)
|
|
|
|
|
states.Add(currentState = new KeyCounterState(Clock.CurrentTime, CountPresses));
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-15 13:51:04 +08:00
|
|
|
|
private void restoreStateTo(double time)
|
2018-08-16 03:18:48 +08:00
|
|
|
|
{
|
2018-09-15 13:51:04 +08:00
|
|
|
|
states.RemoveAll(state => state.Time > time);
|
2018-08-16 03:18:48 +08:00
|
|
|
|
|
2018-09-15 13:51:04 +08:00
|
|
|
|
currentState = states.LastOrDefault();
|
|
|
|
|
CountPresses = currentState?.Count ?? 0;
|
2018-08-16 03:18:48 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|