本文整理汇总了C++中Playlist::playSong方法的典型用法代码示例。如果您正苦于以下问题:C++ Playlist::playSong方法的具体用法?C++ Playlist::playSong怎么用?C++ Playlist::playSong使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Playlist
的用法示例。
在下文中一共展示了Playlist::playSong方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: UpdaterThread
static int UpdaterThread(void* data)
{
Playlist* playlist = (Playlist*)data;
int lWaitTime = 1000 / 30; // 30times /second
while (playlist->mThreadAlive) {
if (playlist->mSource) {
if (!OAL_Source_IsPlaying(playlist->mSource)) {
++playlist->mCurrentSong;
if (playlist->mCurrentSong == playlist->mSongs.end()) {
playlist->mCurrentSong = playlist->mSongs.begin();
}
playlist->playSong();
}
}
SDL_Delay(lWaitTime);
}
return 0;
}
示例2: main
int main (int argc, const char *const argv[])
{
if ( argc <= 1 )
{
printf ("Usage : %s \"sample1.ogg\" [\"sample2.ogg\" \"sample3.ogg\" ...]\n", argv[0]);
printf ("\tThe application will simply loop through all of the files\n\n");
return 1;
}
Playlist* lPlaylist = new Playlist(argc - 1, &argv[1]);
printf ("Initializing OpenAL... ");
fflush(stdout);
OAL_SetupLogging(true,eOAL_LogOutput_File,eOAL_LogVerbose_High);
cOAL_Init_Params oal_parms;
oal_parms.mlStreamingBufferSize = 8192;
if (OAL_Init(oal_parms)==false)
{
printf ("Failed - Check your OpenAL installation\n");
return 1;
}
else
printf ("Success\n");
lPlaylist->playSong();
signal(SIGINT, sighandler);
while (!done) {
SDL_Delay(1000);
}
printf ("Cleaning up...\n");
delete lPlaylist;
lPlaylist = 0;
OAL_Close();
return 0;
}