2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-02-06 19:26:32 +08:00
|
|
|
|
|
2017-02-06 08:22:37 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
2017-02-06 19:26:32 +08:00
|
|
|
|
namespace osu.Game.Overlays.Options.Sections.Audio
|
|
|
|
|
{
|
|
|
|
|
public class AudioDevicesOptions : OptionsSubsection
|
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Devices";
|
|
|
|
|
|
|
|
|
|
private AudioManager audio;
|
2017-02-11 23:29:33 +08:00
|
|
|
|
private OptionDropDown<string> dropdown;
|
2017-02-06 19:26:32 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2017-02-06 08:22:37 +08:00
|
|
|
|
private void load(AudioManager audio)
|
|
|
|
|
{
|
|
|
|
|
this.audio = audio;
|
2017-02-06 19:26:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-11 23:29:33 +08:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
2017-02-06 08:22:37 +08:00
|
|
|
|
{
|
2017-02-11 23:29:33 +08:00
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
|
|
|
|
|
audio.OnNewDevice -= onDeviceChanged;
|
|
|
|
|
audio.OnLostDevice -= onDeviceChanged;
|
|
|
|
|
}
|
2017-02-06 08:22:37 +08:00
|
|
|
|
|
2017-02-11 23:29:33 +08:00
|
|
|
|
private void updateItems()
|
|
|
|
|
{
|
2017-02-06 08:22:37 +08:00
|
|
|
|
var deviceItems = new List<KeyValuePair<string, string>>();
|
2017-02-06 19:26:32 +08:00
|
|
|
|
deviceItems.Add(new KeyValuePair<string, string>("Default", string.Empty));
|
2017-02-11 23:29:33 +08:00
|
|
|
|
deviceItems.AddRange(audio.AudioDeviceNames.Select(d => new KeyValuePair<string, string>(d, d)));
|
2017-02-11 23:33:54 +08:00
|
|
|
|
|
|
|
|
|
var preferredDeviceName = audio.AudioDevice.Value;
|
|
|
|
|
if (!deviceItems.Any(kv => kv.Value == preferredDeviceName))
|
|
|
|
|
deviceItems.Add(new KeyValuePair<string, string>(preferredDeviceName, preferredDeviceName));
|
|
|
|
|
|
2017-02-11 23:29:33 +08:00
|
|
|
|
dropdown.Items = deviceItems;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onDeviceChanged(string name) => updateItems();
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2017-02-06 19:26:32 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-02-11 23:29:33 +08:00
|
|
|
|
dropdown = new OptionDropDown<string>()
|
2017-02-06 08:22:37 +08:00
|
|
|
|
{
|
|
|
|
|
Bindable = audio.AudioDevice
|
2017-02-06 19:26:32 +08:00
|
|
|
|
},
|
2017-02-06 08:22:37 +08:00
|
|
|
|
};
|
2017-02-11 23:29:33 +08:00
|
|
|
|
|
|
|
|
|
updateItems();
|
|
|
|
|
|
|
|
|
|
audio.OnNewDevice += onDeviceChanged;
|
|
|
|
|
audio.OnLostDevice += onDeviceChanged;
|
2017-02-06 19:26:32 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-03 12:26:49 +08:00
|
|
|
|
}
|