]> git.mxchange.org Git - simgear.git/blob - simgear/sound/sample_group.hxx
Small code reorganization, mostly removing unneeded code
[simgear.git] / simgear / sound / sample_group.hxx
1 // sample_group.hxx -- Manage a group of samples relative to a base position
2 //
3 // Written for the new SoundSystem by Erik Hofman, October 2009
4 //
5 // Copyright (C) 2009 Erik Hofman <erik@ehofman.com>
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software Foundation,
19 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 /**
24  * \file sample_group.hxx
25  * sample groups contain all sounds related to one specific object and
26  * have to be added to the sound manager, otherwise they won't get processed.
27  */
28
29 #ifndef _SG_SAMPLE_GROUP_OPENAL_HXX
30 #define _SG_SAMPLE_GROUP_OPENAL_HXX 1
31
32 #ifndef __cplusplus
33 # error This library requires C++
34 #endif
35
36 #if defined(__APPLE__)
37 # include <OpenAL/al.h>
38 #elif defined(OPENALSDK)
39 # include <al.h>
40 #else
41 # include <AL/al.h>
42 #endif
43
44 #include <string>
45 #include <vector>
46 #include <map>
47
48 #include <simgear/compiler.h>
49 #include <simgear/math/SGMath.hxx>
50 #include <simgear/structure/SGReferenced.hxx>
51 #include <simgear/structure/SGSharedPtr.hxx>
52 #include <simgear/structure/exception.hxx>
53
54 #include "sample_openal.hxx"
55
56 using std::map;
57 using std::string;
58
59 typedef map < string, SGSharedPtr<SGSoundSample> > sample_map;
60 typedef sample_map::iterator sample_map_iterator;
61 typedef sample_map::const_iterator const_sample_map_iterator;
62
63 class SGSoundMgr;
64
65 class SGSampleGroup : public SGReferenced
66 {
67 public:
68
69     /**
70      * Empty constructor for class encapsulation.
71      * Note: The sample group should still be activated before use
72      */
73     SGSampleGroup ();
74
75     /**
76      * Constructor
77      * Register this sample group at the sound manager using refname
78      * Note: The sample group should still be activated before use
79      * @param smgr Pointer to a pre-initialized sound manager class
80      * @param refname Name of this group for reference purposes.
81      */
82     SGSampleGroup ( SGSoundMgr *smgr, const string &refname );
83
84     /**
85      * Destructor
86      */
87     ~SGSampleGroup ();
88
89     /**
90      * Set the status of this sample group to active.
91      */
92     inline void activate() { _active = true; }
93
94     /**
95      * Update function.
96      * Call this function periodically to update the OpenAL state of all
97      * samples associated with this class. None op the configuration changes
98      * take place without a call to this function.
99      */
100     virtual void update (double dt);
101
102     /**
103      * Register an audio sample to this group.
104      * @param sound Pointer to a pre-initialized audio sample
105      * @param refname Name of this audio sample for reference purposes
106      * @return return true if successful
107      */
108     bool add( SGSharedPtr<SGSoundSample> sound, const string& refname );
109
110     /**
111      * Remove an audio sample from this group.
112      * @param refname Reference name of the audio sample to remove
113      * @return return true if successful
114      */
115     bool remove( const string& refname );
116
117     /**
118      * Test if a specified audio sample is registered at this sample group
119      * @param refname Reference name of the audio sample to test for
120      * @return true if the specified audio sample exists
121      */
122     bool exists( const string& refname );
123
124     /**
125      * Find a specified audio sample in this sample group
126      * @param refname Reference name of the audio sample to find
127      * @return A pointer to the SGSoundSample
128      */
129     SGSoundSample *find( const string& refname );
130
131     /**
132      * Request to stop playing all audio samples until further notice.
133      */
134     void suspend();
135
136     /**
137      * Request to resume playing all audio samples.
138      */
139     void resume();
140
141     /**
142      * Request to start playing the refered audio sample.
143      * @param refname Reference name of the audio sample to start playing
144      * @param looping Define if the sound should loop continuously
145      * @return true if the audio sample exsists and is scheduled for playing
146      */
147     bool play( const string& refname, bool looping );
148     
149     /**
150      * Request to start playing the refered audio sample looping.
151      * @param refname Reference name of the audio sample to start playing
152      * @return true if the audio sample exsists and is scheduled for playing
153      */
154     inline bool play_looped( const string& refname ) {
155         return play( refname, true );
156     }
157
158     /**
159      * Request to start playing the refered audio sample once.
160      * @param refname Reference name of the audio sample to start playing
161      * @return true if the audio sample exsists and is scheduled for playing
162      */
163     inline bool play_once( const string& refname ) {
164         return play( refname, false );
165     }
166
167     /**
168      * Test if a referenced sample is playing or not.
169      * @param refname Reference name of the audio sample to test for
170      * @return True of the specified sound is currently playing
171      */
172     bool is_playing( const string& refname );
173
174     /**
175      * Request to stop playing the refered audio sample.
176      * @param refname Reference name of the audio sample to stop
177      * @return true if the audio sample exsists and is scheduled to stop
178      */
179     bool stop( const string& refname );
180
181     /**
182      * Set the master volume for this sample group.
183      * @param vol Volume (must be between 0.0 and 1.0)
184      */
185     void set_volume( float vol );
186
187     /**
188      * Set the velocity vector of this sample group.
189      * This is in the local frame coordinate system; x=north, y=east, z=down
190      * @param vel Velocity vector 
191      */
192     void set_velocity( const SGVec3f& vel );
193
194     /**
195      * Set the position of this sample group.
196      * This is in the same coordinate system as OpenGL; y=up, z=back, x=right.
197      * @param pos Base position
198      */
199     void set_position_geod( const SGGeod& pos ) {
200         _position_geod = pos; _changed = true;
201     }
202
203     /**
204      * Set the orientation of this sample group.
205      * @param ori Quaternation containing the orientation information
206      */
207     void set_orientation( const SGQuatd& ori ) {
208         _orientation = ori; _changed = true;
209     }
210
211     /**
212      * Tie this sample group to the listener position, orientation and velocity
213      */
214     void tie_to_listener() { _tied_to_listener = true; }
215
216 protected:
217     SGSoundMgr *_smgr;
218     string _refname;
219     bool _active;
220
221 private:
222     bool _changed;
223     bool _pause;
224     float _volume;
225     bool _tied_to_listener;
226
227     SGVec3f _velocity;
228     SGQuatd _orientation;
229     SGGeod _position_geod;
230
231     sample_map _samples;
232     std::vector< SGSharedPtr<SGSoundSample> > _removed_samples;
233
234     bool testForALError(string s);
235     bool testForError(void *p, string s);
236
237     void update_pos_and_orientation();
238     void update_sample_config( SGSoundSample *sound );
239 };
240
241 #endif // _SG_SAMPLE_GROUP_OPENAL_HXX
242