11#include "ncengine/type/EngineId.h"
105 virtual auto
SetOutputDevice(uint32_t deviceId = DefaultAudioDeviceId) noexcept ->
bool = 0;
constexpr auto DefaultAudioDeviceId
Id representing a system's default audio device.
Definition: NcAudio.h:26
constexpr auto InvalidAudioDeviceId
Id representing a null audio device.
Definition: NcAudio.h:29
Component managing audio clips.
Definition: AudioSource.h:47
Identifies an object in the registry.
Definition: Entity.h:18
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
An event source supporting multiple Connections.
Definition: Signal.h:65
The name and device id of an available audio device.
Definition: NcAudio.h:33
Audio module interface.
Definition: NcAudio.h:49
virtual auto GetOutputDevice() const noexcept -> const AudioDevice &=0
Get the active output device.
virtual auto SetOutputDevice(uint32_t deviceId=DefaultAudioDeviceId) noexcept -> bool=0
Set the active output device.
virtual auto EnumerateOutputDevices() noexcept -> std::vector< AudioDevice >=0
Get a list of available output devices.
virtual auto GetStreamTime() const noexcept -> double=0
Get the current stream time.
virtual void RegisterListener(Entity entity) noexcept=0
Register an object to be the reference point audio.
virtual void SetStreamTime(double time) noexcept=0
Set the stream time.
virtual auto OnChangeOutputDevice() noexcept -> Signal< const AudioDevice & > &=0
Get the signal for device change events.