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

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