SVN-Revision: 2418
[supertux.git] / src / audio / musicref.cpp
1 //  $Id: musicref.cpp 2168 2004-11-24 14:10:27Z matzebraun $
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2000 Bill Kendrick <bill@newbreedsoftware.com>
5 //  Copyright (C) 2004 Matthias Braun <matze@braunis.de>
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 #include <config.h>
21
22 #include "audio/musicref.h"
23
24 MusicRef::MusicRef()
25   : music(0)
26 {
27 }
28
29 MusicRef::MusicRef(SoundManager::MusicResource* newmusic)
30   : music(newmusic)
31 {
32   if(music)
33     music->refcount++;
34 }
35
36 MusicRef::~MusicRef()
37 {
38   if(music) {
39     music->refcount--;
40     if(music->refcount == 0)
41       music->manager->free_music(music);
42   }
43 }
44
45 MusicRef::MusicRef(const MusicRef& other)
46   : music(other.music)
47 {
48   if(music)
49     music->refcount++;
50 }
51
52 MusicRef&
53 MusicRef::operator =(const MusicRef& other)
54 {
55   SoundManager::MusicResource* oldres = music;
56   music = other.music;
57   if(music)
58     music->refcount++;
59   if(oldres) {
60     oldres->refcount--;
61     if(oldres->refcount == 0)
62       music->manager->free_music(music);
63   }
64
65   return *this;
66 }
67