diff options
author | bjarni <bjarni@openttd.org> | 2004-12-01 19:44:39 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2004-12-01 19:44:39 +0000 |
commit | 7af2dac6b3ab94f11e97dd0915f48c29ffb59ebe (patch) | |
tree | b22e4e30deb91105d37725e0cf242e7ecf5a7bac /os/beos | |
parent | 463c346543ae29f8628edd78be2dddce43e3263f (diff) | |
download | openttd-7af2dac6b3ab94f11e97dd0915f48c29ffb59ebe.tar.xz |
(svn r877) Moved bemidi.cpp correctly this time
Diffstat (limited to 'os/beos')
-rw-r--r-- | os/beos/bemidi.cpp | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/os/beos/bemidi.cpp b/os/beos/bemidi.cpp new file mode 100644 index 000000000..d0f41d865 --- /dev/null +++ b/os/beos/bemidi.cpp @@ -0,0 +1,55 @@ +#ifdef __BEOS__ + +#include "stdafx.h" +#include "ttd.h" +#include "hal.h" + +// BeOS System Includes +#include <MidiSynthFile.h> + +BMidiSynthFile midiSynthFile; + +static char *bemidi_start(char **parm) +{ + return NULL; +} + +static void bemidi_stop(void) +{ + midiSynthFile.UnloadFile(); +} + +static void bemidi_play_song(const char *filename) +{ + bemidi_stop(); + entry_ref midiRef; + get_ref_for_path(filename, &midiRef); + midiSynthFile.LoadFile(&midiRef); + midiSynthFile.Start(); +} + +static void bemidi_stop_song(void) +{ + midiSynthFile.UnloadFile(); +} + +static bool bemidi_is_playing(void) +{ + return !midiSynthFile.IsFinished(); +} + +static void bemidi_set_volume(byte vol) +{ + fprintf(stderr, "BeMidi: Set volume not implemented\n"); +} + +const HalMusicDriver _bemidi_music_driver = { + bemidi_start, + bemidi_stop, + bemidi_play_song, + bemidi_stop_song, + bemidi_is_playing, + bemidi_set_volume, +}; + +#endif // __BEOS__ |