]> git.mxchange.org Git - simgear.git/blob - simgear/sound/openal_test4.cxx
Remove OpenVG dependency from header file
[simgear.git] / simgear / sound / openal_test4.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 #include "sample_group.hxx"
14 #include "sample_openal.hxx"
15
16 int main( int argc, char *argv[] ) {
17     SGSampleQueue *squeue;
18     SGSampleGroup *sgr;
19     SGSoundMgr *smgr;
20     SGGeod pos;
21
22     smgr = new SGSoundMgr;
23
24     smgr->bind();
25     smgr->select_device("OSS Default");
26     smgr->init();
27     sgr = smgr->find("default", true);
28     smgr->set_volume(0.9);
29     smgr->activate();
30
31
32     void *data;
33     size_t len;
34     int freq, fmt;
35     std::string file = SRC_DIR"/jet.wav";
36     smgr->load(file, &data, &fmt, &len, &freq);
37
38     squeue = new SGSampleQueue( freq, fmt );
39     sgr->add(squeue, "queue");
40
41     squeue->add(  data, len );
42     squeue->add(  data, len );
43     squeue->play();
44     printf("playing queue\n");
45
46     smgr->update(1.0);
47     sleep(10);
48     smgr->update(10.0);
49
50     printf("source at lat,lon = (10,-10), listener at (9.99,-9.99)\n");
51     pos = SGGeod::fromDeg(9.99,-9.99);
52     squeue->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(10,-10)) );
53     smgr->set_position( SGVec3d::fromGeod(pos), pos );
54
55     squeue->add(  data, len );
56     squeue->add(  data, len );
57     squeue->play( true ); // play looped
58     printf("playing queue\n");
59
60     smgr->update(1.0);
61     sleep(10);
62     smgr->update(10.0);
63
64     squeue->stop();
65     smgr->update(1.0);
66     sleep(1);
67
68     sgr->remove("queue");
69     smgr->unbind();
70     sleep(2);
71
72     delete smgr;
73 }