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