hide struct from user
Hiding the struct from user should protect from accidentally modifying the mix channel. This could cause serious errors down the road.
This commit is contained in:
parent
91f1f324c0
commit
5f1e8b8278
3 changed files with 35 additions and 26 deletions
37
src/audio.c
37
src/audio.c
|
@ -90,6 +90,16 @@ typedef struct Music {
|
||||||
bool chipTune; // True if chiptune is loaded
|
bool chipTune; // True if chiptune is loaded
|
||||||
} Music;
|
} Music;
|
||||||
|
|
||||||
|
// Audio Context, used to create custom audio streams that are not bound to a sound file. There can be
|
||||||
|
// no more than 4 concurrent audio contexts in use. This is due to each active context being tied to
|
||||||
|
// a dedicated mix channel.
|
||||||
|
typedef struct AudioContext_t {
|
||||||
|
unsigned short sampleRate; // default is 48000
|
||||||
|
unsigned char bitsPerSample; // 16 is default
|
||||||
|
mix_t mixChannel; // 0-3 or mixA-mixD, each mix channel can receive up to one dedicated audio stream
|
||||||
|
channel_t channels; // 1=mono, 2=stereo
|
||||||
|
} AudioContext_t;
|
||||||
|
|
||||||
#if defined(AUDIO_STANDALONE)
|
#if defined(AUDIO_STANDALONE)
|
||||||
typedef enum { INFO = 0, ERROR, WARNING, DEBUG, OTHER } TraceLogType;
|
typedef enum { INFO = 0, ERROR, WARNING, DEBUG, OTHER } TraceLogType;
|
||||||
#endif
|
#endif
|
||||||
|
@ -97,10 +107,10 @@ typedef enum { INFO = 0, ERROR, WARNING, DEBUG, OTHER } TraceLogType;
|
||||||
//----------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------
|
||||||
// Global Variables Definition
|
// Global Variables Definition
|
||||||
//----------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------
|
||||||
static bool mixChannelsActive_g[4]; // What mix channels are currently active
|
static AudioContext_t* mixChannelsActive_g[4]; // What mix channels are currently active
|
||||||
static bool musicEnabled = false;
|
static bool musicEnabled = false;
|
||||||
static Music currentMusic; // Current music loaded
|
static Music currentMusic; // Current music loaded
|
||||||
// NOTE: Only one music file playing at a time
|
// NOTE: Only one music file playing at a time
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------
|
||||||
// Module specific Functions Declaration
|
// Module specific Functions Declaration
|
||||||
|
@ -184,32 +194,39 @@ bool AudioDeviceReady(void)
|
||||||
// Audio contexts are for outputing custom audio waveforms, This will shut down any other sound sources currently playing
|
// Audio contexts are for outputing custom audio waveforms, This will shut down any other sound sources currently playing
|
||||||
// The mix_t is what mix channel you want to operate on, mixA->mixD are the ones available. Each mix channel can only be used one at a time.
|
// The mix_t is what mix channel you want to operate on, mixA->mixD are the ones available. Each mix channel can only be used one at a time.
|
||||||
// exmple usage is InitAudioContext(48000, 16, mixA, stereo);
|
// exmple usage is InitAudioContext(48000, 16, mixA, stereo);
|
||||||
AudioContext* InitAudioContext(unsigned short sampleRate, unsigned char bitsPerSample, mix_t mixChannel, channel_t channels)
|
AudioContext InitAudioContext(unsigned short sampleRate, unsigned char bitsPerSample, mix_t mixChannel, channel_t channels)
|
||||||
{
|
{
|
||||||
if(!AudioDeviceReady()) InitAudioDevice();
|
if(!AudioDeviceReady()) InitAudioDevice();
|
||||||
else StopMusicStream();
|
else StopMusicStream();
|
||||||
|
|
||||||
if(!mixChannelsActive_g[mixChannel]){
|
if(!mixChannelsActive_g[mixChannel]){
|
||||||
AudioContext *ac = malloc(sizeof(AudioContext));
|
AudioContext_t *ac = malloc(sizeof(AudioContext_t));
|
||||||
ac->sampleRate = sampleRate;
|
ac->sampleRate = sampleRate;
|
||||||
ac->bitsPerSample = bitsPerSample;
|
ac->bitsPerSample = bitsPerSample;
|
||||||
ac->mixChannel = mixChannel;
|
ac->mixChannel = mixChannel;
|
||||||
ac->channels = channels;
|
ac->channels = channels;
|
||||||
mixChannelsActive_g[mixChannel] = true;
|
mixChannelsActive_g[mixChannel] = ac;
|
||||||
return ac;
|
return ac;
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Frees buffer in audio context
|
// Frees buffer in audio context
|
||||||
void CloseAudioContext(AudioContext *ctx)
|
void CloseAudioContext(AudioContext ctx)
|
||||||
{
|
{
|
||||||
if(ctx){
|
AudioContext_t *context = (AudioContext_t*)ctx;
|
||||||
mixChannelsActive_g[ctx->mixChannel] = false;
|
if(context){
|
||||||
free(ctx);
|
mixChannelsActive_g[context->mixChannel] = NULL;
|
||||||
|
free(context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Pushes more audio data into context mix channel, if none are ever pushed then zeros are fed in
|
||||||
|
void UpdateAudioContext(AudioContext ctx, void *data, unsigned short *dataLength)
|
||||||
|
{
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------
|
||||||
|
|
12
src/audio.h
12
src/audio.h
|
@ -66,12 +66,7 @@ typedef struct Wave {
|
||||||
// Audio Context, used to create custom audio streams that are not bound to a sound file. There can be
|
// Audio Context, used to create custom audio streams that are not bound to a sound file. There can be
|
||||||
// no more than 4 concurrent audio contexts in use. This is due to each active context being tied to
|
// no more than 4 concurrent audio contexts in use. This is due to each active context being tied to
|
||||||
// a dedicated mix channel.
|
// a dedicated mix channel.
|
||||||
typedef struct AudioContext {
|
typedef void* AudioContext;
|
||||||
unsigned short sampleRate; // default is 48000
|
|
||||||
unsigned char bitsPerSample; // 16 is default
|
|
||||||
mix_t mixChannel; // 0-3 or mixA-mixD, each mix channel can receive up to one dedicated audio stream
|
|
||||||
channel_t channels; // 1=mono, 2=stereo
|
|
||||||
} AudioContext;
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" { // Prevents name mangling of functions
|
extern "C" { // Prevents name mangling of functions
|
||||||
|
@ -92,8 +87,9 @@ bool AudioDeviceReady(void); // True if call
|
||||||
// Audio contexts are for outputing custom audio waveforms, This will shut down any other sound sources currently playing
|
// Audio contexts are for outputing custom audio waveforms, This will shut down any other sound sources currently playing
|
||||||
// The mix_t is what mix channel you want to operate on, mixA->mixD are the ones available. Each mix channel can only be used one at a time.
|
// The mix_t is what mix channel you want to operate on, mixA->mixD are the ones available. Each mix channel can only be used one at a time.
|
||||||
// exmple usage is InitAudioContext(48000, 16, mixA, stereo);
|
// exmple usage is InitAudioContext(48000, 16, mixA, stereo);
|
||||||
AudioContext* InitAudioContext(unsigned short sampleRate, unsigned char bitsPerSample, mix_t mixChannel, channel_t channels);
|
AudioContext InitAudioContext(unsigned short sampleRate, unsigned char bitsPerSample, mix_t mixChannel, channel_t channels);
|
||||||
void CloseAudioContext(AudioContext *ctx); // Frees audio context
|
void CloseAudioContext(AudioContext ctx); // Frees audio context
|
||||||
|
void UpdateAudioContext(AudioContext ctx, void *data, unsigned short *dataLength); // Pushes more audio data into context mix channel, if none are ever pushed then zeros are fed in
|
||||||
|
|
||||||
Sound LoadSound(char *fileName); // Load sound to memory
|
Sound LoadSound(char *fileName); // Load sound to memory
|
||||||
Sound LoadSoundFromWave(Wave wave); // Load sound to memory from wave data
|
Sound LoadSoundFromWave(Wave wave); // Load sound to memory from wave data
|
||||||
|
|
12
src/raylib.h
12
src/raylib.h
|
@ -451,12 +451,7 @@ typedef struct Wave {
|
||||||
// Audio Context, used to create custom audio streams that are not bound to a sound file. There can be
|
// Audio Context, used to create custom audio streams that are not bound to a sound file. There can be
|
||||||
// no more than 4 concurrent audio contexts in use. This is due to each active context being tied to
|
// no more than 4 concurrent audio contexts in use. This is due to each active context being tied to
|
||||||
// a dedicated mix channel.
|
// a dedicated mix channel.
|
||||||
typedef struct AudioContext {
|
typedef void* AudioContext;
|
||||||
unsigned short sampleRate; // default is 48000
|
|
||||||
unsigned char bitsPerSample; // 16 is default
|
|
||||||
mix_t mixChannel; // 0-3 or mixA-mixD, each mix channel can receive up to one dedicated audio stream
|
|
||||||
channel_t channels; // 1=mono, 2=stereo
|
|
||||||
} AudioContext;
|
|
||||||
|
|
||||||
// Texture formats
|
// Texture formats
|
||||||
// NOTE: Support depends on OpenGL version and platform
|
// NOTE: Support depends on OpenGL version and platform
|
||||||
|
@ -880,8 +875,9 @@ bool AudioDeviceReady(void); // True if call
|
||||||
// Audio contexts are for outputing custom audio waveforms, This will shut down any other sound sources currently playing
|
// Audio contexts are for outputing custom audio waveforms, This will shut down any other sound sources currently playing
|
||||||
// The mix_t is what mix channel you want to operate on, mixA->mixD are the ones available. Each mix channel can only be used one at a time.
|
// The mix_t is what mix channel you want to operate on, mixA->mixD are the ones available. Each mix channel can only be used one at a time.
|
||||||
// exmple usage is InitAudioContext(48000, 16, mixA, stereo);
|
// exmple usage is InitAudioContext(48000, 16, mixA, stereo);
|
||||||
AudioContext* InitAudioContext(unsigned short sampleRate, unsigned char bitsPerSample, mix_t mixChannel, channel_t channels);
|
AudioContext InitAudioContext(unsigned short sampleRate, unsigned char bitsPerSample, mix_t mixChannel, channel_t channels);
|
||||||
void CloseAudioContext(AudioContext *ctx); // Frees audio context
|
void CloseAudioContext(AudioContext ctx); // Frees audio context
|
||||||
|
void UpdateAudioContext(AudioContext ctx, void *data, unsigned short *dataLength); // Pushes more audio data into context mix channel, if none are ever pushed then zeros are fed in
|
||||||
|
|
||||||
Sound LoadSound(char *fileName); // Load sound to memory
|
Sound LoadSound(char *fileName); // Load sound to memory
|
||||||
Sound LoadSoundFromWave(Wave wave); // Load sound to memory from wave data
|
Sound LoadSoundFromWave(Wave wave); // Load sound to memory from wave data
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue