- bullet tweaks
[supertux.git] / src / music_manager.h
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2000 Bill Kendrick <bill@newbreedsoftware.com>
5 //  Copyright (C) 2004 Duong-Khang NGUYEN <neoneurone@users.sf.net>
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
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU 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
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 #ifndef HEADER_MUSIC_MANAGER_H
21 #define HEADER_MUSIC_MANAGER_H
22
23 #include <SDL_mixer.h>
24 #include <string>
25 #include <map>
26
27 class MusicRef;
28
29 /** This class manages a list of music resources and is responsible for playing
30  * the music.
31  */
32 class MusicManager
33 {
34 public:
35   MusicManager();
36   ~MusicManager();
37     
38   MusicRef load_music(const std::string& file);
39   bool exists_music(const std::string& filename);
40   
41   void play_music(const MusicRef& music);
42   void halt_music();
43
44   void enable_music(bool enable);
45
46 private:
47   friend class MusicRef;
48   class MusicResource
49   {
50   public:
51     ~MusicResource();
52
53     MusicManager* manager;
54     Mix_Music* music;
55     int refcount;
56   };
57
58   void free_music(MusicResource* music);
59
60   std::map<std::string, MusicResource> musics;
61   MusicResource* current_music;
62   bool music_enabled;
63 };
64
65 #endif
66