// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu.Framework.Bindables; namespace osu.Game.Graphics.UserInterface { public partial class ShearedToggleButton : ShearedButton { private Sample? sampleClick; private Sample? sampleOff; private Sample? sampleOn; /// /// Whether this button is currently toggled to an active state. /// public BindableBool Active { get; } = new BindableBool(); /// /// Creates a new /// /// /// The width of the button. /// /// If a non- value is provided, this button will have a fixed width equal to the provided value. /// If a value is provided (or the argument is omitted entirely), the button will autosize in width to fit the text. /// /// public ShearedToggleButton(float? width = null) : base(width) { } [BackgroundDependencyLoader] private void load(AudioManager audio) { sampleClick = audio.Samples.Get(@"UI/default-select"); sampleOn = audio.Samples.Get(@"UI/dropdown-open"); sampleOff = audio.Samples.Get(@"UI/dropdown-close"); } protected override HoverSounds CreateHoverSounds(HoverSampleSet sampleSet) => new HoverSounds(sampleSet); protected override void LoadComplete() { Active.BindDisabledChanged(disabled => Action = disabled ? null : Active.Toggle, true); Active.BindValueChanged(_ => { UpdateActiveState(); playSample(); }); UpdateActiveState(); base.LoadComplete(); } protected virtual void UpdateActiveState() { DarkerColour = Active.Value ? ColourProvider.Highlight1 : ColourProvider.Background3; LighterColour = Active.Value ? ColourProvider.Colour0 : ColourProvider.Background1; TextColour = Active.Value ? ColourProvider.Background6 : ColourProvider.Content1; } private void playSample() { sampleClick?.Play(); if (Active.Value) sampleOn?.Play(); else sampleOff?.Play(); } } }