mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
Move the new audio volume API from Users scripting interface to Audio scripting interface
This commit is contained in:
parent
4a6e495f5f
commit
a2d261d20c
4 changed files with 61 additions and 29 deletions
|
@ -377,6 +377,18 @@ void Audio::handlePushedToTalk(bool enabled) {
|
|||
}
|
||||
}
|
||||
|
||||
void Audio::setInputDevice(const QAudioDeviceInfo& device, bool isHMD) {
|
||||
withWriteLock([&] {
|
||||
_devices.chooseInputDevice(device, isHMD);
|
||||
});
|
||||
}
|
||||
|
||||
void Audio::setOutputDevice(const QAudioDeviceInfo& device, bool isHMD) {
|
||||
withWriteLock([&] {
|
||||
_devices.chooseOutputDevice(device, isHMD);
|
||||
});
|
||||
}
|
||||
|
||||
void Audio::setReverb(bool enable) {
|
||||
withWriteLock([&] {
|
||||
DependencyManager::get<AudioClient>()->setReverb(enable);
|
||||
|
@ -389,14 +401,28 @@ void Audio::setReverbOptions(const AudioEffectOptions* options) {
|
|||
});
|
||||
}
|
||||
|
||||
void Audio::setInputDevice(const QAudioDeviceInfo& device, bool isHMD) {
|
||||
void Audio::setAvatarGain(float gain) {
|
||||
withWriteLock([&] {
|
||||
_devices.chooseInputDevice(device, isHMD);
|
||||
// ask the NodeList to set the master avatar gain
|
||||
DependencyManager::get<NodeList>()->setAvatarGain("", gain);
|
||||
});
|
||||
}
|
||||
|
||||
void Audio::setOutputDevice(const QAudioDeviceInfo& device, bool isHMD) {
|
||||
withWriteLock([&] {
|
||||
_devices.chooseOutputDevice(device, isHMD);
|
||||
float Audio::getAvatarGain() {
|
||||
return resultWithReadLock<float>([&] {
|
||||
return DependencyManager::get<NodeList>()->getAvatarGain("");
|
||||
});
|
||||
}
|
||||
|
||||
void Audio::setInjectorGain(float gain) {
|
||||
withWriteLock([&] {
|
||||
// ask the NodeList to set the audio injector gain
|
||||
DependencyManager::get<NodeList>()->setInjectorGain(gain);
|
||||
});
|
||||
}
|
||||
|
||||
float Audio::getInjectorGain() {
|
||||
return resultWithReadLock<float>([&] {
|
||||
return DependencyManager::get<NodeList>()->getInjectorGain();
|
||||
});
|
||||
}
|
||||
|
|
|
@ -170,6 +170,36 @@ public:
|
|||
*/
|
||||
Q_INVOKABLE void setReverbOptions(const AudioEffectOptions* options);
|
||||
|
||||
/**jsdoc
|
||||
* Sets the master avatar gain at the server.
|
||||
* Units are Decibels (dB)
|
||||
* @function Audio.setAvatarGain
|
||||
* @param {number} gain (in dB)
|
||||
*/
|
||||
Q_INVOKABLE void setAvatarGain(float gain);
|
||||
|
||||
/**jsdoc
|
||||
* Gets the master avatar gain at the server.
|
||||
* @function Audio.getAvatarGain
|
||||
* @returns {number} gain (in dB)
|
||||
*/
|
||||
Q_INVOKABLE float getAvatarGain();
|
||||
|
||||
/**jsdoc
|
||||
* Sets the audio injector gain at the server.
|
||||
* Units are Decibels (dB)
|
||||
* @function Audio.setInjectorGain
|
||||
* @param {number} gain (in dB)
|
||||
*/
|
||||
Q_INVOKABLE void setInjectorGain(float gain);
|
||||
|
||||
/**jsdoc
|
||||
* Gets the audio injector gain at the server.
|
||||
* @function Audio.getInjectorGain
|
||||
* @returns {number} gain (in dB)
|
||||
*/
|
||||
Q_INVOKABLE float getInjectorGain();
|
||||
|
||||
/**jsdoc
|
||||
* Starts making an audio recording of the audio being played in-world (i.e., not local-only audio) to a file in WAV format.
|
||||
* @function Audio.startRecording
|
||||
|
|
|
@ -51,15 +51,6 @@ float UsersScriptingInterface::getAvatarGain(const QUuid& nodeID) {
|
|||
return DependencyManager::get<NodeList>()->getAvatarGain(nodeID);
|
||||
}
|
||||
|
||||
void UsersScriptingInterface::setInjectorGain(float gain) {
|
||||
// ask the NodeList to set the audio injector gain
|
||||
DependencyManager::get<NodeList>()->setInjectorGain(gain);
|
||||
}
|
||||
|
||||
float UsersScriptingInterface::getInjectorGain() {
|
||||
return DependencyManager::get<NodeList>()->getInjectorGain();
|
||||
}
|
||||
|
||||
void UsersScriptingInterface::kick(const QUuid& nodeID) {
|
||||
|
||||
if (_kickConfirmationOperator) {
|
||||
|
|
|
@ -97,21 +97,6 @@ public slots:
|
|||
*/
|
||||
float getAvatarGain(const QUuid& nodeID);
|
||||
|
||||
/**jsdoc
|
||||
* Sets the audio injector gain at the server.
|
||||
* Units are Decibels (dB)
|
||||
* @function Users.setInjectorGain
|
||||
* @param {number} gain (in dB)
|
||||
*/
|
||||
void setInjectorGain(float gain);
|
||||
|
||||
/**jsdoc
|
||||
* Gets the audio injector gain at the server.
|
||||
* @function Users.getInjectorGain
|
||||
* @returns {number} gain (in dB)
|
||||
*/
|
||||
float getInjectorGain();
|
||||
|
||||
/**jsdoc
|
||||
* Kick/ban another user. Removes them from the server and prevents them from returning. Bans by either user name (if
|
||||
* available) or machine fingerprint otherwise. This will only do anything if you're an admin of the domain you're in.
|
||||
|
|
Loading…
Reference in a new issue