]> git.mxchange.org Git - simgear.git/blobdiff - simgear/sound/openal_test2.cxx
Merge branch 'fredb/winfix'
[simgear.git] / simgear / sound / openal_test2.cxx
index 46a0f621ad640392e0158e9d3ded4d6110d84fd6..eb0da57e5007ccdd98a3b9c361da446156b3ee37 100644 (file)
@@ -1,10 +1,9 @@
 #include <stdio.h>
-#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 <windows.h>
+#define sleep(x) Sleep(x*1000)
 #else
-#include <unistd.h>    // sleep()
+#include <unistd.h>
 #endif
 
 #include <simgear/debug/logstream.hxx>
@@ -12,6 +11,7 @@ static unsigned int sleep(unsigned int secs) { return 0; }
 
 #include "soundmgr_openal.hxx"
 
+SGGeod pos = SGGeod::fromDeg(0,0);
 
 int main( int argc, char *argv[] ) {
     SGSampleGroup *sgr;
@@ -21,8 +21,10 @@ int main( int argc, char *argv[] ) {
 
     smgr->bind();
     smgr->init();
-    smgr->set_volume(0.9);
     sgr = smgr->find("default", true);
+    smgr->set_volume(0.9);
+    smgr->set_position( SGVec3d::fromGeod(pos), pos );
+    smgr->activate();
 
     SGSoundSample *sample1 = new SGSoundSample( SRC_DIR, "jet.wav" );
     sample1->set_volume(1.0);
@@ -87,11 +89,11 @@ int main( int argc, char *argv[] ) {
     sgr->stop("sound2");
     sgr->stop("sound3");
     sleep(0.5);
-    sgr->update(0.5);
+    smgr->update(0.5);
     sgr->stop("sound4");
     sgr->stop("sound5");
     sgr->stop("sound6");
-    sgr->update(1);
+    smgr->update(1);
     sleep(1);
 
     smgr->unbind();