summaryrefslogtreecommitdiffstats
path: root/pacman-c++/audio.cpp
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-13 03:49:23 +0200
committermanuel <manuel@mausz.at>2011-04-13 03:49:23 +0200
commit646c9849bc02c64398d5490b633132c0a3291441 (patch)
tree75035a88d3fe984d87c40e507c9a35c2382687b9 /pacman-c++/audio.cpp
parent5305fd513b105245059f55d82fc6210ad99d1d14 (diff)
downloadfoop-646c9849bc02c64398d5490b633132c0a3291441.tar.gz
foop-646c9849bc02c64398d5490b633132c0a3291441.tar.bz2
foop-646c9849bc02c64398d5490b633132c0a3291441.zip
adding google sounds
Diffstat (limited to 'pacman-c++/audio.cpp')
-rw-r--r--pacman-c++/audio.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/pacman-c++/audio.cpp b/pacman-c++/audio.cpp
index 8726899..6365a15 100644
--- a/pacman-c++/audio.cpp
+++ b/pacman-c++/audio.cpp
@@ -197,6 +197,17 @@ void AudioPlayer::setLoop(Sound::Type sound)
197 setLoop(AudioManager::self()->sound(sound)); 197 setLoop(AudioManager::self()->sound(sound));
198} 198}
199 199
200void AudioPlayer::play()
201{
202 Phonon::MediaObject::play();
203}
204
205void AudioPlayer::play(Sound::Type sound)
206{
207 setCurrentSource(Phonon::MediaSource(AudioManager::self()->sound(sound)));
208 play();
209}
210
200/* this is a simple hack to check if phonon can actually play sounds.. */ 211/* this is a simple hack to check if phonon can actually play sounds.. */
201void AudioPlayer::test(QFile *testsound) 212void AudioPlayer::test(QFile *testsound)
202{ 213{