forgot more stuff
[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
21 #include <config.h>
22
23 #include "audio/musicref.h"
24
25 using namespace SuperTux;
26
27 MusicRef::MusicRef()
28   : music(0)
29 {
30 }
31
32 MusicRef::MusicRef(SoundManager::MusicResource* newmusic)
33   : music(newmusic)
34 {
35   if(music)
36     music->refcount++;
37 }
38
39 MusicRef::~MusicRef()
40 {
41   if(music) {
42     music->refcount--;
43     if(music->refcount == 0)
44       music->manager->free_music(music);
45   }
46 }
47
48 MusicRef::MusicRef(const MusicRef& other)
49   : music(other.music)
50 {
51   if(music)
52     music->refcount++;
53 }
54
55 MusicRef&
56 MusicRef::operator =(const MusicRef& other)
57 {
58   SoundManager::MusicResource* oldres = music;
59   music = other.music;
60   if(music)
61     music->refcount++;
62   if(oldres) {
63     oldres->refcount--;
64     if(oldres->refcount == 0)
65       music->manager->free_music(music);
66   }
67
68   return *this;
69 }
70