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
|
|
|
|
|
|
2016-11-11 06:40:42 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-11-30 22:08:11 +08:00
|
|
|
|
using osu.Framework.Audio;
|
2016-11-09 11:38:40 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-01-31 17:11:38 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-11 17:10:08 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Audio
|
2016-11-11 06:40:42 +08:00
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public class VolumeSettings : SettingsSubsection
|
2016-11-11 06:40:42 +08:00
|
|
|
|
{
|
2021-08-11 17:10:08 +08:00
|
|
|
|
protected override LocalisableString Header => AudioSettingsStrings.VolumeHeader;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2018-01-31 17:11:38 +08:00
|
|
|
|
private void load(AudioManager audio, OsuConfigManager config)
|
2016-11-09 11:38:40 +08:00
|
|
|
|
{
|
2016-11-11 06:40:42 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-11-09 11:38:40 +08:00
|
|
|
|
{
|
2020-01-28 18:04:00 +08:00
|
|
|
|
new SettingsSlider<double>
|
|
|
|
|
{
|
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
|
|
|
|
|
},
|
|
|
|
|
new SettingsSlider<double>
|
|
|
|
|
{
|
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
|
|
|
|
|
},
|
|
|
|
|
new SettingsSlider<double>
|
|
|
|
|
{
|
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
|
|
|
|
|
},
|
2016-11-11 06:40:42 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-15 01:36:16 +08:00
|
|
|
|
}
|