drv_os2.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:9k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*  MikMod sound library
  2. (c) 1998, 1999, 2000 Miodrag Vallat and others - see file AUTHORS for
  3. complete list.
  4. This library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of
  7. the License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. GNU Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  15. 02111-1307, USA.
  16. */
  17. /*==============================================================================
  18.   $Id: drv_os2.c,v 1.2 2004/01/31 22:39:40 raph Exp $
  19.   Driver for output on OS/2 using MMPM/2 MCI interface
  20. ==============================================================================*/
  21. /*
  22. Written by Stefan Tibus <Stefan.Tibus@ThePentagon.com>
  23. Improvements by Andrew Zabolotny <bit@eltech.ru>
  24. */
  25. #define INCL_DOS
  26. #define INCL_OS2MM
  27. #include <os2.h>
  28. /* Prevent a warning: PPFN redefined */
  29. #define PPFN _PPFN
  30. #include <os2me.h>
  31. #undef PPFN
  32. #include <stdlib.h>
  33. #include "mikmod_internals.h"
  34. /* fragment count */
  35. #define FRAGMENTS  4
  36. /* global variables */
  37. static ULONG DeviceIndex = 0;
  38. static ULONG BufferSize = (ULONG)-1;
  39. static ULONG DeviceID = 0;
  40. static PVOID AudioBuffer = NULL;
  41. static TID ThreadID = NULLHANDLE;
  42. static BOOL FinishPlayback; /* flag for update thread to die */
  43. static HEV Play = NULLHANDLE; /* posted on PlayStart event */
  44. static HEV Update = NULLHANDLE; /* timer event semaphore */
  45. static HTIMER Timer = NULLHANDLE;
  46. /* playlist-structure */
  47. typedef struct {
  48. ULONG ulCommand;
  49. ULONG ulOperand1, ulOperand2, ulOperand3;
  50. } PLAYLISTSTRUCTURE;
  51. static PLAYLISTSTRUCTURE PlayList[FRAGMENTS + 1];
  52. /* thread handling buffer-updates */
  53. /* ARGSUSED */
  54. void OS2_UpdateBufferThread(void *dummy)
  55. {
  56. /* Run at timecritical priority */
  57. DosSetPriority(PRTYS_THREAD, PRTYC_TIMECRITICAL, PRTYD_MAXIMUM - 1, 0);
  58. while (!FinishPlayback) {
  59. ULONG count;
  60. static ULONG NextBuffer = 0; /* next fragment to be filled */
  61. /* wait for play enable */
  62. DosWaitEventSem(Play, SEM_INDEFINITE_WAIT);
  63. /* wait for timer event */
  64. DosWaitEventSem(Update, SEM_INDEFINITE_WAIT);
  65. /* reset timer semaphore */
  66. DosResetEventSem(Update, &count);
  67. /* fill all free buffers */
  68. while (PlayList[NextBuffer].ulOperand3 >=
  69.    PlayList[NextBuffer].ulOperand2) {
  70. MUTEX_LOCK(vars);
  71. if (Player_Paused_internal())
  72. PlayList[NextBuffer].ulOperand2 =
  73.   VC_SilenceBytes((SBYTE *)PlayList[NextBuffer].ulOperand1,
  74.   BufferSize);
  75. else
  76. PlayList[NextBuffer].ulOperand2 =
  77.   VC_WriteBytes((SBYTE *)PlayList[NextBuffer].ulOperand1,
  78. BufferSize);
  79. MUTEX_UNLOCK(vars);
  80. /* Reset play offset, although it seems MMOS2 does it
  81.    automagically */
  82. PlayList[NextBuffer].ulOperand3 = 0;
  83. NextBuffer = (NextBuffer + 1) % FRAGMENTS;
  84. }
  85. }
  86. /* Tell main thread we're done */
  87. ThreadID = 0;
  88. }
  89. static void OS2_CommandLine(CHAR *cmdline)
  90. {
  91. char *ptr;
  92. int buf;
  93. if ((ptr = MD_GetAtom("buffer", cmdline, 0))) {
  94. buf = atoi(ptr);
  95. if (buf >= 12 && buf <= 16)
  96. BufferSize = 1 << buf;
  97. free(ptr);
  98. }
  99. if ((ptr = MD_GetAtom("device", cmdline, 0))) {
  100. buf = atoi(ptr);
  101. if (buf >= 0 && buf <= 8)
  102. DeviceIndex = buf;
  103. free(ptr);
  104. }
  105. }
  106. /* checks for availability of an OS/2 MCI-WAVEAUDIO-device */
  107. static BOOL OS2_IsPresent(void)
  108. {
  109. MCI_OPEN_PARMS mciOpenParms;
  110. MCI_GENERIC_PARMS mciGenericParms;
  111. memset(&mciOpenParms, 0, sizeof(mciOpenParms));
  112. mciOpenParms.pszDeviceType = (PSZ) MAKEULONG(MCI_DEVTYPE_WAVEFORM_AUDIO,
  113.  (USHORT) DeviceIndex);
  114. /* try to open WAVEAUDIO-device */
  115. if (mciSendCommand(0, MCI_OPEN,
  116.    MCI_WAIT | MCI_OPEN_SHAREABLE | MCI_OPEN_TYPE_ID,
  117.    (PVOID) & mciOpenParms, 0) != MCIERR_SUCCESS)
  118. return 0;
  119. mciSendCommand(mciOpenParms.usDeviceID, MCI_CLOSE, MCI_WAIT,
  120.    (PVOID) & mciGenericParms, 0);
  121. return 1;
  122. }
  123. static BOOL OS2_Init(void)
  124. {
  125. MCI_OPEN_PARMS mciOpenParms;
  126. MCI_WAVE_SET_PARMS mciWaveSetParms;
  127. int i, bpsrate;
  128. ULONG ulInterval;
  129. if (VC_Init())
  130. return 1;
  131. DeviceID = 0;
  132. ThreadID = 0;
  133. Timer = NULLHANDLE;
  134. Update = NULLHANDLE;
  135. Play = NULLHANDLE;
  136. AudioBuffer = NULL;
  137. /* Compute the bytes per second output rate */
  138. bpsrate = md_mixfreq;
  139. if (md_mode & DMODE_STEREO)
  140. bpsrate <<= 1;
  141. if (md_mode & DMODE_16BITS)
  142. bpsrate <<= 1;
  143. /* Compute audio buffer size if necessary */
  144. if (BufferSize == (ULONG)-1) {
  145. int bit;
  146. BufferSize = bpsrate >> 3;
  147. for (bit = 15; bit >= 12; bit--)
  148. if (BufferSize & (1 << bit))
  149. break;
  150. BufferSize = 1 << bit;
  151. }
  152. /* WARNING: with big buffer sizes there is an audible click between
  153.    sub-blocks. Don't know whenever this is a driver issue (I've tested it
  154.    only with Gravis Ultrasound driver) but its something to take into
  155.    consideration. That's why above code chooses relatively small buffer
  156.    sizes (16K for 44KHz, 16 bit stereo). */
  157. /* Allocate buffer */
  158. if (!(AudioBuffer = _mm_malloc(BufferSize * FRAGMENTS))) {
  159. _mm_errno = MMERR_OUT_OF_MEMORY;
  160. return 1;
  161. }
  162. /* create playlist */
  163. for (i = 0; i < FRAGMENTS; i++) {
  164. PlayList[i].ulCommand = DATA_OPERATION; /* play data */
  165. PlayList[i].ulOperand1 = ((ULONG)AudioBuffer) + i * BufferSize;
  166. PlayList[i].ulOperand2 = BufferSize; /* size */
  167. PlayList[i].ulOperand3 = 0; /* offset */
  168. }
  169. PlayList[FRAGMENTS].ulCommand = BRANCH_OPERATION; /* jump */
  170. PlayList[FRAGMENTS].ulOperand1 = 0;
  171. PlayList[FRAGMENTS].ulOperand2 = 0; /* destination */
  172. PlayList[FRAGMENTS].ulOperand3 = 0;
  173. memset(&mciOpenParms, 0, sizeof(mciOpenParms));
  174. mciOpenParms.pszDeviceType = (PSZ) MAKEULONG(MCI_DEVTYPE_WAVEFORM_AUDIO,
  175.  (USHORT) DeviceIndex);
  176. mciOpenParms.pszElementName = (PSZ) & PlayList;
  177. /* open WAVEAUDIO-device */
  178. if (mciSendCommand(0, MCI_OPEN,
  179.    MCI_WAIT | MCI_OPEN_TYPE_ID | MCI_OPEN_PLAYLIST,
  180.    (PVOID) & mciOpenParms, 0)) {
  181. _mm_errno = MMERR_OPENING_AUDIO;
  182. return 1;
  183. }
  184. DeviceID = mciOpenParms.usDeviceID;
  185. memset(&mciWaveSetParms, 0, sizeof(mciWaveSetParms));
  186. mciWaveSetParms.ulSamplesPerSec = md_mixfreq;
  187. mciWaveSetParms.usBitsPerSample = (md_mode & DMODE_16BITS) ? 16 : 8;
  188. mciWaveSetParms.usChannels = (md_mode & DMODE_STEREO) ? 2 : 1;
  189. mciWaveSetParms.ulAudio = MCI_SET_AUDIO_ALL;
  190. /* set play-parameters */
  191. if (mciSendCommand(DeviceID, MCI_SET,
  192.    MCI_WAIT | MCI_WAVE_SET_SAMPLESPERSEC |
  193.    MCI_WAVE_SET_BITSPERSAMPLE | MCI_WAVE_SET_CHANNELS,
  194.    (PVOID) & mciWaveSetParms, 0)) {
  195. _mm_errno = MMERR_OS2_MIXSETUP;
  196. return 1;
  197. }
  198. /* Setup semaphore for playing and for buffer updates */
  199. if (DosCreateEventSem(NULL, &Play, DC_SEM_SHARED, FALSE) ||
  200. DosCreateEventSem(NULL, &Update, DC_SEM_SHARED, FALSE)) {
  201. _mm_errno = MMERR_OS2_SEMAPHORE;
  202. return 1;
  203. }
  204. /* Compute interval in ms (2 possible updates while playing 1 block) */
  205. ulInterval = BufferSize * 1000L / bpsrate;
  206. /* Setup timer for buffer updates */
  207. if (DosStartTimer(ulInterval, (HSEM) Update, &Timer)) {
  208. _mm_errno = MMERR_OS2_TIMER;
  209. return 1;
  210. }
  211. /* Create thread for buffer updates */
  212. FinishPlayback = FALSE;
  213. ThreadID = _beginthread(OS2_UpdateBufferThread, NULL, 0x4000, NULL);
  214. if (!ThreadID) {
  215. _mm_errno = MMERR_OS2_THREAD;
  216. return 1;
  217. }
  218. return 0;
  219. }
  220. static void OS2_Exit(void)
  221. {
  222. MCI_GENERIC_PARMS mciGenericParms;
  223. FinishPlayback = TRUE;
  224. while (ThreadID) {
  225. DosPostEventSem(Play);
  226. DosPostEventSem(Update);
  227. DosSleep(1);
  228. }
  229. if (Timer) {
  230. DosStopTimer(Timer);
  231. Timer = NULLHANDLE;
  232. }
  233. if (Update) {
  234. DosCloseEventSem(Update);
  235. Update = NULLHANDLE;
  236. }
  237. if (Play) {
  238. DosCloseEventSem(Play);
  239. Play = NULLHANDLE;
  240. }
  241. VC_Exit();
  242. if (DeviceID) {
  243. mciGenericParms.hwndCallback = (HWND) NULL;
  244. mciSendCommand(DeviceID, MCI_CLOSE, MCI_WAIT,
  245.    (PVOID) & mciGenericParms, 0);
  246. DeviceID = 0;
  247. }
  248. _mm_free(AudioBuffer);
  249. }
  250. static BOOL OS2_PlayStart(void)
  251. {
  252. MCI_PLAY_PARMS mciPlayParms;
  253. int i;
  254. VC_SilenceBytes((SBYTE *)AudioBuffer, BufferSize * FRAGMENTS);
  255. VC_PlayStart();
  256. /* Signal update of audio fragments */
  257. for (i = 0; i < FRAGMENTS; i++)
  258. PlayList[i].ulOperand3 = 0;
  259. /* Signal play */
  260. DosPostEventSem(Play);
  261. /* no MCI_WAIT here, because application program has to continue */
  262. memset(&mciPlayParms, 0, sizeof(mciPlayParms));
  263. if (mciSendCommand(DeviceID, MCI_PLAY, MCI_FROM, &mciPlayParms, 0)) {
  264. _mm_errno = MMERR_OS2_MIXSETUP;
  265. return 1;
  266. }
  267. return 0;
  268. }
  269. static void OS2_PlayStop(void)
  270. {
  271. MCI_GENERIC_PARMS mciGenericParms;
  272. ULONG count;
  273. mciGenericParms.hwndCallback = (HWND) NULL;
  274. mciSendCommand(DeviceID, MCI_STOP, MCI_WAIT, &mciGenericParms, 0);
  275. DosResetEventSem(Play, &count);
  276. VC_PlayStop();
  277. }
  278. static void OS2_Update(void)
  279. {
  280. /* does nothing since buffer is updated in the background */
  281. }
  282. MIKMODAPI MDRIVER drv_os2 = {
  283. NULL,
  284. "OS/2 MMPM/2",
  285. "OS/2 MMPM/2 MCI driver v1.2",
  286. 0,255,
  287. "os2",
  288. "device:r:0,8,0:Waveaudio device index to use (0 - default)n"
  289.         "buffer:r:12,16:Audio buffer log2 sizen",
  290. OS2_CommandLine,
  291. OS2_IsPresent,
  292. VC_SampleLoad,
  293. VC_SampleUnload,
  294. VC_SampleSpace,
  295. VC_SampleLength,
  296. OS2_Init,
  297. OS2_Exit,
  298. NULL,
  299. VC_SetNumVoices,
  300. OS2_PlayStart,
  301. OS2_PlayStop,
  302. OS2_Update,
  303. NULL,
  304. VC_VoiceSetVolume,
  305. VC_VoiceGetVolume,
  306. VC_VoiceSetFrequency,
  307. VC_VoiceGetFrequency,
  308. VC_VoiceSetPanning,
  309. VC_VoiceGetPanning,
  310. VC_VoicePlay,
  311. VC_VoiceStop,
  312. VC_VoiceStopped,
  313. VC_VoiceGetPosition,
  314. VC_VoiceRealVolume
  315. };
  316. /* ex:set ts=4: */