4a74244502339394893fc54f68b42737646adf9a
[supertux.git] / lib / audio / sound_manager.h
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2004 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 SUPERTUX_SOUND_MANAGER_H
21 #define SUPERTUX_SOUND_MANAGER_H
22
23 #include <string>
24 #include <map>
25
26 #include "SDL_mixer.h"
27
28 #include "math/vector.h"
29
30 class MusicRef;
31 class MovingObject;
32
33 /** This class handles all sounds that are played
34  */
35 class SoundManager
36 {
37 public:
38   SoundManager();
39   ~SoundManager();
40
41   void play_sound(Mix_Chunk* sound);
42   void play_sound(Mix_Chunk* sound, const Vector& pos, const Vector& pos2);
43   void play_sound(Mix_Chunk* sound, const MovingObject* object, const Vector& pos);
44
45   MusicRef load_music(const std::string& file);
46   bool exists_music(const std::string& filename);
47   
48   void play_music(const MusicRef& music, int loops = -1);
49   void halt_music();
50
51   void enable_music(bool enable);
52
53 private:
54   // music part
55   friend class MusicRef;
56   class MusicResource
57   {
58   public:
59     ~MusicResource();
60
61     SoundManager* manager;
62     Mix_Music* music;
63     int refcount;
64   };
65
66   void free_music(MusicResource* music);
67
68   std::map<std::string, MusicResource> musics;
69   MusicResource* current_music;
70   bool music_enabled;
71 };
72
73 #endif /*SUPERTUX_SOUND_MANAGER_H*/
74