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