Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
|
Typedefs | |
using | Music = Mix_Music* |
Type representing a music file. | |
using | Sfx = Mix_Chunk* |
Type representing a sound effect. | |
Functions | |
bool | Initialize (i32 mix_flags) |
Initializes the underlying audio system (SDL2-Mixer) with the specified flags. | |
void | Finalize () |
Finalizes the underlying audio system (SDL2-Mixer). | |
Music | OpenMusic (std::string &path) |
Opens a music file from the specified path. | |
void | PlayMusic (Music mus, i32 loops) |
Plays a music file. | |
void | PlayMusicWithFadeIn (Music mus, i32 loops, i32 ms) |
Plays a music file with a fade-in effect. | |
bool | IsPlayingMusic () |
Checks if music is currently playing. | |
void | PauseMusic () |
Pauses the currently playing music. | |
void | ResumeMusic () |
Resumes the currently paused music. | |
void | SetMusicVolume (i32 vol) |
Sets the volume of the currently playing music. | |
i32 | GetMusicVolume () |
Gets the volume of the currently playing music. | |
void | FadeOutMusic (i32 ms) |
Fades out the currently playing music. | |
void | RewindMusic () |
Rewinds the currently playing music. | |
void | StopMusic () |
Stops the currently playing music. | |
void | SetMusicPosition (double sec) |
Sets the position of the currently playing music. | |
void | DestroyMusic (Music &mus) |
Destroys a music file. | |
Sfx | LoadSfx (std::string &path) |
Loads a sound effect from the specified path. | |
void | PlaySfx (Sfx sfx) |
Plays a sound effect. | |
void | DestroySfx (Sfx &sfx) |
Destroys a sound effect. | |
Variables | |
constexpr i32 | MixerAllFlags = MIX_INIT_FLAC | MIX_INIT_MOD | MIX_INIT_MP3 | MIX_INIT_OGG |
Complete set of flags to initialize the audio system with: supports FLAC, MOD, MP3 and OGG formats. | |
using pu::audio::Music = Mix_Music* |
Type representing a music file.
using pu::audio::Sfx = Mix_Chunk* |
Type representing a sound effect.
void pu::audio::DestroyMusic | ( | Music & | mus | ) |
Destroys a music file.
mus | Music file to destroy. If NULL is passed, nothing will happen. |
void pu::audio::DestroySfx | ( | Sfx & | sfx | ) |
Destroys a sound effect.
sfx | Sound effect to destroy. If NULL is passed, nothing will happen. |
void pu::audio::FadeOutMusic | ( | i32 | ms | ) |
Fades out the currently playing music.
ms | Time in milliseconds to fade out the music file. |
void pu::audio::Finalize | ( | ) |
Finalizes the underlying audio system (SDL2-Mixer).
i32 pu::audio::GetMusicVolume | ( | ) |
Gets the volume of the currently playing music.
bool pu::audio::Initialize | ( | i32 | mix_flags | ) |
Initializes the underlying audio system (SDL2-Mixer) with the specified flags.
mix_flags | Flags to initialize the audio system with. |
bool pu::audio::IsPlayingMusic | ( | ) |
Checks if music is currently playing.
Sfx pu::audio::LoadSfx | ( | std::string & | path | ) |
Loads a sound effect from the specified path.
path | Path to the sound effect file. |
Music pu::audio::OpenMusic | ( | std::string & | path | ) |
Opens a music file from the specified path.
path | Path to the music file. |
void pu::audio::PauseMusic | ( | ) |
Pauses the currently playing music.
Plays a music file.
mus | Music file to play. If NULL is passed, nothing will happen. |
loops | Number of times to loop the music file. |
Plays a music file with a fade-in effect.
mus | Music file to play. If NULL is passed, nothing will happen. |
loops | Number of times to loop the music file. |
ms | Time in milliseconds to fade in the music file. |
void pu::audio::PlaySfx | ( | Sfx | sfx | ) |
Plays a sound effect.
sfx | Sound effect to play. If NULL is passed, nothing will happen. |
void pu::audio::ResumeMusic | ( | ) |
Resumes the currently paused music.
void pu::audio::RewindMusic | ( | ) |
Rewinds the currently playing music.
void pu::audio::SetMusicPosition | ( | double | sec | ) |
Sets the position of the currently playing music.
sec | Position in seconds to set. |
void pu::audio::SetMusicVolume | ( | i32 | vol | ) |
Sets the volume of the currently playing music.
vol | Volume to set (0-128). |
void pu::audio::StopMusic | ( | ) |
Stops the currently playing music.
|
constexpr |
Complete set of flags to initialize the audio system with: supports FLAC, MOD, MP3 and OGG formats.