GSDP:GAM100/CProcessing/CP Sound ResumeAll()
From Inside
< GSDP:GAM100 | CProcessing
CP_Sound_ResumeAll()
Description
Resumes all CP_Sounds that are currently paused.
Prototype
void CP_Sound_ResumeAll(void)
Parameters
This function has no parameters
Return
This function does not return anything
Example
CP_Sound mySound = NULL;
CP_Sound mySecondSound = NULL;
void init()
{
mySound = CP_Sound_Load("./Assets/Justins_voice.wav");
mySecondSound = CP_Sound_Load("./Assets/Justins_laugh.wav");
}
void update()
{
float songLength = 500;
static float timer = 0;
timer += 1;
CP_Settings_Background(CP_Color_Create(255, 255, 255, 255));
CP_Sound_PlayAdvanced(mySound, 1, 1, TRUE, CP_SOUND_GROUP_3);
CP_Sound_PlayAdvanced(mySecondSound, 1, 1, TRUE, CP_SOUND_GROUP_5);
if(timer >= .5f * songLength)
{
// this will pause mySound, but not mySecondSound, because mySecondSound is not in CP_SOUND_GROUP_3
CP_Sound_PauseGroup(CP_SOUND_GROUP_3);
}
if(time >= songLength)
{
CP_Sound_ResumeAll(); // play any paused sounds
timer = 0; // reset the timer so that the sound pauses 50% further in
}
}
void shutdown()
{
CP_Sound_Free(mySound);
CP_Sound_Free(mySecondSound);
}
Related
- Main Page
- CP_Sound
- CP_Sound_Load()
- CP_Sound_LoadMusic()
- CP_Sound_Play()
- CP_Sound_PlayMusic()
- CP_Sound_PlayAdvanced()
- CP_Sound_Free()
- CP_Sound_PauseAll()
- CP_Sound_PauseGroup()
- CP_Sound_ResumeAll()
- CP_Sound_ResumeGroup()
- CP_Sound_StopAll()
- CP_Sound_StopGroup()
- CP_Sound_SetGroupVolume()
- CP_Sound_GetGroupVolume()
- CP_Sound_SetGroupPitch()
- CP_Sound_GetGroupPitch()