1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00
osu-lazer/osu.Game/Overlays/Volume/MuteButton.cs

92 lines
2.7 KiB
C#
Raw Normal View History

// 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
using System;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.UserInterface;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
2019-05-13 06:24:34 +08:00
using osu.Game.Graphics.UserInterface;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Volume
{
2019-05-13 06:24:34 +08:00
public class MuteButton : OsuButton, IHasCurrentValue<bool>
2018-04-13 17:19:50 +08:00
{
private readonly Bindable<bool> current = new Bindable<bool>();
public Bindable<bool> Current
{
get => current;
set
{
if (value == null)
throw new ArgumentNullException(nameof(value));
current.UnbindBindings();
current.BindTo(value);
}
}
2018-04-13 17:19:50 +08:00
private Color4 hoveredColour, unhoveredColour;
2019-05-13 06:24:34 +08:00
2018-04-13 17:19:50 +08:00
private const float width = 100;
public const float HEIGHT = 35;
public MuteButton()
{
2019-05-13 06:24:34 +08:00
Content.BorderThickness = 3;
Content.CornerRadius = HEIGHT / 2;
2019-11-22 18:49:20 +08:00
Content.CornerExponent = 2;
2019-05-13 06:24:34 +08:00
2018-04-13 17:19:50 +08:00
Size = new Vector2(width, HEIGHT);
2019-05-13 06:24:34 +08:00
Action = () => Current.Value = !Current.Value;
2018-04-13 17:19:50 +08:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
hoveredColour = colours.YellowDark;
2019-05-13 06:24:34 +08:00
Content.BorderColour = unhoveredColour = colours.Gray1;
BackgroundColour = colours.Gray1;
2018-04-13 17:19:50 +08:00
SpriteIcon icon;
2019-05-13 06:24:34 +08:00
2018-04-13 17:19:50 +08:00
AddRange(new Drawable[]
{
icon = new SpriteIcon
{
2019-05-13 00:30:43 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2018-04-13 17:19:50 +08:00
}
});
2019-08-23 16:42:40 +08:00
Current.BindValueChanged(muted =>
2018-04-13 17:19:50 +08:00
{
2019-05-13 00:30:43 +08:00
icon.Icon = muted.NewValue ? FontAwesome.Solid.VolumeMute : FontAwesome.Solid.VolumeUp;
2019-08-23 12:36:21 +08:00
icon.Size = new Vector2(muted.NewValue ? 18 : 20);
icon.Margin = new MarginPadding { Right = muted.NewValue ? 2 : 0 };
2019-08-23 16:42:40 +08:00
}, true);
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2018-04-13 17:19:50 +08:00
{
2019-05-13 06:24:34 +08:00
Content.TransformTo<Container<Drawable>, SRGBColour>("BorderColour", hoveredColour, 500, Easing.OutQuint);
2018-06-22 12:31:32 +08:00
return false;
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
2018-04-13 17:19:50 +08:00
{
2019-05-13 06:24:34 +08:00
Content.TransformTo<Container<Drawable>, SRGBColour>("BorderColour", unhoveredColour, 500, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
}
}
}