I'm trying to develop a game engine using pike. But there is a big problem that I can't play any sound file using pike and SDL.
I write a simple test script trying to play a .wav sound file, but it exit and nothing happened when I run this program.
Here is my code, where should I check?
int main () { SDL.init( SDL.INIT_AUDIO ); SDL.open_audio ( 22050 , SDL.AUDIO_S16 , 2 , 4096 );
SDL.Music music = SDL.Music ( "test.wav" );
music->pause(); music->play ( 0 );
SDL.quit();
return 0; }
Are SDL.Music->play(0) or SDL.quit() blocking? If not it might be a good idéa to wait for the sound to finish playing.
(I've never used SDL.Music, and I don't know if it supports Mix_HookMusicFinished in some way.)
With this little code it might be an idea to do the same in C and see if that works to begin with, if you are not scared of look into it. A quick copy and paste from SDL.cmod gives me the following code:
MixMusix *music;
/* SDL.init( SDL.INIT_AUDIO ); */ SDL_Init( SDL_INIT_AUDIO );
/* SDL.open_audio ( 22050 , SDL.AUDIO_S16 , 2 , 4096 ); */ SDL_InitSubSystem( SDL_INIT_AUDIO ); Mix_OpenAudio( 22050, SDL_AUDIO_S16, 2, 4096 );
/* SDL.Music music = SDL.Music ( "test.wav" ); */ music = Mix_LoadMUS("test.wav");
/* music->pause(); */ Mix_PauseMusic();
/* music->play ( 0 ); */ Mix_PlayMusic(music, 0);
/* SDL.quit(); */ SDL_Quit();
pike-devel@lists.lysator.liu.se