]> git.mxchange.org Git - simgear.git/blobdiff - simgear/sound/openal_test3.cxx
Reset: allow re-init of Nasal Ghosts.
[simgear.git] / simgear / sound / openal_test3.cxx
index 9377dcef6c013f0d1ffceec348de83faeb0ee79a..bbf5b089633aa078aaa92a0db48d10168fbd47df 100644 (file)
 #include <simgear/misc/sg_path.hxx>
 
 #include "soundmgr_openal.hxx"
-
+#include "sample_group.hxx"
+#include "sample_openal.hxx"
 
 int main( int argc, char *argv[] ) {
     SGSampleGroup *sgr;
     SGSoundMgr *smgr;
+    SGGeod pos;
 
     smgr = new SGSoundMgr;
 
@@ -24,8 +26,10 @@ int main( int argc, char *argv[] ) {
     smgr->set_volume(0.9);
     smgr->activate();
 
+    SGPath srcDir(SRC_DIR);
+
     printf("default position and orientation\n");
-    SGSoundSample *sample1 = new SGSoundSample( SRC_DIR, "jet.wav" );
+    SGSoundSample *sample1 = new SGSoundSample("jet.wav", srcDir);
     sample1->set_volume(1.0);
     sample1->set_pitch(1.0);
     sample1->play_looped();
@@ -38,8 +42,9 @@ int main( int argc, char *argv[] ) {
     sleep(1);
 
     printf("source at lat,lon = (10,-10), listener at (9.99,-9.99)\n");
-    sample1->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(10,-10)) );
-    smgr->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(9.99,-9.99)) );
+    pos = SGGeod::fromDeg(9.99,-9.99);
+    sgr->set_position_geod( SGGeod::fromDeg(10,-10) );
+    smgr->set_position( SGVec3d::fromGeod(pos), pos );
     sample1->play_looped();
     smgr->update(1.0);
     printf("playing sample\n");