X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fsound%2Fopenal_test2.cxx;h=a136c83e10173c8eee6e7776c2de6fc8a6c2004c;hb=6250f675db9fdd6f2aef7be43207cd0ac0b6baeb;hp=6ab355e36c9eea26ca0d8d4b95452116490ae616;hpb=af14d65a9856119264f987cec44fa8c37c26d6c6;p=simgear.git diff --git a/simgear/sound/openal_test2.cxx b/simgear/sound/openal_test2.cxx index 6ab355e3..a136c83e 100644 --- a/simgear/sound/openal_test2.cxx +++ b/simgear/sound/openal_test2.cxx @@ -1,10 +1,9 @@ #include -#ifdef __MINGW32__ -// This is broken, but allows the file to compile without a POSIX -// environment. -static unsigned int sleep(unsigned int secs) { return 0; } +#ifdef _WIN32 +#include +#define sleep(x) Sleep(x*1000) #else -#include // sleep() +#include #endif #include @@ -25,7 +24,9 @@ int main( int argc, char *argv[] ) { smgr->set_volume(0.9); smgr->activate(); - SGSoundSample *sample1 = new SGSoundSample( SRC_DIR, "jet.wav" ); + SGPath srcDir(SRC_DIR); + + SGSoundSample *sample1 = new SGSoundSample("jet.wav", srcDir); sample1->set_volume(1.0); sample1->set_pitch(1.0); sample1->play_looped(); @@ -34,7 +35,7 @@ int main( int argc, char *argv[] ) { printf("playing sample1\n"); sleep(1); - SGSoundSample *sample2 = new SGSoundSample( SRC_DIR, "jet.wav" ); + SGSoundSample *sample2 = new SGSoundSample("jet.wav", srcDir); sample2->set_volume(0.5); sample2->set_pitch(0.4); sample2->play_looped(); @@ -43,7 +44,7 @@ int main( int argc, char *argv[] ) { printf("playing sample2\n"); sleep(1); - SGSoundSample *sample3 = new SGSoundSample( SRC_DIR, "jet.wav" ); + SGSoundSample *sample3 = new SGSoundSample("jet.wav", srcDir); sample3->set_volume(0.5); sample3->set_pitch(0.8); sample3->play_looped(); @@ -52,7 +53,7 @@ int main( int argc, char *argv[] ) { printf("playing sample3\n"); sleep(1); - SGSoundSample *sample4 = new SGSoundSample( SRC_DIR, "jet.wav" ); + SGSoundSample *sample4 = new SGSoundSample("jet.wav", srcDir); sample4->set_volume(0.5); sample4->set_pitch(1.2); sample4->play_looped(); @@ -61,7 +62,7 @@ int main( int argc, char *argv[] ) { printf("playing sample4\n"); sleep(1); - SGSoundSample *sample5 = new SGSoundSample( SRC_DIR, "jet.wav" ); + SGSoundSample *sample5 = new SGSoundSample("jet.wav", srcDir); sample5->set_volume(0.5); sample5->set_pitch(1.6); sample5->play_looped(); @@ -70,7 +71,7 @@ int main( int argc, char *argv[] ) { printf("playing sample5\n"); sleep(1); - SGSoundSample *sample6 = new SGSoundSample( SRC_DIR, "jet.wav" ); + SGSoundSample *sample6 = new SGSoundSample("jet.wav", srcDir); sample6->set_volume(0.5); sample6->set_pitch(2.0); sample6->play_looped();