browser/external/raylib-cpp-4.5.1/include/AudioDevice.hpp

75 lines
1.6 KiB
C++
Raw Normal View History

2023-09-27 15:02:24 -04:00
#ifndef RAYLIB_CPP_INCLUDE_AUDIODEVICE_HPP_
#define RAYLIB_CPP_INCLUDE_AUDIODEVICE_HPP_
#include "./raylib.hpp"
#include "./raylib-cpp-utils.hpp"
#include "./RaylibException.hpp"
namespace raylib {
/**
* Audio device management functions.
*/
class AudioDevice {
public:
/**
* Initialize audio device and context.
*
* @param lateInit Whether or not to post-pone initializing the context.
*
* @throws raylib::RaylibException Throws if the AudioDevice failed to initialize.
*/
AudioDevice(bool lateInit = false) {
if (!lateInit) {
Init();
}
}
/**
* Close the audio device and context.
*/
~AudioDevice() {
Close();
}
/**
* Initialize audio device and context.
*
* @throws raylib::RaylibException Throws if the AudioDevice failed to initialize.
*/
inline void Init() {
::InitAudioDevice();
if (!IsReady()) {
throw RaylibException("Failed to initialize AudioDevice");
}
}
/**
* Close the audio device and context.
*/
inline void Close() {
::CloseAudioDevice();
}
/**
* Check if audio device has been initialized successfully.
*/
inline bool IsReady() const {
return ::IsAudioDeviceReady();
}
/**
* Set master volume (listener).
*
* @param volume The desired volume to set.
*/
inline AudioDevice& SetVolume(float volume) {
::SetMasterVolume(volume);
return *this;
}
};
} // namespace raylib
using RAudioDevice = raylib::AudioDevice;
#endif // RAYLIB_CPP_INCLUDE_AUDIODEVICE_HPP_