raylib/src/audio.c

1354 lines
48 KiB
C
Raw Normal View History

/**********************************************************************************************
*
2017-03-19 14:52:58 +03:00
* raylib.audio - Basic funtionality to work with audio
*
2017-03-20 22:34:44 +03:00
* FEATURES:
* - Manage audio device (init/close)
* - Load and unload audio files
* - Format wave data (sample rate, size, channels)
* - Play/Stop/Pause/Resume loaded audio
* - Manage mixing channels
* - Manage raw audio context
*
* CONFIGURATION:
*
* #define AUDIO_STANDALONE
2017-03-19 14:52:58 +03:00
* Define to use the module as standalone library (independently of raylib).
* Required types and functions are defined in the same module.
*
2017-03-26 23:49:01 +03:00
* #define SUPPORT_FILEFORMAT_WAV
* #define SUPPORT_FILEFORMAT_OGG
* #define SUPPORT_FILEFORMAT_XM
* #define SUPPORT_FILEFORMAT_MOD
* #define SUPPORT_FILEFORMAT_FLAC
* Selected desired fileformats to be supported for loading. Some of those formats are
* supported by default, to remove support, just comment unrequired #define in this module
*
2017-03-19 14:52:58 +03:00
* LIMITATIONS:
* Only up to two channels supported: MONO and STEREO (for additional channels, use AL_EXT_MCFORMATS)
* Only the following sample sizes supported: 8bit PCM, 16bit PCM, 32-bit float PCM (using AL_EXT_FLOAT32)
*
* DEPENDENCIES:
2016-11-16 20:46:13 +03:00
* OpenAL Soft - Audio device management (http://kcat.strangesoft.net/openal.html)
* stb_vorbis - OGG audio files loading (http://www.nothings.org/stb_vorbis/)
* jar_xm - XM module file loading
* jar_mod - MOD audio file loading
* dr_flac - FLAC audio file loading
*
* CONTRIBUTORS:
2017-03-19 14:52:58 +03:00
* Joshua Reisenauer (github: @kd7tck):
* - XM audio module support (jar_xm)
* - MOD audio module support (jar_mod)
* - Mixing channels support
* - Raw audio context support
*
*
* LICENSE: zlib/libpng
2016-11-16 20:46:13 +03:00
*
2017-03-20 22:34:44 +03:00
* Copyright (c) 2014-2017 Ramon Santamaria (@raysan5)
2014-09-03 18:51:28 +04:00
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
*
2014-09-03 18:51:28 +04:00
* Permission is granted to anyone to use this software for any purpose, including commercial
* applications, and to alter it and redistribute it freely, subject to the following restrictions:
*
2014-09-03 18:51:28 +04:00
* 1. The origin of this software must not be misrepresented; you must not claim that you
* wrote the original software. If you use this software in a product, an acknowledgment
* in the product documentation would be appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and must not be misrepresented
* as being the original software.
*
* 3. This notice may not be removed or altered from any source distribution.
*
**********************************************************************************************/
2017-03-26 23:49:01 +03:00
// Default configuration flags (supported features)
//-------------------------------------------------
#define SUPPORT_FILEFORMAT_WAV
#define SUPPORT_FILEFORMAT_OGG
2017-04-23 13:06:05 +03:00
#define SUPPORT_FILEFORMAT_XM
2017-09-13 23:23:24 +03:00
#define SUPPORT_FILEFORMAT_MOD
2017-03-26 23:49:01 +03:00
//-------------------------------------------------
#if defined(AUDIO_STANDALONE)
#include "audio.h"
#include <stdarg.h> // Required for: va_list, va_start(), vfprintf(), va_end()
#else
#include "raylib.h"
#include "utils.h" // Required for: fopen() Android mapping
#endif
2017-05-08 03:47:44 +03:00
#if defined(__APPLE__)
#include "OpenAL/al.h" // OpenAL basic header
#include "OpenAL/alc.h" // OpenAL context header (like OpenGL, OpenAL requires a context to work)
#else
#include "AL/al.h" // OpenAL basic header
#include "AL/alc.h" // OpenAL context header (like OpenGL, OpenAL requires a context to work)
//#include "AL/alext.h" // OpenAL extensions header, required for AL_EXT_FLOAT32 and AL_EXT_MCFORMATS
#endif
2016-12-25 03:58:56 +03:00
// OpenAL extension: AL_EXT_FLOAT32 - Support for 32bit float samples
// OpenAL extension: AL_EXT_MCFORMATS - Support for multi-channel formats (Quad, 5.1, 6.1, 7.1)
#include <stdlib.h> // Required for: malloc(), free()
#include <string.h> // Required for: strcmp(), strncmp()
#include <stdio.h> // Required for: FILE, fopen(), fclose(), fread()
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_OGG)
//#define STB_VORBIS_HEADER_ONLY
#include "external/stb_vorbis.h" // OGG loading functions
#endif
2016-04-26 04:40:19 +03:00
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_XM)
#define JAR_XM_IMPLEMENTATION
#include "external/jar_xm.h" // XM loading functions
#endif
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_MOD)
#define JAR_MOD_IMPLEMENTATION
#include "external/jar_mod.h" // MOD loading functions
#endif
2016-06-02 06:09:00 +03:00
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_FLAC)
#define DR_FLAC_IMPLEMENTATION
#define DR_FLAC_NO_WIN32_IO
#include "external/dr_flac.h" // FLAC loading functions
#endif
#ifdef _MSC_VER
#undef bool
#endif
//----------------------------------------------------------------------------------
// Defines and Macros
//----------------------------------------------------------------------------------
2016-08-01 22:37:45 +03:00
#define MAX_STREAM_BUFFERS 2 // Number of buffers for each audio stream
2016-12-25 03:58:56 +03:00
// NOTE: Music buffer size is defined by number of samples, independent of sample size and channels number
// After some math, considering a sampleRate of 48000, a buffer refill rate of 1/60 seconds
// and double-buffering system, I concluded that a 4096 samples buffer should be enough
2016-08-01 22:37:45 +03:00
// In case of music-stalls, just increase this number
2016-12-25 03:58:56 +03:00
#define AUDIO_BUFFER_SIZE 4096 // PCM data samples (i.e. 16bit, Mono: 8Kb)
2017-01-15 03:25:09 +03:00
// Support uncompressed PCM data in 32-bit float IEEE format
// NOTE: This definition is included in "AL/alext.h", but some OpenAL implementations
// could not provide the extensions header (Android), so its defined here
#if !defined(AL_EXT_float32)
#define AL_EXT_float32 1
#define AL_FORMAT_MONO_FLOAT32 0x10010
#define AL_FORMAT_STEREO_FLOAT32 0x10011
#endif
//----------------------------------------------------------------------------------
// Types and Structures Definition
//----------------------------------------------------------------------------------
typedef enum { MUSIC_AUDIO_OGG = 0, MUSIC_AUDIO_FLAC, MUSIC_MODULE_XM, MUSIC_MODULE_MOD } MusicContextType;
2016-05-13 07:14:02 +03:00
// Music type (file streaming from memory)
2016-08-02 20:09:07 +03:00
typedef struct MusicData {
MusicContextType ctxType; // Type of music context (OGG, XM, MOD)
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_OGG)
stb_vorbis *ctxOgg; // OGG audio context
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_FLAC)
drflac *ctxFlac; // FLAC audio context
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_XM)
jar_xm_context_t *ctxXm; // XM chiptune context
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_MOD)
jar_mod_context_t ctxMod; // MOD chiptune context
2017-03-26 23:49:01 +03:00
#endif
AudioStream stream; // Audio stream (double buffering)
int loopCount; // Loops count (times music repeats), -1 means infinite loop
unsigned int totalSamples; // Total number of samples
unsigned int samplesLeft; // Number of samples left to end
} MusicData;
#if defined(AUDIO_STANDALONE)
typedef enum { LOG_INFO = 0, LOG_ERROR, LOG_WARNING, LOG_DEBUG, LOG_OTHER } TraceLogType;
#endif
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
2016-08-01 13:58:30 +03:00
// ...
//----------------------------------------------------------------------------------
// Module specific Functions Declaration
//----------------------------------------------------------------------------------
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_WAV)
static Wave LoadWAV(const char *fileName); // Load WAV file
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_OGG)
static Wave LoadOGG(const char *fileName); // Load OGG file
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_FLAC)
static Wave LoadFLAC(const char *fileName); // Load FLAC file
2017-03-26 23:49:01 +03:00
#endif
#if defined(AUDIO_STANDALONE)
bool IsFileExtension(const char *fileName, const char *ext); // Check file extension
void TraceLog(int msgType, const char *text, ...); // Show trace log messages (LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_DEBUG)
#endif
//----------------------------------------------------------------------------------
// Module Functions Definition - Audio Device initialization and Closing
//----------------------------------------------------------------------------------
// Initialize audio device
void InitAudioDevice(void)
{
// Open and initialize a device with default settings
ALCdevice *device = alcOpenDevice(NULL);
2014-09-03 18:51:28 +04:00
if (!device) TraceLog(LOG_ERROR, "Audio device could not be opened");
else
{
ALCcontext *context = alcCreateContext(device, NULL);
2014-09-03 18:51:28 +04:00
if ((context == NULL) || (alcMakeContextCurrent(context) == ALC_FALSE))
{
if (context != NULL) alcDestroyContext(context);
2014-09-03 18:51:28 +04:00
alcCloseDevice(device);
TraceLog(LOG_ERROR, "Could not initialize audio context");
}
else
{
TraceLog(LOG_INFO, "Audio device and context initialized successfully: %s", alcGetString(device, ALC_DEVICE_SPECIFIER));
2014-09-03 18:51:28 +04:00
// Listener definition (just for 2D)
alListener3f(AL_POSITION, 0.0f, 0.0f, 0.0f);
alListener3f(AL_VELOCITY, 0.0f, 0.0f, 0.0f);
alListener3f(AL_ORIENTATION, 0.0f, 0.0f, -1.0f);
alListenerf(AL_GAIN, 1.0f);
}
}
}
2016-05-14 10:25:40 +03:00
// Close the audio device for all contexts
void CloseAudioDevice(void)
{
ALCdevice *device;
ALCcontext *context = alcGetCurrentContext();
2014-09-03 18:51:28 +04:00
if (context == NULL) TraceLog(LOG_WARNING, "Could not get current audio context for closing");
device = alcGetContextsDevice(context);
alcMakeContextCurrent(NULL);
alcDestroyContext(context);
alcCloseDevice(device);
2016-08-16 12:09:55 +03:00
TraceLog(LOG_INFO, "Audio device closed successfully");
}
// Check if device has been initialized successfully
2016-05-01 02:05:43 +03:00
bool IsAudioDeviceReady(void)
{
ALCcontext *context = alcGetCurrentContext();
if (context == NULL) return false;
else
{
ALCdevice *device = alcGetContextsDevice(context);
if (device == NULL) return false;
else return true;
}
}
// Set master volume (listener)
void SetMasterVolume(float volume)
{
if (volume < 0.0f) volume = 0.0f;
else if (volume > 1.0f) volume = 1.0f;
alListenerf(AL_GAIN, volume);
}
//----------------------------------------------------------------------------------
// Module Functions Definition - Sounds loading and playing (.WAV)
//----------------------------------------------------------------------------------
2016-12-25 03:58:56 +03:00
// Load wave data from file
Wave LoadWave(const char *fileName)
{
2016-01-23 15:22:13 +03:00
Wave wave = { 0 };
if (IsFileExtension(fileName, ".wav")) wave = LoadWAV(fileName);
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_OGG)
else if (IsFileExtension(fileName, ".ogg")) wave = LoadOGG(fileName);
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_FLAC)
else if (IsFileExtension(fileName, ".flac")) wave = LoadFLAC(fileName);
2017-03-26 23:49:01 +03:00
#endif
#if !defined(AUDIO_STANDALONE)
else if (IsFileExtension(fileName, ".rres"))
2017-01-07 20:12:59 +03:00
{
RRES rres = LoadResource(fileName, 0);
2017-01-29 01:02:30 +03:00
// NOTE: Parameters for RRES_TYPE_WAVE are: sampleCount, sampleRate, sampleSize, channels
2017-01-29 01:02:30 +03:00
if (rres[0].type == RRES_TYPE_WAVE) wave = LoadWaveEx(rres[0].data, rres[0].param1, rres[0].param2, rres[0].param3, rres[0].param4);
else TraceLog(LOG_WARNING, "[%s] Resource file does not contain wave data", fileName);
2017-01-07 20:12:59 +03:00
UnloadResource(rres);
}
2017-03-26 23:49:01 +03:00
#endif
else TraceLog(LOG_WARNING, "[%s] Audio fileformat not supported, it can't be loaded", fileName);
return wave;
}
2016-08-16 12:09:55 +03:00
2016-12-25 03:58:56 +03:00
// Load wave data from raw array data
Wave LoadWaveEx(void *data, int sampleCount, int sampleRate, int sampleSize, int channels)
{
Wave wave;
2017-01-29 01:02:30 +03:00
wave.data = data;
2016-09-08 02:03:05 +03:00
wave.sampleCount = sampleCount;
wave.sampleRate = sampleRate;
2016-12-25 03:58:56 +03:00
wave.sampleSize = sampleSize;
2016-09-08 02:03:05 +03:00
wave.channels = channels;
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
// NOTE: Copy wave data to work with, user is responsible of input data to free
Wave cwave = WaveCopy(wave);
2017-01-29 01:02:30 +03:00
WaveFormat(&cwave, sampleRate, sampleSize, channels);
2017-01-29 01:02:30 +03:00
return cwave;
}
2016-12-25 03:58:56 +03:00
// Load sound from file
// NOTE: The entire file is loaded to memory to be played (no-streaming)
Sound LoadSound(const char *fileName)
{
Wave wave = LoadWave(fileName);
2017-01-29 01:02:30 +03:00
Sound sound = LoadSoundFromWave(wave);
2017-01-29 01:02:30 +03:00
UnloadWave(wave); // Sound is loaded, we can unload wave
2014-09-03 18:51:28 +04:00
return sound;
}
// Load sound from wave data
// NOTE: Wave data must be unallocated manually
Sound LoadSoundFromWave(Wave wave)
{
2016-01-23 15:22:13 +03:00
Sound sound = { 0 };
if (wave.data != NULL)
{
ALenum format = 0;
2016-08-16 12:09:55 +03:00
2016-08-15 17:35:11 +03:00
// The OpenAL format is worked out by looking at the number of channels and the sample size (bits per sample)
if (wave.channels == 1)
{
2016-08-15 17:35:11 +03:00
switch (wave.sampleSize)
{
case 8: format = AL_FORMAT_MONO8; break;
case 16: format = AL_FORMAT_MONO16; break;
2017-01-15 03:25:09 +03:00
case 32: format = AL_FORMAT_MONO_FLOAT32; break; // Requires OpenAL extension: AL_EXT_FLOAT32
default: TraceLog(LOG_WARNING, "Wave sample size not supported: %i", wave.sampleSize); break;
2016-08-15 17:35:11 +03:00
}
}
else if (wave.channels == 2)
{
2016-08-15 17:35:11 +03:00
switch (wave.sampleSize)
{
case 8: format = AL_FORMAT_STEREO8; break;
case 16: format = AL_FORMAT_STEREO16; break;
2017-01-15 03:25:09 +03:00
case 32: format = AL_FORMAT_STEREO_FLOAT32; break; // Requires OpenAL extension: AL_EXT_FLOAT32
default: TraceLog(LOG_WARNING, "Wave sample size not supported: %i", wave.sampleSize); break;
2016-08-15 17:35:11 +03:00
}
}
else TraceLog(LOG_WARNING, "Wave number of channels not supported: %i", wave.channels);
2016-08-16 12:09:55 +03:00
// Create an audio source
ALuint source;
alGenSources(1, &source); // Generate pointer to audio source
alSourcef(source, AL_PITCH, 1.0f);
alSourcef(source, AL_GAIN, 1.0f);
alSource3f(source, AL_POSITION, 0.0f, 0.0f, 0.0f);
alSource3f(source, AL_VELOCITY, 0.0f, 0.0f, 0.0f);
alSourcei(source, AL_LOOPING, AL_FALSE);
// Convert loaded data to OpenAL buffer
//----------------------------------------
ALuint buffer;
alGenBuffers(1, &buffer); // Generate pointer to buffer
2016-08-16 12:09:55 +03:00
2017-01-18 21:14:39 +03:00
unsigned int dataSize = wave.sampleCount*wave.channels*wave.sampleSize/8; // Size in bytes
// Upload sound data to buffer
2016-08-15 17:35:11 +03:00
alBufferData(buffer, format, wave.data, dataSize, wave.sampleRate);
// Attach sound buffer to source
alSourcei(source, AL_BUFFER, buffer);
TraceLog(LOG_INFO, "[SND ID %i][BUFR ID %i] Sound data loaded successfully (%i Hz, %i bit, %s)", source, buffer, wave.sampleRate, wave.sampleSize, (wave.channels == 1) ? "Mono" : "Stereo");
sound.source = source;
sound.buffer = buffer;
2016-08-29 12:17:58 +03:00
sound.format = format;
}
return sound;
}
2016-12-25 03:58:56 +03:00
// Unload wave data
void UnloadWave(Wave wave)
{
2017-01-18 21:14:39 +03:00
if (wave.data != NULL) free(wave.data);
TraceLog(LOG_INFO, "Unloaded wave data from RAM");
}
// Unload sound
void UnloadSound(Sound sound)
{
2017-01-18 19:25:25 +03:00
alSourceStop(sound.source);
2017-01-29 01:02:30 +03:00
alDeleteSources(1, &sound.source);
alDeleteBuffers(1, &sound.buffer);
TraceLog(LOG_INFO, "[SND ID %i][BUFR ID %i] Unloaded sound data from RAM", sound.source, sound.buffer);
}
2016-08-29 12:17:58 +03:00
// Update sound buffer with new data
// NOTE: data must match sound.format
2017-02-10 00:19:48 +03:00
void UpdateSound(Sound sound, const void *data, int samplesCount)
2016-08-29 12:17:58 +03:00
{
ALint sampleRate, sampleSize, channels;
alGetBufferi(sound.buffer, AL_FREQUENCY, &sampleRate);
2016-12-25 03:58:56 +03:00
alGetBufferi(sound.buffer, AL_BITS, &sampleSize); // It could also be retrieved from sound.format
alGetBufferi(sound.buffer, AL_CHANNELS, &channels); // It could also be retrieved from sound.format
2017-01-29 01:02:30 +03:00
TraceLog(LOG_DEBUG, "UpdateSound() : AL_FREQUENCY: %i", sampleRate);
TraceLog(LOG_DEBUG, "UpdateSound() : AL_BITS: %i", sampleSize);
TraceLog(LOG_DEBUG, "UpdateSound() : AL_CHANNELS: %i", channels);
2016-08-29 12:17:58 +03:00
2017-02-10 00:19:48 +03:00
unsigned int dataSize = samplesCount*channels*sampleSize/8; // Size of data in bytes
2017-01-29 01:02:30 +03:00
2016-08-29 12:17:58 +03:00
alSourceStop(sound.source); // Stop sound
alSourcei(sound.source, AL_BUFFER, 0); // Unbind buffer from sound to update
//alDeleteBuffers(1, &sound.buffer); // Delete current buffer data
//alGenBuffers(1, &sound.buffer); // Generate new buffer
// Upload new data to sound buffer
alBufferData(sound.buffer, sound.format, data, dataSize, sampleRate);
// Attach sound buffer to source again
alSourcei(sound.source, AL_BUFFER, sound.buffer);
}
// Play a sound
void PlaySound(Sound sound)
{
alSourcePlay(sound.source); // Play the sound
2014-09-03 18:51:28 +04:00
//TraceLog(LOG_INFO, "Playing sound");
// Find the current position of the sound being played
// NOTE: Only work when the entire file is in a single buffer
//int byteOffset;
//alGetSourcei(sound.source, AL_BYTE_OFFSET, &byteOffset);
//
//int sampleRate;
//alGetBufferi(sound.buffer, AL_FREQUENCY, &sampleRate); // AL_CHANNELS, AL_BITS (bps)
2014-09-03 18:51:28 +04:00
//float seconds = (float)byteOffset/sampleRate; // Number of seconds since the beginning of the sound
//or
//float result;
//alGetSourcef(sound.source, AL_SEC_OFFSET, &result); // AL_SAMPLE_OFFSET
}
// Pause a sound
void PauseSound(Sound sound)
{
alSourcePause(sound.source);
}
// Resume a paused sound
void ResumeSound(Sound sound)
{
ALenum state;
alGetSourcei(sound.source, AL_SOURCE_STATE, &state);
if (state == AL_PAUSED) alSourcePlay(sound.source);
}
// Stop reproducing a sound
void StopSound(Sound sound)
{
alSourceStop(sound.source);
}
// Check if a sound is playing
2016-05-03 19:04:21 +03:00
bool IsSoundPlaying(Sound sound)
{
bool playing = false;
ALint state;
2014-09-03 18:51:28 +04:00
alGetSourcei(sound.source, AL_SOURCE_STATE, &state);
if (state == AL_PLAYING) playing = true;
2014-09-03 18:51:28 +04:00
return playing;
}
// Set volume for a sound
void SetSoundVolume(Sound sound, float volume)
{
alSourcef(sound.source, AL_GAIN, volume);
}
// Set pitch for a sound
void SetSoundPitch(Sound sound, float pitch)
{
alSourcef(sound.source, AL_PITCH, pitch);
}
// Convert wave data to desired format
void WaveFormat(Wave *wave, int sampleRate, int sampleSize, int channels)
{
2016-12-25 03:58:56 +03:00
// Format sample rate
2017-01-19 15:18:04 +03:00
// NOTE: Only supported 22050 <--> 44100
if (wave->sampleRate != sampleRate)
{
// TODO: Resample wave data (upsampling or downsampling)
2017-01-29 01:02:30 +03:00
// NOTE 1: To downsample, you have to drop samples or average them.
2017-01-19 15:18:04 +03:00
// NOTE 2: To upsample, you have to interpolate new samples.
2017-01-29 01:02:30 +03:00
2017-01-19 15:18:04 +03:00
wave->sampleRate = sampleRate;
}
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
// Format sample size
// NOTE: Only supported 8 bit <--> 16 bit <--> 32 bit
if (wave->sampleSize != sampleSize)
{
2016-12-25 03:58:56 +03:00
void *data = malloc(wave->sampleCount*wave->channels*sampleSize/8);
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
for (int i = 0; i < wave->sampleCount; i++)
{
2016-12-25 03:58:56 +03:00
for (int j = 0; j < wave->channels; j++)
{
2016-12-25 03:58:56 +03:00
if (sampleSize == 8)
{
if (wave->sampleSize == 16) ((unsigned char *)data)[wave->channels*i + j] = (unsigned char)(((float)(((short *)wave->data)[wave->channels*i + j])/32767.0f)*256);
else if (wave->sampleSize == 32) ((unsigned char *)data)[wave->channels*i + j] = (unsigned char)(((float *)wave->data)[wave->channels*i + j]*127.0f + 127);
}
2017-01-29 01:02:30 +03:00
else if (sampleSize == 16)
2016-12-25 03:58:56 +03:00
{
if (wave->sampleSize == 8) ((short *)data)[wave->channels*i + j] = (short)(((float)(((unsigned char *)wave->data)[wave->channels*i + j] - 127)/256.0f)*32767);
else if (wave->sampleSize == 32) ((short *)data)[wave->channels*i + j] = (short)((((float *)wave->data)[wave->channels*i + j])*32767);
}
2017-01-29 01:02:30 +03:00
else if (sampleSize == 32)
2016-12-25 03:58:56 +03:00
{
if (wave->sampleSize == 8) ((float *)data)[wave->channels*i + j] = (float)(((unsigned char *)wave->data)[wave->channels*i + j] - 127)/256.0f;
else if (wave->sampleSize == 16) ((float *)data)[wave->channels*i + j] = (float)(((short *)wave->data)[wave->channels*i + j])/32767.0f;
}
}
}
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
wave->sampleSize = sampleSize;
free(wave->data);
wave->data = data;
}
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
// Format channels (interlaced mode)
// NOTE: Only supported mono <--> stereo
if (wave->channels != channels)
{
2017-05-03 15:16:53 +03:00
void *data = malloc(wave->sampleCount*wave->sampleSize/8*channels);
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
if ((wave->channels == 1) && (channels == 2)) // mono ---> stereo (duplicate mono information)
{
for (int i = 0; i < wave->sampleCount; i++)
{
2016-12-25 03:58:56 +03:00
for (int j = 0; j < channels; j++)
{
if (wave->sampleSize == 8) ((unsigned char *)data)[channels*i + j] = ((unsigned char *)wave->data)[i];
else if (wave->sampleSize == 16) ((short *)data)[channels*i + j] = ((short *)wave->data)[i];
else if (wave->sampleSize == 32) ((float *)data)[channels*i + j] = ((float *)wave->data)[i];
}
}
}
2016-12-25 03:58:56 +03:00
else if ((wave->channels == 2) && (channels == 1)) // stereo ---> mono (mix stereo channels)
{
2016-12-25 03:58:56 +03:00
for (int i = 0, j = 0; i < wave->sampleCount; i++, j += 2)
{
2016-12-25 03:58:56 +03:00
if (wave->sampleSize == 8) ((unsigned char *)data)[i] = (((unsigned char *)wave->data)[j] + ((unsigned char *)wave->data)[j + 1])/2;
else if (wave->sampleSize == 16) ((short *)data)[i] = (((short *)wave->data)[j] + ((short *)wave->data)[j + 1])/2;
else if (wave->sampleSize == 32) ((float *)data)[i] = (((float *)wave->data)[j] + ((float *)wave->data)[j + 1])/2.0f;
}
}
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
// TODO: Add/remove additional interlaced channels
wave->channels = channels;
free(wave->data);
wave->data = data;
2016-09-09 02:34:30 +03:00
}
}
// Copy a wave to a new wave
Wave WaveCopy(Wave wave)
{
2016-12-25 03:58:56 +03:00
Wave newWave = { 0 };
2017-05-03 15:16:53 +03:00
newWave.data = malloc(wave.sampleCount*wave.sampleSize/8*wave.channels);
if (newWave.data != NULL)
{
// NOTE: Size must be provided in bytes
2016-09-08 02:03:05 +03:00
memcpy(newWave.data, wave.data, wave.sampleCount*wave.channels*wave.sampleSize/8);
newWave.sampleCount = wave.sampleCount;
newWave.sampleRate = wave.sampleRate;
newWave.sampleSize = wave.sampleSize;
newWave.channels = wave.channels;
}
return newWave;
}
// Crop a wave to defined samples range
// NOTE: Security check in case of out-of-range
void WaveCrop(Wave *wave, int initSample, int finalSample)
{
2017-01-29 01:02:30 +03:00
if ((initSample >= 0) && (initSample < finalSample) &&
(finalSample > 0) && (finalSample < wave->sampleCount))
2016-09-08 02:03:05 +03:00
{
2016-12-25 03:58:56 +03:00
int sampleCount = finalSample - initSample;
2017-01-29 01:02:30 +03:00
2017-05-03 15:16:53 +03:00
void *data = malloc(sampleCount*wave->sampleSize/8*wave->channels);
2017-01-29 01:02:30 +03:00
memcpy(data, (unsigned char*)wave->data + (initSample*wave->channels*wave->sampleSize/8), sampleCount*wave->channels*wave->sampleSize/8);
2017-01-29 01:02:30 +03:00
2016-09-08 02:03:05 +03:00
free(wave->data);
2016-12-25 03:58:56 +03:00
wave->data = data;
2016-09-08 02:03:05 +03:00
}
else TraceLog(LOG_WARNING, "Wave crop range out of bounds");
}
// Get samples data from wave as a floats array
2016-09-09 02:34:30 +03:00
// NOTE: Returned sample values are normalized to range [-1..1]
float *GetWaveData(Wave wave)
{
2016-12-25 03:58:56 +03:00
float *samples = (float *)malloc(wave.sampleCount*wave.channels*sizeof(float));
2017-01-29 01:02:30 +03:00
for (int i = 0; i < wave.sampleCount; i++)
{
2016-12-25 03:58:56 +03:00
for (int j = 0; j < wave.channels; j++)
{
if (wave.sampleSize == 8) samples[wave.channels*i + j] = (float)(((unsigned char *)wave.data)[wave.channels*i + j] - 127)/256.0f;
else if (wave.sampleSize == 16) samples[wave.channels*i + j] = (float)((short *)wave.data)[wave.channels*i + j]/32767.0f;
else if (wave.sampleSize == 32) samples[wave.channels*i + j] = ((float *)wave.data)[wave.channels*i + j];
}
}
2017-01-29 01:02:30 +03:00
return samples;
}
//----------------------------------------------------------------------------------
// Module Functions Definition - Music loading and stream playing (.OGG)
//----------------------------------------------------------------------------------
// Load music stream from file
Music LoadMusicStream(const char *fileName)
{
Music music = (MusicData *)malloc(sizeof(MusicData));
if (IsFileExtension(fileName, ".ogg"))
{
// Open ogg audio stream
music->ctxOgg = stb_vorbis_open_filename(fileName, NULL, NULL);
if (music->ctxOgg == NULL) TraceLog(LOG_WARNING, "[%s] OGG audio file could not be opened", fileName);
else
{
stb_vorbis_info info = stb_vorbis_get_info(music->ctxOgg); // Get Ogg file info
2016-12-25 03:58:56 +03:00
// OGG bit rate defaults to 16 bit, it's enough for compressed format
music->stream = InitAudioStream(info.sample_rate, 16, info.channels);
2017-01-18 19:04:20 +03:00
music->totalSamples = (unsigned int)stb_vorbis_stream_length_in_samples(music->ctxOgg); // Independent by channel
music->samplesLeft = music->totalSamples;
music->ctxType = MUSIC_AUDIO_OGG;
music->loopCount = -1; // Infinite loop by default
2016-08-01 22:37:45 +03:00
TraceLog(LOG_DEBUG, "[%s] FLAC total samples: %i", fileName, music->totalSamples);
TraceLog(LOG_DEBUG, "[%s] OGG sample rate: %i", fileName, info.sample_rate);
TraceLog(LOG_DEBUG, "[%s] OGG channels: %i", fileName, info.channels);
TraceLog(LOG_DEBUG, "[%s] OGG memory required: %i", fileName, info.temp_memory_required);
}
}
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_FLAC)
else if (IsFileExtension(fileName, ".flac"))
{
music->ctxFlac = drflac_open_file(fileName);
2017-01-29 01:02:30 +03:00
if (music->ctxFlac == NULL) TraceLog(LOG_WARNING, "[%s] FLAC audio file could not be opened", fileName);
else
{
music->stream = InitAudioStream(music->ctxFlac->sampleRate, music->ctxFlac->bitsPerSample, music->ctxFlac->channels);
2016-12-26 12:52:57 +03:00
music->totalSamples = (unsigned int)music->ctxFlac->totalSampleCount/music->ctxFlac->channels;
music->samplesLeft = music->totalSamples;
music->ctxType = MUSIC_AUDIO_FLAC;
music->loopCount = -1; // Infinite loop by default
2017-01-29 01:02:30 +03:00
TraceLog(LOG_DEBUG, "[%s] FLAC total samples: %i", fileName, music->totalSamples);
TraceLog(LOG_DEBUG, "[%s] FLAC sample rate: %i", fileName, music->ctxFlac->sampleRate);
TraceLog(LOG_DEBUG, "[%s] FLAC bits per sample: %i", fileName, music->ctxFlac->bitsPerSample);
TraceLog(LOG_DEBUG, "[%s] FLAC channels: %i", fileName, music->ctxFlac->channels);
}
}
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_XM)
else if (IsFileExtension(fileName, ".xm"))
2016-04-25 04:18:18 +03:00
{
int result = jar_xm_create_context_from_file(&music->ctxXm, 48000, fileName);
2016-08-16 12:09:55 +03:00
if (!result) // XM context created successfully
2016-04-25 04:18:18 +03:00
{
jar_xm_set_max_loop_count(music->ctxXm, 0); // Set infinite number of loops
// NOTE: Only stereo is supported for XM
2016-12-25 03:58:56 +03:00
music->stream = InitAudioStream(48000, 16, 2);
2016-08-01 22:37:45 +03:00
music->totalSamples = (unsigned int)jar_xm_get_remaining_samples(music->ctxXm);
music->samplesLeft = music->totalSamples;
music->ctxType = MUSIC_MODULE_XM;
music->loopCount = -1; // Infinite loop by default
2016-08-16 12:09:55 +03:00
TraceLog(LOG_DEBUG, "[%s] XM number of samples: %i", fileName, music->totalSamples);
TraceLog(LOG_DEBUG, "[%s] XM track length: %11.6f sec", fileName, (float)music->totalSamples/48000.0f);
2016-05-12 06:15:37 +03:00
}
else TraceLog(LOG_WARNING, "[%s] XM file could not be opened", fileName);
2016-05-12 06:15:37 +03:00
}
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_MOD)
else if (IsFileExtension(fileName, ".mod"))
2016-06-02 06:09:00 +03:00
{
jar_mod_init(&music->ctxMod);
if (jar_mod_load_file(&music->ctxMod, fileName))
2016-06-02 06:09:00 +03:00
{
2016-08-01 22:37:45 +03:00
music->stream = InitAudioStream(48000, 16, 2);
music->totalSamples = (unsigned int)jar_mod_max_samples(&music->ctxMod);
music->samplesLeft = music->totalSamples;
2016-08-01 22:37:45 +03:00
music->ctxType = MUSIC_MODULE_MOD;
music->loopCount = -1; // Infinite loop by default
TraceLog(LOG_DEBUG, "[%s] MOD number of samples: %i", fileName, music->samplesLeft);
TraceLog(LOG_DEBUG, "[%s] MOD track length: %11.6f sec", fileName, (float)music->totalSamples/48000.0f);
2016-06-02 06:09:00 +03:00
}
else TraceLog(LOG_WARNING, "[%s] MOD file could not be opened", fileName);
2016-06-02 06:09:00 +03:00
}
2017-03-26 23:49:01 +03:00
#endif
else TraceLog(LOG_WARNING, "[%s] Audio fileformat not supported, it can't be loaded", fileName);
return music;
}
// Unload music stream
void UnloadMusicStream(Music music)
{
CloseAudioStream(music->stream);
2016-08-16 12:09:55 +03:00
if (music->ctxType == MUSIC_AUDIO_OGG) stb_vorbis_close(music->ctxOgg);
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_FLAC)
else if (music->ctxType == MUSIC_AUDIO_FLAC) drflac_free(music->ctxFlac);
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_XM)
else if (music->ctxType == MUSIC_MODULE_XM) jar_xm_free_context(music->ctxXm);
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_MOD)
else if (music->ctxType == MUSIC_MODULE_MOD) jar_mod_unload(&music->ctxMod);
2017-03-26 23:49:01 +03:00
#endif
2016-08-16 12:09:55 +03:00
free(music);
}
// Start music playing (open stream)
void PlayMusicStream(Music music)
{
alSourcePlay(music->stream.source);
}
// Pause music playing
void PauseMusicStream(Music music)
{
alSourcePause(music->stream.source);
}
// Resume music playing
void ResumeMusicStream(Music music)
{
ALenum state;
alGetSourcei(music->stream.source, AL_SOURCE_STATE, &state);
2017-05-14 19:32:47 +03:00
if (state == AL_PAUSED)
{
TraceLog(LOG_INFO, "[AUD ID %i] Resume music stream playing", music->stream.source);
2017-05-14 19:32:47 +03:00
alSourcePlay(music->stream.source);
}
}
// Stop music playing (close stream)
2017-05-10 20:34:57 +03:00
// TODO: To clear a buffer, make sure they have been already processed!
void StopMusicStream(Music music)
{
alSourceStop(music->stream.source);
2017-03-05 12:55:58 +03:00
2017-05-10 20:34:57 +03:00
/*
2017-03-05 12:55:58 +03:00
// Clear stream buffers
2017-05-10 20:34:57 +03:00
// WARNING: Queued buffers must have been processed before unqueueing and reloaded with data!!!
2017-03-05 12:55:58 +03:00
void *pcm = calloc(AUDIO_BUFFER_SIZE*music->stream.sampleSize/8*music->stream.channels, 1);
2017-05-10 20:34:57 +03:00
2017-03-05 12:55:58 +03:00
for (int i = 0; i < MAX_STREAM_BUFFERS; i++)
{
2017-05-10 20:34:57 +03:00
//UpdateAudioStream(music->stream, pcm, AUDIO_BUFFER_SIZE); // Update one buffer at a time
alBufferData(music->stream.buffers[i], music->stream.format, pcm, AUDIO_BUFFER_SIZE*music->stream.sampleSize/8*music->stream.channels, music->stream.sampleRate);
2017-03-05 12:55:58 +03:00
}
free(pcm);
2017-05-10 20:34:57 +03:00
*/
2017-03-05 12:55:58 +03:00
// Restart music context
switch (music->ctxType)
{
case MUSIC_AUDIO_OGG: stb_vorbis_seek_start(music->ctxOgg); break;
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_FLAC)
case MUSIC_MODULE_FLAC: /* TODO: Restart FLAC context */ break;
#endif
#if defined(SUPPORT_FILEFORMAT_XM)
2016-12-25 03:58:56 +03:00
case MUSIC_MODULE_XM: /* TODO: Restart XM context */ break;
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_MOD)
case MUSIC_MODULE_MOD: jar_mod_seek_start(&music->ctxMod); break;
2017-03-26 23:49:01 +03:00
#endif
default: break;
}
2017-01-29 01:02:30 +03:00
music->samplesLeft = music->totalSamples;
2016-05-11 10:37:10 +03:00
}
2014-09-03 18:51:28 +04:00
// Update (re-fill) music buffers if data already processed
2017-02-10 00:19:48 +03:00
// TODO: Make sure buffers are ready for update... check music state
void UpdateMusicStream(Music music)
{
ALenum state;
ALint processed = 0;
2017-01-29 01:02:30 +03:00
alGetSourcei(music->stream.source, AL_SOURCE_STATE, &state); // Get music stream state
alGetSourcei(music->stream.source, AL_BUFFERS_PROCESSED, &processed); // Get processed buffers
2016-08-16 12:09:55 +03:00
if (processed > 0)
{
2017-05-14 19:32:47 +03:00
bool streamEnding = false;
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
// NOTE: Using dynamic allocation because it could require more than 16KB
2017-05-03 15:16:53 +03:00
void *pcm = calloc(AUDIO_BUFFER_SIZE*music->stream.sampleSize/8*music->stream.channels, 1);
2016-08-16 12:09:55 +03:00
2016-12-25 03:58:56 +03:00
int numBuffersToProcess = processed;
2017-02-10 00:19:48 +03:00
int samplesCount = 0; // Total size of data steamed in L+R samples for xm floats,
2017-05-08 01:55:47 +03:00
// individual L or R for ogg shorts
for (int i = 0; i < numBuffersToProcess; i++)
{
2017-02-10 00:19:48 +03:00
if (music->samplesLeft >= AUDIO_BUFFER_SIZE) samplesCount = AUDIO_BUFFER_SIZE;
else samplesCount = music->samplesLeft;
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
// TODO: Really don't like ctxType thingy...
switch (music->ctxType)
{
2016-08-16 12:09:55 +03:00
case MUSIC_AUDIO_OGG:
{
2016-12-25 03:58:56 +03:00
// NOTE: Returns the number of samples to process (be careful! we ask for number of shorts!)
2017-02-10 00:19:48 +03:00
int numSamplesOgg = stb_vorbis_get_samples_short_interleaved(music->ctxOgg, music->stream.channels, (short *)pcm, samplesCount*music->stream.channels);
2016-08-16 12:09:55 +03:00
} break;
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_FLAC)
case MUSIC_AUDIO_FLAC:
{
2016-12-25 03:58:56 +03:00
// NOTE: Returns the number of samples to process
2017-02-10 00:19:48 +03:00
unsigned int numSamplesFlac = (unsigned int)drflac_read_s16(music->ctxFlac, samplesCount*music->stream.channels, (short *)pcm);
2016-08-16 12:09:55 +03:00
} break;
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_XM)
2017-02-10 00:19:48 +03:00
case MUSIC_MODULE_XM: jar_xm_generate_samples_16bit(music->ctxXm, pcm, samplesCount); break;
2017-03-26 23:49:01 +03:00
#endif
#if defined(SUPPORT_FILEFORMAT_MOD)
2017-02-10 00:19:48 +03:00
case MUSIC_MODULE_MOD: jar_mod_fillbuffer(&music->ctxMod, pcm, samplesCount, 0); break;
2017-03-26 23:49:01 +03:00
#endif
default: break;
}
2017-01-29 01:02:30 +03:00
2017-02-10 00:19:48 +03:00
UpdateAudioStream(music->stream, pcm, samplesCount);
music->samplesLeft -= samplesCount;
if (music->samplesLeft <= 0)
{
2017-05-14 19:32:47 +03:00
streamEnding = true;
break;
}
}
2017-05-10 20:34:57 +03:00
// Free allocated pcm data
free(pcm);
2016-08-16 12:09:55 +03:00
// Reset audio stream for looping
2017-05-14 19:32:47 +03:00
if (streamEnding)
{
StopMusicStream(music); // Stop music (and reset)
// Decrease loopCount to stop when required
if (music->loopCount > 0)
{
music->loopCount--; // Decrease loop count
PlayMusicStream(music); // Play again
}
}
else
{
// NOTE: In case window is minimized, music stream is stopped,
// just make sure to play again on window restore
if (state != AL_PLAYING) PlayMusicStream(music);
}
}
}
2016-05-12 04:14:59 +03:00
// Check if any music is playing
bool IsMusicPlaying(Music music)
{
bool playing = false;
ALint state;
alGetSourcei(music->stream.source, AL_SOURCE_STATE, &state);
if (state == AL_PLAYING) playing = true;
2014-09-03 18:51:28 +04:00
return playing;
}
// Set volume for music
void SetMusicVolume(Music music, float volume)
{
alSourcef(music->stream.source, AL_GAIN, volume);
2016-05-12 04:14:59 +03:00
}
// Set pitch for music
void SetMusicPitch(Music music, float pitch)
2016-05-12 04:14:59 +03:00
{
alSourcef(music->stream.source, AL_PITCH, pitch);
}
2017-01-24 02:32:16 +03:00
// Set music loop count (loop repeats)
// NOTE: If set to -1, means infinite loop
void SetMusicLoopCount(Music music, float count)
{
music->loopCount = count;
}
2016-06-02 06:09:00 +03:00
// Get music time length (in seconds)
float GetMusicTimeLength(Music music)
{
float totalSeconds = (float)music->totalSamples/music->stream.sampleRate;
2016-08-16 12:09:55 +03:00
return totalSeconds;
}
// Get current music time played (in seconds)
float GetMusicTimePlayed(Music music)
{
2016-05-21 19:08:09 +03:00
float secondsPlayed = 0.0f;
unsigned int samplesPlayed = music->totalSamples - music->samplesLeft;
2016-12-25 03:58:56 +03:00
secondsPlayed = (float)samplesPlayed/music->stream.sampleRate;
return secondsPlayed;
}
// Init audio stream (to stream audio pcm data)
AudioStream InitAudioStream(unsigned int sampleRate, unsigned int sampleSize, unsigned int channels)
{
AudioStream stream = { 0 };
2016-08-16 12:09:55 +03:00
stream.sampleRate = sampleRate;
stream.sampleSize = sampleSize;
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
// Only mono and stereo channels are supported, more channels require AL_EXT_MCFORMATS extension
if ((channels > 0) && (channels < 3)) stream.channels = channels;
else
{
TraceLog(LOG_WARNING, "Init audio stream: Number of channels not supported: %i", channels);
2016-12-25 03:58:56 +03:00
stream.channels = 1; // Fallback to mono channel
}
// Setup OpenAL format
2016-12-25 03:58:56 +03:00
if (stream.channels == 1)
{
switch (sampleSize)
{
case 8: stream.format = AL_FORMAT_MONO8; break;
case 16: stream.format = AL_FORMAT_MONO16; break;
2017-01-15 03:25:09 +03:00
case 32: stream.format = AL_FORMAT_MONO_FLOAT32; break; // Requires OpenAL extension: AL_EXT_FLOAT32
default: TraceLog(LOG_WARNING, "Init audio stream: Sample size not supported: %i", sampleSize); break;
2016-06-02 06:09:00 +03:00
}
}
2016-12-25 03:58:56 +03:00
else if (stream.channels == 2)
{
switch (sampleSize)
2016-06-02 06:09:00 +03:00
{
case 8: stream.format = AL_FORMAT_STEREO8; break;
case 16: stream.format = AL_FORMAT_STEREO16; break;
2017-01-15 03:25:09 +03:00
case 32: stream.format = AL_FORMAT_STEREO_FLOAT32; break; // Requires OpenAL extension: AL_EXT_FLOAT32
default: TraceLog(LOG_WARNING, "Init audio stream: Sample size not supported: %i", sampleSize); break;
}
}
// Create an audio source
alGenSources(1, &stream.source);
alSourcef(stream.source, AL_PITCH, 1.0f);
alSourcef(stream.source, AL_GAIN, 1.0f);
alSource3f(stream.source, AL_POSITION, 0.0f, 0.0f, 0.0f);
alSource3f(stream.source, AL_VELOCITY, 0.0f, 0.0f, 0.0f);
// Create Buffers (double buffering)
alGenBuffers(MAX_STREAM_BUFFERS, stream.buffers);
// Initialize buffer with zeros by default
2016-12-25 03:58:56 +03:00
// NOTE: Using dynamic allocation because it requires more than 16KB
void *pcm = calloc(AUDIO_BUFFER_SIZE*stream.sampleSize/8*stream.channels, 1);
2017-01-29 01:02:30 +03:00
for (int i = 0; i < MAX_STREAM_BUFFERS; i++)
{
2016-12-25 03:58:56 +03:00
alBufferData(stream.buffers[i], stream.format, pcm, AUDIO_BUFFER_SIZE*stream.sampleSize/8*stream.channels, stream.sampleRate);
2016-04-25 04:18:18 +03:00
}
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
free(pcm);
2014-09-03 18:51:28 +04:00
alSourceQueueBuffers(stream.source, MAX_STREAM_BUFFERS, stream.buffers);
2016-08-16 12:09:55 +03:00
TraceLog(LOG_INFO, "[AUD ID %i] Audio stream loaded successfully (%i Hz, %i bit, %s)", stream.source, stream.sampleRate, stream.sampleSize, (stream.channels == 1) ? "Mono" : "Stereo");
return stream;
}
// Close audio stream and free memory
void CloseAudioStream(AudioStream stream)
{
// Stop playing channel
alSourceStop(stream.source);
// Flush out all queued buffers
int queued = 0;
alGetSourcei(stream.source, AL_BUFFERS_QUEUED, &queued);
2016-08-16 12:09:55 +03:00
ALuint buffer = 0;
2016-08-16 12:09:55 +03:00
while (queued > 0)
{
alSourceUnqueueBuffers(stream.source, 1, &buffer);
queued--;
}
// Delete source and buffers
alDeleteSources(1, &stream.source);
alDeleteBuffers(MAX_STREAM_BUFFERS, stream.buffers);
2016-08-16 12:09:55 +03:00
TraceLog(LOG_INFO, "[AUD ID %i] Unloaded audio stream data", stream.source);
}
// Update audio stream buffers with data
2017-05-10 20:34:57 +03:00
// NOTE 1: Only updates one buffer of the stream source: unqueue -> update -> queue
// NOTE 2: To unqueue a buffer it needs to be processed: IsAudioBufferProcessed()
2017-02-10 00:19:48 +03:00
void UpdateAudioStream(AudioStream stream, const void *data, int samplesCount)
{
ALuint buffer = 0;
alSourceUnqueueBuffers(stream.source, 1, &buffer);
2016-08-16 12:09:55 +03:00
// Check if any buffer was available for unqueue
if (alGetError() != AL_INVALID_VALUE)
{
2017-05-10 20:34:57 +03:00
alBufferData(buffer, stream.format, data, samplesCount*stream.sampleSize/8*stream.channels, stream.sampleRate);
alSourceQueueBuffers(stream.source, 1, &buffer);
}
else TraceLog(LOG_WARNING, "[AUD ID %i] Audio buffer not available for unqueuing", stream.source);
}
// Check if any audio stream buffers requires refill
bool IsAudioBufferProcessed(AudioStream stream)
{
ALint processed = 0;
// Determine if music stream is ready to be written
alGetSourcei(stream.source, AL_BUFFERS_PROCESSED, &processed);
return (processed > 0);
}
// Play audio stream
void PlayAudioStream(AudioStream stream)
{
alSourcePlay(stream.source);
}
// Play audio stream
void PauseAudioStream(AudioStream stream)
{
alSourcePause(stream.source);
}
// Resume audio stream playing
void ResumeAudioStream(AudioStream stream)
{
ALenum state;
alGetSourcei(stream.source, AL_SOURCE_STATE, &state);
if (state == AL_PAUSED) alSourcePlay(stream.source);
}
// Stop audio stream
void StopAudioStream(AudioStream stream)
{
alSourceStop(stream.source);
}
//----------------------------------------------------------------------------------
// Module specific Functions Definition
//----------------------------------------------------------------------------------
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_WAV)
// Load WAV file into Wave structure
static Wave LoadWAV(const char *fileName)
{
2013-12-01 15:34:31 +04:00
// Basic WAV headers structs
typedef struct {
char chunkID[4];
int chunkSize;
2013-12-01 15:34:31 +04:00
char format[4];
} WAVRiffHeader;
2013-12-01 15:34:31 +04:00
typedef struct {
char subChunkID[4];
int subChunkSize;
2013-12-01 15:34:31 +04:00
short audioFormat;
short numChannels;
int sampleRate;
int byteRate;
2013-12-01 15:34:31 +04:00
short blockAlign;
short bitsPerSample;
} WAVFormat;
2013-12-01 15:34:31 +04:00
typedef struct {
char subChunkID[4];
int subChunkSize;
} WAVData;
2014-09-03 18:51:28 +04:00
WAVRiffHeader wavRiffHeader;
WAVFormat wavFormat;
WAVData wavData;
2014-09-03 18:51:28 +04:00
2016-01-23 15:22:13 +03:00
Wave wave = { 0 };
2013-12-01 15:34:31 +04:00
FILE *wavFile;
2014-09-03 18:51:28 +04:00
wavFile = fopen(fileName, "rb");
2014-09-03 18:51:28 +04:00
if (wavFile == NULL)
{
TraceLog(LOG_WARNING, "[%s] WAV file could not be opened", fileName);
wave.data = NULL;
}
else
{
// Read in the first chunk into the struct
fread(&wavRiffHeader, sizeof(WAVRiffHeader), 1, wavFile);
2014-09-03 18:51:28 +04:00
// Check for RIFF and WAVE tags
2016-12-25 03:58:56 +03:00
if (strncmp(wavRiffHeader.chunkID, "RIFF", 4) ||
strncmp(wavRiffHeader.format, "WAVE", 4))
{
TraceLog(LOG_WARNING, "[%s] Invalid RIFF or WAVE Header", fileName);
}
else
{
// Read in the 2nd chunk for the wave info
fread(&wavFormat, sizeof(WAVFormat), 1, wavFile);
2014-09-03 18:51:28 +04:00
// Check for fmt tag
2016-12-25 03:58:56 +03:00
if ((wavFormat.subChunkID[0] != 'f') || (wavFormat.subChunkID[1] != 'm') ||
(wavFormat.subChunkID[2] != 't') || (wavFormat.subChunkID[3] != ' '))
{
TraceLog(LOG_WARNING, "[%s] Invalid Wave format", fileName);
}
else
{
// Check for extra parameters;
2016-12-25 03:58:56 +03:00
if (wavFormat.subChunkSize > 16) fseek(wavFile, sizeof(short), SEEK_CUR);
2014-09-03 18:51:28 +04:00
// Read in the the last byte of data before the sound file
fread(&wavData, sizeof(WAVData), 1, wavFile);
2014-09-03 18:51:28 +04:00
// Check for data tag
2016-12-25 03:58:56 +03:00
if ((wavData.subChunkID[0] != 'd') || (wavData.subChunkID[1] != 'a') ||
(wavData.subChunkID[2] != 't') || (wavData.subChunkID[3] != 'a'))
{
TraceLog(LOG_WARNING, "[%s] Invalid data header", fileName);
}
else
{
// Allocate memory for data
2017-01-19 15:18:04 +03:00
wave.data = malloc(wavData.subChunkSize);
2014-09-03 18:51:28 +04:00
// Read in the sound data into the soundData variable
2017-02-12 01:17:56 +03:00
fread(wave.data, wavData.subChunkSize, 1, wavFile);
2014-09-03 18:51:28 +04:00
// Store wave parameters
2016-12-25 03:58:56 +03:00
wave.sampleRate = wavFormat.sampleRate;
wave.sampleSize = wavFormat.bitsPerSample;
wave.channels = wavFormat.numChannels;
2017-01-29 01:02:30 +03:00
2017-01-19 15:18:04 +03:00
// NOTE: Only support 8 bit, 16 bit and 32 bit sample sizes
if ((wave.sampleSize != 8) && (wave.sampleSize != 16) && (wave.sampleSize != 32))
2016-12-25 03:58:56 +03:00
{
TraceLog(LOG_WARNING, "[%s] WAV sample size (%ibit) not supported, converted to 16bit", fileName, wave.sampleSize);
2017-01-19 15:18:04 +03:00
WaveFormat(&wave, wave.sampleRate, 16, wave.channels);
2016-12-25 03:58:56 +03:00
}
2017-01-19 15:18:04 +03:00
2016-12-25 03:58:56 +03:00
// NOTE: Only support up to 2 channels (mono, stereo)
2017-01-29 01:02:30 +03:00
if (wave.channels > 2)
2016-12-25 03:58:56 +03:00
{
WaveFormat(&wave, wave.sampleRate, wave.sampleSize, 2);
TraceLog(LOG_WARNING, "[%s] WAV channels number (%i) not supported, converted to 2 channels", fileName, wave.channels);
2016-12-25 03:58:56 +03:00
}
2017-01-29 01:02:30 +03:00
// NOTE: subChunkSize comes in bytes, we need to translate it to number of samples
2016-12-25 03:58:56 +03:00
wave.sampleCount = (wavData.subChunkSize/(wave.sampleSize/8))/wave.channels;
2014-09-03 18:51:28 +04:00
TraceLog(LOG_INFO, "[%s] WAV file loaded successfully (%i Hz, %i bit, %s)", fileName, wave.sampleRate, wave.sampleSize, (wave.channels == 1) ? "Mono" : "Stereo");
}
}
}
fclose(wavFile);
}
2014-09-03 18:51:28 +04:00
return wave;
2013-12-01 15:34:31 +04:00
}
2017-03-26 23:49:01 +03:00
#endif
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_OGG)
// Load OGG file into Wave structure
// NOTE: Using stb_vorbis library
static Wave LoadOGG(const char *fileName)
{
2017-05-03 15:16:53 +03:00
Wave wave = { 0 };
2014-09-03 18:51:28 +04:00
stb_vorbis *oggFile = stb_vorbis_open_filename(fileName, NULL, NULL);
2014-09-03 18:51:28 +04:00
if (oggFile == NULL) TraceLog(LOG_WARNING, "[%s] OGG file could not be opened", fileName);
else
{
stb_vorbis_info info = stb_vorbis_get_info(oggFile);
2017-05-03 15:16:53 +03:00
wave.sampleRate = info.sample_rate;
2016-08-15 17:35:11 +03:00
wave.sampleSize = 16; // 16 bit per sample (short)
wave.channels = info.channels;
2017-05-03 15:16:53 +03:00
wave.sampleCount = (int)stb_vorbis_stream_length_in_samples(oggFile); // Independent by channel
2017-01-29 01:02:30 +03:00
float totalSeconds = stb_vorbis_stream_length_in_seconds(oggFile);
if (totalSeconds > 10) TraceLog(LOG_WARNING, "[%s] Ogg audio length is larger than 10 seconds (%f), that's a big file in memory, consider music streaming", fileName, totalSeconds);
2014-09-03 18:51:28 +04:00
2017-01-18 19:04:20 +03:00
wave.data = (short *)malloc(wave.sampleCount*wave.channels*sizeof(short));
2014-09-03 18:51:28 +04:00
2017-01-18 19:04:20 +03:00
// NOTE: Returns the number of samples to process (be careful! we ask for number of shorts!)
int numSamplesOgg = stb_vorbis_get_samples_short_interleaved(oggFile, info.channels, (short *)wave.data, wave.sampleCount*wave.channels);
2015-02-02 02:53:49 +03:00
TraceLog(LOG_DEBUG, "[%s] Samples obtained: %i", fileName, numSamplesOgg);
TraceLog(LOG_INFO, "[%s] OGG file loaded successfully (%i Hz, %i bit, %s)", fileName, wave.sampleRate, wave.sampleSize, (wave.channels == 1) ? "Mono" : "Stereo");
stb_vorbis_close(oggFile);
}
2014-09-03 18:51:28 +04:00
return wave;
}
2017-03-26 23:49:01 +03:00
#endif
2017-03-26 23:49:01 +03:00
#if defined(SUPPORT_FILEFORMAT_FLAC)
// Load FLAC file into Wave structure
// NOTE: Using dr_flac library
static Wave LoadFLAC(const char *fileName)
{
Wave wave;
// Decode an entire FLAC file in one go
uint64_t totalSampleCount;
2016-12-26 12:52:57 +03:00
wave.data = drflac_open_and_decode_file_s16(fileName, &wave.channels, &wave.sampleRate, &totalSampleCount);
2017-01-29 01:02:30 +03:00
2016-12-26 12:52:57 +03:00
wave.sampleCount = (int)totalSampleCount/wave.channels;
wave.sampleSize = 16;
2017-01-29 01:02:30 +03:00
2016-12-25 03:58:56 +03:00
// NOTE: Only support up to 2 channels (mono, stereo)
if (wave.channels > 2) TraceLog(LOG_WARNING, "[%s] FLAC channels number (%i) not supported", fileName, wave.channels);
2016-12-26 12:52:57 +03:00
if (wave.data == NULL) TraceLog(LOG_WARNING, "[%s] FLAC data could not be loaded", fileName);
else TraceLog(LOG_INFO, "[%s] FLAC file loaded successfully (%i Hz, %i bit, %s)", fileName, wave.sampleRate, wave.sampleSize, (wave.channels == 1) ? "Mono" : "Stereo");
2017-01-29 01:02:30 +03:00
return wave;
}
2017-03-26 23:49:01 +03:00
#endif
// Some required functions for audio standalone module version
#if defined(AUDIO_STANDALONE)
// Check file extension
bool IsFileExtension(const char *fileName, const char *ext)
{
bool result = false;
const char *fileExt;
if ((fileExt = strrchr(fileName, '.')) != NULL)
{
if (strcmp(fileExt, ext) == 0) result = true;
}
return result;
}
// Show trace log messages (LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_DEBUG)
void TraceLog(int msgType, const char *text, ...)
{
va_list args;
va_start(args, text);
2016-08-31 11:27:29 +03:00
switch (msgType)
{
case LOG_INFO: fprintf(stdout, "INFO: "); break;
case LOG_ERROR: fprintf(stdout, "ERROR: "); break;
case LOG_WARNING: fprintf(stdout, "WARNING: "); break;
case LOG_DEBUG: fprintf(stdout, "DEBUG: "); break;
default: break;
}
vfprintf(stdout, text, args);
fprintf(stdout, "\n");
va_end(args);
if (msgType == LOG_ERROR) exit(1);
}
#endif