aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound/protracker.h
diff options
context:
space:
mode:
authorSven Hesse2009-03-19 23:40:59 +0000
committerSven Hesse2009-03-19 23:40:59 +0000
commit51109a5cfcc8d9f817813499c39f243016aa170f (patch)
tree9b6fe1c1095f4fc3b2eb83c7438aca9d18936892 /engines/gob/sound/protracker.h
parent7077ea36e0a805c356e7b7492fce6945854f95bb (diff)
downloadscummvm-rg350-51109a5cfcc8d9f817813499c39f243016aa170f.tar.gz
scummvm-rg350-51109a5cfcc8d9f817813499c39f243016aa170f.tar.bz2
scummvm-rg350-51109a5cfcc8d9f817813499c39f243016aa170f.zip
Adding simple support for protracker playback
svn-id: r39550
Diffstat (limited to 'engines/gob/sound/protracker.h')
-rw-r--r--engines/gob/sound/protracker.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/engines/gob/sound/protracker.h b/engines/gob/sound/protracker.h
new file mode 100644
index 0000000000..6270530427
--- /dev/null
+++ b/engines/gob/sound/protracker.h
@@ -0,0 +1,52 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#ifndef GOB_SOUND_PROTRACKER_H
+#define GOB_SOUND_PROTRACKER_H
+
+#include "sound/mixer.h"
+#include "sound/audiostream.h"
+#include "sound/mods/protracker.h"
+
+namespace Gob {
+
+class Protracker {
+public:
+ Protracker(Audio::Mixer &mixer);
+ ~Protracker();
+
+ bool play(const char *fileName);
+ void stop();
+
+private:
+ Audio::Mixer *_mixer;
+
+ Audio::AudioStream *_protrackerStream;
+ Audio::SoundHandle _handle;
+};
+
+} // End of namespace Gob
+
+#endif // GOB_SOUND_PROTRACKER_H