1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 08:07:26 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseKeyCounter.cs

58 lines
1.9 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
2016-09-24 08:57:13 +08:00
using osu.Framework.GameModes.Testing;
using osu.Framework.Graphics;
using osu.Game.Graphics.UserInterface;
using OpenTK.Input;
2016-12-05 00:58:52 +08:00
using osu.Framework.Graphics.Containers;
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-09-24 08:57:13 +08:00
namespace osu.Desktop.VisualTests.Tests
2016-09-24 08:57:13 +08:00
{
class TestCaseKeyCounter : TestCase
{
public override string Name => @"KeyCounter";
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-12-05 00:58:52 +08:00
new KeyCounterKeyboard(@"Z", Key.Z),
new KeyCounterKeyboard(@"X", Key.X),
new KeyCounterMouse(@"M1", MouseButton.Left),
new KeyCounterMouse(@"M2", MouseButton.Right),
},
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));
kc.Add(new KeyCounterKeyboard(key.ToString(), key));
});
2016-12-07 01:31:21 +08:00
ButtonsContainer.Add(new SliderBar<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
}
}
}