// // ScriptAudioInjector.h // libraries/audio/src // // Created by Stephen Birarda on 2015-02-11. // Copyright 2015 High Fidelity, Inc. // Copyright 2023 Overte e.V. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // SPDX-License-Identifier: Apache-2.0 // /// @addtogroup ScriptEngine /// @{ #ifndef hifi_ScriptAudioInjector_h #define hifi_ScriptAudioInjector_h #include #include #include "AudioInjectorManager.h" class ScriptEngine; /*@jsdoc * Plays or "injects" the content of an audio file. * *

Create using {@link Audio} API methods.

* * @class AudioInjector * * @hifi-interface * @hifi-client-entity * @hifi-avatar * @hifi-server-entity * @hifi-assignment-client * * @property {boolean} playing - true if the audio is currently playing, otherwise false. * Read-only. * @property {number} loudness - The loudness in the last frame of audio, range 0.01.0. * Read-only. * @property {AudioInjector.AudioInjectorOptions} options - Configures how the injector plays the audio. */ /// Provides the AudioInjector scripting interface class ScriptAudioInjector : public QObject { Q_OBJECT Q_PROPERTY(bool playing READ isPlaying) Q_PROPERTY(float loudness READ getLoudness) Q_PROPERTY(AudioInjectorOptions options WRITE setOptions READ getOptions) public: ScriptAudioInjector(const AudioInjectorPointer& injector); ~ScriptAudioInjector(); public slots: /*@jsdoc * Stops current playback, if any, and starts playing from the beginning. * @function AudioInjector.restart */ void restart() { DependencyManager::get()->restart(_injector); } /*@jsdoc * Stops audio playback. * @function AudioInjector.stop * @example Stop playing a sound before it finishes. * var sound = SoundCache.getSound(Script.resourcesPath() + "sounds/sample.wav"); * var injector; * var injectorOptions = { * position: MyAvatar.position * }; * * Script.setTimeout(function () { // Give the sound time to load. * injector = Audio.playSound(sound, injectorOptions); * }, 1000); * * Script.setTimeout(function () { * injector.stop(); * }, 2000); */ void stop() { DependencyManager::get()->stop(_injector); } /*@jsdoc * Gets the current configuration of the audio injector. * @function AudioInjector.getOptions * @returns {AudioInjector.AudioInjectorOptions} Configuration of how the injector plays the audio. */ AudioInjectorOptions getOptions() const { return DependencyManager::get()->getOptions(_injector); } /*@jsdoc * Configures how the injector plays the audio. * @function AudioInjector.setOptions * @param {AudioInjector.AudioInjectorOptions} options - Configuration of how the injector plays the audio. */ void setOptions(const AudioInjectorOptions& options) { DependencyManager::get()->setOptions(_injector, options); } /*@jsdoc * Gets the loudness of the most recent frame of audio played. * @function AudioInjector.getLoudness * @returns {number} The loudness of the most recent frame of audio played, range 0.01.0. */ float getLoudness() const { return DependencyManager::get()->getLoudness(_injector); } /*@jsdoc * Gets whether or not the audio is currently playing. * @function AudioInjector.isPlaying * @returns {boolean} true if the audio is currently playing, otherwise false. * @example See if a sound is playing. * var sound = SoundCache.getSound(Script.resourcesPath() + "sounds/sample.wav"); * var injector; * var injectorOptions = { * position: MyAvatar.position * }; * * Script.setTimeout(function () { // Give the sound time to load. * injector = Audio.playSound(sound, injectorOptions); * }, 1000); * * Script.setTimeout(function () { * print("Sound is playing: " + injector.isPlaying()); * }, 2000); */ bool isPlaying() const { return DependencyManager::get()->isPlaying(_injector); } signals: /*@jsdoc * Triggered when the audio has finished playing. * @function AudioInjector.finished * @returns {Signal} * @example Report when a sound has finished playing. * var sound = SoundCache.getSound(Script.resourcesPath() + "sounds/sample.wav"); * var injector; * var injectorOptions = { * position: MyAvatar.position * }; * * Script.setTimeout(function () { // Give the sound time to load. * injector = Audio.playSound(sound, injectorOptions); * injector.finished.connect(function () { * print("Finished playing sound"); * }); * }, 1000); */ void finished(); private: QWeakPointer _injector; friend ScriptValue injectorToScriptValue(ScriptEngine* engine, ScriptAudioInjector* const& in); }; Q_DECLARE_METATYPE(ScriptAudioInjector*) ScriptValue injectorToScriptValue(ScriptEngine* engine, ScriptAudioInjector* const& in); bool injectorFromScriptValue(const ScriptValue& object, ScriptAudioInjector*& out); #endif // hifi_ScriptAudioInjector_h /// @}