From 9e0e918397a6772ae6ab5e9220a797750657973e Mon Sep 17 00:00:00 2001 From: Ruediger Hanke Date: Wed, 25 Dec 2002 12:36:29 +0000 Subject: Fix midi driver thread for MorphOS svn-id: r6123 --- backends/midi/morphos.cpp | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) (limited to 'backends/midi/morphos.cpp') diff --git a/backends/midi/morphos.cpp b/backends/midi/morphos.cpp index 6fba4a76bf..b0d200574e 100644 --- a/backends/midi/morphos.cpp +++ b/backends/midi/morphos.cpp @@ -26,11 +26,13 @@ #include #include +#include #include #include "stdafx.h" #include "sound/mpu401.h" #include "common/engine.h" // For warning/error/debug +#include "morphos.h" #include "morphos_sound.h" /* @@ -90,4 +92,44 @@ MidiDriver *MidiDriver_ETUDE_create() return EtudeMidiDriver; } +int MidiDriver_MPU401::midi_driver_thread(void *param) +{ + MidiDriver_MPU401 *mid = (MidiDriver_MPU401 *)param; + int old_time, cur_time; + MsgPort *music_timer_port = NULL; + timerequest *music_timer_request = NULL; + + ObtainSemaphore(&ScummMusicThreadRunning); + + if (!OSystem_MorphOS::OpenATimer(&music_timer_port, (IORequest **) &music_timer_request, UNIT_MICROHZ, false)) { + warning("Could not open a timer - music will not play"); + Wait(SIGBREAKF_CTRL_C); + } + else { + old_time = g_system->get_msecs(); + + for (;;) { + music_timer_request->tr_node.io_Command = TR_ADDREQUEST; + music_timer_request->tr_time.tv_secs = 0; + music_timer_request->tr_time.tv_micro = 10000; + DoIO((struct IORequest *)music_timer_request); + + if (CheckSignal(SIGBREAKF_CTRL_C)) + break; + + cur_time = g_system->get_msecs(); + while (old_time < cur_time) { + old_time += 10; + if (mid->_timer_proc) + (*(mid->_timer_proc)) (mid->_timer_param); + } + } + } + + ReleaseSemaphore(&ScummMusicThreadRunning); + RemTask(NULL); + return 0; +} + #endif + -- cgit v1.2.3