2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-26 13:56:05 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
using osu.Framework.Screens.Testing;
|
2016-09-24 08:57:13 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-26 16:26:26 +08:00
|
|
|
|
using OpenTK.Input;
|
2016-12-05 00:58:52 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
2016-12-05 01:03:18 +08:00
|
|
|
|
using osu.Framework.MathUtils;
|
2016-12-18 12:36:49 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-02-25 20:12:39 +08:00
|
|
|
|
using osu.Framework.Graphics.Transforms;
|
2017-01-27 20:57:22 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2016-09-24 08:57:13 +08:00
|
|
|
|
|
2016-10-26 16:26:26 +08:00
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
2016-09-24 08:57:13 +08:00
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
internal class TestCaseKeyCounter : TestCase
|
2016-09-24 08:57:13 +08:00
|
|
|
|
{
|
|
|
|
|
public override string Description => @"Tests key counter";
|
|
|
|
|
|
|
|
|
|
public override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
2016-12-05 01:03:18 +08:00
|
|
|
|
KeyCounterCollection kc = new KeyCounterCollection
|
2016-12-05 00:58:52 +08:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
IsCounting = true,
|
|
|
|
|
Children = new KeyCounter[]
|
2016-10-09 17:55:38 +08:00
|
|
|
|
{
|
2017-03-05 02:42:37 +08:00
|
|
|
|
new KeyCounterKeyboard(Key.Z),
|
|
|
|
|
new KeyCounterKeyboard(Key.X),
|
|
|
|
|
new KeyCounterMouse(MouseButton.Left),
|
|
|
|
|
new KeyCounterMouse(MouseButton.Right),
|
2016-10-09 17:55:38 +08:00
|
|
|
|
},
|
2016-12-05 01:03:18 +08:00
|
|
|
|
};
|
2016-12-05 01:06:28 +08:00
|
|
|
|
BindableInt bindable = new BindableInt { MinValue = 0, MaxValue = 200, Default = 50 };
|
|
|
|
|
bindable.ValueChanged += delegate { kc.FadeTime = bindable.Value; };
|
2016-12-05 01:03:18 +08:00
|
|
|
|
AddButton("Add Random", () =>
|
|
|
|
|
{
|
|
|
|
|
Key key = (Key)((int)Key.A + RNG.Next(26));
|
2017-03-05 02:42:37 +08:00
|
|
|
|
kc.Add(new KeyCounterKeyboard(key));
|
2016-12-05 01:03:18 +08:00
|
|
|
|
});
|
2016-12-19 10:53:03 +08:00
|
|
|
|
ButtonsContainer.Add(new SpriteText { Text = "FadeTime" });
|
2016-12-18 12:36:49 +08:00
|
|
|
|
ButtonsContainer.Add(new TestSliderBar<int>
|
2016-12-05 01:03:18 +08:00
|
|
|
|
{
|
|
|
|
|
Width = 150,
|
|
|
|
|
Height = 10,
|
|
|
|
|
SelectionColor = Color4.Orange,
|
|
|
|
|
Bindable = bindable
|
2016-12-05 00:58:52 +08:00
|
|
|
|
});
|
2016-12-05 01:03:18 +08:00
|
|
|
|
Add(kc);
|
2016-09-24 08:57:13 +08:00
|
|
|
|
}
|
2016-12-18 12:36:49 +08:00
|
|
|
|
private class TestSliderBar<T> : SliderBar<T> where T : struct
|
|
|
|
|
{
|
|
|
|
|
public Color4 Color
|
|
|
|
|
{
|
|
|
|
|
get { return Box.Colour; }
|
|
|
|
|
set { Box.Colour = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Color4 SelectionColor
|
|
|
|
|
{
|
|
|
|
|
get { return SelectionBox.Colour; }
|
|
|
|
|
set { SelectionBox.Colour = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected readonly Box SelectionBox;
|
|
|
|
|
protected readonly Box Box;
|
|
|
|
|
|
|
|
|
|
public TestSliderBar()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
Box = new Box { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
SelectionBox = new Box { RelativeSizeAxes = Axes.Both }
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateValue(float value)
|
|
|
|
|
{
|
|
|
|
|
SelectionBox.ScaleTo(
|
|
|
|
|
new Vector2(value, 1),
|
|
|
|
|
300, EasingTypes.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-24 08:57:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|