]> git.mxchange.org Git - simgear.git/blob - simgear/sound/sample_queue.cxx
Remove redundant inclusion of math/SGMath.hxx
[simgear.git] / simgear / sound / sample_queue.cxx
1 // queue.cxx -- Audio sample encapsulation class
2 // 
3 // Written by Curtis Olson, started April 2004.
4 // Modified to match the new SoundSystem by Erik Hofman, October 2009
5 //
6 // Copyright (C) 2004  Curtis L. Olson - http://www.flightgear.org/~curt
7 // Copyright (C) 2009 Erik Hofman <erik@ehofman.com>
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software Foundation,
21 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23 // $Id$
24
25 #ifdef HAVE_CONFIG_H
26 #  include <simgear_config.h>
27 #endif
28
29 #include <cstdlib>      // rand()
30 #include <cstring>
31
32 #include <simgear/debug/logstream.hxx>
33 #include <simgear/structure/exception.hxx>
34 #include <simgear/misc/sg_path.hxx>
35
36 #include "soundmgr_openal.hxx"
37 #include "sample_queue.hxx"
38
39
40 //
41 // SGSampleQueue
42 //
43
44 // empty constructor
45 SGSampleQueue::SGSampleQueue( int freq, int format ) :
46     _absolute_pos(SGVec3d::zeros()),
47     _relative_pos(SGVec3d::zeros()),
48     _direction(SGVec3d::zeros()),
49     _velocity(SGVec3f::zeros()),
50     _orientation(SGQuatd::zeros()),
51     _orivec(SGVec3f::zeros()),
52     _base_pos(SGVec3d::zeros()),
53     _rotation(SGQuatd::zeros()),
54     _refname(random_string()),
55     _format(format),
56     _freq(freq),
57     _valid_source(false),
58     _source(SGSoundMgr::NO_SOURCE),
59     _inner_angle(360.0),
60     _outer_angle(360.0),
61     _outer_gain(0.0),
62     _pitch(1.0),
63     _volume(1.0),
64     _master_volume(1.0),
65     _reference_dist(500.0),
66     _max_dist(3000.0),
67     _loop(false),
68     _playing(false),
69     _changed(true)
70 {
71     _buffers.clear();
72 }
73
74 SGSampleQueue::~SGSampleQueue() {
75     stop();
76 }
77
78 void SGSampleQueue::stop()
79 {
80     ALint num;
81     alGetSourcei(_source, AL_BUFFERS_PROCESSED, &num);
82     for (int i=0; i<num; i++) {
83         ALuint buffer;
84         alSourceUnqueueBuffers(_source, 1, &buffer);
85         alDeleteBuffers(1, &buffer);
86     }
87     _buffers.clear();
88
89     _playing = false;
90     _changed = true;
91 }
92
93 void SGSampleQueue::add( const void* smp_data, size_t len )
94 {
95     const ALvoid *data = (const ALvoid *)smp_data;
96     ALuint buffer;
97     ALint num;
98
99     if ( _valid_source )
100     {
101        alGetSourcei(_source, AL_BUFFERS_PROCESSED, &num);
102        if (num > 1) {
103            alSourceUnqueueBuffers(_source, 1, &buffer);
104        } else {
105            alGenBuffers(1, &buffer);
106        }
107        alBufferData(buffer, _format, data, len, _freq);
108     }
109     else
110     {
111         alGenBuffers(1, &buffer);
112         alBufferData(buffer, _format, data, len, _freq);
113         _buffers.push_back(buffer);
114     }
115 }
116
117 void SGSampleQueue::set_source( unsigned int sid )
118 {
119     _source = sid;
120     _valid_source = true;
121     _changed = true;
122
123     ALuint num = _buffers.size();
124     for (unsigned int i=0; i < num; i++)
125     {
126         ALuint buffer = _buffers[i];
127         alSourceQueueBuffers(_source, 1, &buffer);
128     }
129     _buffers.clear();
130
131 }
132
133 string SGSampleQueue::random_string() {
134       static const char *r = "0123456789abcdefghijklmnopqrstuvwxyz"
135                              "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
136       string rstr = "Queued sample: ";
137       for (int i=0; i<10; i++) {
138           rstr.push_back( r[rand() % strlen(r)] );
139       }
140
141       return rstr;
142 }