5#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__linux__) || defined(_WIN32) || defined(__HAIKU__)
38Sound::Sound(
const string&
id,
const string& pathName,
const string& fileName) :
AudioEntity(id)
51 alGetSourcei(
alSourceId, AL_SOURCE_STATE, &state);
52 return (state == AL_PLAYING);
61 if (alGetError() != AL_NO_ERROR) {
62 Console::println(
string(
"Audio sound: '" +
id +
"': Could not rewind"));
74 if (alGetError() != AL_NO_ERROR) {
75 Console::println(
string(
"Audio sound: '" +
id +
"': Could not play"));
85 if (alGetError() != AL_NO_ERROR) {
86 Console::println(
string(
"Audio sound: '" +
id+
"': Could not pause"));
96 if (alGetError() != AL_NO_ERROR) {
97 Console::println(
string(
"Audio sound: '" +
id +
"': Could not stop"));
109 if (alGetError() != AL_NO_ERROR) {
110 Console::println(
string(
"Audio sound: '" +
id +
"': Could not generate buffer"));
130 " bits per sample, " +
139 case(1): format = AL_FORMAT_MONO16;
break;
140 case(2): format = AL_FORMAT_STEREO16;
break;
142 Console::println(
string(
"Audio sound: '" +
id +
"': Unsupported number of channels"));
144 data = ByteBuffer::allocate(2 * 2 * decoder.
getSamples());
159 Console::println(
string(
"Audio sound: '" + (
id) +
"': " + fse.what()));
164 Console::println(
string(
"Audio sound: '" + (
id) +
"': " + ade.what()));
171 if (format == -1 || frequency == -1) {
172 Console::println(
string(
"Audio sound: '" +
id +
"': Format or frequency invalid"));
178 if (alGetError() != AL_NO_ERROR) {
179 Console::println(
string(
"Audio sound: '" +
id +
"': Could not upload buffer data"));
190 if (alGetError() != AL_NO_ERROR) {
191 Console::println(
string(
"Audio sound: '" +
id +
"': Could not generate source"));
215 alSourcef(
alSourceId, AL_ROLLOFF_FACTOR, 0.0f);
216 alSourcei(
alSourceId, AL_SOURCE_RELATIVE, AL_TRUE);
218 alSourcef(
alSourceId, AL_ROLLOFF_FACTOR, 1.0f);
219 alSourcei(
alSourceId, AL_SOURCE_RELATIVE, AL_FALSE);
227 if (alGetError() != AL_NO_ERROR) {
228 Console::println(
string(
"Audio sound: '" +
id +
"': Could not delete source"));
234 if (alGetError() != AL_NO_ERROR) {
235 Console::println(
string(
"Audio sound: '" +
id +
"': Could not delete buffers"));
Managed audio buffer entity.
AudioBufferManager_AudioBufferManaged * addAudioBuffer(const string &id)
Adds a audio buffer to manager / open al stack.
Interface to audio module.
static constexpr int32_t ALSOURCEID_NONE
static constexpr int32_t ALBUFFERID_NONE
static STATIC_DLL_IMPEXT Audio * instance
AudioBufferManager audioBufferManager
Sound audio entity implementation.
void play() override
Plays this audio entity.
void rewind() override
Rewinds this audio entity.
void dispose() override
Dispose this entity from OpenAL.
void update() override
Commits properties to OpenAl.
bool initialize() override
Initiates this OpenAL entity to OpenAl.
bool isPlaying() override
void stop() override
Stops this audio entity.
void pause() override
Pauses this audio entity.
int32_t getBitsPerSample()
OGG/Vorbis audio decoder.
virtual void openFile(const string &pathName, const string &fileName)
Open a local file.
virtual void close()
Closes the audio file.
virtual int32_t readFromStream(ByteBuffer *data)
Read raw PCM data from stream.
array< float, 3 > & getArray() const
virtual int32_t getPosition()