]> git.mxchange.org Git - simgear.git/blob - simgear/sound/openal_test3.cxx
Pass current-dir down through XMLSound
[simgear.git] / simgear / sound / openal_test3.cxx
1 #include <stdio.h>
2 #ifdef _WIN32
3 #include <windows.h>
4 #define sleep(x) Sleep(x*1000)
5 #else
6 #include <unistd.h>
7 #endif
8
9 #include <simgear/debug/logstream.hxx>
10 #include <simgear/misc/sg_path.hxx>
11
12 #include "soundmgr_openal.hxx"
13
14
15 int main( int argc, char *argv[] ) {
16     SGSampleGroup *sgr;
17     SGSoundMgr *smgr;
18     SGGeod pos;
19
20     smgr = new SGSoundMgr;
21
22     smgr->bind();
23     smgr->init();
24     sgr = smgr->find("default", true);
25     smgr->set_volume(0.9);
26     smgr->activate();
27
28     printf("default position and orientation\n");
29     SGSoundSample *sample1 = new SGSoundSample( SRC_DIR, "jet.wav" );
30     sample1->set_volume(1.0);
31     sample1->set_pitch(1.0);
32     sample1->play_looped();
33     sgr->add(sample1, "sound1");
34     smgr->update(1.0);
35     printf("playing sample\n");
36     sleep(3);
37     sample1->stop();
38     smgr->update(3.0);
39     sleep(1);
40
41     printf("source at lat,lon = (10,-10), listener at (9.99,-9.99)\n");
42     pos = SGGeod::fromDeg(9.99,-9.99);
43     sample1->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(10,-10)) );
44     smgr->set_position( SGVec3d::fromGeod(pos), pos );
45     sample1->play_looped();
46     smgr->update(1.0);
47     printf("playing sample\n");
48     sleep(3);
49     sample1->stop();
50     smgr->update(3.0);
51     sleep(1);
52
53     sgr->remove("sound1");
54     smgr->unbind();
55     sleep(2);
56     delete smgr;
57 }