fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / audio / stream_sound_source.hpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #ifndef __STREAM_SOUND_SOURCE_H__
21 #define __STREAM_SOUND_SOURCE_H__
22
23 #include <stdio.h>
24 #include <SDL.h>
25 #include "openal_sound_source.hpp"
26
27 class SoundFile;
28
29 class StreamSoundSource : public OpenALSoundSource
30 {
31 public:
32   StreamSoundSource();
33   virtual ~StreamSoundSource();
34
35   void set_sound_file(SoundFile* file);
36
37   enum FadeState { NoFading, FadingOn, FadingOff };
38
39   void set_fading(FadeState state, float fadetime);
40   FadeState get_fade_state() const
41   {
42     return fade_state;
43   }
44   void update();
45
46   void set_looping(bool looping)
47   {
48     this->looping = looping;
49   }
50   bool get_looping() const
51   {
52     return looping;
53   }
54
55 private:
56   static const size_t STREAMBUFFERSIZE = 1024 * 500;
57   static const size_t STREAMFRAGMENTS = 5;
58   static const size_t STREAMFRAGMENTSIZE
59     = STREAMBUFFERSIZE / STREAMFRAGMENTS;
60
61   bool fillBufferAndQueue(ALuint buffer);
62   SoundFile* file;
63   ALuint buffers[STREAMFRAGMENTS];
64
65   FadeState fade_state;
66   float fade_start_time;
67   float fade_time;
68   bool looping;
69 };
70
71 #endif