mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-29 17:39:09 +00:00
(svn r2088) - Fix: [ 1155158 ] Make extmidi command a config option in addition to the compile-time MIDI switch. Patch by macbaine.
This commit is contained in:
1
Makefile
1
Makefile
@@ -63,6 +63,7 @@
|
|||||||
# where it normally would print the revision number
|
# where it normally would print the revision number
|
||||||
# MIDI: if set, it will use it as custom path to midi player.
|
# MIDI: if set, it will use it as custom path to midi player.
|
||||||
# If unset, it will use the hardcoded path in the c code
|
# If unset, it will use the hardcoded path in the c code
|
||||||
|
# This can still be overriden by the music.extmidi openttd.cfg option.
|
||||||
# WITH_NETWORK: enable networking
|
# WITH_NETWORK: enable networking
|
||||||
# DEDICATED: allows compilation on UNIX without SDL. Useful for dedicated servers
|
# DEDICATED: allows compilation on UNIX without SDL. Useful for dedicated servers
|
||||||
#
|
#
|
||||||
|
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
#include "ttd.h"
|
#include "ttd.h"
|
||||||
#include "hal.h"
|
#include "hal.h"
|
||||||
|
#include "sound.h"
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
@@ -11,10 +12,6 @@
|
|||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#ifndef EXTERNAL_PLAYER
|
|
||||||
#define EXTERNAL_PLAYER "timidity"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static pid_t _pid;
|
static pid_t _pid;
|
||||||
|
|
||||||
static void extmidi_kill(void)
|
static void extmidi_kill(void)
|
||||||
@@ -50,9 +47,9 @@ static void extmidi_play_song(const char *filename)
|
|||||||
|
|
||||||
if (_pid == 0) {
|
if (_pid == 0) {
|
||||||
#if defined(MIDI_ARG)
|
#if defined(MIDI_ARG)
|
||||||
execlp(EXTERNAL_PLAYER, "extmidi", MIDI_ARG, filename, NULL);
|
execlp(msf.extmidi, "extmidi", MIDI_ARG, filename, NULL);
|
||||||
#else
|
#else
|
||||||
execlp(EXTERNAL_PLAYER, "extmidi", filename, NULL);
|
execlp(msf.extmidi, "extmidi", filename, NULL);
|
||||||
#endif
|
#endif
|
||||||
fprintf(stderr, "extmidi: couldn't execl: %s\n", strerror(errno));
|
fprintf(stderr, "extmidi: couldn't execl: %s\n", strerror(errno));
|
||||||
exit(0);
|
exit(0);
|
||||||
|
@@ -716,6 +716,10 @@ static void save_setting_desc(IniFile *ini, const SettingDesc *desc, const void
|
|||||||
// TTD specific INI stuff
|
// TTD specific INI stuff
|
||||||
//***************************
|
//***************************
|
||||||
|
|
||||||
|
#ifndef EXTERNAL_PLAYER
|
||||||
|
#define EXTERNAL_PLAYER "timidity"
|
||||||
|
#endif
|
||||||
|
|
||||||
static const SettingDesc music_settings[] = {
|
static const SettingDesc music_settings[] = {
|
||||||
{"playlist", SDT_UINT8, (void*)0, &msf.playlist, NULL},
|
{"playlist", SDT_UINT8, (void*)0, &msf.playlist, NULL},
|
||||||
{"music_vol", SDT_UINT8, (void*)128, &msf.music_vol, NULL},
|
{"music_vol", SDT_UINT8, (void*)128, &msf.music_vol, NULL},
|
||||||
@@ -724,6 +728,7 @@ static const SettingDesc music_settings[] = {
|
|||||||
{"custom_2", SDT_INTLIST | SDT_UINT8 | lengthof(msf.custom_2) << 16, NULL, &msf.custom_2, NULL},
|
{"custom_2", SDT_INTLIST | SDT_UINT8 | lengthof(msf.custom_2) << 16, NULL, &msf.custom_2, NULL},
|
||||||
{"playing", SDT_BOOL, (void*)true, &msf.btn_down, NULL},
|
{"playing", SDT_BOOL, (void*)true, &msf.btn_down, NULL},
|
||||||
{"shuffle", SDT_BOOL, (void*)false, &msf.shuffle, NULL},
|
{"shuffle", SDT_BOOL, (void*)false, &msf.shuffle, NULL},
|
||||||
|
{"extmidi", SDT_STRINGBUF | (lengthof(msf.extmidi)<<16), EXTERNAL_PLAYER, &msf.extmidi, NULL},
|
||||||
{NULL, 0, NULL, NULL, NULL}
|
{NULL, 0, NULL, NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user