2015-07-29 22:41:19 +03:00
|
|
|
/**********************************************************************************************
|
|
|
|
*
|
|
|
|
* raylib.audio
|
|
|
|
*
|
2016-07-29 22:35:57 +03:00
|
|
|
* Basic functions to manage Audio:
|
2016-07-15 19:16:34 +03:00
|
|
|
* Manage audio device (init/close)
|
|
|
|
* Load and Unload audio files
|
|
|
|
* Play/Stop/Pause/Resume loaded audio
|
|
|
|
* Manage mixing channels
|
|
|
|
* Manage raw audio context
|
2015-07-29 22:41:19 +03:00
|
|
|
*
|
|
|
|
* Uses external lib:
|
|
|
|
* OpenAL Soft - Audio device management lib (http://kcat.strangesoft.net/openal.html)
|
|
|
|
* stb_vorbis - Ogg audio files loading (http://www.nothings.org/stb_vorbis/)
|
2016-07-15 19:16:34 +03:00
|
|
|
* jar_xm - XM module file loading
|
|
|
|
* jar_mod - MOD audio file loading
|
2015-07-29 22:41:19 +03:00
|
|
|
*
|
2016-07-15 19:16:34 +03:00
|
|
|
* Many thanks to Joshua Reisenauer (github: @kd7tck) for the following additions:
|
|
|
|
* XM audio module support (jar_xm)
|
|
|
|
* MOD audio module support (jar_mod)
|
|
|
|
* Mixing channels support
|
|
|
|
* Raw audio context support
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014-2016 Ramon Santamaria (@raysan5)
|
2015-07-29 22:41:19 +03: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.
|
|
|
|
*
|
|
|
|
* 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:
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
**********************************************************************************************/
|
|
|
|
|
|
|
|
#ifndef AUDIO_H
|
|
|
|
#define AUDIO_H
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Defines and Macros
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
//...
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Types and Structures Definition
|
|
|
|
// NOTE: Below types are required for CAMERA_STANDALONE usage
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
#ifndef __cplusplus
|
|
|
|
// Boolean type
|
2016-06-02 06:09:00 +03:00
|
|
|
#if !defined(_STDBOOL_H)
|
2016-04-30 09:00:12 +03:00
|
|
|
typedef enum { false, true } bool;
|
2016-06-02 06:09:00 +03:00
|
|
|
#define _STDBOOL_H
|
2016-04-30 09:00:12 +03:00
|
|
|
#endif
|
2015-07-29 22:41:19 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Sound source type
|
|
|
|
typedef struct Sound {
|
2016-07-16 20:24:08 +03:00
|
|
|
unsigned int source; // Sound audio source id
|
|
|
|
unsigned int buffer; // Sound audio buffer id
|
2015-07-29 22:41:19 +03:00
|
|
|
} Sound;
|
|
|
|
|
|
|
|
// Wave type, defines audio wave data
|
|
|
|
typedef struct Wave {
|
2016-08-15 17:35:11 +03:00
|
|
|
unsigned int sampleCount; // Number of samples
|
|
|
|
unsigned int sampleRate; // Frequency (samples per second)
|
|
|
|
unsigned int sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
|
|
|
|
unsigned int channels; // Number of channels (1-mono, 2-stereo)
|
2015-07-29 22:41:19 +03:00
|
|
|
void *data; // Buffer data pointer
|
|
|
|
} Wave;
|
|
|
|
|
2016-08-01 13:49:17 +03:00
|
|
|
// Music type (file streaming from memory)
|
2016-08-02 18:32:24 +03:00
|
|
|
// NOTE: Anything longer than ~10 seconds should be streamed
|
2016-08-01 13:49:17 +03:00
|
|
|
typedef struct Music *Music;
|
2016-07-29 22:35:57 +03:00
|
|
|
|
2016-08-02 18:32:24 +03:00
|
|
|
// Audio stream type
|
|
|
|
// NOTE: Useful to create custom audio streams not bound to a specific file
|
|
|
|
typedef struct AudioStream {
|
|
|
|
unsigned int sampleRate; // Frequency (samples per second)
|
|
|
|
unsigned int sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
|
|
|
|
unsigned int channels; // Number of channels (1-mono, 2-stereo)
|
|
|
|
|
|
|
|
int format; // OpenAL audio format specifier
|
|
|
|
unsigned int source; // OpenAL audio source id
|
|
|
|
unsigned int buffers[2]; // OpenAL audio buffers (double buffering)
|
|
|
|
} AudioStream;
|
|
|
|
|
2015-07-29 22:41:19 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" { // Prevents name mangling of functions
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Global Variables Definition
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
//...
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Module Functions Declaration
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
void InitAudioDevice(void); // Initialize audio device and context
|
|
|
|
void CloseAudioDevice(void); // Close the audio device and context (and music stream)
|
2016-08-02 18:32:24 +03:00
|
|
|
bool IsAudioDeviceReady(void); // Check if audio device has been initialized successfully
|
2016-04-30 09:00:12 +03:00
|
|
|
|
2015-07-29 22:41:19 +03:00
|
|
|
Sound LoadSound(char *fileName); // Load sound to memory
|
|
|
|
Sound LoadSoundFromWave(Wave wave); // Load sound to memory from wave data
|
|
|
|
Sound LoadSoundFromRES(const char *rresName, int resId); // Load sound to memory from rRES file (raylib Resource)
|
|
|
|
void UnloadSound(Sound sound); // Unload sound
|
|
|
|
void PlaySound(Sound sound); // Play a sound
|
|
|
|
void PauseSound(Sound sound); // Pause a sound
|
2016-08-01 13:49:17 +03:00
|
|
|
void ResumeSound(Sound sound); // Resume a paused sound
|
2015-07-29 22:41:19 +03:00
|
|
|
void StopSound(Sound sound); // Stop playing a sound
|
2016-05-03 19:04:21 +03:00
|
|
|
bool IsSoundPlaying(Sound sound); // Check if a sound is currently playing
|
2015-07-29 22:41:19 +03:00
|
|
|
void SetSoundVolume(Sound sound, float volume); // Set volume for a sound (1.0 is max level)
|
|
|
|
void SetSoundPitch(Sound sound, float pitch); // Set pitch for a sound (1.0 is base level)
|
|
|
|
|
2016-08-01 13:49:17 +03:00
|
|
|
Music LoadMusicStream(char *fileName); // Load music stream from file
|
|
|
|
void UnloadMusicStream(Music music); // Unload music stream
|
|
|
|
void PlayMusicStream(Music music); // Start music playing (open stream)
|
|
|
|
void UpdateMusicStream(Music music); // Updates buffers for music streaming
|
|
|
|
void StopMusicStream(Music music); // Stop music playing (close stream)
|
|
|
|
void PauseMusicStream(Music music); // Pause music playing
|
|
|
|
void ResumeMusicStream(Music music); // Resume playing paused music
|
|
|
|
bool IsMusicPlaying(Music music); // Check if music is playing
|
|
|
|
void SetMusicVolume(Music music, float volume); // Set volume for music (1.0 is max level)
|
|
|
|
void SetMusicPitch(Music music, float pitch); // Set pitch for a music (1.0 is base level)
|
|
|
|
float GetMusicTimeLength(Music music); // Get music time length (in seconds)
|
|
|
|
float GetMusicTimePlayed(Music music); // Get current music time played (in seconds)
|
2016-05-16 05:37:15 +03:00
|
|
|
|
2016-08-02 18:32:24 +03:00
|
|
|
AudioStream InitAudioStream(unsigned int sampleRate,
|
|
|
|
unsigned int sampleSize,
|
|
|
|
unsigned int channels); // Init audio stream (to stream audio pcm data)
|
|
|
|
void UpdateAudioStream(AudioStream stream, void *data, int numSamples); // Update audio stream buffers with data
|
|
|
|
void CloseAudioStream(AudioStream stream); // Close audio stream and free memory
|
|
|
|
bool IsAudioBufferProcessed(AudioStream stream); // Check if any audio stream buffers requires refill
|
|
|
|
void PlayAudioStream(AudioStream stream); // Play audio stream
|
|
|
|
void PauseAudioStream(AudioStream stream); // Pause audio stream
|
|
|
|
void ResumeAudioStream(AudioStream stream); // Resume audio stream
|
|
|
|
void StopAudioStream(AudioStream stream); // Stop audio stream
|
|
|
|
|
2015-07-29 22:41:19 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // AUDIO_H
|