2007-02-18 22:07:08 +00:00
|
|
|
/* $Id$ */
|
2007-02-16 09:50:28 +00:00
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file libtimidity.h Base for LibTimidity music playback. */
|
|
|
|
|
2007-02-16 09:50:28 +00:00
|
|
|
#ifndef MUSIC_LIBTIMIDITY_H
|
|
|
|
#define MUSIC_LIBTIMIDITY_H
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
#include "music_driver.hpp"
|
2007-02-16 09:50:28 +00:00
|
|
|
|
2011-05-02 16:14:23 +00:00
|
|
|
/** Music driver making use of libtimidity. */
|
2007-07-05 12:23:54 +00:00
|
|
|
class MusicDriver_LibTimidity: public MusicDriver {
|
|
|
|
public:
|
|
|
|
/* virtual */ const char *Start(const char * const *param);
|
|
|
|
|
|
|
|
/* virtual */ void Stop();
|
|
|
|
|
|
|
|
/* virtual */ void PlaySong(const char *filename);
|
|
|
|
|
|
|
|
/* virtual */ void StopSong();
|
|
|
|
|
|
|
|
/* virtual */ bool IsSongPlaying();
|
|
|
|
|
|
|
|
/* virtual */ void SetVolume(byte vol);
|
2009-09-05 21:26:51 +00:00
|
|
|
/* virtual */ const char *GetName() const { return "libtimidity"; }
|
2007-07-05 12:23:54 +00:00
|
|
|
};
|
|
|
|
|
2011-05-02 16:14:23 +00:00
|
|
|
/** Factory for the libtimidity driver. */
|
2007-07-05 12:23:54 +00:00
|
|
|
class FMusicDriver_LibTimidity: public MusicDriverFactory<FMusicDriver_LibTimidity> {
|
|
|
|
public:
|
2007-07-07 20:31:23 +00:00
|
|
|
static const int priority = 5;
|
2007-07-05 12:23:54 +00:00
|
|
|
/* virtual */ const char *GetName() { return "libtimidity"; }
|
|
|
|
/* virtual */ const char *GetDescription() { return "LibTimidity MIDI Driver"; }
|
|
|
|
/* virtual */ Driver *CreateInstance() { return new MusicDriver_LibTimidity(); }
|
|
|
|
};
|
2007-02-16 09:50:28 +00:00
|
|
|
|
|
|
|
#endif /* MUSIC_LIBTIMIDITY_H */
|