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
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2021-02-22 16:14:00 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-11-14 17:02:38 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Audio
|
|
|
|
|
{
|
|
|
|
|
public class AudioDevicesSettings : SettingsSubsection
|
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Devices";
|
|
|
|
|
|
2020-02-14 21:14:00 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private AudioManager audio { get; set; }
|
2020-02-14 21:30:27 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private SettingsDropdown<string> dropdown;
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
|
|
|
|
|
if (audio != null)
|
|
|
|
|
{
|
|
|
|
|
audio.OnNewDevice -= onDeviceChanged;
|
|
|
|
|
audio.OnLostDevice -= onDeviceChanged;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateItems()
|
|
|
|
|
{
|
2018-11-14 17:02:38 +08:00
|
|
|
|
var deviceItems = new List<string> { string.Empty };
|
|
|
|
|
deviceItems.AddRange(audio.AudioDeviceNames);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
var preferredDeviceName = audio.AudioDevice.Value;
|
2018-11-14 17:02:38 +08:00
|
|
|
|
if (deviceItems.All(kv => kv != preferredDeviceName))
|
|
|
|
|
deviceItems.Add(preferredDeviceName);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
// The option dropdown for audio device selection lists all audio
|
|
|
|
|
// device names. Dropdowns, however, may not have multiple identical
|
|
|
|
|
// keys. Thus, we remove duplicate audio device names from
|
|
|
|
|
// the dropdown. BASS does not give us a simple mechanism to select
|
|
|
|
|
// specific audio devices in such a case anyways. Such
|
|
|
|
|
// functionality would require involved OS-specific code.
|
|
|
|
|
dropdown.Items = deviceItems.Distinct().ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onDeviceChanged(string name) => updateItems();
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2019-11-21 00:27:34 +08:00
|
|
|
|
dropdown = new AudioDeviceSettingsDropdown
|
|
|
|
|
{
|
2019-11-21 21:35:15 +08:00
|
|
|
|
Keywords = new[] { "speaker", "headphone", "output" }
|
2019-11-21 00:27:34 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
updateItems();
|
|
|
|
|
|
2020-10-06 16:18:41 +08:00
|
|
|
|
dropdown.Current = audio.AudioDevice;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
audio.OnNewDevice += onDeviceChanged;
|
|
|
|
|
audio.OnLostDevice += onDeviceChanged;
|
|
|
|
|
}
|
2018-11-14 17:02:38 +08:00
|
|
|
|
|
|
|
|
|
private class AudioDeviceSettingsDropdown : SettingsDropdown<string>
|
|
|
|
|
{
|
2019-06-25 11:00:05 +08:00
|
|
|
|
protected override OsuDropdown<string> CreateDropdown() => new AudioDeviceDropdownControl();
|
2018-11-14 17:02:38 +08:00
|
|
|
|
|
|
|
|
|
private class AudioDeviceDropdownControl : DropdownControl
|
|
|
|
|
{
|
2021-02-22 16:14:00 +08:00
|
|
|
|
protected override LocalisableString GenerateItemText(string item)
|
2018-11-14 17:02:38 +08:00
|
|
|
|
=> string.IsNullOrEmpty(item) ? "Default" : base.GenerateItemText(item);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|