mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-19 12:39:11 +00:00
(svn r855) BeOS: moved bemidi to os/beos/ (w-ber)
This commit is contained in:
55
os/beos/bemidi.cpp
Normal file
55
os/beos/bemidi.cpp
Normal file
@@ -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__
|
Reference in New Issue
Block a user