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 os2_m.h Base for OS2 music playback. */
|
|
|
|
|
2005-07-23 16:08:05 +00:00
|
|
|
#ifndef MUSIC_OS2_H
|
|
|
|
#define MUSIC_OS2_H
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
#include "music_driver.hpp"
|
2005-07-23 16:08:05 +00:00
|
|
|
|
2011-05-02 16:14:23 +00:00
|
|
|
/** OS/2's music player. */
|
2013-11-25 14:30:22 +00:00
|
|
|
class MusicDriver_OS2 : public MusicDriver {
|
2007-07-05 12:23:54 +00:00
|
|
|
public:
|
2020-05-17 21:32:08 +00:00
|
|
|
const char *Start(const StringList ¶m) override;
|
2007-07-05 12:23:54 +00:00
|
|
|
|
2019-03-03 22:25:13 +00:00
|
|
|
void Stop() override;
|
2007-07-05 12:23:54 +00:00
|
|
|
|
2019-03-03 22:25:13 +00:00
|
|
|
void PlaySong(const MusicSongInfo &song) override;
|
2007-07-05 12:23:54 +00:00
|
|
|
|
2019-03-03 22:25:13 +00:00
|
|
|
void StopSong() override;
|
2007-07-05 12:23:54 +00:00
|
|
|
|
2019-03-03 22:25:13 +00:00
|
|
|
bool IsSongPlaying() override;
|
2007-07-05 12:23:54 +00:00
|
|
|
|
2019-03-03 22:25:13 +00:00
|
|
|
void SetVolume(byte vol) override;
|
|
|
|
const char *GetName() const override { return "os2"; }
|
2007-07-05 12:23:54 +00:00
|
|
|
};
|
|
|
|
|
2011-05-02 16:14:23 +00:00
|
|
|
/** Factory for OS/2's music player. */
|
2013-11-25 14:26:46 +00:00
|
|
|
class FMusicDriver_OS2 : public DriverFactoryBase {
|
2007-07-05 12:23:54 +00:00
|
|
|
public:
|
2013-11-25 14:26:46 +00:00
|
|
|
FMusicDriver_OS2() : DriverFactoryBase(Driver::DT_MUSIC, 10, "os2", "OS/2 Music Driver") {}
|
2019-03-03 22:25:13 +00:00
|
|
|
Driver *CreateInstance() const override { return new MusicDriver_OS2(); }
|
2007-07-05 12:23:54 +00:00
|
|
|
};
|
2005-07-23 16:08:05 +00:00
|
|
|
|
2007-02-23 12:56:10 +00:00
|
|
|
#endif /* MUSIC_OS2_H */
|