NcEngine
NcAudio.h
Go to the documentation of this file.
1
5#pragma once
6
11#include "ncengine/type/EngineId.h"
13
14#include <limits>
15
16namespace nc
17{
18class Transform;
19
20namespace config
21{
22struct AudioSettings;
23} // namespace config
24
26constexpr auto DefaultAudioDeviceId = std::numeric_limits<uint32_t>::max();
27
30
33{
34 std::string name;
35 uint32_t id;
36};
37
48struct NcAudio : public Module
49{
50 explicit NcAudio() noexcept
51 : Module{NcAudioId} {}
52
62 virtual void RegisterListener(Entity entity) noexcept = 0;
63
71 virtual auto GetStreamTime() const noexcept -> double = 0;
72
77 virtual void SetStreamTime(double time) noexcept = 0;
78
87 virtual auto EnumerateOutputDevices() noexcept -> std::vector<AudioDevice> = 0;
88
95 virtual auto GetOutputDevice() const noexcept -> const AudioDevice& = 0;
96
105 virtual auto SetOutputDevice(uint32_t deviceId = DefaultAudioDeviceId) noexcept -> bool = 0;
106
111 virtual auto OnChangeOutputDevice() noexcept -> Signal<const AudioDevice&>& = 0;
112};
113
115auto BuildAudioModule(const config::AudioSettings& settings, ecs::ExplicitEcs<Entity, Transform, AudioSource> gameState) -> std::unique_ptr<NcAudio>;
116} // namespace nc
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
Component with translation, rotation, and scale properties.
Definition: Transform.h:33
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.