Generated SuperTux libtool library containing more general source, that could prove...
[supertux.git] / lib / audio / musicref.cpp
1 //  $Id$
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 "audio/musicref.h"
22
23 MusicRef::MusicRef()
24   : music(0)
25 {
26 }
27
28 MusicRef::MusicRef(SoundManager::MusicResource* newmusic)
29   : music(newmusic)
30 {
31   if(music)
32     music->refcount++;
33 }
34
35 MusicRef::~MusicRef()
36 {
37   if(music) {
38     music->refcount--;
39     if(music->refcount == 0)
40       music->manager->free_music(music);
41   }
42 }
43
44 MusicRef::MusicRef(const MusicRef& other)
45   : music(other.music)
46 {
47   if(music)
48     music->refcount++;
49 }
50
51 MusicRef&
52 MusicRef::operator =(const MusicRef& other)
53 {
54   SoundManager::MusicResource* oldres = music;
55   music = other.music;
56   if(music)
57     music->refcount++;
58   if(oldres) {
59     oldres->refcount--;
60     if(oldres->refcount == 0)
61       music->manager->free_music(music);
62   }
63
64   return *this;
65 }
66