summaryrefslogtreecommitdiff
path: root/src/music/libtimidity.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/music/libtimidity.h')
-rw-r--r--src/music/libtimidity.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/music/libtimidity.h b/src/music/libtimidity.h
deleted file mode 100644
index badb05bab..000000000
--- a/src/music/libtimidity.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* $Id$ */
-
-/*
- * This file is part of OpenTTD.
- * OpenTTD 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, version 2.
- * OpenTTD 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 OpenTTD. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/** @file libtimidity.h Base for LibTimidity music playback. */
-
-#ifndef MUSIC_LIBTIMIDITY_H
-#define MUSIC_LIBTIMIDITY_H
-
-#include "music_driver.hpp"
-
-/** Music driver making use of libtimidity. */
-class MusicDriver_LibTimidity : public MusicDriver {
-public:
- /* virtual */ const char *Start(const char * const *param);
-
- /* virtual */ void Stop();
-
- /* virtual */ void PlaySong(const MusicSongInfo &song);
-
- /* virtual */ void StopSong();
-
- /* virtual */ bool IsSongPlaying();
-
- /* virtual */ void SetVolume(byte vol);
- /* virtual */ const char *GetName() const { return "libtimidity"; }
-};
-
-/** Factory for the libtimidity driver. */
-class FMusicDriver_LibTimidity : public DriverFactoryBase {
-public:
- FMusicDriver_LibTimidity() : DriverFactoryBase(Driver::DT_MUSIC, 5, "libtimidity", "LibTimidity MIDI Driver") {}
- /* virtual */ Driver *CreateInstance() const { return new MusicDriver_LibTimidity(); }
-};
-
-#endif /* MUSIC_LIBTIMIDITY_H */