1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
6 * Copyright 1993 Martin Ayotte
7 * 1998-2002 Eric Pouech
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(winmm);
38 static HMMIO get_mmioFromFile(LPCWSTR lpszName)
44 ret = mmioOpenW((LPWSTR)lpszName, NULL,
45 MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
46 if (ret != 0) return ret;
47 if (SearchPathW(NULL, lpszName, NULL, sizeof(buf)/sizeof(buf[0]), buf, &dummy))
49 return mmioOpenW(buf, NULL,
50 MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
55 static HMMIO get_mmioFromProfile(UINT uFlags, LPCWSTR lpszName)
60 HKEY hRegSnd, hRegApp, hScheme, hSnd;
61 DWORD err, type, count;
63 static WCHAR wszSounds[] = {'S','o','u','n','d','s',0};
64 static WCHAR wszDefault[] = {'D','e','f','a','u','l','t',0};
65 static WCHAR wszKey[] = {'A','p','p','E','v','e','n','t','s','\\',
66 'S','c','h','e','m','e','s','\\',
68 static WCHAR wszDotDefault[] = {'.','D','e','f','a','u','l','t',0};
69 static WCHAR wszNull[] = {0};
71 TRACE("searching in SystemSound list for %s\n", debugstr_w(lpszName));
72 GetProfileStringW(wszSounds, (LPWSTR)lpszName, wszNull, str, sizeof(str)/sizeof(str[0]));
73 if (lstrlenW(str) == 0)
75 if (uFlags & SND_NODEFAULT) goto next;
76 GetProfileStringW(wszSounds, wszDefault, wszNull, str, sizeof(str)/sizeof(str[0]));
77 if (lstrlenW(str) == 0) goto next;
79 for (ptr = str; *ptr && *ptr != ','; ptr++);
81 hmmio = mmioOpenW(str, NULL, MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
82 if (hmmio != 0) return hmmio;
84 /* we look up the registry under
85 * HKCU\AppEvents\Schemes\Apps\.Default
86 * HKCU\AppEvents\Schemes\Apps\<AppName>
88 if (RegOpenKeyW(HKEY_CURRENT_USER, wszKey, &hRegSnd) != 0) goto none;
89 if (uFlags & SND_APPLICATION)
92 if (GetModuleFileNameW(0, str, sizeof(str)/sizeof(str[0])))
94 for (ptr = str + lstrlenW(str) - 1; ptr >= str; ptr--)
96 if (*ptr == '.') *ptr = 0;
99 err = RegOpenKeyW(hRegSnd, str, &hRegApp);
107 err = RegOpenKeyW(hRegSnd, wszDotDefault, &hRegApp);
109 RegCloseKey(hRegSnd);
110 if (err != 0) goto none;
111 err = RegOpenKeyW(hRegApp, lpszName, &hScheme);
112 RegCloseKey(hRegApp);
113 if (err != 0) goto none;
114 err = RegOpenKeyW(hScheme, wszDotDefault, &hSnd);
115 RegCloseKey(hScheme);
116 if (err != 0) goto none;
117 count = sizeof(str)/sizeof(str[0]);
118 err = RegQueryValueExW(hSnd, NULL, 0, &type, (LPBYTE)str, &count);
120 if (err != 0 || !*str) goto none;
121 hmmio = mmioOpenW(str, NULL, MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
122 if (hmmio) return hmmio;
124 WARN("can't find SystemSound='%s' !\n", debugstr_w(lpszName));
128 struct playsound_data
134 static void CALLBACK PlaySound_Callback(HWAVEOUT hwo, UINT uMsg,
136 DWORD dwParam1, DWORD dwParam2)
138 struct playsound_data* s = (struct playsound_data*)dwInstance;
145 InterlockedIncrement(&s->dwEventCount);
146 TRACE("Returning waveHdr=%lx\n", dwParam1);
150 ERR("Unknown uMsg=%d\n", uMsg);
154 static void PlaySound_WaitDone(struct playsound_data* s)
157 ResetEvent(s->hEvent);
158 if (InterlockedDecrement(&s->dwEventCount) >= 0) break;
159 InterlockedIncrement(&s->dwEventCount);
161 WaitForSingleObject(s->hEvent, INFINITE);
165 static BOOL PlaySound_IsString(DWORD fdwSound, const void* psz)
167 /* SND_RESOURCE is 0x40004 while
168 * SND_MEMORY is 0x00004
170 switch (fdwSound & (SND_RESOURCE|SND_ALIAS|SND_FILENAME))
172 case SND_RESOURCE: return HIWORD(psz) != 0; /* by name or by ID ? */
173 case SND_MEMORY: return FALSE;
174 case SND_ALIAS: /* what about ALIAS_ID ??? */
177 default: FIXME("WTF\n"); return FALSE;
181 static void PlaySound_Free(WINE_PLAYSOUND* wps)
185 EnterCriticalSection(&WINMM_IData->cs);
186 for (p = &WINMM_IData->lpPlaySound; *p && *p != wps; p = &((*p)->lpNext));
187 if (*p) *p = (*p)->lpNext;
188 if (WINMM_IData->lpPlaySound == NULL) SetEvent(WINMM_IData->psLastEvent);
189 LeaveCriticalSection(&WINMM_IData->cs);
190 if (wps->bAlloc) HeapFree(GetProcessHeap(), 0, (void*)wps->pszSound);
191 HeapFree(GetProcessHeap(), 0, wps);
194 static WINE_PLAYSOUND* PlaySound_Alloc(const void* pszSound, HMODULE hmod,
195 DWORD fdwSound, BOOL bUnicode)
199 wps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*wps));
200 if (!wps) return NULL;
203 wps->fdwSound = fdwSound;
204 if (PlaySound_IsString(fdwSound, pszSound))
208 if (fdwSound & SND_ASYNC)
210 wps->pszSound = HeapAlloc(GetProcessHeap(), 0,
211 (lstrlenW(pszSound)+1) * sizeof(WCHAR));
212 if (!wps->pszSound) goto oom_error;
213 lstrcpyW((LPWSTR)wps->pszSound, pszSound);
217 wps->pszSound = pszSound;
221 UNICODE_STRING usBuffer;
222 RtlCreateUnicodeStringFromAsciiz(&usBuffer, pszSound);
223 wps->pszSound = usBuffer.Buffer;
224 if (!wps->pszSound) goto oom_error;
229 wps->pszSound = pszSound;
237 static DWORD WINAPI proc_PlaySound(LPVOID arg)
239 WINE_PLAYSOUND* wps = (WINE_PLAYSOUND*)arg;
244 LPWAVEFORMATEX lpWaveFormat = NULL;
246 LPWAVEHDR waveHdr = NULL;
247 INT count, bufsize, left, index;
248 struct playsound_data s;
253 TRACE("SoundName='%s' !\n", debugstr_w(wps->pszSound));
255 /* if resource, grab it */
256 if ((wps->fdwSound & SND_RESOURCE) == SND_RESOURCE) {
257 static WCHAR wszWave[] = {'W','A','V','E',0};
261 if ((hRes = FindResourceW(wps->hMod, wps->pszSound, wszWave)) == 0 ||
262 (hGlob = LoadResource(wps->hMod, hRes)) == 0)
264 if ((data = LockResource(hGlob)) == NULL) {
270 data = (void*)wps->pszSound;
272 /* construct an MMIO stream (either in memory, or from a file */
273 if (wps->fdwSound & SND_MEMORY)
274 { /* NOTE: SND_RESOURCE has the SND_MEMORY bit set */
277 memset(&mminfo, 0, sizeof(mminfo));
278 mminfo.fccIOProc = FOURCC_MEM;
279 mminfo.pchBuffer = (LPSTR)data;
280 mminfo.cchBuffer = -1; /* FIXME: when a resource, could grab real size */
281 TRACE("Memory sound %p\n", data);
282 hmmio = mmioOpenW(NULL, &mminfo, MMIO_READ);
284 else if (wps->fdwSound & SND_ALIAS)
286 hmmio = get_mmioFromProfile(wps->fdwSound, wps->pszSound);
288 else if (wps->fdwSound & SND_FILENAME)
290 hmmio = get_mmioFromFile(wps->pszSound);
294 if ((hmmio = get_mmioFromProfile(wps->fdwSound | SND_NODEFAULT, wps->pszSound)) == 0)
296 if ((hmmio = get_mmioFromFile(wps->pszSound)) == 0)
298 hmmio = get_mmioFromProfile(wps->fdwSound, wps->pszSound);
302 if (hmmio == 0) goto errCleanUp;
304 if (mmioDescend(hmmio, &ckMainRIFF, NULL, 0))
307 TRACE("ParentChunk ckid=%.4s fccType=%.4s cksize=%08lX \n",
308 (LPSTR)&ckMainRIFF.ckid, (LPSTR)&ckMainRIFF.fccType, ckMainRIFF.cksize);
310 if ((ckMainRIFF.ckid != FOURCC_RIFF) ||
311 (ckMainRIFF.fccType != mmioFOURCC('W', 'A', 'V', 'E')))
314 mmckInfo.ckid = mmioFOURCC('f', 'm', 't', ' ');
315 if (mmioDescend(hmmio, &mmckInfo, &ckMainRIFF, MMIO_FINDCHUNK))
318 TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX \n",
319 (LPSTR)&mmckInfo.ckid, (LPSTR)&mmckInfo.fccType, mmckInfo.cksize);
321 lpWaveFormat = HeapAlloc(GetProcessHeap(), 0, mmckInfo.cksize);
322 if (mmioRead(hmmio, (HPSTR)lpWaveFormat, mmckInfo.cksize) < sizeof(WAVEFORMAT))
325 TRACE("wFormatTag=%04X !\n", lpWaveFormat->wFormatTag);
326 TRACE("nChannels=%d \n", lpWaveFormat->nChannels);
327 TRACE("nSamplesPerSec=%ld\n", lpWaveFormat->nSamplesPerSec);
328 TRACE("nAvgBytesPerSec=%ld\n", lpWaveFormat->nAvgBytesPerSec);
329 TRACE("nBlockAlign=%d \n", lpWaveFormat->nBlockAlign);
330 TRACE("wBitsPerSample=%u !\n", lpWaveFormat->wBitsPerSample);
332 /* move to end of 'fmt ' chunk */
333 mmioAscend(hmmio, &mmckInfo, 0);
335 mmckInfo.ckid = mmioFOURCC('d', 'a', 't', 'a');
336 if (mmioDescend(hmmio, &mmckInfo, &ckMainRIFF, MMIO_FINDCHUNK))
339 TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX\n",
340 (LPSTR)&mmckInfo.ckid, (LPSTR)&mmckInfo.fccType, mmckInfo.cksize);
342 s.hEvent = CreateEventA(NULL, FALSE, FALSE, NULL);
344 if (waveOutOpen(&hWave, WAVE_MAPPER, lpWaveFormat, (DWORD)PlaySound_Callback,
345 (DWORD)&s, CALLBACK_FUNCTION) != MMSYSERR_NOERROR)
348 /* make it so that 3 buffers per second are needed */
349 bufsize = (((lpWaveFormat->nAvgBytesPerSec / 3) - 1) / lpWaveFormat->nBlockAlign + 1) *
350 lpWaveFormat->nBlockAlign;
351 waveHdr = HeapAlloc(GetProcessHeap(), 0, 2 * sizeof(WAVEHDR) + 2 * bufsize);
352 waveHdr[0].lpData = (char*)waveHdr + 2 * sizeof(WAVEHDR);
353 waveHdr[1].lpData = (char*)waveHdr + 2 * sizeof(WAVEHDR) + bufsize;
354 waveHdr[0].dwUser = waveHdr[1].dwUser = 0L;
355 waveHdr[0].dwLoops = waveHdr[1].dwLoops = 0L;
356 waveHdr[0].dwFlags = waveHdr[1].dwFlags = 0L;
357 waveHdr[0].dwBufferLength = waveHdr[1].dwBufferLength = bufsize;
358 if (waveOutPrepareHeader(hWave, &waveHdr[0], sizeof(WAVEHDR)) ||
359 waveOutPrepareHeader(hWave, &waveHdr[1], sizeof(WAVEHDR))) {
363 s.dwEventCount = 1L; /* for first buffer */
367 left = mmckInfo.cksize;
369 mmioSeek(hmmio, mmckInfo.dwDataOffset, SEEK_SET);
372 if (WaitForSingleObject(WINMM_IData->psStopEvent, 0) == WAIT_OBJECT_0)
377 count = mmioRead(hmmio, waveHdr[index].lpData, min(bufsize, left));
378 if (count < 1) break;
380 waveHdr[index].dwBufferLength = count;
381 waveHdr[index].dwFlags &= ~WHDR_DONE;
382 if (waveOutWrite(hWave, &waveHdr[index], sizeof(WAVEHDR)) == MMSYSERR_NOERROR) {
384 PlaySound_WaitDone(&s);
386 else FIXME("Couldn't play header\n");
389 } while (wps->bLoop);
391 PlaySound_WaitDone(&s); /* for last buffer */
394 waveOutUnprepareHeader(hWave, &waveHdr[0], sizeof(WAVEHDR));
395 waveOutUnprepareHeader(hWave, &waveHdr[1], sizeof(WAVEHDR));
398 TRACE("Done playing='%s' => %s!\n", debugstr_w(wps->pszSound), bRet ? "ok" : "ko");
399 CloseHandle(s.hEvent);
400 if (waveHdr) HeapFree(GetProcessHeap(), 0, waveHdr);
401 if (lpWaveFormat) HeapFree(GetProcessHeap(), 0, lpWaveFormat);
402 if (hWave) while (waveOutClose(hWave) == WAVERR_STILLPLAYING) Sleep(100);
403 if (hmmio) mmioClose(hmmio, 0);
410 BOOL MULTIMEDIA_PlaySound(const void* pszSound, HMODULE hmod, DWORD fdwSound, BOOL bUnicode)
412 WINE_PLAYSOUND* wps = NULL;
414 TRACE("pszSound='%p' hmod=%p fdwSound=%08lX\n",
415 pszSound, hmod, fdwSound);
417 /* FIXME? I see no difference between SND_NOWAIT and SND_NOSTOP !
418 * there could be one if several sounds can be played at once...
420 if ((fdwSound & (SND_NOWAIT | SND_NOSTOP)) && WINMM_IData->lpPlaySound != NULL)
423 /* alloc internal structure, if we need to play something */
424 if (pszSound && !(fdwSound & SND_PURGE))
426 if (!(wps = PlaySound_Alloc(pszSound, hmod, fdwSound, bUnicode)))
430 EnterCriticalSection(&WINMM_IData->cs);
431 /* since several threads can enter PlaySound in parallel, we're not
432 * sure, at this point, that another thread didn't start a new playsound
434 while (WINMM_IData->lpPlaySound != NULL)
436 ResetEvent(WINMM_IData->psLastEvent);
437 /* FIXME: doc says we have to stop all instances of pszSound if it's non
438 * NULL... as of today, we stop all playing instances */
439 SetEvent(WINMM_IData->psStopEvent);
441 LeaveCriticalSection(&WINMM_IData->cs);
442 WaitForSingleObject(WINMM_IData->psLastEvent, INFINITE);
443 EnterCriticalSection(&WINMM_IData->cs);
445 ResetEvent(WINMM_IData->psStopEvent);
448 if (wps) wps->lpNext = WINMM_IData->lpPlaySound;
449 WINMM_IData->lpPlaySound = wps;
450 LeaveCriticalSection(&WINMM_IData->cs);
452 if (!pszSound || (fdwSound & SND_PURGE)) return TRUE;
454 if (fdwSound & SND_ASYNC)
457 wps->bLoop = (fdwSound & SND_LOOP) ? TRUE : FALSE;
458 if (CreateThread(NULL, 0, proc_PlaySound, wps, 0, &id) != 0)
461 else return proc_PlaySound(wps);
468 /**************************************************************************
469 * PlaySoundA [WINMM.@]
471 BOOL WINAPI PlaySoundA(LPCSTR pszSoundA, HMODULE hmod, DWORD fdwSound)
473 return MULTIMEDIA_PlaySound(pszSoundA, hmod, fdwSound, FALSE);
476 /**************************************************************************
477 * PlaySoundW [WINMM.@]
479 BOOL WINAPI PlaySoundW(LPCWSTR pszSoundW, HMODULE hmod, DWORD fdwSound)
481 return MULTIMEDIA_PlaySound(pszSoundW, hmod, fdwSound, TRUE);
484 /**************************************************************************
485 * sndPlaySoundA [WINMM.@]
487 BOOL WINAPI sndPlaySoundA(LPCSTR pszSoundA, UINT uFlags)
489 uFlags &= SND_ASYNC|SND_LOOP|SND_MEMORY|SND_NODEFAULT|SND_NOSTOP|SND_SYNC;
490 return MULTIMEDIA_PlaySound(pszSoundA, 0, uFlags, FALSE);
493 /**************************************************************************
494 * sndPlaySoundW [WINMM.@]
496 BOOL WINAPI sndPlaySoundW(LPCWSTR pszSound, UINT uFlags)
498 uFlags &= SND_ASYNC|SND_LOOP|SND_MEMORY|SND_NODEFAULT|SND_NOSTOP|SND_SYNC;
499 return MULTIMEDIA_PlaySound(pszSound, 0, uFlags, TRUE);
502 /**************************************************************************
503 * mmsystemGetVersion [WINMM.@]
505 UINT WINAPI mmsystemGetVersion(void)
507 TRACE("3.10 (Win95?)\n");