4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
10 /** @file os2_m.cpp Music playback on OS/2. */
12 #include "../stdafx.h"
13 #include "../openttd.h"
24 #include "../safeguards.h"
26 /**********************
28 **********************/
30 /* Interesting how similar the MCI API in OS/2 is to the Win32 MCI API,
31 * eh? Anyone would think they both came from the same place originally! ;)
35 * Send a midi command.
36 * @param cmd The command to send.
37 * @return The result of sending it.
39 static long CDECL
MidiSendCommand(const char *cmd
, ...)
44 vseprintf(buf
, lastof(buf
), cmd
, va
);
46 return mciSendString(buf
, NULL
, 0, NULL
, 0);
49 /** OS/2's music player's factory. */
50 static FMusicDriver_OS2 iFMusicDriver_OS2
;
52 void MusicDriver_OS2::PlaySong(const char *filename
)
54 MidiSendCommand("close all");
56 if (MidiSendCommand("open %s type sequencer alias song", filename
) != 0) {
60 MidiSendCommand("play song from 0");
63 void MusicDriver_OS2::StopSong()
65 MidiSendCommand("close all");
68 void MusicDriver_OS2::SetVolume(byte vol
)
70 MidiSendCommand("set song audio volume %d", ((vol
/127)*100));
73 bool MusicDriver_OS2::IsSongPlaying()
76 mciSendString("status song mode", buf
, sizeof(buf
), NULL
, 0);
77 return strcmp(buf
, "playing") == 0 || strcmp(buf
, "seeking") == 0;
80 const char *MusicDriver_OS2::Start(const char * const *parm
)
85 void MusicDriver_OS2::Stop()
87 MidiSendCommand("close all");