Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
audio_Music.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file audio_Music.hpp
4 * @brief Music (BGM) support
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <SDL2/SDL_mixer.h>
11#include <pu/pu_Include.hpp>
12
13namespace pu::audio {
14
15 /**
16 * @brief Type representing a music file.
17 */
18 using Music = Mix_Music*;
19
20 /**
21 * @brief Opens a music file from the specified path.
22 * @note pu::audio::Initialize must be called before using this function.
23 * @note The music file must be manually freed with pu::audio::DestroyMusic when it is no longer needed.
24 * @param path Path to the music file.
25 * @return Music file opened, or NULL if an error occurred.
26 */
27 Music OpenMusic(const std::string &path);
28
29 /**
30 * @brief Plays a music file.
31 * @note pu::audio::Initialize must be called before using this function.
32 * @param mus Music file to play. If NULL is passed, nothing will happen.
33 * @param loops Number of times to loop the music file.
34 */
35 void PlayMusic(Music mus, const i32 loops);
36
37 /**
38 * @brief Plays a music file with a fade-in effect.
39 * @note pu::audio::Initialize must be called before using this function.
40 * @param mus Music file to play. If NULL is passed, nothing will happen.
41 * @param loops Number of times to loop the music file.
42 * @param ms Time in milliseconds to fade in the music file.
43 */
44 void PlayMusicWithFadeIn(Music mus, const i32 loops, const i32 ms);
45
46 /**
47 * @brief Checks if music is currently playing.
48 * @return Whether music is currently playing.
49 */
51
52 /**
53 * @brief Pauses the currently playing music.
54 */
55 void PauseMusic();
56
57 /**
58 * @brief Resumes the currently paused music.
59 */
61
62 /**
63 * @brief Sets the volume of the currently playing music.
64 * @note pu::audio::Initialize must be called before using this function.
65 * @param vol Volume to set (0-128).
66 */
67 void SetMusicVolume(const i32 vol);
68
69 /**
70 * @brief Gets the volume of the currently playing music.
71 * @note pu::audio::Initialize must be called before using this function.
72 * @return Volume of the currently playing music.
73 */
75
76 /**
77 * @brief Fades out the currently playing music.
78 * @note pu::audio::Initialize must be called before using this function.
79 * @param ms Time in milliseconds to fade out the music file.
80 */
81 void FadeOutMusic(const i32 ms);
82
83 /**
84 * @brief Rewinds the currently playing music.
85 * @note pu::audio::Initialize must be called before using this function.
86 */
88
89 /**
90 * @brief Stops the currently playing music.
91 * @note pu::audio::Initialize must be called before using this function.
92 */
93 void StopMusic();
94
95 /**
96 * @brief Sets the position of the currently playing music.
97 * @note pu::audio::Initialize must be called before using this function.
98 * @param sec Position in seconds to set.
99 */
100 void SetMusicPosition(const double sec);
101
102 /**
103 * @brief Destroys a music file.
104 * @param mus Music file to destroy. If NULL is passed, nothing will happen.
105 */
106 void DestroyMusic(Music &mus);
107
108}
i32 GetMusicVolume()
Gets the volume of the currently playing music.
bool IsPlayingMusic()
Checks if music is currently playing.
void FadeOutMusic(i32 ms)
Fades out the currently playing music.
void PlayMusicWithFadeIn(Music mus, i32 loops, i32 ms)
Plays a music file with a fade-in effect.
void PauseMusic()
Pauses the currently playing music.
void DestroyMusic(Music &mus)
Destroys a music file.
void ResumeMusic()
Resumes the currently paused music.
void RewindMusic()
Rewinds the currently playing music.
Music OpenMusic(std::string &path)
Opens a music file from the specified path.
void SetMusicVolume(i32 vol)
Sets the volume of the currently playing music.
void SetMusicPosition(double sec)
Sets the position of the currently playing music.
void PlayMusic(Music mus, i32 loops)
Plays a music file.
void StopMusic()
Stops the currently playing music.
Definition audio_Audio.hpp:13