2019-01-24 16:43:03 +08:00
|
|
|
|
// 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
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2022-10-21 20:03:39 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2021-08-11 17:10:08 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Audio
|
|
|
|
|
{
|
|
|
|
|
public class VolumeSettings : SettingsSubsection
|
|
|
|
|
{
|
2021-08-11 17:10:08 +08:00
|
|
|
|
protected override LocalisableString Header => AudioSettingsStrings.VolumeHeader;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(AudioManager audio, OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2022-10-21 20:03:39 +08:00
|
|
|
|
new VolumeAdjustSlider
|
2020-01-28 18:04:00 +08:00
|
|
|
|
{
|
2021-08-11 17:10:08 +08:00
|
|
|
|
LabelText = AudioSettingsStrings.MasterVolume,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = audio.Volume,
|
2020-01-28 18:04:00 +08:00
|
|
|
|
KeyboardStep = 0.01f,
|
|
|
|
|
DisplayAsPercentage = true
|
|
|
|
|
},
|
|
|
|
|
new SettingsSlider<double>
|
|
|
|
|
{
|
2021-08-11 17:10:08 +08:00
|
|
|
|
LabelText = AudioSettingsStrings.MasterVolumeInactive,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<double>(OsuSetting.VolumeInactive),
|
2020-01-28 18:04:00 +08:00
|
|
|
|
KeyboardStep = 0.01f,
|
|
|
|
|
DisplayAsPercentage = true
|
|
|
|
|
},
|
2022-10-21 20:03:39 +08:00
|
|
|
|
new VolumeAdjustSlider
|
2020-01-28 18:04:00 +08:00
|
|
|
|
{
|
2021-08-11 17:10:08 +08:00
|
|
|
|
LabelText = AudioSettingsStrings.EffectVolume,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = audio.VolumeSample,
|
2020-01-28 18:04:00 +08:00
|
|
|
|
KeyboardStep = 0.01f,
|
|
|
|
|
DisplayAsPercentage = true
|
|
|
|
|
},
|
2022-10-21 20:03:39 +08:00
|
|
|
|
|
|
|
|
|
new VolumeAdjustSlider
|
2020-01-28 18:04:00 +08:00
|
|
|
|
{
|
2021-08-11 17:10:08 +08:00
|
|
|
|
LabelText = AudioSettingsStrings.MusicVolume,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = audio.VolumeTrack,
|
2020-01-28 18:04:00 +08:00
|
|
|
|
KeyboardStep = 0.01f,
|
|
|
|
|
DisplayAsPercentage = true
|
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2022-10-21 20:03:39 +08:00
|
|
|
|
|
|
|
|
|
private class VolumeAdjustSlider : SettingsSlider<double>
|
|
|
|
|
{
|
|
|
|
|
protected override Drawable CreateControl()
|
|
|
|
|
{
|
|
|
|
|
var sliderBar = (OsuSliderBar<double>)base.CreateControl();
|
|
|
|
|
sliderBar.PlaySamplesOnAdjust = false;
|
|
|
|
|
return sliderBar;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|