1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 07:17:18 +08:00

111 lines
3.4 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 18:19:50 +09:00
using System;
2018-04-13 18:19:50 +09:00
using osu.Framework.Allocation;
2019-02-21 19:04:31 +09:00
using osu.Framework.Bindables;
2018-04-13 18:19:50 +09:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
2018-04-13 18:19:50 +09:00
using osu.Framework.Graphics.UserInterface;
2018-10-02 12:02:47 +09:00
using osu.Framework.Input.Events;
2018-04-13 18:19:50 +09:00
using osu.Game.Graphics;
2019-05-13 07:24:34 +09:00
using osu.Game.Graphics.UserInterface;
2018-11-20 16:51:59 +09:00
using osuTK;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.Volume
{
2022-11-24 14:32:20 +09:00
public partial class MuteButton : OsuButton, IHasCurrentValue<bool>
2018-04-13 18:19:50 +09:00
{
private readonly Bindable<bool> current = new Bindable<bool>();
public Bindable<bool> Current
{
get => current;
set
{
ArgumentNullException.ThrowIfNull(value);
current.UnbindBindings();
current.BindTo(value);
}
}
2018-04-13 18:19:50 +09:00
private ColourInfo hoveredBorderColour;
private ColourInfo unhoveredBorderColour;
private CompositeDrawable border = null!;
2019-05-13 07:24:34 +09:00
2018-04-13 18:19:50 +09:00
public MuteButton()
{
const float width = 30;
const float height = 30;
Size = new Vector2(width, height);
Content.CornerRadius = height / 2;
2019-11-22 19:49:20 +09:00
Content.CornerExponent = 2;
2019-05-13 07:24:34 +09:00
Action = () => Current.Value = !Current.Value;
2018-04-13 18:19:50 +09:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2019-05-13 07:24:34 +09:00
BackgroundColour = colours.Gray1;
hoveredBorderColour = colours.PinkLight;
unhoveredBorderColour = colours.Gray1;
2018-04-13 18:19:50 +09:00
SpriteIcon icon;
2019-05-13 07:24:34 +09:00
2018-04-13 18:19:50 +09:00
AddRange(new Drawable[]
{
icon = new SpriteIcon
{
2019-05-12 09:30:43 -07:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
border = new CircularContainer
{
RelativeSizeAxes = Axes.Both,
Masking = true,
BorderThickness = 3,
BorderColour = unhoveredBorderColour,
Child = new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
AlwaysPresent = true
}
2018-04-13 18:19:50 +09:00
}
});
2019-08-23 17:42:40 +09:00
Current.BindValueChanged(muted =>
2018-04-13 18:19:50 +09:00
{
2019-05-12 09:30:43 -07:00
icon.Icon = muted.NewValue ? FontAwesome.Solid.VolumeMute : FontAwesome.Solid.VolumeUp;
2024-08-09 19:29:23 +09:00
icon.Size = new Vector2(muted.NewValue ? 12 : 16);
2019-08-22 21:36:21 -07:00
icon.Margin = new MarginPadding { Right = muted.NewValue ? 2 : 0 };
2019-08-23 17:42:40 +09:00
}, true);
2018-04-13 18:19:50 +09:00
}
2018-10-02 12:02:47 +09:00
protected override bool OnHover(HoverEvent e)
2018-04-13 18:19:50 +09:00
{
border.TransformTo(nameof(BorderColour), hoveredBorderColour, 500, Easing.OutQuint);
2018-06-22 13:31:32 +09:00
return false;
2018-04-13 18:19:50 +09:00
}
2018-10-02 12:02:47 +09:00
protected override void OnHoverLost(HoverLostEvent e)
2018-04-13 18:19:50 +09:00
{
border.TransformTo(nameof(BorderColour), unhoveredBorderColour, 500, Easing.OutQuint);
2018-04-13 18:19:50 +09:00
}
protected override bool OnMouseDown(MouseDownEvent e)
{
base.OnMouseDown(e);
// Block mouse down to avoid dismissing overlays sitting behind the mute button
return true;
}
2018-04-13 18:19:50 +09:00
}
}