Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them has been replaced with a symlink. Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still be present.
134 lines
4.8 KiB
JavaScript
134 lines
4.8 KiB
JavaScript
//
|
|
// audioDeviceExample.js
|
|
// examples
|
|
//
|
|
// Created by Brad Hefta-Gaub on 3/22/14
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// This is an example script that demonstrates use of the Menu object
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
if (typeof String.prototype.startsWith != 'function') {
|
|
String.prototype.startsWith = function (str){
|
|
return this.slice(0, str.length) == str;
|
|
};
|
|
}
|
|
|
|
if (typeof String.prototype.endsWith != 'function') {
|
|
String.prototype.endsWith = function (str){
|
|
return this.slice(-str.length) == str;
|
|
};
|
|
}
|
|
|
|
if (typeof String.prototype.trimStartsWith != 'function') {
|
|
String.prototype.trimStartsWith = function (str){
|
|
if (this.startsWith(str)) {
|
|
return this.substr(str.length);
|
|
}
|
|
return this;
|
|
};
|
|
}
|
|
|
|
if (typeof String.prototype.trimEndsWith != 'function') {
|
|
String.prototype.trimEndsWith = function (str){
|
|
if (this.endsWith(str)) {
|
|
return this.substr(0,this.length - str.length);
|
|
}
|
|
return this;
|
|
};
|
|
}
|
|
|
|
const INPUT_DEVICE_SETTING = "audio_input_device";
|
|
const OUTPUT_DEVICE_SETTING = "audio_output_device";
|
|
|
|
var selectedInputMenu = "";
|
|
var selectedOutputMenu = "";
|
|
|
|
function setupAudioMenus() {
|
|
Menu.addMenu("Tools > Audio");
|
|
Menu.addSeparator("Tools > Audio","Output Audio Device");
|
|
|
|
var outputDeviceSetting = Settings.getValue(OUTPUT_DEVICE_SETTING);
|
|
var outputDevices = AudioDevice.getOutputDevices();
|
|
var selectedOutputDevice = AudioDevice.getOutputDevice();
|
|
if (outputDevices.indexOf(outputDeviceSetting) != -1 && selectedOutputDevice != outputDeviceSetting) {
|
|
if (AudioDevice.setOutputDevice(outputDeviceSetting)) {
|
|
selectedOutputDevice = outputDeviceSetting;
|
|
}
|
|
}
|
|
for(var i = 0; i < outputDevices.length; i++) {
|
|
var thisDeviceSelected = (outputDevices[i] == selectedOutputDevice);
|
|
var menuItem = "Use " + outputDevices[i] + " for Output";
|
|
Menu.addMenuItem({
|
|
menuName: "Tools > Audio",
|
|
menuItemName: menuItem,
|
|
isCheckable: true,
|
|
isChecked: thisDeviceSelected
|
|
});
|
|
if (thisDeviceSelected) {
|
|
selectedOutputMenu = menuItem;
|
|
}
|
|
}
|
|
|
|
Menu.addSeparator("Tools > Audio","Input Audio Device");
|
|
|
|
var inputDeviceSetting = Settings.getValue(INPUT_DEVICE_SETTING);
|
|
var inputDevices = AudioDevice.getInputDevices();
|
|
var selectedInputDevice = AudioDevice.getInputDevice();
|
|
if (inputDevices.indexOf(inputDeviceSetting) != -1 && selectedInputDevice != inputDeviceSetting) {
|
|
if (AudioDevice.setInputDevice(inputDeviceSetting)) {
|
|
selectedInputDevice = inputDeviceSetting;
|
|
}
|
|
}
|
|
for(var i = 0; i < inputDevices.length; i++) {
|
|
var thisDeviceSelected = (inputDevices[i] == selectedInputDevice);
|
|
var menuItem = "Use " + inputDevices[i] + " for Input";
|
|
Menu.addMenuItem({
|
|
menuName: "Tools > Audio",
|
|
menuItemName: menuItem,
|
|
isCheckable: true,
|
|
isChecked: thisDeviceSelected
|
|
});
|
|
if (thisDeviceSelected) {
|
|
selectedInputMenu = menuItem;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Have a small delay before the menu's get setup and the audio devices can switch to the last selected ones
|
|
Script.setTimeout(function() { setupAudioMenus(); }, 5000);
|
|
|
|
function scriptEnding() {
|
|
Menu.removeMenu("Tools > Audio");
|
|
}
|
|
Script.scriptEnding.connect(scriptEnding);
|
|
|
|
|
|
function menuItemEvent(menuItem) {
|
|
if (menuItem.startsWith("Use ")) {
|
|
if (menuItem.endsWith(" for Output")) {
|
|
var selectedDevice = menuItem.trimStartsWith("Use ").trimEndsWith(" for Output");
|
|
print("output audio selection..." + selectedDevice);
|
|
Menu.setIsOptionChecked(selectedOutputMenu, false);
|
|
selectedOutputMenu = menuItem;
|
|
Menu.setIsOptionChecked(selectedOutputMenu, true);
|
|
if (AudioDevice.setOutputDevice(selectedDevice)) {
|
|
Settings.setValue(OUTPUT_DEVICE_SETTING, selectedDevice);
|
|
}
|
|
} else if (menuItem.endsWith(" for Input")) {
|
|
var selectedDevice = menuItem.trimStartsWith("Use ").trimEndsWith(" for Input");
|
|
print("input audio selection..." + selectedDevice);
|
|
Menu.setIsOptionChecked(selectedInputMenu, false);
|
|
selectedInputMenu = menuItem;
|
|
Menu.setIsOptionChecked(selectedInputMenu, true);
|
|
if (AudioDevice.setInputDevice(selectedDevice)) {
|
|
Settings.setValue(INPUT_DEVICE_SETTING, selectedDevice);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Menu.menuItemEvent.connect(menuItemEvent);
|