(svn r14909) -Codechange: Remove global option for the extmidi driver and make it a driver parameter with the name cmd instead. This means if you have an "extmidi = ..." line in your config you must change it to "musicdriver = extmidi:cmd=...", in the [misc] section.

This commit is contained in:
peter1138
2009-01-08 12:05:14 +00:00
parent 91866a381d
commit 8591ff41cc
4 changed files with 12 additions and 8 deletions

View File

@@ -17,10 +17,18 @@
#include <sys/stat.h>
#include <errno.h>
#ifndef EXTERNAL_PLAYER
#define EXTERNAL_PLAYER "timidity"
#endif
static FMusicDriver_ExtMidi iFMusicDriver_ExtMidi;
const char* MusicDriver_ExtMidi::Start(const char* const * parm)
{
const char *command = GetDriverParam(parm, "cmd");
if (StrEmpty(command)) command = EXTERNAL_PLAYER;
this->command = strdup(command);
this->song[0] = '\0';
this->pid = -1;
return NULL;
@@ -28,6 +36,7 @@ const char* MusicDriver_ExtMidi::Start(const char* const * parm)
void MusicDriver_ExtMidi::Stop()
{
free(command);
this->song[0] = '\0';
this->DoStop();
}
@@ -68,9 +77,9 @@ void MusicDriver_ExtMidi::DoPlay()
d = open("/dev/null", O_RDONLY);
if (d != -1 && dup2(d, 1) != -1 && dup2(d, 2) != -1) {
#if defined(MIDI_ARG)
execlp(msf.extmidi, "extmidi", MIDI_ARG, this->song, (char*)0);
execlp(this->command, "extmidi", MIDI_ARG, this->song, (char*)0);
#else
execlp(msf.extmidi, "extmidi", this->song, (char*)0);
execlp(this->command, "extmidi", this->song, (char*)0);
#endif
}
_exit(1);

View File

@@ -9,6 +9,7 @@
class MusicDriver_ExtMidi: public MusicDriver {
private:
char *command;
char song[MAX_PATH];
pid_t pid;