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
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Allocation;
|
2017-03-05 02:42:37 +08:00
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2017-01-31 19:32:36 +08:00
|
|
|
|
using osu.Framework.Input;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
|
|
|
|
public class OsuButton : Button
|
|
|
|
|
{
|
|
|
|
|
private Box hover;
|
|
|
|
|
|
|
|
|
|
public OsuButton()
|
|
|
|
|
{
|
|
|
|
|
Height = 40;
|
2017-01-13 12:49:05 +08:00
|
|
|
|
}
|
2017-01-31 17:53:52 +08:00
|
|
|
|
|
|
|
|
|
protected override SpriteText CreateText() => new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Depth = -1,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
2017-01-31 18:58:45 +08:00
|
|
|
|
Font = @"Exo2.0-Bold",
|
2017-01-31 17:53:52 +08:00
|
|
|
|
};
|
|
|
|
|
|
2017-02-13 23:35:24 +08:00
|
|
|
|
public override bool HandleInput => Action != null;
|
|
|
|
|
|
2017-02-07 12:52:19 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2017-02-13 23:35:24 +08:00
|
|
|
|
if (Action == null)
|
|
|
|
|
Colour = OsuColour.Gray(0.5f);
|
|
|
|
|
|
|
|
|
|
BackgroundColour = colours.BlueDark;
|
2017-01-31 19:32:36 +08:00
|
|
|
|
|
2017-02-07 12:52:19 +08:00
|
|
|
|
Content.Masking = true;
|
|
|
|
|
Content.CornerRadius = 5;
|
|
|
|
|
|
2017-01-31 19:32:36 +08:00
|
|
|
|
Add(new Drawable[]
|
2017-01-30 17:10:30 +08:00
|
|
|
|
{
|
2017-01-31 19:32:36 +08:00
|
|
|
|
new Triangles
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ColourDark = colours.BlueDarker,
|
|
|
|
|
ColourLight = colours.Blue,
|
|
|
|
|
},
|
|
|
|
|
hover = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
BlendingMode = BlendingMode.Additive,
|
|
|
|
|
Colour = Color4.White.Opacity(0.1f),
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
},
|
2017-02-07 12:52:19 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 19:32:36 +08:00
|
|
|
|
protected override bool OnHover(InputState state)
|
|
|
|
|
{
|
|
|
|
|
hover.FadeIn(200);
|
|
|
|
|
return base.OnHover(state);
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 19:32:36 +08:00
|
|
|
|
protected override void OnHoverLost(InputState state)
|
|
|
|
|
{
|
|
|
|
|
hover.FadeOut(200);
|
|
|
|
|
base.OnHoverLost(state);
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 19:32:36 +08:00
|
|
|
|
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
Content.ScaleTo(0.9f, 4000, EasingTypes.OutQuint);
|
|
|
|
|
return base.OnMouseDown(state, args);
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 19:32:36 +08:00
|
|
|
|
protected override bool OnMouseUp(InputState state, MouseUpEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
Content.ScaleTo(1, 1000, EasingTypes.OutElastic);
|
|
|
|
|
return base.OnMouseUp(state, args);
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-03 10:27:39 +08:00
|
|
|
|
}
|